/*== Font css ==*/
	@font-face { font-family: 'AVENIR'; font-style: normal; font-weight: 400; src: url(../fonts/Avenir-Regular.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300; src: url(../fonts/roboto-300.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; src: url(../fonts/roboto-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; src: url(../fonts/roboto-500.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; src: url(../fonts/roboto-700.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } 
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; font-stretch: 100%; src: url(../fonts/opensans-300.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(../fonts/opensans-400.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(../fonts/opensans-600.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
	@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(../fonts/opensans-700.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, 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 {
	--primary-color:  		 #3675B7;
	--primary-light-color:   #4496EB;
	--secondary-color:		 #5B6467;
	--black-color:    		 #000000;
	--dark-color:     		 #313131;
	--light-color:   		 #ECECEC;
	--lighter-color: 		 #F6F6F6;
	--white-color:    		 #FFFFFF;
	--body-text-color:		 #5B6467;

	--font-body:  'AVENIR', sans-serif;
	--font-title: 'Roboto', 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-body); font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--body-text-color); }
	a { color: var(--primary-color); text-decoration: none; }
	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: 0.4; }
	@media (min-width: 768px) {
		p { margin-bottom: 1.5rem; }
	}
/*== Basic css End ==*/

/*== Taxonomy ==*/
	.text-primary { color: var(--primary-color) !important; }
	.text-secondary { color: var(--secondary-color) !important; }
	.text-dark { color: var(--dark-color) !important; }
	.text-darker { color: var(--black-color) !important; }
	.text-inherit { color: inherit !important; }

	.fw-regular { font-weight: 400 !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: 16px !important; }
	.text-uppercase-none { text-transform: none !important; }
	.ff-primary { font-family: var(--font-body) !important; }
	.ff-secondary { font-family: var(--font-title) !important; }

	.link-address { text-decoration: none !important; color: inherit; }
	@media (max-width: 767px) {
		.link-address { text-decoration: underline !important; }
	}
/*== Taxonomy End ==*/

/*== Backgrounds ==*/
	.bg-primary { background-color: var(--primary-color) !important; }
	.bg-secondary { background-color: var(--secondary-color) !important; }
	.bg-light { background-color: var(--light-color) !important; }
	.bg-lighter { background-color: var(--lighter-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 ==*/

.fill-white { fill: var(--white-color); }


/*== Border ==*/
	.border-primary { border-color: var(--primary-color) !important; }
	.border-secondary { border-color: var(--secondary-color) !important; }
	.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; }
	}
	@media (min-width: 768px) {
		.position-md-absolute { position: absolute !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 ==*/

/*== Form ==*/
	.site-form { font-size: 1rem; }
	.form-control, .form-select { border-color: #ced4da; color: var(--black-color); font-size: 16px; font-weight: 400; line-height: 1.4; height: calc(1.5em + .75rem + 4px); border-radius: 6px; box-shadow: none; outline: none; }
	.form-control:focus, .form-select:focus { box-shadow: none; border-color: #202833; }
	.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"); }
	.select2-search { 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"); background-repeat: no-repeat; background-position: center right; }
	textarea.form-control, .form-floating>textarea.form-control { height: 110px; }
	.g-recaptcha { -webkit-transform: scale(.8); transform: scale(.8); -webkit-transform-origin: center; transform-origin: center; margin-left: -30px; }
	.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(--primary-color); border-color: var(--primary-color); }
	.form-check-label { line-height: 1.3; }
	.rating { display: table; direction: rtl; }
	.rating>input { display: none; }
	.rating>label { position: relative; font-size: 32px; cursor: pointer; display: table-cell; }
	.rating>label::before { content: "\2605"; position: absolute; opacity: 0; }
	.rating>label:hover:before, .rating>label:hover~label:before { opacity: 1 !important; }
	.rating>input:checked~label:before { opacity: 1; }
	.rating:hover>input:checked~label:before { opacity: 0.4; }
	.datepicker-top-left, .datepicker-top-right { border-top-color: var(--primary-color) !important; }
	.datepicker-top-left::before, .datepicker-top-right::before { border-bottom-color: var(--primary-color) !important; }
	.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover { color: var(--primary-color) !important; }
	.datepicker-panel > ul > li.highlighted, .datepicker-panel > ul > li:hover { background-color: #ddd !important; }
	.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-family: var(--font-body) ;font-size: 15px; font-weight: 500; padding: 9px 22px; text-decoration: none; border-style: none; border-radius: 2rem; box-shadow: none !important; transition: all .4s ease-in-out; }
	.btn-primary { color: var(--white-color); background-color: var(--primary-color); border-color: var(--white-color); }
	.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--primary-light-color); border-color: var(--white-color); }
	.btn-secondary { color: var(--white-color); background-color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--black-color); border-color: var(--black-color); }
	.btn-dark { color: var(--white-color); background-color: var(--dark-color); border-color: var(--dark-color); }
	.btn-dark:hover, .btn-dark:focus, .btn-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--black-color); border-color: var(--black-color); }
	.btn-white { color: var(--primary-color); background-color: var(--white-color); border-color: var(--white-color); border-width: 1px; border-style: solid; }
	.btn-white:hover, .btn-white:focus, .btn-white:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--primary-color); border-color: var(--white-color); }
	.btn-outline-primary { color: var(--primary-color); border-color: var(--primary-color); }
	.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--primary-color); border-color: var(--primary-color); }
	.btn-outline-secondary { color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--secondary-color); border-color: var(--secondary-color); }
	.btn-outline-dark { color: var(--dark-color); border-color: var(--dark-color) }
	.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:not(:disabled):not(.disabled):active { color: var(--white-color); background-color: var(--dark-color); border-color: var(--dark-color); }
	.btns-group { max-width: 300px; }
