h1, h2, h3, h4, h5, h6 {
    color: #013754;
}

p {
    color: #747474;
}

.grecaptcha-badge {
    display: none;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 0.15em;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"]::before {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 10.44'%3E%3Cpath id='Icon_awesome-check' data-name='Icon awesome-check' d='M4.755,14.812l-4.55-4.55a.7.7,0,0,1,0-.99l.99-.99a.7.7,0,0,1,.99,0L5.25,11.347l6.565-6.565a.7.7,0,0,1,.99,0l.99.99a.7.7,0,0,1,0,.99l-8.05,8.05A.7.7,0,0,1,4.755,14.812Z' transform='translate(0 -4.577)' fill='%23013754'/%3E%3C/svg%3E%0A");
	display: block;
	width: 20px;
	height: 20px;
	text-align: center;
	transform: scale(0);
	transform-origin: center center;
	transition: 120ms transform ease-in-out;
}

input[type="checkbox"]:checked::before {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}

input[type="checkbox"]:disabled {
	opacity: 0.6;
}

input[type="checkbox"]:disabled ~ span {
	opacity: 0.6;
}

input[type="checkbox"]:hover {
	cursor: pointer;
}

input[type="checkbox"].error {
	border-color: var(--error-color);
	margin-bottom: 8px;
}

.checkbox-control label {
	display: flex;
	align-items: center;
}

.checkbox-control .wpcf7-list-item {
	margin-left: 0;
}

input[type="range"] {
    width: 100%;
	-webkit-appearance: none;
    appearance: none;
	margin-right: 15px;
	height: 7px;
	border-radius: 5px;
	background-image: linear-gradient(#013754, #013754);
	background-size: 0% 100%;
	background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.04);
}

input[type="range"]:hover {
	cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background: #fff;
	border: 2.5px solid #013754;
	cursor: grab;
	box-shadow: 0 0 2px 0 #555;
	transition: background .3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
	-moz-appearance: none;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background: #fff;
	border: 2.5px solid #013754;
	cursor: grab;
	box-shadow: 0 0 2px 0 #555;
	transition: background .3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
	background: #013754;
}

input[type="range"]::-moz-range-thumb:hover {
	background: #013754;
}

input[type="range"]::-ms-thumb:hover {
	background: #013754;
}

input[type="range"]::-webkit-slider-runnable-track  {
	-webkit-appearance: none;
	box-shadow: none;
	border: none;
	background: transparent;
}

input[type="range"]::-moz-range-track {
	-webkit-appearance: none;
	box-shadow: none;
	border: none;
	background: transparent;
}

input[type="range"]::-ms-track {
	-webkit-appearance: none;
	box-shadow: none;
	border: none;
	background: transparent;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    display: block;
    border: 1px solid #9d8e82;
    border-radius: 0;
    background: transparent;
    padding: 15px 20px;
    background-color: #f7f7f7;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    background-color: #ffffff;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-col {
    width: 100%;
}

.form-control {
    margin-top: 15px;
}

.form-control,
.form-control .select-wrapper {
    position: relative;
}

.form-control span {
    display: block;
    margin-bottom: 8px;
}

.form-control select  {
    appearance: none;
    font-size: 16px;
    line-height: 16px;
    height: 58px;
    width: 100%;
    display: block;
    border: 1px solid #9d8e82;
    border-radius: 0;
    background: transparent;
    padding: 15px 20px;
    background-color: #f7f7f7;
}

