/*=============================================
=               CUSTOM FONT                   =
=============================================*/
@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestRegular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestMedium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Onest";
    src: url("../fonts/OnestBlack.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/*=============================================
=                 ROOT                      =
=============================================*/
:root {
    /* font */
    --main-font:   'Onest', sans-serif;

    /* colors */
    --bs-primary: #007BC5;
    --bs-gray: #D3D3D2;
    --bs-pink: #E9E2E0;

    --bs-body-font-family: var(--main-font);
    --bs-body-font-size: 1.125rem;;
    --bs-body-font-weight: 500;
    --bs-body-line-height: 1.935rem;
    --bs-body-color: var(--bs-black);
    --bs-body-bg: var(--bs-white);
}

/*=============================================
=                Essentials                  =
=============================================*/
body {
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.container {max-width: 1170px;}
h1 {font-size: 36px;}
h2 {font-size: 30px; line-height: 39px;}
h3 {font-size: 24px; line-height: 32px;}
h4 {font-size: 18px;}
strong {font-weight: 800 !important;}

a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: all .4s ease-in-out;
}
a:hover {
    color: var(--bs-black);
    transition: all .4s ease-in-out;
}

.btn {
    --bs-btn-padding-x: 3.75rem;
    --bs-btn-padding-y: 1.75rem;
    --bs-btn-font-size: .875rem;
    --bs-btn-font-weight: 800;
    --bs-btn-line-height: 1.125rem;
    --bs-btn-border-width: 0;
    --bs-btn-border-radius: 3.125rem;
    box-shadow: 0px 12px 15px rgba(194, 92, 161, 0.21);
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}
.btn-warning {
    --bs-btn-color: var(--bs-white);
    --bs-btn-hover-color: var(--bs-white);
/*     background: linear-gradient(0deg, #F38606 0%, #FFC267 77.6%); */
    background: var(--bs-primary);
}
.btn-warning:hover {
    background: var(--bs-black);
    box-shadow: 0px 15px 10px rgba(194, 92, 161, 0.41);
}

/*=============================================
=                Elements                  =
=============================================*/

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 99999;
}

#lp-content {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
#lp-content > main {flex: 1;}
.lp-section {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}
.lp-section__heading {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 24px;
}
.lp-section__heading h3 {
    font-weight: 300;
}


/* parallax */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-secondary {background-color: var(--bs-gray) !important;}
.text-primary {color: var(--bs-primary) !important;}


/*=============================================
=                Navigation                  =
=============================================*/
.navbar {
    --bs-navbar-padding-y: .9375rem;
	z-index: 3;
}
.navbar-dark {
    --bs-navbar-color: var(--bs-body-color);
}
.navbar-brand img {
    max-width: 190px;
    height: auto;
}
.navbar__contacts a,
.navbar-dark a {color: var(--bs-body-color);}
.navbar-dark a:hover {text-decoration: underline;}
.navbar__contacts a.tel {
    font-weight: 400;
    font-size: 30px;
    line-height: 38px;
}



/*=============================================
=                   Slide 1                   =
=============================================*/
.showcase {
    height: 100vh;
    max-height: 875px;
    overflow: hidden;
/*     background: linear-gradient(90deg, #FFFFFF 50%, rgba(255, 255, 255, 0.97) 53.71%, #FFFFFF 59.12%, rgba(255, 255, 255, 0.39) 65.39%, rgba(255, 255, 255, 0) 83.64%, rgba(255, 255, 255, 0) 104.74%); */
	background-color: rgba(255,255,255, .3);
	padding-top: 100px;
}
.showcase__cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    z-index: -1;
}
.showcase:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255, .3);
/* 	z-index: 1; */
}
.showcase .container {z-index: 3;}
.showcase h2 {
    font-weight: 300;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
/* .showcase h2 strong {color: var(--bs-primary);} */
.showcase h2:last-of-type {
/*     color: var(--bs-primary); */
    font-weight: 500;
    margin-bottom: 50px;
}
.showcase ul {
    list-style-type: none;
    line-height: 31px;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
}
.showcase ul li {
    padding-left: 30px;
    position: relative;
}
.showcase ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    background: url('../img/check-icon.svg') no-repeat center;
    background-size: contain;
}