/*== Button End ==*/

/*== Heading ==*/
	.page-title { font-family: var(--font-body); font-size: 40px; font-weight: 600; line-height: 1; text-transform: uppercase; margin-bottom: 0rem; }
	.sub-title1 { font-family: var(--font-title); font-size: 34px; font-weight: 600; line-height: 1.2; margin-bottom: 1rem; color: var(--primary-color); }
	.sub-title2 { font-family: var(--font-title); font-size: 20px; font-weight: 600; line-height: 1.2; text-transform: uppercase; margin-bottom: 0.6rem; }
	.sub-title3 { font-family: var(--font-title); font-size: 24px; font-weight: 600; line-height: 1.2; margin-bottom: 0.6rem; }
	.h1-home { font-family: var(--font-title); font-size: inherit; font-weight: 400; line-height: inherit; text-transform: uppercase; }
	.page-sub-title { font-family: var(--font-title); font-size: 42px; line-height: 1; font-weight: 400; text-shadow: 0px 0px 5px #FFFFFF;}
	.page-title .lx-title { font-size: 80%; }
	@media (min-width: 768px) {
		.page-title { font-size: 40px; }
		.sub-title1 { font-size: 44px; }
		.sub-title2 { font-size: 24px; }
		.sub-title3 { font-size: 28px; }
		.page-sub-title { font-size: 32px; }
	}
	@media (min-width: 992px) {
		.page-title { font-size: 44px; }
		.page-sub-title { font-size: 38px; }
	}
	@media (min-width: 1200px) {
		.page-title { font-size: 48px; }
		.page-sub-title { font-size: 42px; }
	}
	@media (min-width: 1400px) {
		.page-title { font-size: 52px; }
	}
	@media (min-width: 1600px) {
		.page-title { font-size: 56px; }
	}
/*== Heading End ==*/

/*== Header ==*/
	.page-header { font-size: 15px; font-weight: 400; line-height: 1.4; }
	.page-header .site-logo img { width: auto; max-height: 70px; }
	.sticky-fixed { position: fixed; left: 0; right: 0; top: 0; z-index: 1020; -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; }
	.phone-ico { position: relative; top: -1px; }
	@media (min-width: 768px) {
		.page-header .site-logo img { max-height: inherit; }
	}
	@media (min-width: 1200px) {
		.page-header .site-logo img { width: 74%; }
	}
	@media (min-width: 1400px) {
		.page-header .site-logo img { width: 64%; }
	}
/*== Header End ==*/

/*== Footer ==*/
	.contact-map { min-height: 300px; background-size: auto 370px; }
	.contact-map .btn { margin-top: 160px; }
	.table-hours { max-width: 280px; width: 100%; text-align: left; }
	.table-hours tr td:first-child { width: 139px; }
	.slinks { list-style: none; margin: 0; padding: 0; }
	.slinks a { display: block; text-decoration: none; }
	.slinks li { display: inline-block; -webkit-transition: .6s ease; transition: .6s ease; }
	.slinks li + li { margin-left: 10px; }
	.slinks li a svg path { -webkit-transition: .4s ease; transition: .4s ease; }
	.slinks li a:hover svg path { fill: var(--primary-color); }
	.tooltip-inner { background-color: var(--primary-color); color: var(--white-color); }
	.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before { border-top-color: var(--primary-color); }
	.page-footer { font-size: 15px; line-height: 1.4; }
	.page-footer a { color: inherit; }
	.copyright-text { font-family: Verdana, Geneva, sans-serif; font-size: 11px; line-height: 1.4; }
	.copyright-text a { color: inherit; text-decoration: underline; }
	.copyright-text a:hover { color: var(--primary-color); text-decoration: none; }
	.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.372 !important; text-transform: uppercase !important; display: inline-block !important; position: relative !important; padding-left: 48px; }
	.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; }
	@media (min-width: 768px) {
		.contact-map { min-height: 400px; background-size: auto; }
		.contact-map .btn { margin-top: 145px; }
		.table-hours { max-width: 310px; }
		.map-img { object-position: center bottom;}
	}
	@media (min-width: 992px) {
		.contact-map .btn { margin-top: 290px; }
		.map-img { object-position: center center;}
	}
