/*
Theme Name: Erizo
Author: Erizo.pl
*/

:root {
	/* FONTS */
	--font-size-1: 40px;
	--font-size-2: 40px;
	--font-size-3: 36px;
	--font-size-4: 30px;
	--font-size-5: 28px;
	--font-size-6: 20px;
	--font-size-7: 18px;
	--font-size-8: 16px;
	--font-size-9: 14px;
	--font-size-10: 12px;


	/* COLORS */
	--main-bg-color: #f4f8fa;
	--second-bg-color: #c6ddf7;
	--font-color: #1b3c76;
	--primary-color: #184694;

	--add-color-1: #f4f8fa;
	--add-color-2: #c6ddf7;
	--add-color-3: #456784;
	--add-color-4: #184694;
	--add-color-5: #a5a5a5;
	--add-color-6: #29468a;
	--add-color-7: #70abee;
	--add-color-8: #98c4e9;
	--add-color-9: #d8e6ff;
	--add-color-10: #456784;

}

*:focus{
	outline: none!important;
}
html {
	margin: 0;
	overflow-x: hidden;
}

body {
	font-size: var(--font-size-8);
	color: var(--font-color);
	background-color: var(--main-bg-color);
	margin: 0;
	font-family: "kade", sans-serif;
}
form * {
	font-family: "kade", sans-serif;
}

section {
	position: relative;
	z-index: 0;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}
p {
	margin: 0;
}
h1,h2,h3,h4,h5,h6{
    font-size: var(--font-size-4);
    font-weight: 400;
    margin: 0 0 20px;
}
.er-title-1 {
	font-size: var(--font-size-1);
	font-weight: 400;
	margin: 0 0 20px;
	line-height: 1.2;
}

.er-title-2 {
	font-size: var(--font-size-2);
	font-weight: 400;
	margin: 0 0 20px;
	line-height: 1.2;
}

.er-title-3 {
	font-size: var(--font-size-3);
	font-weight: 400;
	margin: 0 0 20px;
	line-height: 1.2;
}

.er-title-4 {
	font-size: var(--font-size-4);
	font-weight: 400;
	margin: 0 0 20px;
}

.er-title-5 {
	font-size: var(--font-size-5);
	font-weight: 400;
	margin: 0 0 20px;
}

.er-title-6 {
	font-size: var(--font-size-6);
	font-weight: 400;
	margin: 0 0 20px;
}
.er-title-7 {
	font-size: var(--font-size-7);
	font-weight: 400;
	margin: 0 0 20px;
}
.er-title-8 {
	font-size: var(--font-size-8);
	font-weight: 400;
	margin: 0 0 20px;
}
.er-title-9 {
	font-size: var(--font-size-9);
	font-weight: 400;
	margin: 0 0 20px;
}
.er-title-10 {
	font-size: var(--font-size-10);
	font-weight: 400;
	margin: 0 0 20px;
}

img {
	display: block;
	user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	max-width: 100%;
	height: auto;
}
.color-1, .color-1 *{
	color: var(--add-color-1);
}
.color-2, .color-2 *{
	color: var(--add-color-2);
}
.color-3, .color-3 *{
	color: var(--add-color-3);
}
.color-4, .color-4 *{
	color: var(--add-color-4);
}

.bg-color-1 {
	background-color: var(--add-color-1);
}
.bg-color-2 {
	background-color: var(--add-color-2);
}
.bg-color-3 {
	background-color: var(--add-color-3);
}
.bg-color-4 {
	background-color: var(--add-color-4);
}
.white-font,
.white-font *,
.white-font .desc,
.white-font .desc *{
	color: #F4F8FA;
}

/* CONTAINER */
.container{
    width: 100%;
}
@media screen and (min-width:1680px){
    .container{
        max-width: 1580px;
    }
}
@media screen and (max-width:1679px){
    .container{
        max-width: 1450px;
    }
}
@media screen and (max-width:1499px){
    .container{
        max-width: 1300px;
    }
}
@media screen and (max-width:1399px){
    .container{
        max-width: 1220px;
    }
}
@media screen and (max-width:1299px){
    .container{
        max-width: 1150px;
    }
}

@media screen and (max-width:1099px){
    .container{
        max-width: 1000px;
    }
}
@media screen and (max-width:992px){
    .container{
        max-width: 950px;
    }
}
@media screen and (max-width:991px){
    .container{
        padding: 0 30px;

    }
}
@media screen and (max-width:767px){
    .container{
        padding: 0 15px;
    }
}

/* TEXT ALIGN */

.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-justify {
	text-align: justify;
}



.fw-300{
	font-weight: 300;
}
.fw-400 {
	font-weight: 400;
}
.fw-500 {
	font-weight: 500;
}
.fw-600 {
	font-weight: 600;
}
.fw-700{
	font-weight: 700;
}
.fw-800{
	font-weight: 800;
}
.fw-900 {
	font-weight: 900;
}

/* MARGINS */
.m-0 {
    margin: 0;
}
.mt-0 {
	margin-top: 0;
}
.mb-0 {
	margin-bottom: 0;
}