.form-control .select-wrapper .chevron {
    position: absolute;
    line-height: 0;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.form-control input[type="text"] {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    display: block;
    border: 1px solid #9d8e82;
    border-radius: 0;
    background: transparent;
    padding: 15px 20px;
    background-color: #f7f7f7;
}

.form-control .legend {
    display: inline-block;
    margin-top: 10px;
}

.form-col label span {
    color: #676767;
    display: block;
    margin-bottom: 5px;
}

span.error {
    font-size: 14px;
    color: #d11a2a !important;
}

input.error {
    border-color: #d11a2a;
    margin-bottom: 5px;
}

.radio-wrapper {
    display: flex;
    align-items: center;
}

.control-radio {
    display: flex;
    align-items: center;
    margin-right: 15px;
    max-width: inherit;
    width: inherit;
}

.control-radio span {
    margin-bottom: 0;
    color: #747474;
}

input[type="radio"] {
    -webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 22px;
	height: 22px;
	border: 1px solid currentColor;
	border-radius: 50%;
	margin-right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

input[type="radio"]::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	background-color: #013754;
}

input[type="radio"]:checked {
	border-color: #013754;
}

input[type="radio"]:checked::before {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
}

input[type="radio"]:hover {
	cursor: pointer;
}

@media only screen and (max-width: 999px) {

    .form-row {
        flex-direction: column;
    }

    .sm-column-reverse .row_col_wrap_12_inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }    
}

@media only screen and (max-width: 999px) and (min-width: 450px) {
    .partners-img-grid .vc_col-sm-6 {
        width: 50% !important;
    }
}

.img-with-aniamtion-wrap,
.img-with-aniamtion-wrap .inner,
.img-with-aniamtion-wrap .inner .hover-wrap,
.img-with-aniamtion-wrap .inner .hover-wrap .hover-wrap-inner,
.img-with-aniamtion-wrap .inner .hover-wrap .hover-wrap-inner img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 500px) {
    .xs-max-width-80percent {
        max-width: 80% !important;
        margin: 0 auto !important;
    }
}

@media only screen and (max-width: 999px) {
    .sm-column-reverse .row_col_wrap_12_inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }    
}

.height-100percent .vc_column-inner,
.height-100percent .vc_column-inner .wpb_wrapper {
    height: 100%;
} 

.v-center-left-column-inner .vc_column-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.separator-top {
    padding-top: 120px !important;
}

.separator-bottom {
	padding-bottom: 120px !important;
}

.separator-top-bottom {
	padding-top: 120px !important;
	padding-bottom: 120px !important;
}

.break-space-60px {
    margin-bottom: 60px !important;
}

.break-space-45px {
    margin-bottom: 45px !important;
}

.break-space-30px {
    margin-bottom: 30px !important;
}

@media only screen and (max-width: 999px){
    .sm-break-space-60px {
        margin-bottom: 60px !important;
    }	
}

@media only screen and (max-width: 991px) and (min-width: 767px) {
	.separator-top {
		padding-top: 100px !important;
	}

	.separator-bottom {
		padding-bottom: 100px !important;
	}

	.separator-top-bottom {
		padding-top: 100px !important;
		padding-bottom: 100px !important;
	}		
}

@media only screen and (max-width: 767px) {
	.separator-top {
		padding-top: 80px !important;
	}

	.separator-bottom {
		padding-bottom: 80px !important;
	}

	.separator-top-bottom {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}		
}

/* --- HEADER--- */

.material #header-secondary-outer>.container>nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

body.material #header-secondary-outer nav>.sf-menu {
    width: 66.666667%;
}

#header-outer ul.sf-menu>li.menu-item-has-icon>a i  {
    font-size: 14px;
    line-height: 24px;
    margin-right: 10px;
}

#header-outer ul.sf-menu>li.menu-item-has-icon>a i.fa-envelope-o::before {
    content: '\f0e0' !important;
}

#header-secondary-outer #social {
    width: 33.333333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* --- ANIMATIONS --- */

.animate-up-down {
    animation: move-up-down 1s ease-in-out infinite forwards;
}

@keyframes move-up-down {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

/* --- MAIN SLIDER --- */

div[id*="swiper-slider"] {
    margin-bottom: 0;
}

div[id*="swiper-slider"] .swiper {
    width: 100%;
    min-height: 600px;
    height: 60vh;
}

div[id*="swiper-slider"] .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: 100% 50%;
}