/*== Footer end ==*/

/*== Menu ==*/
	.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,.1); display: none; }
	.navbar-toggler { display: inline-flex; justify-content: center; align-items: center; padding: 12px 16px; }
	.navbar-toggler span { width: 18px; height: 16px; padding: 0; outline: none !important; vertical-align: middle; display: inline-block; position: relative; }
	.navbar-toggler:focus { box-shadow: none; }
	.navbar-toggler .i-line { width: 100%; height: 2px; border-radius: 10px; 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.middle { top: 50%; margin-top: -1px; }
	.navbar-toggler .i-line.bottom { bottom: 0; }
	.closed .i-line.middle { width: 0; opacity: 0; }
	.closed .i-line.top { top: 7px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); transform: rotate(45deg); }
	.closed .i-line.bottom { bottom: 7px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); transform: rotate(-45deg); }
	.navbar .nav-item { outline: none; }
	.navbar .nav-link { color: var(--dark-color); font-family: var(--font-body); font-size: 16px; font-weight: 700; line-height: 1.2; text-decoration: none; padding: 14px 16px; }
	.active .nav-link, .open .nav-link, .nav-item:hover .nav-link, .nav-item:focus .nav-link { background-color: transparent; color: var(--primary-color); text-decoration: none; }
	.navbar .dropdown-menu { font-family: var(--font-title); font-size: 14px; font-weight: 400; line-height: 1.2; background-color: var(--white-color); color: var(--dark-color); margin: 0; border: none; border-radius: 0; padding: 0px 0; }
	.navbar .dropdown-menu .dropdown-item { color: var(--dark-color); text-decoration: none; padding: 12px 16px; white-space: normal; }
	.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus, .navbar .dropdown-menu .dropdown-item:active { background-color: var(--primary-color); color: var(--white-color); }
	.navbar .open > .dropdown-menu { display: block; }
	.navbar .dropdown-toggle::after { border: none; width: .9rem; height: .9rem; margin-top: -.2rem; top: .35rem; position: relative; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23313131' d='M297.4 438.6C309.9 451.1 330.2 451.1 342.7 438.6L502.7 278.6C515.2 266.1 515.2 245.8 502.7 233.3C490.2 220.8 469.9 220.8 457.4 233.3L320 370.7L182.6 233.4C170.1 220.9 149.8 220.9 137.3 233.4C124.8 245.9 124.8 266.2 137.3 278.7L297.3 438.7z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: contain; }
	.sidebar-nav { z-index: 1021; position: fixed; left: -250px; top: 0; width: 100%; max-width: 250px; height: 100%; text-align: left; -webkit-box-shadow: rgba(0,0,0,.1) 1px 0px 5px; box-shadow: rgba(0,0,0,.1) 1px 0px 5px; }
	.sidebar-nav .container, .sidebar-nav .container-fluid { height: 100%; }
	.sidebar-nav .navbar-collapse { display: block; overflow-y: auto; height: 100% !important; }
	.sidebar-nav .navbar-nav > .nav-item { border-bottom: rgba(200,200,200,.2) 1px solid; transform: translateY(-10px); opacity: 0; -webkit-transition: .6s ease-in-out; transition: .6s ease-in-out; }
	.sidebar-nav .navbar-nav .dropdown-toggle { padding-right: 28px; }
	.sidebar-nav .dropdown-toggle::after { position: absolute; right: 15px; top: 16px; -webkit-transform: rotate(-90deg); transform: rotate(-90deg);  -webkit-transition-duration: .4s; transition-duration: .4s; margin-top: 0rem; }
	.sidebar-nav .show::after { -webkit-transform: rotate(0); transform: rotate(0); }
	.sidebar-nav .navbar-nav .show-item { transform: translateY(0px); opacity: 1; animation-name: forwards; animation-duration: 1s; animation-iteration-count: 1; animation-timing-function: ease; }
	@keyframes forwards {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0px); opacity: 1; }
    }
	@media (min-width: 768px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 13px 10px; font-size: 14px; }
		.navbar-expand-md .dropdown-menu { min-width: 8.1rem; font-size: 14px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { white-space: nowrap; padding: 12px 10px; -webkit-transition-duration: .4s; transition-duration: .4s; }
	}
	@media (min-width: 992px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 13px 16px; font-size: 16px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { padding: 12px 16px; }
		.navbar-expand-md .dropdown-menu { min-width: 8.9rem; font-size: 15px; }
	}
	@media (min-width: 1200px) {
		.navbar-expand-md .navbar-nav .nav-link { padding: 13px 35px; }
		.navbar-expand-md .dropdown-menu .dropdown-item { padding: 12px 35px; }
		.navbar-expand-md .dropdown-menu { min-width: 11.64rem; }
	}