/*=============================================
=                   Slide 2                   =
=============================================*/
.lp-section--slide2 {
    font-weight: 400;
    line-height: 31px;
    background: linear-gradient(180deg, #FFFFFF -94.79%, #FFFFFF 34.38%, #F1F7FA 100%);
    padding-bottom: 30px;
}
.lp-section--slide2 .description {margin-top: -60px;}
.lp-section--slide2 p strong {color: var(--bs-primary);}
.lp-section--slide2 p {margin-bottom: 0;}
.lp-section--slide2 p:not(:last-of-type) {margin-bottom: 58px;}



/*=============================================
=                   Slide 3                   =
=============================================*/
.lp-section--slide3 {
    background: linear-gradient(180deg, #F2F7FA 0%, rgba(242, 247, 250, 0) 34.38%);
    padding-bottom: 80px;
}
.lp-section--slide3 .lp-section__heading {margin-bottom: 30px;}
.benefits-card {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 36px 38px 50px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.18);
}
.benefits-card img {
    margin-bottom: 40px;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.benefits-card:hover img {
    transform: scale(1.25);
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/*=============================================
=                   Slide 4                   =
=============================================*/
.lp-section--slide4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
}
.lp-section--slide4 .lp-section__heading {margin-bottom: 24px;}
.slide4-cover {
    width: 482px;
    height: 482px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 74px;
}
/* .slide4-cover::after,
.slide4-cover::before {
    content: "";
    position: absolute;
}
.slide4-cover::after {
    background: url('../img/Ellipse1.svg') no-repeat top right;
    width: 120%;
    height: 65%;
    transform: rotate(53.01deg);
    top: -17px;
    left: 115px;
}
.slide4-cover::before {
    background: url('../img/Ellipse2.svg') no-repeat top right;
    width: 100%;
    height: 50%;
} */

.lp-section--slide4 ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 33px;
}
.lp-section--slide4 ul li {
    position: relative;
    padding-left: 51px;
    margin-bottom: 40px;
}
.lp-section--slide4 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: #959190;
    border-radius: 50%;
    filter: blur(4.5px);
    top: 2px;
}
.lp-section--slide4 ul li::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background-image: url('../img/check-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
    top: 2px;
}
.lp-section--slide4 ul li:first-child {transform: translateX(-118px);}
.lp-section--slide4 ul li:nth-child(2) {transform: translateX(-40px);}
.lp-section--slide4 ul li:nth-child(3) {transform: translateX(10px);}
.lp-section--slide4 ul li:nth-child(4) {transform: translateX(41px);}
.lp-section--slide4 ul li:last-child {transform: translateX(61px);}


/*=============================================
=                   Slide 5                   =
=============================================*/
.lp-section--slide5 {padding-bottom: 50px;}
.lp-section--slide5 .lp-section__heading {margin-bottom: 50px;}
.tr-zones__item {
    flex: 0 0 20%;
    min-width: 20%;
    padding: 0 20px;
    margin-bottom: 30px;
}
.tr-zones__item img {
    width: 177px;
    height: 185px;
    object-fit: cover;
    margin-bottom: 15px;
}

/*=============================================
=                   Slide 6                   =
=============================================*/ 
.lp-section--slide6 {
    font-size: .875rem;
    font-weight: 400;
    line-height: 18px;
    padding-bottom: 60px;
}
.lp-section--slide6 .lp-section__heading {margin-bottom: 50px;}
.lp-section--slide6 p {margin-bottom: 22px;}
.lp-section--slide6 p:last-of-type {margin-bottom: 44px;}
.lp-section--slide6 ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 23px;
}
.lp-section--slide6 ul li {
    position: relative;
    padding-left: 25px;
}
.lp-section--slide6 ul li::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background-image: url('../img/check-icon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 4px;
}


/*=============================================
=                   Slide 7                   =
=============================================*/
.lp-section--slide7 {padding-bottom: 40px;}
.lp-section--slide7 .lp-section__heading {margin-bottom: 44px;}
.lp-section--slide7 .lp-section__heading h3 {margin-bottom: 20px;}
.results-gallery .slick-slide {padding: 0 11px;}
.results-gallery .slick-slide img {
    width: 100%;
    height: 365px;
    object-fit: cover;
}
.results-gallery .slick-track {margin-bottom: 40px;}


/*=============================================
=                   Slide 8                   =
=============================================*/
.lp-section--slide8 {padding-bottom: 90px;}
.reviews-slider__item {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding: 0 20px;
}
.reviews-slider__item .content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 39px 20px;
    height: 465px;
    overflow: hidden;
}
.reviews-slider__item h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 29px;
}

.slick-arrow {
    width: 20px;
    height: 40px;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    background-color: transparent;
    border: none;
    text-indent: -99999px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}