div[id*="swiper-slider"] .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

div[id*="swiper-slider"] .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev, 
.swiper-rtl .swiper-button-next {
    left: 30px !important;
}

.swiper-button-next, 
.swiper-rtl .swiper-button-prev {
    right: 30px !important;
}

.swiper-button-next, 
.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #9d8e82 !important;
}

.main-slider-item .info-wrapper {
    max-width: 100%;
    position: relative;
}

@media only screen and (min-width: 1000px) {
    .main-slider-item {
        max-width: 1425px;
        width: 100%;
        padding: 0 90px;
    }

    .main-slider-item .info-wrapper {
        max-width: 50%;
    }

    div[id*="swiper-slider"] .swiper-slide {
        background-position: 80% 50%;
    }
}

@media only screen and (min-width: 690px) and (max-width: 999px) {
    .main-slider-item {
        max-width: 600px;
        padding: 0px;
    }

    .main-slider-item .info-wrapper {
        max-width: 80%;
    }

    div[id*="swiper-slider"] .swiper-slide {
        background-position: 70% 50%;
    }
}

@media only screen and (max-width: 767px) {
    .swiper-button-next, 
    .swiper-button-prev {
        display: none !important;
    }
}

@media only screen and (max-width: 690px) {
    .main-slider-item {
        max-width: 320px;
        padding: 0px;
    }

    div[id*="swiper-slider"] .swiper-slide {
        background-position: 70% 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 690px) {
    .main-slider-item {
        max-width: 420px;
        padding: 0px;
    }
}

.main-slider-item .info-wrapper .tags {
    margin-bottom: 12px;
}

.main-slider-item .info-wrapper .tags span {
    font-size: 19px;
    line-height: 29px;
    color: #9c8f81;
    font-weight: 600;
}

.main-slider-item .info-wrapper .title h1 {
    color: #fff;
    text-transform: uppercase;
}

.main-slider-item .info-wrapper .desc {
    margin-top: 18px;
}

.main-slider-item .info-wrapper .desc p {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}

.main-slider-item .info-wrapper .link {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-slider-item .info-wrapper .link a {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    padding: 11px 25px;
    background-color: #9d8e82;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.main-slider-item .info-wrapper .link a:hover {
    background-color: #013654;   
}

/* --- INFO-BOX-ICON --- */ 

.info-box-icon {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;   
}

.info-box-icon .main-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.info-box-icon .main-body .icon-wrapper {
    height: 50px;
    width: auto;
    position: relative;
    display: block;
}

.info-box-icon .main-body .icon-wrapper a {
    display: block;
    height: 100%;
    width: 100%;
}

.info-box-icon .main-body .icon-wrapper a:hover {
    cursor: pointer;
}

.info-box-icon .main-body .icon-wrapper img {
    height: 100%;
    margin: 0;
}

.info-box-icon .main-body .info-wrapper {
    margin-top: 30px;
}

.info-box-icon .main-body .title {
    font-weight: 700;
    margin: 0;
}

.info-box-icon .main-body .desc {
    margin-top: 15px;
    margin-bottom: 0;
}

.info-box-icon .link-wrapper {
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
}

.info-box-icon .link-wrapper a:hover {
    color: #013754;
}

.info-box-icon .link-wrapper a.style-2  {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    padding: 11px 25px;
    background-color: #9d8e82;
    border: 1px solid #9d8e82;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.info-box-icon .link-wrapper a.style-2:hover {
    background-color: #013654;
    border-color: #013654;
    color: #fff;  
}

.info-box-icon.center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.info-box-icon.center .main-body {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}

/* --- BUTTONS --- */

.custom-button {
    margin-bottom: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.custom-button.left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.custom-button.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.custom-button.right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; 
}

.cf7mls-btns .cf7mls_next.action-button,
.cf7mls-btns .cf7mls_back.action-button,
.btn-style-1,
.btn-style-2 {
    font-family: "Roboto", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff !important;
    padding: 11px 25px !important;
    background-color: #9d8e82;
    border: 1px solid #9d8e82;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-style-3 {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    padding: 11px 25px;
    background-color: transparent;
    border: 1px solid #fff;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;  
}

.btn-style-4 {
    font-family: "Roboto", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff !important;
    padding: 11px 25px !important;
    background-color: #013654;
    border: 1px solid #013654;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-style-1:hover {
    cursor: pointer;
    background-color: #013654;
    border-color: #013654;
    color: #fff;
}

.btn-style-2:hover {
    cursor: pointer;
    background-color: transparent;
    border-color: #013654;
    color: #013654;
}

.btn-style-3:hover {
    cursor: pointer;
    background-color: #fff;
    color: #9d8e82;
}

.btn-style-4:hover {
    cursor: pointer;
    border-color: #9d8e82;
    background-color: #9d8e82;
    color: #fff;
}

.btn-style-1:disabled:hover,
.btn-style-2:disabled:hover,
.btn-style-3:disabled:hover,
.btn-style-4:disabled:hover {
    cursor: not-allowed;
}

.btn-style-1:disabled,
.btn-style-2:disabled,
.btn-style-3:disabled,
.btn-style-4:disabled {
    opacity: 0.6;
}

@media only screen and (max-width: 690px) {
    .cf7mls-btns .cf7mls_next.action-button,
    .cf7mls-btns .cf7mls_back.action-button {
        width: 100%;
    }
}

/* --- FOOTER --- */ 

#footer-outer #footer-widgets .col p {
    color: #fff;
}

.footer-certificate-wrapper {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-certificate-wrapper .img-wrapper {
    width: 53px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-certificate-wrapper .img-wrapper img {
    width: 100%;
    margin-bottom: 0;
}

.footer-certificate-wrapper .info-wrapper  {
    width: 100%;
    padding: 0 20px;
}

.footer-certificate-wrapper .info-wrapper p {
    font-size: 13px;
    line-height: 18px;
    color: #9d8e82 !important;
    padding-bottom: 0 !important;
}

#footer-outer .widget {
    margin-bottom: 15px;
}

#footer-outer .widget h1,
#footer-outer .widget h2,
#footer-outer .widget h3,
#footer-outer .widget h4,
#footer-outer .widget h5,
#footer-outer .widget h6 {
    color: #9d8e82 !important;
    margin-bottom: 0;
}

#footer-outer #footer-widgets .col ul li a:hover {
    opacity: 1 !important; 
    color: #9d8e82 !important;
}

