/*== Font css ==*/
	@font-face { font-family: 'Tenor Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(../fonts/tenor-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/*== Font css End ==*/

/*== Variable ==*/
:root {
	--black-color:     #000000;
	--dark-color:     #111111;
	--light-color:     #F7F7F7;
	--white-color:     #FFFFFF;
	--body-text-color: #000000;
	--font-title: 'Tenor Sans', sans-serif;
}
/*== Variable End ==*/

/*== Basic css ==*/
	*, *::before, *::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	body { font-family: var(--font-title); font-size: 1rem; font-weight: 400; line-height: 1.5; color: var(--body-text-color); }
	a { color: var(--white-color); }
	a:hover, a:focus { color: inherit; text-decoration: none; }
	p { margin-bottom: 1rem; }
	img { max-width: 100%; height: auto; }
	b { font-weight: 600; }
	strong { font-weight: 700; }
	.transition { -webkit-transition-duration: 0.5s; -moz-transition-duration: 0.5s; transition-duration: 0.5s; }
	a.phonelink, a.phonelink:hover, a.phonelink:focus { cursor: default; text-decoration: none !important; color: inherit !important; }
	hr { opacity: .9; }
	@media (max-width: 1024px) {
		a.phonelink { text-decoration: underline !important; }
	}
	@media (min-width: 768px) {
		body { font-size: 18px; }
		p { margin-bottom: 1.5rem; }
	}
/*== Basic css End ==*/

/*== Taxonomy ==*/
	.text-dark { color: var(--dark-color) !important; }
	.text-darker { color: var(--black-color) !important; }
	.fw-medium { font-weight: 500 !important; }
	.fw-sbold { font-weight: 600 !important; }
	.fs-smaller { font-size: 14px !important; }
	.fs-small { font-size: 16px !important; }
	.fs-large { font-size: 18px !important; }
	.text-uppercase-none { text-transform: none !important; }
/*== Taxonomy End ==*/

/*== Backgrounds ==*/
	.bg-light { background-color: var(--light-color) !important; }
	.bg-dark { background-color: var(--dark-color) !important; }
	.bg-darker { background-color: var(--black-color) !important; }
	.bg-cover { background-size: cover !important; }
	.bg-contain { background-size: contain !important; }
	.bg-start { background-position: left !important; }
	.bg-start-top { background-position: left top !important; }
	.bg-end { background-position: right !important; }
	.bg-end-top { background-position: right top !important; }
	.bg-center { background-position: center !important; }
	.bg-center-top { background-position: center top !important; }
	.bg-center-bottom { background-position: center bottom !important; }
	.bg-repeat { background-repeat: repeat !important; }
	.bg-repeat-x { background-repeat: repeat-x !important; }
	.bg-repeat-y { background-repeat: repeat-y !important; }
	.bg-norepeat { background-repeat: no-repeat !important; }
	.object-cover { object-fit: cover; object-position: center; }
	.object-center-top { object-position: center top; }
	.object-center-bottom { object-position: center bottom; }
	.object-start { object-position: left; }
	.object-end { object-position: right; }
/*== Backgrounds End ==*/

/*== Border ==*/
	.border-light { border-color: var(--light-color) !important; }
	.border-dark { border-color: var(--dark-color) !important; }
	.border-darker { border-color: var(--black-color) !important; }
/*== Border End ==*/

/*== Position ==*/
	@media (min-width: 576px) {
		.position-sm-absolute { position: absolute !important; }
		.position-sm-relative { position: relative !important; }
	}
	@media (min-width: 768px) {
		.position-md-absolute { position: absolute !important; }
		.position-md-relative { position: relative !important; }
	}
	@media (min-width: 992px) {
		.position-lg-absolute { position: absolute !important; }
	}
	@media (min-width: 1200px) {
		.position-xl-absolute { position: absolute !important; }
	}
	@media (min-width: 1400px) {
		.position-xxl-absolute { position: absolute !important; }
	}
/*== Position End ==*/

/*== Sizing ==*/
	@media (min-width: 576px) {
		.w-sm-25   { width: 25% !important; }
		.w-sm-50   { width: 50% !important; }
		.w-sm-75   { width: 75% !important; }
		.w-sm-100  { width: 100% !important; }
		.w-sm-auto { width: auto !important; }
		.mw-sm-25   { max-width: 25% !important; }
		.mw-sm-50   { max-width: 50% !important; }
		.mw-sm-75   { max-width: 75% !important; }
		.mw-sm-100  { max-width: 100% !important; }
		.mw-sm-auto { max-width: auto !important; }
	}
	@media (min-width: 768px) {
		.w-md-25   { width: 25% !important; }
		.w-md-50   { width: 50% !important; }
		.w-md-75   { width: 75% !important; }
		.w-md-100  { width: 100% !important; }
		.w-md-auto { width: auto !important; }
		.mw-md-25   { max-width: 25% !important; }
		.mw-md-50   { max-width: 50% !important; }
		.mw-md-75   { max-width: 75% !important; }
		.mw-md-100  { max-width: 100% !important; }
		.mw-md-auto { max-width: auto !important; }
	}
	@media (min-width: 992px) {
		.w-lg-25   { width: 25% !important; }
		.w-lg-50   { width: 50% !important; }
		.w-lg-75   { width: 75% !important; }
		.w-lg-100  { width: 100% !important; }
		.w-lg-auto { width: auto !important; }
		.mw-lg-25   { max-width: 25% !important; }
		.mw-lg-50   { max-width: 50% !important; }
		.mw-lg-75   { max-width: 75% !important; }
		.mw-lg-100  { max-width: 100% !important; }
		.mw-lg-auto { max-width: auto !important; }
	}
	@media (min-width: 1200px) {
		.w-xl-25   { width: 25% !important; }
		.w-xl-50   { width: 50% !important; }
		.w-xl-75   { width: 75% !important; }
		.w-xl-100  { width: 100% !important; }
		.w-xl-auto { width: auto !important; }
		.mw-xl-25   { max-width: 25% !important; }
		.mw-xl-50   { max-width: 50% !important; }
		.mw-xl-75   { max-width: 75% !important; }
		.mw-xl-100  { max-width: 100% !important; }
		.mw-xl-auto { max-width: auto !important; }
	}
	@media (min-width: 1400px) {
		.w-xxl-25   { width: 25% !important; }
		.w-xxl-50   { width: 50% !important; }
		.w-xxl-75   { width: 75% !important; }
		.w-xxl-100  { width: 100% !important; }
		.w-xxl-auto { width: auto !important; }
		.mw-xxl-25   { max-width: 25% !important; }
		.mw-xxl-50   { max-width: 50% !important; }
		.mw-xxl-75   { max-width: 75% !important; }
		.mw-xxl-100  { max-width: 100% !important; }
		.mw-xxl-auto { max-width: auto !important; }
	}
/*== Sizing End ==*/

/*== Heading ==*/
	.page-title { font-size: 28px; font-weight: 400; line-height: 1.2; margin-bottom: 0rem; }
	.sub-title1 { font-size: 28px; font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
	.sub-title2 { font-size: 24px; font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
	.sub-title3 { font-size: 22px; font-weight: 400; line-height: 1.2; margin-bottom: 0rem; }
	.sub-title4 { font-size: 18px; font-weight: 400; line-height: 1.2; margin-bottom: 0.6rem; }
	.h1-home { font-size: 22px; font-weight: 400; line-height: inherit; }
	@media (min-width: 768px) {
		.page-title { font-size: 42px; }
		.sub-title1 { font-size: 42px; }
		.sub-title2 { font-size: 32px; }
		.sub-title3 { font-size: 28px; }
		.sub-title4 { font-size: 26px; }
		.h1-home { font-size: 28px; }
	}
	@media (min-width: 1400px) {
		.page-title { font-size: 52px; }
		.sub-title1 { font-size: 52px; }
		.sub-title2 { font-size: 42px; }
	}
/*== Heading End ==*/

/*== Header ==*/
	.page-header { background: var(--black-color); background: radial-gradient(circle, transparent -16%, rgba(0, 0, 0, .68) 5%); }
	.page-header .site-logo img { width: auto; max-height: 20px; }
	.sticky-fixed { background: var(--black-color); -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; }
	@media (min-width: 576px) {
		.page-header .site-logo img { max-height: inherit; }
	}
	@media (min-width: 992px) {
		.page-header { padding-top: 14px; padding-bottom: 14px; }
	}
/*== Header End ==*/

/*== Footer ==*/
	.page-footer { border-top: 1px solid rgba(255,255,255,.10); }
	.copyright-text { font-family: Verdana, Geneva, sans-serif; font-size: 11px; line-height: 1.4; }
	.copyright-text a { color: inherit; }	
/*== Footer end ==*/
/*== Footer ==*/
	.page-footer { border-top: 1px solid rgba(255,255,255,.10); }
	.footer-fixed {  position: fixed; width: 100%;  bottom: 0; height: 50vh; z-index: 1; }
	.copyright-text { font-family: Verdana, Geneva, sans-serif; font-size: 11px; line-height: 1.4; }
	.copyright-text a { color: inherit; }	
	.webauthorv1 { color: #828487; text-align: left !important; font-family: 'Open Sans', sans-serif !important; font-weight: 400 !important; font-size: 11px !important; line-height: 1.4 !important; text-transform: uppercase !important; display: inline-block !important; position: relative !important; padding-left: 35px; }
	.webauthorv1 strong.dfbold { font-size: 16px !important; font-weight: 700 !important; letter-spacing: 0.3px !important; }
	.webauthorv1 a.dflink, .webauthorv1 a.dflink:hover, .webauthorv1 a.dflink:focus { color: inherit !important; text-decoration: none !important; font-weight: inherit !important; font-size: inherit !important; }
	.webauthorv1 a.dflink:focus { outline: none !important; }
	.webauthorv1 .dflogo { position: absolute; left: 0; top: 4px; }
	.lineup1 { margin-left: -0.3px; }
	.lineup2 { margin-left: -1.3px; }
	.lineup3 { margin-left: -0.5px; }
	.lineup4 { margin-left: -0.5px; }
	.lineup5 { margin-left: -0.5px; }
	.lineup6a { margin-left: 0.5px; }
	.lineup6b { margin-left: -0.5px; }
	.df-author[data-theme=white] .webauthorv1 { color: #fff !important; }
	.df-author[data-theme=white] .webauthorv1 path { fill: #fff !important; }
	.df-author[data-theme=light] .webauthorv1 { color: #bbb !important; }
	.df-author[data-theme=light] .webauthorv1 path { fill: #bbb !important; }
	.df-author[data-theme=dark] .webauthorv1 { color: #555 !important; }
	.df-author[data-theme=dark] .webauthorv1 path { fill: #555 !important; }
/*== Footer end ==*/
/*== Menu ==*/
	.navbar-toggler, .navbar-close { width: 25px; height: 8px; padding: 0; outline: none !important; border: 0; vertical-align: middle; display: inline-block; }
	.navbar-toggler:focus { box-shadow: none; }
	.navbar-toggler .i-line, .navbar-close .i-line { width: 100%; height: 1px; border-radius: 0; background-color: var(--white-color); position: absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; }
	.navbar-toggler .i-line.top { top: 0; }
	.navbar-toggler .i-line.bottom { bottom: 0; }
	.navbar-toggler:hover .i-line.top { top: -3px; }
	.navbar-toggler:hover .i-line.bottom { bottom: -4px; }
	.navbar-toggler.closed:hover .i-line.top { top: 7px; }
	.navbar-toggler.closed:hover .i-line.bottom	 { bottom: 0; }
	.closed .i-line.top { top: 7px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg); }
	.closed .i-line.bottom { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); transform: rotate(-45deg); }
	.navbar-close { background-color: transparent; position: absolute; right: 20px; }
	.navbar-close.closed .i-line.top { top: 4px; }
	.navbar .nav-item { outline: none; }
	.navbar .nav-link { display: inline-block; color: var(--white-color); font-size: 14px; font-weight: 400; line-height: 1.4; text-transform: uppercase; text-decoration: none; padding: 14px 0 14px 22px; }
	.active .nav-link, .open .nav-link { background-color: transparent; color: var(--white-color); text-decoration: underline; }
	.nav-item .nav-link:hover, .nav-item .nav-link:focus { text-decoration: underline; }
	.sidebar-nav { display: none; z-index: 1031; position: fixed; top: 0; width: 100%; height: 100%; animation: slide-in-left ease-in-out .65s; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); overflow-y: auto; }
	.sidebar-nav.showmenu { display: block; }
	.sidebar-nav .container, .sidebar-nav .container-fluid { height: 100%; }
	.sidebar-nav .navbar-collapse { display: block; height: 100% !important; }
	.menu-fade { position: fixed; left: 0 !important; right: 0 !important; top: 0 !important; bottom: 0 !important; z-index: 1020; background-color: rgba(0,0,0,0); display: none; }
	@media (min-width: 768px) {
		.sidebar-nav { max-width: 400px; }
	}
	@-webkit-keyframes slide-in-left {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-100%);
			transform: translateX(-100%)
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}
	
	@keyframes slide-in-left {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-100%);
			transform: translateX(-100%)
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}
/*== Menu End ==*/

/*== Form ==*/
	.site-form { font-size: 1rem; }
	.form-control, .form-select { border-color: var(--light-color); color: var(--black-color); font-size: 16px; font-weight: 400; line-height: 1.4; height: calc(1.5em + .75rem + 4px); border-radius: 0; box-shadow: none; outline: none; }
	.form-control:focus, .form-select:focus { box-shadow: none; border-color: var(--dark-color); }
	.form-select { background-size: 15px; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); }
	textarea.form-control, .form-floating>textarea.form-control { height: 70px; }
	.g-recaptcha { -webkit-transform: scale(.8); transform: scale(.8); -webkit-transform-origin: center; transform-origin: center; }
	.form-check { padding-left: 2rem; margin-bottom: 0.5rem; }
	.form-check-input { margin-top: 2px; width: 18px; height: 18px; margin-left: -2rem !important; }
	.form-check-input[type=checkbox] { border-radius: 0 !important; }
	.form-check-input:focus { box-shadow: none; }
	.form-check-input:checked { background-color: var(--black-color); border-color: var(--black-color); }
	.form-check-label { line-height: 1.3; }
	.input-group-text { font-size: 14px; }
	.contact-form { max-width: 710px; margin-left: auto; margin-right: auto; }
	.form-light .form-control, .form-light .form-select, .form-light .form-check-input { background-color: transparent; color: var(--white-color); border-color: rgba(255,255,255,.55); }
	.form-light .form-control:focus, .form-light .form-select:focus { border-color: var(--white-color); }
	.form-light .form-select option { color: var(--black-color); }
	input[type="checkbox"]:required { border-color: red; }
	.input-group .form-floating { flex: 1; }
	.form-floating>label { white-space: nowrap; }
	.form-control[type=file] { font-size: inherit; line-height: 1.7; }
/*== Form End ==*/

/*== Button ==*/
	.btn { font-size: 14px; font-weight: 400; padding: 9px 22px; line-height: 1.429; text-transform: uppercase; text-decoration: none; border-radius: 60px; box-shadow: none !important; }
	.btn-dark { color: var(--white-color); background-color: rgba(255,255,255,.10); border-color: transparent; }
	.btn-dark:hover, .btn-dark:focus, .btn-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--dark-color); border-color: var(--white-color); }
	.btn-darker { color: var(--white-color); background-color: rgba(0,0,0,.3); border-color: transparent; }
	.btn-darker:hover, .btn-darker:focus, .btn-darker:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--dark-color); border-color: var(--white-color); }
	.btn-black { color: var(--white-color); background-color: rgba(0,0,0,1); border-color: transparent;}
	.btn-black:hover, .btn-black:focus, .btn-black:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: rgba(0,0,0,0.8); border-color: transparent; }
	.btns-group { max-width: 300px; }
	.btn-scrollTop { position: fixed; bottom: 150px; right: 10px; z-index: 1000; width: 3rem; height: 3rem; border-radius: 50%; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3e%3cpath fill='%23FFFFFF' d='M11.77,23c0.646,0,11.995,0,12.441,0c0.578,0,1.008-0.485,0.67-0.965c-0.271-0.384-5.739-8.06-6.208-8.715 c-0.308-0.431-1.04-0.424-1.348,0c-0.344,0.471-5.839,8.177-6.222,8.734C10.824,22.464,11.133,23,11.77,23z'/%3e%3c/svg%3e"); background-position: center; background-size: 80%; background-repeat: no-repeat; border: none; outline: none; -webkit-box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.6) !important; box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.6) !important; }
	@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .btn-scrollTop { right: 20px; } }