.slick-arrow.slick-prev {
    left: 0;
    margin-left: -30px;
    background-image: url('../img/arrow-prev.svg');
}
.slick-arrow.slick-next {
    right: 0;
    margin-right: -30px;
    background-image: url('../img/arrow-next.svg');
}

/*=============================================
=                   Slide 9                   =
=============================================*/
.lp-section--slide9 {padding-bottom: 40px;}
.lp-section--slide9 .lp-section__heading {margin-bottom: 36px;}

.step-item {
    font-weight: 400;
    font-size: .875rem;
    line-height: 19px;
    margin-bottom: 30px;
    padding: 60px 30px 20px;
    height: calc(100% - 30px);
    background: #DFDFDF;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
}
.step-item img {
    width: 120px;
    height: 130px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    margin: 0 auto 35px;
}
.step-item .step-count {
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
    padding: 5px;
    margin-bottom: 10px;
}
.step-item h3 {
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
}
.step-item p {margin-bottom: 0;}


.slick-dots {
    list-style-type: none;
    text-align: center;
    margin-bottom: 0;
	padding: 0;
}
.slick-dots li {
    display: inline-block;
    margin: 0 6px;
}
.slick-dots button {
    background-color: transparent;
    border: 1px solid var(--bs-black);
    border-radius: 50%;
    width: 17px;
    height: 17px;
    text-indent: -99999px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background-color: var(--bs-black);
    border-color: var(--bs-black);
    transition: all .3s ease-in-out;
}
.slick-dots button:focus {
    outline: none !important;
    box-shadow: none !important;
}


/*=============================================
=                Slide 10                     =
=============================================*/
.lp-section--slide10 {margin-bottom: 100px;}
.lp-section--slide10 .lp-section__heading {margin-bottom: 50px;}
.benefit__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    padding: 70px 55px 50px 0;
    z-index: 1;
    margin-bottom: 30px;
}
.benefit__description::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90vw;
    height: 100%;
    background: #E9E2E0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0px 30px 30px 0px;
    z-index: -1;
}
.benefit__description p {margin-bottom: 45px;}
.benefit__description h5 {
    font-size: 1rem;
    margin-bottom: 0;
}
.benefit__description ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    font-weight: 700;
}
.benefit__description ul li::before {
    content: "- ";
}
.master-cover {
    min-height: 350px;
    height: calc(100% -  30px);
    background-size: cover;
	background-position: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 30px 0px 0px 30px;
}

/*=============================================
=                Slide 11                     =
=============================================*/
.lp-section--slide11 .lp-section__heading {margin-bottom: 30px;}
.faq-accordion {margin-bottom: 10px;}
.faq-accordion .accordion-item {
    background: #FFFFFF;
    border: 2px solid #000000 !important;
    box-shadow: 6px 10px 12px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-bottom: 30px;
}
.faq-accordion .accordion-button {
    background-color: transparent;
    padding: 25px 40px 24px 100px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 32px;
    outline: none !important;
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}
.faq-accordion .accordion-button::after {
    --bs-accordion-btn-icon: url('../img/plus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 40px;
    width: 33px;
    height: 33px;
}
.accordion-button:not(.collapsed)::after {
    --bs-accordion-btn-active-icon: url('../img/plus.svg');
    transform: rotate(45deg);
}
.accordion-button:not(.collapsed) {
    color: var(--bs-black);
    font-weight: 700;
}
.accordion-body {
    padding: 30px 30px 60px 100px;
    font-size: 1.5rem;
    line-height: 32px;
    font-weight: 400;
}

/*=============================================
=                Slide 12                     =
=============================================*/
.lp-section--slide12 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 31px;
    padding: 110px 0 210px;
}
.lp-section--slide12 h2 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 67px;
}
.lp-section--slide12 h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 0;
}
.lp-section--slide12 p {
    margin-bottom: 35px;
}

.lp-section--slide12__cover {
    background-size: cover;
    background-position: center;
    opacity: .35;
}
.lp-section--slide12 .container {
    position: relative;
    z-index: 3;
}
.form-wrapp {
    padding: 39px 60px;
	border: 2px solid var(--bs-primary);
}
.form-group {
    margin-bottom: 32px;
}
.form-group .wpcf7-form-control-wrap {
    display: block;
}
.form-control {
    background-color: transparent;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    padding: 7px 0;
    color: var(--bs-black);
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--bs-black);
}
.form-control::placeholder {color: var(--bs-grey);}
.form-control:focus,
.form-control:active {
	outline: none !important;
	box-shadow: none;
}
.wpcf7-response-output {
    border-radius: 20px;
    color: var(--bs-white);
    font-size: 12px;
}
.wpcf7-not-valid-tip {
    font-size: 12px;
    position: absolute;
}