.get-directions {
    opacity: 1 !important;
    text-decoration: underline;
}

.get-directions:hover {
    text-decoration: none;
}

@media only screen and (max-width: 500px) {
    #footer-widgets .container .col {
        padding: 0 15px;
    }
}

#header-outer .menu-item-btn-style-button_accent-color> a:hover::before {
    background: #013654;
}

/* --- CONTACT FORM 7 --- */ 

.form-grid .form-col-2 {
    margin: 0 -7.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-grid .form-col-2 .form-wrapper {
    width: 50%;
    padding: 0 7.5px;
}

.form-grid .form-wrapper {
    margin-bottom: 15px;
}

.form-grid .form-wrapper .wpcf7-form-control-wrap {
    width: 100%;
}

.form-grid .form-wrapper .wpcf7-form-control-wrap input,
.form-grid .form-wrapper .wpcf7-form-control-wrap textarea {
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    display: block;
    border: 1px solid #9d8e82;
    border-radius: 0;
    background: transparent;
    padding: 15px 20px;
    background-color: #f7f7f7;
}

.form-grid .form-wrapper .wpcf7-form-control-wrap textarea {
    max-height: 145px;
}

.form-grid .form-wrapper .wpcf7-form-control-wrap select {
    font-size: 16px;
    line-height: 26px;
    color: #9d8e82;
    height: 58px;
    width: 100%;
    display: block;
    border: 1px solid #9d8e82;
    border-right: none;
    border-radius: 0;
    background: transparent;
    padding: 15px 20px;
    background-color: #f7f7f7;
}

.form-grid .select-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.form-grid .select-wrapper::after {
    content: "";
    display: block;
    position: relative;
    border: 1px solid #9d8e82;
    border-left: none;
    height: 56px;
    width: 10px;
    background-color: #f7f7f7;
}

.form-grid .select-wrapper .wpcf7-form-control-wrap span {
    width: calc(100% + 10px);
}

.form-grid .form-wrapper .wpcf7-form-control-wrap span {
    margin-top: 12px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-grid .form-wrapper .wpcf7-form-control-wrap span.wpcf7-not-valid-tip  {
    color: #dc3232;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
    background-color: #ffb900;
    color: #3b3b3b;
}

.wpcf7 form.sent .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;  
    background-color: #46b450;
    color: #fff; 
}

.form-grid .form-wrapper .wpcf7-form-control-wrap input::placeholder {
    color: #9d8e82;
}

.form-grid .form-wrapper .wpcf7-form-control-wrap textarea::placeholder {
    color: #9d8e82;   
}

.form-grid .form-wrapper input[type=submit] {
    font-weight: 400;
}

.form-grid .form-wrapper input[type=submit]:hover {
    background: #013654;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;   
    -webkit-box-shadow: none !important;   
    box-shadow: none !important;
}

.checkbox-control {
    margin: 30px 0;
}

.checkbox-control .wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}