/*== Button End ==*/

/*== Animation ==*/
	.animated { -webkit-animation-duration:1s; animation-duration:1s; -webkit-animation-fill-mode:both; animation-fill-mode:both }
	.fast { -webkit-animation-duration: 0.5s; animation-duration: 0.5s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
	.slow { -webkit-animation-duration: 1.5s; animation-duration: 1.5s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
	.delay-250 { -webkit-animation-delay:0.25s; -moz-animation-delay:0.25s; -o-animation-delay:0.25s; animation-delay:0.25s; }
	.delay-500 { -webkit-animation-delay:0.5s; -moz-animation-delay:0.5s; -o-animation-delay:0.5s; animation-delay:0.5s; }
	.delay-750 { -webkit-animation-delay:0.75s; -moz-animation-delay:0.75s; -o-animation-delay:0.75s; animation-delay:0.75s; }
	@-webkit-keyframes fadeInLeft {
		0% { opacity:0; -webkit-transform:translate3d(-400px, 0, 0); transform:translate3d(-400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInLeft {
		0% { opacity:0; -webkit-transform:translate3d(-400px, 0, 0); transform:translate3d(-400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInLeft { -webkit-animation-name:fadeInLeftSlow; animation-name:fadeInLeftSlow }

	@-webkit-keyframes fadeInRight {
		0% { opacity:0; -webkit-transform:translate3d(400px, 0, 0); transform:translate3d(400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInRight {
		0% { opacity:0; -webkit-transform:translate3d(400px, 0, 0); transform:translate3d(400px, 0, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInRight { -webkit-animation-name:fadeInRightSlow; animation-name:fadeInRightSlow }

	@-webkit-keyframes fadeInUp {
		0% { opacity:0; -webkit-transform:translate3d(0, 400px, 0); transform:translate3d(0, 400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInUp { 
		0% { opacity:0; -webkit-transform:translate3d(0, 400px, 0); transform:translate3d(0, 400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInUp { -webkit-animation-name:fadeInUpSlow; animation-name:fadeInUpSlow }

	@-webkit-keyframes fadeInDown {
		0% { opacity:0; -webkit-transform:translate3d(0, -400px, 0); transform:translate3d(0, -400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	@keyframes fadeInDown {
		0% { opacity:0; -webkit-transform:translate3d(0, -400px, 0); transform:translate3d(0, -400px, 0) }
		to { opacity:1; -webkit-transform:none; transform:none }
	}
	.fadeInDown { -webkit-animation-name:fadeInDownSlow; animation-name:fadeInDownSlow }

	.fadeInRight-slow, .fadeInLeft-slow, .fadeInUp-slow, .fadeInDown-slow { opacity:0; -webkit-transform: translateX(40px); transform: translateX(40px); }
	@-webkit-keyframes fadeInLeftSlow {
		0% { opacity: 0; -webkit-transform: translateX(-40px); } 
		100% {  opacity: 1;  -webkit-transform: translateX(0); } 
	}
	@keyframes fadeInLeftSlow {
		0% { opacity: 0; transform: translateX(-40px); } 
		100% { opacity: 1; transform: translateX(0); } 
	}
	.fadeInLeft-slow { opacity: 0; -webkit-transform: translateX(-40px); transform: translateX(-40px); }
	.fadeInLeft-slow.go { -webkit-animation-name: fadeInLeftSlow; animation-name: fadeInLeftSlow; }

	@-webkit-keyframes fadeInRightSlow {
		0% { opacity: 0; -webkit-transform: translateX(40px); } 
		100% {  opacity: 1;  -webkit-transform: translateX(0); } 
	}
	@keyframes fadeInRightSlow {
		0% { opacity: 0; transform: translateX(40px); } 
		100% { opacity: 1; transform: translateX(0); } 
	}
	.fadeInRight-slow { opacity: 0; -webkit-transform: translateX(40px); transform: translateX(40px); }
	.fadeInRight-slow.go { -webkit-animation-name: fadeInRightSlow; animation-name: fadeInRightSlow; }

	@-webkit-keyframes fadeInUpSlow {
		0% { opacity: 0; -webkit-transform: translateY(40px); } 
		100% { opacity: 1; -webkit-transform: translateY(0); } 
	}
	@keyframes fadeInUpSlow {
    	0% { opacity: 0; transform: translateY(40px); } 
		100% { opacity: 1; transform: translateY(0); } 
	}
	.fadeInUp-slow { opacity: 0; -webkit-transform: translateY(40px); transform: translateY(40px); }
	.fadeInUp-slow.go { -webkit-animation-name: fadeInUpSlow; animation-name: fadeInUpSlow; }

	@-webkit-keyframes fadeInDownSlow {
		0% { opacity: 0; -webkit-transform: translateY(-40px); } 
		100% { opacity: 1; -webkit-transform: translateY(0); } 
	}
	@keyframes fadeInDownSlow {
    	0% { opacity: 0; transform: translateY(-40px); } 
		100% { opacity: 1; transform: translateY(0); } 
	}
	.fadeInDown-slow { opacity: 0; -webkit-transform: translateY(-40px); transform: translateY(-40px); }
	.fadeInDown-slow.go { -webkit-animation-name: fadeInDownSlow; animation-name: fadeInDownSlow; }
/*== Animation End ==*/

/*== List Styles ==*/
	.list-group { padding-left: 22px; margin-bottom: 0.5rem; text-align: left; }
	.list-group li { margin-bottom: 0.6rem; }
	.list-rounds { list-style: none; margin: 0; padding: 0; }
	.list-rounds li + li { margin-top: 3rem; }
	@media (min-width: 768px) {
		.list-group { margin-bottom: 1rem; }
		.list-rounds li:nth-child(odd) { width: 41.66666667%; float: left; }
		.list-rounds li:nth-child(even) { width: 50%; float: right; }
	}
	@media (min-width: 992px) { 
		.list-rounds li + li { padding-top: 3rem; }
	}
/*== List Styles End ==*/

/*== Common Styles ==*/
	.data-src { background-repeat: no-repeat; }
	.breadcrumb { background-color: transparent; font-weight: 400; }
	.breadcrumb, .breadcrumb h2 { font-size: 13px; font-weight: 400; }
	.breadcrumb a { color: var(--black-color); text-decoration: none; }
	.breadcrumb a:hover { color: var(--black-color); }
	.breadcrumb-item { display: inline-block; }
	.breadcrumb-item+.breadcrumb-item::before { content: '→'; font-size: 18px; line-height: 1; opacity: .5; }
	.block-content { padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto; }
	.block-img { min-height: 300px; }
	.text-shadow { text-shadow: -15px 15px 15px rgba(0, 0, 0, .73); }
	.z-index1 { z-index: 1; }
	.bxlogo-slider .bx-wrapper { max-width: 100% !important; margin-bottom: 0; border: none; box-shadow: none; }
	.bxlogo-slider .bx-wrapper ul li { width: auto !important; margin-right: 0 !important; padding: 0 15px; }
	.bxlogo-slider .bx-wrapper ul.bxslider { display: flex; align-items: center; }
	.videofullscreen:before { content: ''; background: rgba(0,0,0,0.2); position: absolute; top: 0; bottom: 0; left: 0; right: 0; }
	.videofullscreen video { width: 100vw; height: 100vh; object-fit: cover; object-position: center; }
	.videocontent { position: absolute; left: 0; right: 0; bottom: 12%; }
	.overlay1::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .4); z-index: 1; }
	.overlay1::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--black-color); background: radial-gradient(circle at 50%, transparent 12%, rgba(0,0,0,.68) 100%); }
	.overlay2::before { background-color: rgba(0, 0, 0, .5); }
	.overlay3::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .3); }
	.icon-shadow { width: 90px; height: auto; filter: drop-shadow(-15px 15px 15px rgba(0, 0, 0, .73)); }
	.img-gallery { overflow: hidden; text-decoration: none; }
	.img-gallery img {  -webkit-transition: -webkit-transform 1s cubic-bezier(.7,0,.3,1), -webkit-opacity 0.35s linear 0.35s; transition: transform 1s cubic-bezier(.7,0,.3,1), opacity 0.35s linear 0.35s; }
	.img-gallery:hover img { opacity: .45; transform: scale(1.1); }
	.img-modal img { opacity: .5; }
	.modal-header .btn-close { background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; opacity: 1; }
	.carousel-inner .carousel-item.active,
	.carousel-inner .carousel-item-next,
	.carousel-inner .carousel-item-prev { display: flex;}
	.carousel-control-prev-icon {background-image:url(../retina-images/ico-arrow-left.png); width: 1rem;}
	.carousel-control-next-icon {background-image:url(../retina-images/ico-arrow-right.png); width: 1rem;}
	.carousel-control-next, .carousel-control-prev { width: 8%; }
	.carousel-item img { padding: 1px; }
	/*== Common Styles End ==*/

/*== LOCOMOTIVE SCROLL ==*/
	html.has-scroll-smooth { overflow: hidden; position: fixed; left: 0; top: 0; right: 0; bottom: 0; }
	html.has-scroll-dragging { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
	.has-scroll-smooth body { overflow: hidden; }
	.has-scroll-smooth [data-scroll-container] { min-height: 100vh; -webkit-transition: background .4s ease; transition: background .4s ease }
	.is-ie [data-scroll-container] { overflow: hidden }
	[data-scroll-direction=horizontal] [data-scroll-container] { white-space: nowrap; height: 100vh; display: inline-block; white-space: nowrap }
	[data-scroll-direction=horizontal] [data-scroll-section] { display: inline-block; vertical-align: top; white-space: nowrap; height: 100% }
  	.c-scrollbar { position: absolute; right: 0; top: 0; width: 11px; height: 100%; transform-origin: center right; transition: transform 0.3s, opacity 0.3s; opacity: 0; }
	.c-scrollbar:hover { transform: scaleX(1.45); }
	.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar { opacity: 1; }
  	.c-scrollbar_thumb { position: absolute; top: 0; right: 0; background-color: var(--black-color); opacity: 0.5; width: 7px; border-radius: 10px; margin: 2px; cursor: -webkit-grab; cursor: grab; }
	[data-scroll-direction=horizontal] .c-scrollbar { width: 100%; height: 10px; top: auto; bottom: 0; -webkit-transform: scaleY(1); transform: scaleY(1) }
	[data-scroll-direction=horizontal] .c-scrollbar:hover { -webkit-transform: scaleY(1.3); transform: scaleY(1.3) }
	.has-scroll-dragging .c-scrollbar_thumb { cursor: -webkit-grabbing; cursor: grabbing; }
/*== LOCOMOTIVE SCROLL END ==*/

/*== Responsive ==*/
@media (min-width: 576px) {
	.block-content { max-width: 540px; }
	.block-img { min-height: 400px; }
	.icon-shadow { width: auto; }
	.carousel-control-next, .carousel-control-prev { width: 15%; }
}
@media (min-width: 768px) {
	.block-content { max-width: 720px; }
	.block-img { min-height: 450px; }
	.carousel-control-next, .carousel-control-prev { width: 8%; }
}
@media (min-width: 992px) {
	.block-content { max-width: 600px; }
	.block-img { min-height: 500px; }
	.custom-mt { margin-top: -3rem; }
}
@media (min-width: 1200px) {
	.block-content { max-width: 530px; }
	.block-img { min-height: 770px; }
	.custom-mt { margin-top: -6rem; }
}
@media (min-width: 1400px) {
}
@media (max-width: 575px) {
	.carousel-control-next, .carousel-control-prev { width: 15%; }
}
/*== Responsive end ==*/