/*=============================================
=                 Footer                      =
=============================================*/
.lp-footer {
    padding-top: 18px;
    padding-bottom: 22px;
}



/*=============================================
=               Success Page                  =
=============================================*/
.page-template-success-page .lp-footer {display: none;}
.page-template-success-page main {
    display: flex;
    width: 100%;
}
.success-wrapp {
    width: 100%;
    height: auto;
	min-height: 100vh;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
	position: relative;
	background-size: cover;
}
.success-wrapp h1 {
    font-family: var(--second-font);
    font-weight: 800;
    line-height: 51px;
    margin-bottom: 14px;
}
.success-wrapp p {margin-bottom: 45px;}
.success-wrapp p:last-of-type {
    margin-bottom: 50px;
    font-weight: 700;
}
.success-wrapp p:last-of-type::after {display: none;}

.success-wrapp__preview {
    background-color: var(--bs-black);
    padding-top: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
}
.success-wrapp__preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    left: 50%;
    transform: translateX(-50%);
}


.addtoany_shortcode a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
/*     background: linear-gradient(0deg, #F38606 0%, #FFC267 77.6%); */
    box-shadow: 0px 12px 15px rgba(194, 92, 161, 0.21) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}
.addtoany_shortcode a:hover {
/*     background: linear-gradient(0deg, #F38606 0%, #FFC267 77.6%) !important; */
    background: var(--bs-dark) !important;
    box-shadow: 0px 15px 10px rgba(194, 92, 161, 0.41) !important;
}
.addtoany_list {
    display: flex !important;
    gap: 24px;
}

/*=============================================
=                Error page                  =
=============================================*/
.error-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    font-size: 18px;
    min-height: 100vh;
}
.error-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51,51,51,.2);
}
.error-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}
.error-content h1 {
    font-size: 12vw;
    font-weight: 700;
    margin-bottom: 0;
}
.error-content p {
    margin-bottom: 0;
}
.error-content a {
    font-weight: 600;
    color: var(--white);
    text-decoration: underline;
}
.error404 .navbar,
.error404 .lp-footer {display: none !important;}



::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:  #919191;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:  #919191;;
}
  
::-ms-input-placeholder { /* Microsoft Edge */
    color:  #919191;;
}




/*=============================================
=           Custom Animation               =
=============================================*/