/*== Menu End ==*/

/*== Carousel ==*/
	#carouselSliderHome-review .carousel-inner { width: 86%; margin: 0 auto;}
	.carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; background-color: var(--primary-color); opacity: 1; margin: 0 4px; }
	.carousel-indicators .active { width: 12px; height: 12px; background-color: transparent;  }
	#carouselSliderHome-review .carousel-item { min-height: 500px; }
	#carouselSliderHome-review .carousel-indicators [data-bs-target] { background-color: var(--primary-color); opacity: 0.2;  }
	#carouselSliderHome-review .carousel-indicators [data-bs-target]:hover { background-color: var(--black-color); opacity: 1; }
	#carouselSliderHome-review .carousel-indicators .active { background-color: var(--primary-color); opacity: 1; }
	#carouselSliderHome-review .carousel-control-prev { left: 0%; width: 5%; opacity: 1;}
	#carouselSliderHome-review .carousel-control-next { right: 0%; width: 5%; opacity: 1;}
	#carouselSliderHome-review .control-icon { fill: var(--primary-color)}
	#carouselSliderHome-review .carousel-control-prev:hover .control-icon { fill: var(--secondary-color)}
	#carouselSliderHome-review .carousel-control-next:hover .control-icon { fill: var(--secondary-color)}
	@media (min-width: 576px) {
		#carouselSliderHome-review .carousel-item { min-height: 400px; }
	}
	@media (min-width: 768px) {
		#carouselSliderHome-review .carousel-item { min-height: 400px; }
	}
	@media (min-width: 992px) {
		#carouselSliderHome-review .carousel-item { min-height: 440px; }
	}
	@media (min-width: 1200px) {
		#carouselSliderHome-review .carousel-item { min-height: 420px; }
	}
	@media (min-width: 1400px) {
		#carouselSliderHome-review .carousel-item { min-height: 370px; }
	} 