.checkbox-control .wpcf7-acceptance .wpcf7-list-item input {
    margin-left: 0;
}

.checkbox-control .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    color: unset;
}

.checkbox-control .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a:hover {
    color: #013654;
}

/* --- CONTACT BOX --- */ 

.contact-box-wrapper {
    margin-bottom: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-box-wrapper .img-wrapper {
    margin-top: 5px;
    height: 50px;
    width: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-box-wrapper .img-wrapper img {
    height: 100%;
    margin-bottom: 0;
}

.contact-box-wrapper .info-wrapper {
    padding-left: 30px;
}

.contact-box-wrapper .info-wrapper .title {
    margin-bottom: 4px;
}

.contact-box-wrapper .desc-wrapper p {
    padding-bottom: 10px;
}

.contact-box-wrapper .desc-wrapper a:hover {
    color: #013654; 
}

/* ---  FANCY UNORDERED LIST--- */ 

.nectar-fancy-ul ul li .icon-default-style[class^=icon-] {
    font-size: 12px;
    line-height: 22px;
}

.nectar-fancy-ul ul li {
    padding-left: 25px;
}

.nectar-fancy-ul ul li:last-child {
    margin-bottom: 0;
}

/* --- LEGAL INFO --- */

.legal-info a {
    font-size: 12px;
    line-height: 17px;
    color: #fff;
}

.legal-info a:hover {
    color: #9d8e82;
}

#header-outer {
    transform: translateY(0) !important;
}

@media only screen and (max-width: 690px) {
    body[data-header-format].material #header-secondary-outer {
        display: block;
        height: auto;
    }

    #header-secondary-outer #social {
        display: none;
    }

    body.material #header-secondary-outer nav>.sf-menu {
        width: 100%;
    }
}

/* ---  CREDIT SIMULATOR  --- */

.credit-simulator {
    margin-bottom: 0 !important;
}

.credit-simulator .wrapper {
    position: relative;
}

.credit-simulator .swiper {
    min-height: 600px;
    height: 70vh;
}