@keyframes growingL {
    0% {
        transform: scale(0);
        transform-origin: bottom;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes animate-arrow-1 {
    0%{transform:translateX(-40px);opacity: 0;}
    70%,100%{transform:translateX(0px);opacity: 1;}
}
@keyframes animate-arrow-2 {
    0%{transform:translateX(-20px);opacity: 0;}
    70%,100%{transform:translateX(0px);opacity: 0.5;}
}
@keyframes animate-arrow-3 {
    0%{transform:translateX(-10px);opacity: 0;}
    70%,100%{transform:translateX(0px);opacity: 0.3;}
}



@keyframes float_shadow {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

/*=============================================
=           Responsive Elements               =
=============================================*/

@media screen and (max-width: 1440px) { 
    
    
}

@media screen and (max-width: 1370px) and (max-height: 800px) { 
   
}

@media screen and (max-width: 1280px) { 
    
    .parallax {background-attachment: scroll;}



}

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

    
}

@media screen and (max-width: 830px) { 
    
    .lp-section--slide2 .description {margin-top: 30px;}
    .lp-section--slide2 {text-align: center;}
    .lp-section--slide2 img {max-width: 250px;}
    .lp-section--slide2 p,
    .lp-section--slide2 p:not(:last-of-type),
    .lp-section--slide6 ul {margin-bottom: 38px;}

    .lp-section--slide4 {padding-bottom: 40px;}
    .lp-section--slide4 ul li {transform: translateX(0) !important;}
    .slide4-cover {margin: 0 auto 30px;}

    .reviews-slider {
        padding: 0 30px;
    }
    .slick-arrow.slick-prev {margin-left: 5px;}
    .slick-arrow.slick-next {margin-right: 5px;}

    .benefit__description {padding: 30px 35px 30px 35px;}
    .benefit__description::before {
        width: 100%;
        border-radius: 30px;
    }
    .master-cover {
        border-radius: 30px;
        max-width: 290px;
        margin: 0 auto;
    }

    .lp-section--slide12 h3 {margin-bottom: 30px;}

    .success-wrapp {height: 100%;}
}   


@media screen and (max-width: 602px) and (max-height: 961px) { 
   
}

@media screen and (max-width: 961px) and (max-height: 602px) and (orientation:landscape) { 

    
}

@media screen and (max-width: 416px) { 
    .btn {
        --bs-btn-padding-x: 1.45rem;
        --bs-btn-padding-y: 1rem;
        width: 100%;
		font-size: 13px;
    }
   
    .navbar { text-align: center; padding-top: 20px; }
	.navbar__contacts a.tel--on-mobile {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		overflow: hidden;
		background-color: var(--bs-black);
		background-image: url('http://clatuu.mostelle.md/wp-content/uploads/2023/01/local_phone_icon.png');
		background-size: 16px;
		background-repeat: no-repeat;
		background-position: center;
		text-indent: -9999px;
		border-radius: 50%;
		margin: 18px 15px;
	}
	.navbar h3,
	.lp-footer h3,
	.navbar__contacts a,
    .navbar__contacts a.tel {
		font-size: 16px;
		line-height: 30px;
	}
    .navbar-brand {
        display: block;
        margin: 0;
    }
	.navbar-brand img { max-width: 130px; }
    .showcase {
        height: auto;
        max-height: fit-content;
        padding: 130px 0 50px;
        text-align: center;
    }
	.showcase h2 {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 36px;
	}
	.showcase h2:last-of-type {
		margin-bottom: 40px;
		padding: 0 30px;
	}
	.showcase h2 br {display: none;}
	.showcase ul {margin-bottom: 34px;}
    .showcase ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
		line-height: 24px;
		padding-left: 0;
    }
    .showcase ul li::before {
        position: static;
        margin-right: 8px;
    }
    .lp-section--slide2,
    .lp-section--slide3,
    .lp-section--slide6 {
        padding-bottom: 30px;
    }

    .slide4-cover {
        width: 100%;
        height: auto;
        padding-top: 100%;
    }
	
	.lp-section,
	.faq-accordion .accordion-button,
    .accordion-body,
    .benefit__description {
		font-size: 14px;
		line-height: 24px;
	}
	.lp-section__heading,
	.lp-section--slide6 .lp-section__heading,
	.lp-section--slide10 .lp-section__heading {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.lp-section__heading h3 {
		font-size: 18px;
		padding: 0 15px
	}
	
	.lp-section--slide2 img {max-width: 200px;}
	.lp-section--slide2 .description {margin-top: 0;}
    .lp-section--slide4 ul li {margin-bottom: 20px;}
	.lp-section--slide6 ul li {font-size: 14px;}
	.lp-section--slide6 p:last-of-type {margin-bottom: 24px;}
    .tr-zones__item {
        flex: 0 0 100%;
        min-width: 100%;
    }
	.tr-zones__item h4 {font-size: 16px;}

    .reviews-slider {padding: 0 20px;}
    .reviews-slider__item .content {
        height: 430px;
        padding: 20px;
    }
    .lp-section--slide7,
    .lp-section--slide9 {padding-bottom: 0;}
    .results-gallery .slick-slide img {height: 300px;}
    .lp-section--slide10 {margin-bottom: 30px;}
	.benefit__description p {margin-bottom: 14px}
	.master-cover {max-width: 100%;}

    .faq-accordion .accordion-button {
        padding: 25px 15px 24px 40px;
    }
    .faq-accordion .accordion-button::after {
        left: 10px;
        width: 20px;
        height: 20px;
    }
    .accordion-body {
        padding: 0 15px 24px 40px;
        font-weight: 400;
    }

    .lp-section--slide12 {
        padding: 40px 0 221px;
    }
    .lp-section--slide12 h2 {
		font-size: 24px;
	    line-height: 30px;
		margin-bottom: 17px;
	}
	.lp-section--slide12 h3 {
		font-size: 18px;
		line-height: 30px;
	}
    .form-wrapp {padding: 30px 20px;}
	
	.lp-footer .navbar-brand {margin-bottom: 10px;}


    /* success page */
    .success-wrapp .showcase__description {
        margin-bottom: 30px;
    }
    .success-wrapp p:last-of-type {
        float: none ;
        width: 100%;
        font-size: 14px;
        line-height: 24px;
    }
    .addtoany_shortcode {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 14px;
    }
}