/*== Carousel 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-group li::marker { color: var(--primary-color);}
	@media (min-width: 768px) {
		.list-group { margin-bottom: 1rem; }
	}
/*== List Styles End ==*/

/*== Common Styles ==*/
	.data-src { background-repeat: no-repeat; }
	.breadcrumb { background-color: transparent; font-weight: 400; }
	.breadcrumb, .breadcrumb h2 { font-size: 14px; font-weight: 400; margin-bottom: 0px; }
	.breadcrumb a { color: var(--secondary-color); text-decoration: none; }
	.breadcrumb a:hover { color: var(--primary-color); }
	.breadcrumb-item { display: inline-flex; align-items: center; }
	.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; }
	.brand-logo img { max-width: 120px; max-height: 40px; }
	.hero-banner { position: relative;}
	.banner-slogan { height: 78vh; }
	.hero-inner-banner { position: relative;}
	.hero-inner-banner .banner-slogan { height: 396px;}
	.review-strip {background: linear-gradient(135deg, #3675b7 0%, #5b8ed6 50%, #3675b7 100%); padding: 14px 20px; text-align: center; box-shadow: 0 3px 12px rgba(54, 117, 183, 0.3); position: relative; overflow: hidden; display: block;} 
	.review-text { font-size: 16px; font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,0.2);}
	.review-bg-slide { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); animation: shine 3s infinite; }
	.z-index1 { z-index: 1; }
	.star-img-yellow { width: 137px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
	@keyframes shine {
    0% {
    left: -100%;
    }
    50%, 100% {
    left: 100%;
    }
	}
	.review-btn { font-family: var(--font-title); font-size: 15px; padding: 6px 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.3s ease;}
	.big-btn { font-size: 18px; padding: 7px 22px; font-weight: 500; max-width: 300px; }
	.book-strip .big-btn { max-width: none; }
	.hw-title { font-family: var(--font-title); font-size: 20px; line-height: normal; font-weight: 700;}
	.hw-icon img { width: 232px;}
	.star-img-blue { width: 190px; }
	.contact-box { min-height: 400px;}
	.foot-link-boxes a {color: var(--white-color); font-size: 36px; font-weight: 700; }
	.foot-link-box1 { background: var(--secondary-color);}
	.foot-link-box2 { background: var(--primary-color);}
	.foot-link-box1:hover { background: #A2A3A3;}
	.foot-link-box2:hover { background: var(--primary-light-color);}
	.footer-box { color: var(--dark-color); font-size: 16px;}
	.footer-title { color: var(--dark-color); font-size: 24px; font-weight: 400; font-family: var(--font-title); }
	.foot-col ul { list-style: none; padding: 0; }
	.foot-col li { margin-bottom: 0.5rem; }
	.foot-links a { color: var(--dark-color);}
	.foot-links a:hover { color: var(--primary-color);}
	.foot-block { display: inline-block; width: 105px; font-weight: 700;}
	.team-photo img { width: 242px; height: 242px;}
	.team-title { font-size: 22px;}
	.br-radius-24 { border-radius: 24px; }
	.fees-table tr td:last-child { text-align: center; width: 30%;}
	.no-title .page-sub-title { display: none; visibility: hidden; }
	.contact-img { height: 175px; object-fit: cover; object-position: center;}

	/*== Common Styles ==*/

/*== Responsive ==*/
@media (min-width: 576px) {
	.block-content { max-width: 540px; }
	.contact-img { height: 400px;}
	.foot-block { width: 95px;}
}
@media (min-width: 768px) {
	body { font-size: 18px; }
	.fs-large { font-size: 18px !important; }
	.block-content { max-width: 720px; }
	.brand-logo img { max-width: 100px; max-height: 50px; }
	.mobile-review-strip { display: none; visibility: hidden;}
	.contact-box { min-height: 360px;}
	.foot-block { width: 105px;}
	.fees-table .sub-title3 { font-size: 26px; }
	.fees-table tr td:last-child { width: 20%;}
	.hero-inner-banner .banner-slogan { height: 416px;}
	.foot-link-boxes a {font-size: 32px; }
	.site-form { font-size: 1.14rem; }
	.star-img-yellow { width: 107px; }
}
@media (min-width: 992px) {
	.fs-large { font-size: 22px !important; }
	.block-content { max-width: 600px; }
	.brand-logo img { max-width: 100%; max-height: inherit; }
	.head-btn { font-family: var(--font-title); font-weight: 500; font-size: 22px; line-height: 1.2; padding: 8px 22px;}
	.big-btn { font-size: 22px; max-width: 400px; }
	.hw-title { font-size: 22px;}
	.hw-icon img { width: auto;}
	.star-img-blue { width: 275px; }
	.contact-box { min-height: 560px;}
	.contact-img { height: 560px;}
	.review-text { font-size: 14px; }
	.hero-inner-banner .banner-slogan { height: 496px;}
	.foot-link-boxes a {font-size: 36px; }
	.star-img-yellow { width: 137px; }
}
@media (min-width: 1200px) {
	.hero-inner-banner .banner-slogan { height: 516px;}
	.review-text { font-size: 16px; }
	.star-img-yellow { width: 147px; }
}
@media (min-width: 1400px) {
	.review-text { font-size: 18px; }
}
@media (max-width: 767px) {
	.head-btn { padding: 10px 13px 10px 14px; height: 42px;}
	/* .phone-btn { width: 42px; height: 42px; } */
	.navbar-toggler { padding: 13px 12px;}
	.desktop-review-strip { display: none; visibility: hidden;}
	.review-strip { padding: 10px 0px;}
	.star-img-yellow { margin-top: -5px; width: 97px; }
	.review-strip a { color: var(--white-color); text-decoration: none;}
	.page-sub-title { font-size: 26px; text-shadow: none;}
	.star-img-blue { width: 175px; }
	.hero-banner .text-primary, .hero-banner .text-secondary, .hero-inner-banner .text-primary, .hero-inner-banner .text-secondary { color: var(--white-color) !important; }
	.banner-slogan::after { position: absolute; content: ''; background: var(--dark-color); opacity: 0.6; width: 100%; height: 100%; z-index: 0;}
	.fees-table tr td:last-child { width: 35%;}
	.g-recaptcha { margin-left: auto;}	
	.contact-map .btn { margin-top: 215px;}
}
@media (max-width: 575px) {
	.review-text { font-size: 14px; }
	.star-img-yellow { margin-top: -3px; width: 84px; }
	.page-title { font-size: 32px;}
	.page-sub-title { font-size: 22px;}
}
/*== Responsive end ==*/