.credit-simulator .swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.credit-simulator .swiper .swiper-slide img {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.credit-simulator .simulator {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
}

.credit-simulator .simulator .inner {
    max-width: 1425px;
    padding: 0 90px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.credit-simulator .simulator form {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
}

.credit-simulator form .header-form {
    font-size: 24px !important;
    font-weight: 600;
    margin-bottom: 15px;
    color: #013754;
}

.credit-simulator .simulator span {
    font-size: 16px;
    line-height: 1.3em;
    display: block;
}

.credit-simulator form > .form-control {
    margin-top: 0;
}

.credit-simulator form .form-control input[type="text"] {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.credit-simulator form .btn-style-4 {
    margin-top: 25px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .credit-simulator .swiper {
        height: 100vh;
    }
}

@media only screen and (max-width: 1000px) {
    .credit-simulator .simulator .inner {
        padding: 0 20px;
    }
}

/* --- POPUP SIMULATOR --- */

.mfp-bg {
    z-index: 10000 !important;
}

.mfp-wrap {
    z-index: 10001 !important;
}

.white-popup {
    position: relative;
    background: #FFF;
    width: 100%;
    margin: 20px auto;
    min-width: 250px;
    max-width: 744px;
    padding: 40px 0px;
}

.simulator-popup .header {
    margin-bottom: 35px;
    padding: 0px 35px;
}

.simulator-popup .header h3 {
    text-transform: uppercase;
}

.simulator-popup .header p {
    padding: 0;
}

.simulator-popup .form-container {
    padding: 0px 35px;
}

.simulator-popup .form-container .info-message {
    padding: 0;
    color: #9d8e82;
    margin-bottom: 30px;
}

.simulator-popup .form-container .terms-conditions-wrapper {
    padding: 25px;
    max-height: 25vh;
    overflow-y: auto;
    border: 1px solid #9d8e82;
    background-color: #f8f8f8;
    margin-bottom: 25px;
}

.simulator-popup .cf7mls-btns .cf7mls_next.action-button,
.simulator-popup .cf7mls-btns .cf7mls_back.action-button {
    margin-bottom: 0 !important;
}

.simulator-popup .checkbox-control {
    margin-top: 0;
    margin-bottom: 8px;
}

.simulator-popup .terms-content p span {
    color: #747474;
}

.simulator-popup button[type="submit"] img {
    width: 20px;
    margin-left: 5px;
}

@media only screen and (max-width: 690px) {
    .simulator-popup button[type="submit"] {
        width: 100%;
    }
}

/* --- COMMERCIAL CONTACTS --- */

.commercial-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}

.commercial-contacts .email a {
    display: inline-block;
    padding: 6px 20px;
    text-align: center;
    background-color: #9d8e82;
    color: #fff;
    transition: opacity 0.2s ease-in-out;
}

.commercial-contacts .email a:hover {
    opacity: 0.8;
}

.commercial-contacts .whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d466;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    transition: opacity 0.3s ease-out;
}

.commercial-contacts .whatsapp a:hover {
    text-decoration: none;
    opacity: 0.8;
}

@media only screen and (max-width: 690px) {
    .commercial-contacts {
        flex-direction: column;
    }

    .commercial-contacts .email,
    .commercial-contacts .whatsapp {
        display: block;
        width: 100%;
    }

    .commercial-contacts span a {
        width: 100%;
    }
}

/* --- COMMERCIAL PROFILE --- */

.commercial-profile .wrapper {
	background-color: #013754;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 25px;
}

.commercial-profile .user-photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 25px;
}

.commercial-profile .user-photo img {
	border: 6px solid #9d8e82;
	border-radius: 120px;
	width: 120px;
	height: 120px;
	background-color: #fff;
	object-fit: cover;
}

.commercial-profile .user-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
}

.commercial-profile .user-meta .name {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
}

.commercial-profile .user-meta .job {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 15px;
	color: #9d8e82;
}

.commercial-profile .user-meta a {
	text-decoration: none;
	color: #9d8e82;
}

.commercial-profile .user-meta a:hover {
	text-decoration: underline;
}

.commercial-profile .user-meta .address {
	margin-top: 15px;
	text-align: center;
}