.mt-5{
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-30{
	margin-top: 30px;
}

.mt-45 {
	margin-top: 45px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-5{
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20{
	margin-bottom: 20px;
}

.mb-30{
	margin-bottom: 30px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-60 {
	margin-bottom: 60px;
}
/* Paddings */
.dp {
    padding: var(--big-padding) 0;
}
.dpt{
    padding-top: var(--big-padding);
}
.dpb{
    padding-bottom: var(--big-padding);
}
.pt-0{
	padding-top: 0;
}
.pb-0{
	padding-bottom: 0;
}

/* DESCRIPTION */

.desc * {
    color: var(--font-color);
    margin: 0;
    line-height: 1.3;
}
.desc *:not(.wp-playlist *, .gallery *) ~ *:not(.wp-playlist *, .gallery *, li){
    margin: 20px 0 0;
}
.desc ul li,
.desc ol li {
	margin-top: 10px;
}
.desc img.alignleft {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-top: 15px;
}

.desc img.alignright {
	float: right;
	margin-left: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.desc img.aligncenter{
	margin: 15px auto 0;
}
.desc .gallery .gallery-caption{
	margin-top: 3px;
}
.desc .gallery .gallery-item a{
	position: relative;
	display: block;
	width: 100%;
	padding-top: 100%;
}
.desc .gallery .gallery-item img {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	object-position: center;
	border: none;
	border-radius: var(--border-radius) ;
}
.desc .gallery {
	margin: 0 -5px;
	display: flex;
	flex-wrap: wrap;
}
.desc .gallery dl {
	padding: 5px;
}
.desc .gallery * {
	margin: 0;
}
.desc .gallery.gallery-columns-1 dl {
	min-width: 100%;
	width: 100%;
}
.desc .gallery.gallery-columns-2 dl {
	min-width: 50%;
	width: 50%;
}
.desc .gallery.gallery-columns-3 dl {
	min-width: 33.333%;
	width: 33.333%;
}
.desc .gallery.gallery-columns-4 dl {
	min-width: 25%;
	width: 25%;
}
.desc .gallery.gallery-columns-5 dl {
	min-width: 20%;
	width: 20%;
}
.desc .gallery.gallery-columns-6 dl {
	min-width: 16.666%;
	width: 16.666%;
}
.desc .gallery.gallery-columns-7 dl {
	min-width: 14.285%;
	width: 14.285%;
}
.desc .gallery.gallery-columns-8 dl {
	min-width: 12.5%;
	width: 12.5%;
}
.desc .gallery.gallery-columns-9 dl {
	min-width: 11.111%;
	width: 11.111%;
}
.desc blockquote{
	padding: 30px;
	background-color: var(--second-bg-color);
	border-radius: var(--border-radius);
}
.desc hr {
	background-color: var(--primary-color);
	height: 2px;
	border: none;
	border-radius: var(--border-radius);
}
.desc .wp-playlist .mejs-duration,
.desc .wp-playlist .mejs-currenttime{
	color: #fff;
}
.desc .wp-playlist-light,
.desc .wp-playlist-light .wp-playlist-caption{
	background-color: transparent;
	color: var(--font-color);
}
.desc .wp-playlist-light .wp-playlist-playing{
	background-color: transparent;
	color: var(--font-color);
	font-weight: var(--fw-type-3);
}
.desc .wp-playlist {
	border-color: var(--contact-form-borders);
}
.desc .wp-playlist-item {
	border-bottom-color: var(--contact-form-borders);
}
.desc .mejs-time-float {
	background-color: var(--main-bg-color);
	color: var(--font-color);
}

@media screen and (max-width: 1199px) {
	.desc .gallery.gallery-columns-1 dl {
		min-width: 100%;
		width: 100%;
	}
	.desc .gallery.gallery-columns-2 dl {
		min-width: 50%;
		width: 50%;
	}
	.desc .gallery.gallery-columns-3 dl {
		min-width: 33.333%;
		width: 33.333%;
	}
	.desc .gallery.gallery-columns-4 dl {
		min-width: 25%;
		width: 25%;
	}
	.desc .gallery.gallery-columns-5 dl {
		min-width: 20%;
		width: 20%;
	}
	.desc .gallery.gallery-columns-6 dl {
		min-width: 16.666%;
		width: 16.666%;
	}
	.desc .gallery.gallery-columns-7 dl {
		min-width: 14.285%;
		width: 14.285%;
	}
	.desc .gallery.gallery-columns-8 dl {
		min-width: 14.285%;
		width: 14.285%;
	}
	.desc .gallery.gallery-columns-9 dl {
		min-width: 14.285%;
		width: 14.285%;
	}
	.desc img.alignleft {
		float: none;
		margin: var(--desc-margin);
	}
	.desc img.alignright {
		float: none;
		margin: var(--desc-margin);
	}
}

@media screen and (max-width: 991px) {
	.desc .gallery.gallery-columns-1 dl {
		min-width: 100%;
		width: 100%;
	}
	.desc .gallery.gallery-columns-2 dl {
		min-width: 50%;
		width: 50%;
	}
	.desc .gallery.gallery-columns-3 dl {
		min-width: 33.333%;
		width: 33.333%;
	}
	.desc .gallery.gallery-columns-4 dl {
		min-width: 25%;
		width: 25%;
	}
	.desc .gallery.gallery-columns-5 dl {
		min-width: 20%;
		width: 20%;
	}
	.desc .gallery.gallery-columns-6 dl {
		min-width: 20%;
		width: 20%;
	}
	.desc .gallery.gallery-columns-7 dl {
		min-width: 20%;
		width: 20%;
	}
	.desc .gallery.gallery-columns-8 dl {
		min-width: 20%;
		width: 20%;
	}
	.desc .gallery.gallery-columns-9 dl {
		min-width: 20%;
		width: 20%;
	}
}
@media screen and (max-width: 767px) {
	:root {
		--desc-margin: 15px 0 0;
	}
	.desc .gallery.gallery-columns-1 dl {
		min-width: 100%;
		width: 100%;
	}
	.desc .gallery.gallery-columns-2 dl {
		min-width: 50%;
		width: 50%;
	}
	.desc .gallery.gallery-columns-3 dl {
		min-width: 50%;
		width: 50%;
	}
	.desc .gallery.gallery-columns-4 dl {
		min-width: 33.333%;
		width: 33.333%;
	}
	.desc .gallery.gallery-columns-5 dl {
		min-width: 33.333%;
		width: 33.333%;
	}
	.desc .gallery.gallery-columns-6 dl {
		min-width: 25%;
		width: 25%;
	}
	.desc .gallery.gallery-columns-7 dl {
		min-width: 25%;
		width: 25%;
	}
	.desc .gallery.gallery-columns-8 dl {
		min-width: 25%;
		width: 25%;
	}
	.desc .gallery.gallery-columns-9 dl {
		min-width: 25%;
		width: 25%;
	}
}

/* other */
.w100 {
	width: 100%;
}
.bg{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.rel {
	position: relative;
}
.abs {
	position: absolute;
}
.z-10 {
	z-index: 10;
}
.inset-0 {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.none-event {
	pointer-events: none;
}

.ttu {
	text-transform: uppercase;
}

.def-btn a{
	display: inline-block;
	padding: 13px 22px;
	background-color: var(--add-color-1);
	color: var(--primary-color);
	border-radius: 50px;
	transition: .3s;
}
.def-btn a:hover{
	transform: scale(1.05);
}
/* SECTIONS */
.er-lang-switcher {
	position: fixed;
	z-index: 100;
	right: 0;
	top: 30%;
	background-color: var(--add-color-1);
	border-radius: 8px 0 0 8px;
	padding: 10px 5px;
	box-shadow: rgb(0 0 0 / 15%) 0px 1px 13px;
}
.er-lang-switcher a.glink {
	display: block;
}
.er-lang-switcher a.glink img {
	opacity: 1;
}
section.main-video-banner {
	padding: 0;
	position: relative;
}
section.main-video-banner video {
	position: relative;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center bottom;
}
section.main-video-banner::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-top: 5%;
	content: "";
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('./img/banner-after.svg');
	z-index: 10;
}
section.social-posts{
	padding: 120px 0;
}
section.social-posts .title-1 {
	margin-bottom: 50px;
}
section.social-posts .title-2 {
	margin: 0;
}
section.social-posts .second-part {
	margin-top: 170px;
}
section.social-posts .social-posts-slider .social-item-slide  {
	padding: 0 35px;
	position: relative;
}
section.social-posts .social-posts-slider .social-item-slide .item-img {
	width: 100%;
	padding-top: 111%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
section.social-posts .social-posts-slider .slick-list {
	overflow: unset;
}
section.social-posts .social-posts-slider .sub-title {
	text-align: center;
	margin-top: 30px;
}

section.home-calculator{
	padding: 120px 0 0;
}

section.home-calculator .abs-img-1 {
	position: absolute;
	bottom: 0;
	left: 0;
    width: 18%;
    height: 45%;
	background-position: right top;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('./img/calculator-abs-1.png');
	pointer-events: none;
	z-index: -1;
}
section.home-calculator .abs-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
    width: 20%;
    height: 60%;
	background-position: left top;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('./img/calculator-abs-2.png');
	pointer-events: none;
	z-index: -1;
}
section.home-calculator .range-wrapper {
	position: relative;
	margin-top: 75px;
}
section.home-calculator .range-wrapper .range-container {
	width: 70%;
	margin: 0 auto;
	position: relative;
}
section.home-calculator .range-wrapper .ui-slider-horizontal .ui-slider-handle{
    width: 80px;
    height: 42px;
    top: -24px;
    margin-right: 0;
    border: none;
    background: transparent;
    background-image: url('./img/range-icon.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-30px);
	transition: .3s;
	z-index: 20;
}
section.home-calculator .range-wrapper .ui-slider-horizontal {
	height: 3px;
	background: var(--add-color-3);
	border: none;
}
section.home-calculator .range-wrapper .ui-slider-horizontal .ui-widget-header{
	background: var(--add-color-3);
	border: none;
}
section.home-calculator .range-wrapper .range-icons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
	top: -11px;
    z-index: 10;
	width: calc(100% + 4px);
	margin: 0 -2px;
}

section.home-calculator .range-wrapper .range-icons .icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

section.home-calculator .range-wrapper .range-date {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 82.5%;
    margin: 0 auto -5px;
}
section.home-calculator .range-wrapper .range-date .item {
	margin: 45px 0 0;
	padding: 0 5px;
	text-align: center;
	min-width: 16.666%;
	width: 16.666%;
}
section.home-calculator .range-wrapper .range-date .item span{
	border: 2px solid var(--add-color-3);
	color: var(--primary-color);
	font-size: 14px;
	padding: 10px 15px;
	border-radius: 50px;
	transition: .3s;
	cursor: pointer;
	display: inline-block;
}
section.home-calculator .range-wrapper .range-date .item.active span {
	background-color: var(--add-color-2);
	border-color: var(--add-color-2);
}

section.home-calculator .text-slider {
	font-size: 40px;
    font-weight: 500;
    color: var(--add-color-2);
    text-align: center;
    height: 49px;
    overflow: hidden;
}
section.home-calculator .text-slider.primary-color {
	color: var(--primary-color);
}
section.home-calculator .text-slider .slider-wrapper {
	transition: .3s;
}
section.home-calculator .circle-title {
	font-size: 30px;
	font-weight: 500;
}
section.home-calculator .main-calculator {
	margin-top: 75px;
	margin-bottom: 40px;
}
section.home-calculator .calculator-desc *{
	font-size: var(--font-size-9);
	color: var(--add-color-5);
}
section.home-calculator{
	position: relative;
}
section.home-calculator::after {
	position: relative;
	width: 100%;
	padding-top: 4.2%;
	display: block;
	content: "";
	background-image: url('./img/calculator-after.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-top: 30px;
	bottom: 0;
	z-index: -1;
}

section.offer {
	background-color: var(--add-color-6);
	padding: 75px 0 100px;
}
section.offer .abs-img-2 {
	position: absolute;
	top: 15%;
	right: 0;
	pointer-events: none;
	background-image: url('./img/kumo-abs-2.png');
	background-position: left center;
    background-repeat: no-repeat; 
    background-size: cover;
    height: 120px;
    width: 160px;
	z-index: -1;
}
section.offer .abs-img-1 {
	position: absolute;
	bottom: 20%;
	left: 0;
	pointer-events: none;
	background-image: url('./img/kumo-abs-2.png');
	background-position: right center;
    background-repeat: no-repeat; 
	background-size: cover;
    height: 120px;
    width: 95px;
	z-index: -1;
}
section.offer video {
	width: 100%;
	height: 100%;
}
section.icons {
	padding: 100px 0 75px;
	background-color: var(--add-color-6);
}
section.icons .item img.icon {
	width: 110px;
	height: 110px;
	object-fit: contain;
	object-position: center;
	margin: 90px auto 75px;
}
section.icons .item .sub-title {
	font-size: var(--font-size-8);
	font-weight: 500;
	max-width: 140px;
	margin: 0 auto;
}
section.icons .icons-row {
	margin: 0 0 110px;
}
section.icons .abs-img-2 {
    position: absolute;
    top: 44%;
    right: 0;
    pointer-events: none;
    background-image: url('./img/kumo-abs-1.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120px;
    width: 240px;
	z-index: -1;
}
section.icons .abs-img-1 {
	position: absolute;
    top: 20%;
    left: 0;
    pointer-events: none;
    background-image: url('./img/kumo-abs-2.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120px;
    width: 150px;
	z-index: -1;
}
section.coop-options {
	background-color: var(--add-color-6);
	padding: 75px 0;
}
section.coop-options .title-wrapper {
	width: 50%;
	margin: 0 auto;
}
section.coop-options .abs-img-2 {
	position: absolute;
    top: 36%;
    right: 0;
    pointer-events: none;
    background-image: url('./img/kumo-abs-1.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    width: 250px;
	z-index: -1;
}
section.coop-options .abs-img-1 {
	position: absolute;
    top: 20%;
    left: 0;
    pointer-events: none;
    background-image: url('./img/kumo-abs-2.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;    
	height: 145px;
    width: 205px;
	z-index: -1;
}


section.coop-options .coop-row .item {
	background-color: var(--add-color-7);
	padding: 35px 60px;
	color: #fff;
	border-radius: 20px;
	margin-top: 30px;
	min-height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
section.coop-options .coop-row .item.second-type {
	background-color: var(--add-color-1);
	color: var(--primary-color)
}
section.coop-options .coop-row .item .desc * {
	color: #fff;
}
section.coop-options .coop-row .item.second-type .desc * {
	color: var(--primary-color)
}
section.coop-options .coop-row .item .desc-row {
	display: flex;
	margin: 30px -15px 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

section.coop-options .coop-row .item.second-type .def-btn a{
	background-color: var(--add-color-7);
	color: var(--add-color-1);
}
section.coop-options .coop-row .item .desc-row .desc-col {
	min-width: 46%;
	width: 46%;
	padding: 0 15px;
}
section.coop-options .coop-row .item .second-part {
	width: 100%;
	margin: 35px auto 0;
}
section.coop-options .coop-row .item .second-part .line {
	height: 1px;
	background-color: var(--add-color-1);
	margin-bottom: 20px;
}
section.coop-options .coop-row .item.second-type .second-part .line {
	background-color: var(--primary-color);
}
section.coop-options .second-part .second-part-row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -15px;
}
section.coop-options .second-part .second-part-row .title-col {
	min-width: 60%;
	width: 60%;
	padding: 0 15px;
}
section.coop-options .second-part .second-part-row .btn-col {
	min-width: 40%;
	width: 40%;
	padding: 0 15px;
	text-align: right;
}
section.faq{
	padding: 0 0 185px;
}
section.faq::before {
	display: block;
	position: relative;
	top: 0;
	background-image: url('./img/faq-before.svg');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 8%;
	content: "";
}
section.faq .faq-wrapper .faq-item{
	background-color: var(--add-color-2);
	padding: 45px 80px;
	margin-top: 30px;
	border-radius: 30px;
	transition: .3s;
}
section.faq .faq-wrapper .faq-item .sub-title{
	transition: .3s;
}
section.faq .faq-wrapper .faq-item.opened{
	background-color: var(--add-color-10);
	color: var(--add-color-1);
}
section.faq .faq-wrapper .faq-item.opened .sub-title{
	color: var(--add-color-1);
}
section.faq .faq-wrapper .faq-item .desc *{
	color: var(--add-color-1);
}

section.faq .faq-wrapper .faq-item .hidden-desc {
	display: none;
}
section.faq .faq-wrapper .faq-item .faq-title-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
section.faq .faq-wrapper .faq-item .faq-title-btn .btn-icon {
	min-width: 42px;
	width: 42px;
	height: 42px;
	margin-left: 20px;
	border-radius: 50%;
	background-color: var(--add-color-8);
	position: relative;
	transition: .3s;
}
section.faq .faq-wrapper .faq-item.opened .faq-title-btn .btn-icon {
	background-color: var(--add-color-9);
}
section.faq .faq-wrapper .faq-item .faq-title-btn .btn-icon::before{
	position: absolute;
	left: 10px;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 2px;
	background-color: var(--primary-color);
	content: "";
}
section.faq .faq-wrapper .faq-item .faq-title-btn .btn-icon::after{
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 0;
	left: 0;
	margin: auto;
	width: 2px;
	background-color: var(--primary-color);
	content: "";
	transition: .3s;
}
section.faq .faq-wrapper .faq-item.opened .faq-title-btn .btn-icon::after{
	opacity: 0%;
}

section.faq .faq-wrapper .faq-item .hidden-desc .desc{
	margin-top: 30px;
}
section.location-cta {
	padding: 120px 0;
}
section.location-cta .main-wrapper {
	width: 70%;
	margin: 0 auto;
}
section.location-cta .main-wrapper .icon img {
	width: 75px;
	margin: 120px auto 0;
}
section.location-cta .main-wrapper .icon a {
	display: inline-block;
}
section.location-cta .main-wrapper .title-1 {
	margin-bottom: 50px;
}
section.contact {
	padding: 140px 0 0;
}
section.contact::after{
	position: relative;
	bottom: 0;
	width: 100%;
	padding-top: 6.2%;
	content: "";
	position: relative;
	display: block;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('./img/contact-after.svg');
	margin-top: 120px;
}
section.contact .contact-wrapper {
	background-color: var(--add-color-6);
	padding: 60px 120px;
	border-radius: 30px;
}
section.contact .contact-wrapper .contact-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -15px;
}
section.contact .contact-wrapper .contact-row .form-col{
	min-width: 62%;
	width: 62%;
	padding: 0 15px;
}
section.contact .contact-wrapper .contact-row .data-col {
	min-width: 27%;
	width: 27%;
	padding: 0 15px;
}
section.contact .contact-wrapper .title-2{
	margin-bottom: 5px;
}
section.contact .contact-wrapper .contact-items{
	margin-top: 45px;
}
section.contact .contact-wrapper .contact-items .item {
	display: flex;
	flex-wrap: wrap;
}
section.contact .contact-wrapper .contact-items .item + .item {
	margin-top: 35px;
}
section.contact .contact-wrapper .contact-items .item .img-col {
	min-width: 28%;
	width: 28%;
}
section.contact .contact-wrapper .contact-items .item .user-data-col {
	min-width: 72%;
	width: 72%;
	padding-left: 45px;
}
section.contact .contact-wrapper .contact-items .item .img-col .user-img {
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
}
section.contact .contact-wrapper .contact-items .item .user-data-col .sub-title-1 {
	font-size: var(--font-size-8);
	margin-bottom: 0;
	line-height: 1;
}
section.contact .contact-wrapper .contact-items .item .user-data-col .sub-title-2 {
	font-size: var(--font-size-10);
	margin-bottom: 0;
	margin-top: 8px;
	line-height: 1;
}
section.contact .contact-wrapper .contact-items .item .user-data-col .phone {
	margin-top: 10px;
	line-height: 1;
}
section.contact .contact-wrapper .contact-items .item .user-data-col .phone a{
	font-size: var(--font-size-8);
	font-weight: 500;
	line-height: 1;
}
section.contact .contact-wrapper .contact-items .item .user-data-col .email {
	margin-top: 8px;
	line-height: 1;
}
section.contact .contact-wrapper .contact-items .item .user-data-col .email a {
	font-size: var(--font-size-10);
	line-height: 1;
}
section.contact .e-form .text-input {
	margin-bottom: 40px;
}
section.contact .e-form .text-input input,
section.contact .e-form .text-input textarea {
	margin-bottom: 10px;
	-webkit-appearance: none;
	border: none;
	border-bottom: 2px solid var(--add-color-1);
	padding: 15px;
	color: var(--add-color-1);
	display: block;
	width: 100%;
	background-color: transparent;
	border-radius: 0;
}
section.contact .e-form .text-input textarea {
	height: 50px;
	resize: unset;
}
section.contact .e-form .wpcf7-not-valid-tip {
	font-size: 12px;
}
section.contact .e-form .wpcf7 form .wpcf7-response-output {
    margin: 30px 0 0
}

section.contact .e-form .acceptance-input {
    margin-bottom: 30px
}

section.contact .e-form .acceptance-input input[type="checkbox"] {
    float: left;
    margin: 0;
    position: relative;
    border: 2px solid var(--add-color-1);
    background: 0;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0;
    vertical-align: text-top;
    height: 15px;
    width: 15px;
    -webkit-appearance: none;
    margin-right: 5px;
}

section.contact .e-form .acceptance-input input[type="checkbox"]:checked {
    background-color: var(--add-color-1);
    opacity: 1
}
section.contact .e-form .wpcf7-list-item{
	margin: 0;
}
section.contact .e-form input[type="submit"]{
	background-color: var(--add-color-1);
	color: var(--primary-color);
	border-radius: 50px;
	font-size: var(--font-size-8);
	-webkit-appearance: none;
	cursor: pointer;
	display: inline-block;
	transition: .3s;
	border: none;
	padding: 12px 60px;
}
section.contact .e-form input[type="submit"]:hover {
	transform: scale(1.05);
}
section.contact .e-form input[type="submit"]:disabled{
	cursor: not-allowed;
	opacity: 30%;
}


footer {
	padding: 45px 0 90px ;
	background-color: var(--add-color-10);
	position: relative;
	color: #fff;
}
footer .copyrights {
	text-align: center;
	margin-top: 45px;
}
footer .copyrights a{
	font-weight: 500;
}
footer .title-2 {
	margin-bottom: 0;
}
footer .socials {
	display: flex;
	list-style: none;
	margin: 50px 0 0;
	padding: 0;
	align-items: center;
	justify-content: center;
}
footer .socials li a{
	min-width: 34px;
	width: 34px;
	height: 34px;
	display: block;
	transition: .3s;
}
footer .socials li a:hover {
	transform: scale(1.05);
}
footer .socials li + li {
	margin-left: 180px;
}
footer .socials li.instagram a{
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('./img/instagram-light.svg');
}
footer .socials li.tiktok a{
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('./img/tiktok-light.svg');
}
footer .socials li.facebook a{
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('./img/facebook-light.svg');
}

@media screen and (max-width: 1499px) {
	:root {
		--font-size-1: 36px;
        --font-size-2: 34px;
        --font-size-3: 32px;
        --font-size-4: 25px;
        --font-size-5: 24px;
	}
	section.home-calculator .range-wrapper .range-date .item span{
		display: block;
	}
	section.home-calculator .circle-title  {
		font-size: 24px;
	}
	section.home-calculator .range-wrapper{
		margin-top: 50px;
	}
	section.social-posts {
		padding: 90px 0 0;
	}
	section.social-posts .second-part{
		margin-top: 120px;
	}
	section.home-calculator{
		padding: 120px 0 0;
	}
	section.offer{
		padding: 90px 0 60px;
	}
	section.icons{
		padding: 60px 0;
	}
	section.icons .icons-row {
		margin: 0 0 120px;
	}
	section.icons .item img.icon{
		margin: 60px auto;
	}
	section.coop-options{
		padding: 60px 0 75px;
	}
	section.faq{
		padding: 0 0 120px;
	}
	section.contact{
		padding: 120px 0 0;
	}
	section.coop-options .coop-row .item{
		padding: 30px;
	}
	section.faq .faq-wrapper .faq-item{
		padding: 30px 60px;
	}
	section.contact .contact-wrapper{
		padding: 45px 90px;
	}
	section.home-calculator .main-calculator{
		margin-top: 45px;
	}
	section.contact .contact-wrapper .contact-items .item .user-data-col{
		padding-left: 30px;
	}
	section.location-cta .main-wrapper .title-1{
		margin-bottom: 30px;
	}
	section.location-cta .main-wrapper .icon img{
		margin: 60px auto 0;
	}
}
@media screen and (max-width: 1299px) {
	:root {
		--font-size-1: 34px;
        --font-size-2: 32px;
        --font-size-3: 30px;
        --font-size-4: 24px;
        --font-size-5: 22px;
	}
	section.coop-options .title-wrapper{
		width: 55%;
	}
	section.contact .contact-wrapper .contact-row .data-col {
		min-width: 32%;
		width: 32%;
	}
}

@media screen and (max-width: 1199px) {
	section.home-calculator .range-wrapper .range-date .item span{
		padding: 7px;
		font-size: 12px;
	}
	section.icons .item img.icon {
        margin: 45px auto 30px;
    }
	section.coop-options .title-wrapper{
		width: 70%;
	}
	section.contact .contact-wrapper {
        padding: 30px;
    }
	section.contact .contact-wrapper .contact-row .form-col{
		min-width: 60%;
		width: 60%;
	}
	section.contact .contact-wrapper .contact-row .data-col{
		min-width: 35%;
		width: 35%;
	}
	section.location-cta .main-wrapper{
		width: 100%;
	}
	section.location-cta .main-wrapper .icon img{
		margin: 45px auto 0;
	}
	section.social-posts .social-posts-slider .social-item-slide {
		padding: 0 15px;
	}
}

@media screen and (max-width: 991px) {
	:root {
		--font-size-1: 32px;
        --font-size-2: 30px;
        --font-size-3: 28px;
        --font-size-4: 22px;
        --font-size-5: 20px;
	}
	section.home-calculator .range-wrapper{
		margin-top: 50px;
	}
	section.social-posts {
		padding: 75px 0 0;
	}
	section.location-cta{
		padding: 100px 0;
	}
	section.social-posts .second-part{
		margin-top: 100px;
	}
	section.home-calculator{
		padding: 100px 0 0;
	}
	section.offer{
		padding: 75px 0 50px;
	}
	section.icons{
		padding: 50px 0;
	}
	section.icons .icons-row {
		margin: 0 0 100px;
	}
	section.icons .item img.icon{
		margin: 60px auto;
	}
	section.coop-options{
		padding: 50px 0 75px;
	}
	section.faq{
		padding: 0 0 100px;
	}
	section.contact{
		padding: 100px 0 0;
	}
	section.coop-options .coop-row .item{
		padding: 30px;
	}
	section.faq .faq-wrapper .faq-item{
		padding: 20px 30px;
	}
	section.home-calculator .main-calculator{
		margin-top: 45px;
	}
	section.home-calculator .range-wrapper .range-container{
		width: 87%;
	}
	section.home-calculator .range-wrapper .range-date{
		width: 100%;
	}
	section.icons .item img.icon {
        margin: 60px auto 30px;
    }
	section.coop-options .title-wrapper{
		width: 75%;
	}
	section.coop-options .coop-row .item .desc-row .desc-col{
		min-width: 48%;
		width: 48%;
	}
	section.faq .faq-wrapper .faq-item .faq-title-btn .btn-icon {
		min-width: 35px;
		width: 35px;
		height: 35px;
	}
	section.contact .contact-wrapper .contact-row{
		flex-direction: column-reverse;
	}
	section.contact .contact-wrapper .contact-row .data-col{
		width: 100%;
		min-width: 100%;
	}
	section.contact .contact-wrapper .contact-items {
		margin-top: 0;
		display: flex;
		flex-wrap: wrap;
	}
	section.contact .contact-wrapper .contact-items .item + .item{
		margin-top: 30px;
	}
	section.contact .contact-wrapper .contact-items .item {
		margin-top: 30px;
		min-width: 50%;
		width: 50%;
	}
	section.contact .contact-wrapper .contact-row .form-col{
		width: 100%;
		min-width: 100%;
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	:root {
		--font-size-1: 30px;
        --font-size-2: 28px;
        --font-size-3: 25px;
        --font-size-4: 20px;
	}
	body {
		font-size: var(--font-size-9);
	}
	section.home-calculator .range-wrapper .range-date{
		justify-content: center;
	}
	section.social-posts .title-1{
		margin-bottom: 30px;
	}

	section.social-posts {
		padding: 60px 0 0;
	}
	section.social-posts .second-part{
		margin-top: 90px;
	}
	section.home-calculator{
		padding: 90px 0 0;
	}
	section.location-cta{
		padding: 90px 0;
	}
	section.offer{
		padding: 60px 0 45px;
	}
	section.icons{
		padding: 45px 0;
	}
	section.icons .item img.icon{
		margin: 45px auto;
	}
	section.coop-options{
		padding: 45px 0 60px;
	}
	section.faq{
		padding: 0 0 100px;
	}
	section.contact{
		padding: 100px 0 0;
	}
	section.coop-options .coop-row .item{
		padding: 30px;
	}
	section.main-video-banner::after {
		padding-top: 6%;
	}
	section.home-calculator .range-wrapper .range-icons .icon{
		width: 16px;
		height: 16px;
	}
	section.home-calculator .range-wrapper .range-icons{
		top: -7px;
	}
	section.home-calculator .range-wrapper .ui-slider-horizontal .ui-slider-handle{
		width: 50px;
		height: 27px;
		top: -16px;
		transform: translateX(-15px);
	}
	section.home-calculator .range-wrapper .range-date{
		flex-wrap: wrap;
	}
	section.home-calculator .range-wrapper .range-date .item {
		min-width: 33.3333%;
		width: 33.3333%;
	}
	section.home-calculator .range-wrapper .range-date .item{
		margin-top: 15px;
	}
	section.home-calculator #circle-svg-1,
	section.home-calculator #circle-svg-2,
	section.home-calculator #circle-svg-3 {
		width: 190px;
		height: 190px;
	}
	section.home-calculator #circle-svg-3 {
		margin-top: -20px;
	}
	
	section.home-calculator .range-wrapper .range-date{
		margin-top: 30px;
	}
	section.icons .item img.icon{
		width: 80px;
		height: 80px;
		margin: 30px auto;
	}
	section.icons .icons-row{
		margin-bottom: 90px;
	}
	section.coop-options .title-wrapper{
		width: 100%;
	}
	section.coop-options .coop-row .item .desc-row .desc-col{
		min-width: 100%;
	}
	section.coop-options .coop-row .item .desc-row .desc-col + .desc-col {
		margin-top: 20px;
	}
	section.coop-options .second-part .second-part-row .title-col{
		min-width: 100%;
	}
	section.coop-options .second-part .second-part-row .btn-col{
		min-width: 100%;
		text-align: left;
		margin-top: 20px;
	}
	section.coop-options .coop-row .item .desc-row{
		margin-top: 0;
	}
	section.coop-options .coop-row .item .second-part{
		margin-top: 20px;
	}
	section.faq .faq-wrapper .faq-item .faq-title-btn .btn-icon{
		min-width: 30px;
        width: 30px;
        height: 30px;
	}
	section.faq .faq-wrapper .faq-item{
		padding: 20px;
		margin-top: 20px;
	}
	section.contact .contact-wrapper .contact-items .item{
		min-width: 100%;
		width: 100%;
	}
	section.faq{
		padding: 0 0 90px;
	}
	footer .socials{
		margin-top: 30px;
	}
	footer .socials li + li{
		margin-left: 40px;
	}
}
.page-loader-main {
	position: fixed;
	display: flex;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 100000000;
	background-color: var(--add-color-1);
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.page-loader-main img {
	animation: loaderimg 1.5s infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in;
	transition: opacity .2s;
}

.page-loader-main img {
	width: 430px;
	max-width: 75%;
}

.page-loader-main.loaded img {
	opacity: 0;
}

.page-loader-main.loaded {
	height: 0%;
}

@keyframes loaderimg {
	from {
		transform: scale(1.05);
	}

	to {
		transform: scale(1.0);
	}
}
/* --------------------------------------------- */
/* HEADER  */
/* --------------------------------------------- */

header.er-main-header{
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--add-color-1);
}

@media screen and (min-width: 1200px) {
	header.er-main-header .mobile-nav {
		display: none;
	}
	
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu {
		display: flex;
		list-style: none;
		padding: 0;
		margin: 0;
		justify-content: space-evenly;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column > div {
		width: 100%;
	}

	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu > li > a{
		padding: 15px 0;
		color: var(--primary-color);
		font-size: var(--font-size-5);
		position: relative;
		font-weight: 500;
		line-height: 1;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu > li > a:hover {
		color: var(--add-color-3);
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul {
		margin: 0;
		padding: 0;
		width: 100%;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul li {
		text-transform: uppercase;
		margin: 0 15px;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu > li.menu-item-has-children ul.sub-menu{
		visibility: hidden;
		opacity: 0;
		left: 0;
		transition: .3s;
		position: absolute;
		color: var(--add-color-1);
		top: calc(100% + 15px);
		list-style: none;
		width: 200px;
	}

	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.sub-menu li a {
		padding: 10px;
		display: block;
		text-align: left;
		font-size: var(--font-size-5);
		letter-spacing: .3px;
		line-height: 1.3;
		color: var(--primary-color);
		font-weight: 500;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.sub-menu li.current_page_item > a{
		background-color: var(--add-color-2);
	}

	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul li.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
		left: 100%;
		top: 0;
		visibility: hidden;
		padding-top: 0;
		opacity: 0;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu li.menu-item-has-children:hover > ul.sub-menu {
		visibility: visible;
		opacity: 1;
	}

	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.sub-menu>li:hover {
		background-color: var(--add-color-2);
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.sub-menu li {
		background-color: var(--add-color-1);
		transition: .3s;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul .sub-menu-icon-mobile {
		display: none;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu > li{
		position: relative;
	} 
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul li.menu-item-has-children>.sub-menu>li.menu-item-has-children:hover>.sub-menu {
		min-height: 100%;
		background: var(--add-color-1);
		top: 0;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.sub-menu li.menu-item-has-children > a{
		position: relative;
	}

	header.er-main-header .desktop-nav {
		padding: 20px 0;
	}
	header.er-main-header .desktop-nav .header-main-row{
		display: flex;
		align-items: center;
		margin: 0 -15px;
		justify-content: center;
	}
	header.er-main-header .desktop-nav .header-main-row .logo-column {
		min-width: 330px;
		width: 330px;
		display: flex;
		align-items: center;
		padding: 0 15px;
	}
	header.er-main-header .desktop-nav .header-main-row .logo-column a{
		display: block;
	}
	header.er-main-header .desktop-nav .header-main-row .logo-column a img {
		width: 100%;
		transition: .3s;
	}

	header.er-main-header .desktop-nav .header-main-row .menu-links-column {
		padding: 0 15px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		min-width: calc(50% - 175px);
		width: calc(50% - 175px);
	}
	
}
@media screen and (max-width: 1499px) {
	header.er-main-header .desktop-nav .header-main-row .menu-links-column ul.menu > li > a{
		font-size: var(--font-size-6);
	}
	header.er-main-header .desktop-nav .header-main-row .logo-column{
		min-width: 280px;
		width: 280px;
	}
	header.er-main-header .desktop-nav .header-main-row .menu-links-column{
		min-width: calc(50% - 140px);
		width: calc(50% - 140px);
	}
	header.er-main-header .desktop-nav{
		padding: 15px 0;
	}
}
@media screen and (max-width: 1199px) {
	header.er-main-header .desktop-nav {
		display: none;
	}
	header.er-main-header .mobile-nav {
		padding: 15px 0;
	}
	header.er-main-header .mobile-nav .header-mobile-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0 -15px;
	}
	header.er-main-header .mobile-nav .header-mobile-row .logo-column {
	
		padding: 0 15px;
	}
	header.er-main-header .mobile-nav .header-mobile-row .logo-column a {
		display: block;
	}
	header.er-main-header .mobile-nav .header-mobile-row .logo-column a img{ 
		width: 300px;
		transition: .3s;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box {
		position: fixed;
		right: -350px;
		top: 0;
		height: 100%;
		z-index: 10;
		background-color: var(--add-color-1);
		padding: 150px 45px;
		overflow-x: hidden;
		overflow-y: auto;
		transition: .3s;
		opacity: 0;
		pointer-events: none;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box.opened {
		right: 0;
		opacity: 1;
		pointer-events: all;
	}
	
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper {
		width: 100%;
		min-height: 100%;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li {
		width: 250px;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul .sub-menu {
		display: none;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li a{
		padding: 10px 5px;
		display: block;
		font-size: var(--font-size-6);
		line-height: 1;
		color: var(--primary-color);
		text-transform: uppercase;
		font-weight: 500;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li.current_page_item > a {
		color: var(--add-color-10);
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul.sub-menu a {
		font-size: var(--font-size-7);
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li.menu-item-has-children {
		position: relative;
		padding-right: 45px;		
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li.menu-item-has-children .mobile-btn-toggle {
		width: 12px;
		height: 12px;
		position: absolute;
		top: 13px;
		right: 0;
		margin-left: 10px;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li.menu-item-has-children .mobile-btn-toggle::before {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		height: 2px;
		margin: auto;
		content: "";
		background-color: var(--primary-color);
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li.menu-item-has-children .mobile-btn-toggle::after {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 2px;
		margin: auto;
		content: "";
		background-color: var(--primary-color);
		transition: .3s;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .wrapper ul li.menu-item-has-children .mobile-btn-toggle.opened::after {
		opacity: 0;
	} 
	header.er-main-header .mobile-nav .header-mobile-row .header-mobile-menu-btn{
		padding: 0 15px;
	}
	header.er-main-header .mobile-nav .header-mobile-row .header-mobile-menu-btn .btn-toggle{
		width: 25px;
		height: 25px;
		min-width: 25px;
		position: relative;
	}
	header.er-main-header .mobile-nav .header-mobile-row .header-mobile-menu-btn .btn-toggle::after {
		position: absolute;
		top: 7px;
		left: 0;
		right: 0;
		height: 3px;
		content: "";
		background-color: var(--primary-color);
	}
	header.er-main-header .mobile-nav .header-mobile-row .header-mobile-menu-btn .btn-toggle::before {
		position: absolute;
		bottom: 7px;
		left: 0;
		right: 0;
		height: 3px;
		content: "";
		background-color: var(--primary-color);
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .close-btn {
		position: absolute;
		top: 45px;
		right: 45px;
		width: 25px;
		height: 25px;
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .close-btn::after {
		position: absolute;
		top: 11px;
		left: 0;
		right: 0;
		height: 3px;
		content: "";
		background-color: var(--primary-color);
		transform: rotate(-45deg);
	}
	header.er-main-header .mobile-nav .header-mobile-row .menu-links-box .close-btn::before {
		position: absolute;
		bottom: 11px;
		left: 0;
		right: 0;
		height: 3px;
		content: "";
		background-color: var(--primary-color);
		transform: rotate(45deg);
	}
}
@media screen and (max-width: 767px) {
	header.er-main-header .mobile-nav .header-mobile-row .logo-column a img{
		width: 200px;
	}
}