.commercial-profile .user-meta .address p {
	color: #fff;
}

.commercial-profile .user-meta .whatsapp {
    margin-top: 15px;
}

.commercial-profile .user-meta .whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d466;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease-out;
    border-radius: 4px;
    border: 2px solid #25d466;
}

.commercial-profile .user-meta .whatsapp a:hover {
    text-decoration: none;
    border-color: #07742f;
}

/* --- COMMERCIAL FORM --- */

#commercialsForm .wpcf7 {
    padding: 40px 25px;
}

#commercialsForm .info-message {
    padding: 0;
    color: #9d8e82;
    margin-bottom: 30px;
}

#commercialsForm .terms-conditions-wrapper {
	padding: 25px;
    max-height: 25vh;
    overflow-y: auto;
    border: 1px solid #9d8e82;
    background-color: #f8f8f8;
    margin-bottom: 25px;
}

#commercialsForm .cf7mls-btns .cf7mls_next.action-button,
#commercialsForm .cf7mls-btns .cf7mls_back.action-button {
    margin-bottom: 0 !important;
}

#commercialsForm .checkbox-control {
    margin-top: 0;
    margin-bottom: 8px;
}

#commercialsForm .terms-content p span {
    color: #747474;
}

#commercialsForm button[type="button"]:hover,
#commercialsForm button[type="submit"]:hover {
    transform: translateY(0) !important;
    box-shadow: none !important;
}

#commercialsForm button[type="submit"] {
    padding: 11px 25px !important;
    margin-bottom: 0 !important;
    display: inline-flex;
    align-items: center;
}

#commercialsForm button[type="button"] img,
#commercialsForm button[type="submit"] img {
    width: 20px;
    margin-left: 5px;
    margin-bottom: 0;
}

/* --- ARCHIVE POSTS --- */

.archive-posts {
    background-color: #f7f7f7;
}

.archive-posts .heading h6 {
    color: #9d8e82;
    margin-bottom: 15px;
}

.archive-posts .heading h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.archive-posts .heading p {
    padding: 0;
    margin: 0;
}

.archive-posts .posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 45px;
}

.archive-posts .posts-container .post-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

.archive-posts .pagination {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}

.post-item {
    background-color: #ffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 10%);
}

.post-item .img-holder {
    height: 250px;
    width: auto;
    overflow: hidden;
    transform: rotate3d(0);
}

.post-item .img-holder img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    margin: 0 !important;
}

.post-item:hover .img-holder img {
    transform: scale(1.1);
}

.post-item .info {
    padding: 25px;
}

.post-item .info span {
    color: #9d8e82;
}

.post-item .info h5 {
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 15px;
}

.post-item .info p {
    padding-bottom: 0;
}

@media only screen and (max-width: 1000px) {
    .archive-posts .posts-container .post-item {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 768px) {
    .archive-posts .posts-container .post-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- SINGLE POST --- */

.single-post #sidebar h4 {
    font-size: 20px;
    line-height: 1.2;
    color: #013754;
    opacity: 1 !important;
    text-transform: uppercase;
}

.single-post #sidebar .widget_recent_entries h4 {
    margin-bottom: 25px;
}

.single-post #sidebar .widget_recent_entries ul li {
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e8e8e8;
    color: #013754;
}

.single-post #sidebar .widget_recent_entries ul li {
    margin-bottom: 8px;
}

.single-post #sidebar .widget_recent_entries ul li span {
    font-weight: 400;
    font-size: 14px;
    color: #9d8e82;
}

/* --- ARCHIVE POSTS SHORTCODE --- */

.archive-posts {
    margin-bottom: 0 !important;
}

.archive-posts > .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.archive-posts > .wrapper .post-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

@media only screen and (max-width: 1000px) {
    .archive-posts > .wrapper .post-item {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 768px) {
    .archive-posts > .wrapper .post-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}