body, html {
    font-size: 19px;
    line-height: 29px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    font-weight: 400;
    padding-top: 130px;
    --txt-color: #2F2A25;
    --txt-second: rgba(47, 42, 37, .5);
    --color-main: #B8A088;
    --color-second: #F9F8F6;
    --color-third: #F4F1EC;
    --color-fourth: #979492;
    --color-fifth: #997E63;
    --font-main: "Montserrat", sans-serif;
    --font-second: "Marcellus", serif;
    --radius: 90px;
    --radius-small: 64px;
    --radius-big: 250px;
    --spacing: 4px;
    --spacing-bigger: 4px;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body.videoopened {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
  
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
::-webkit-scrollbar-thumb {
    background: var(--color-main);
}
  
::-webkit-scrollbar-thumb:hover {
    background: var(--txt-color);
}

.font-main {
    font-family: var(--font-main);
}
.font-second {
    font-family: var(--font-second);
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-second);
    font-weight: 400;
    color: var(--color-main);
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-biggest {
    padding-left: 16vw;
    padding-right: 16vw;
}
.wrapper-big {
    padding-left: 12vw;
    padding-right: 12vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 140px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

.herotxt {
    position: relative;
    overflow-x: clip;
    z-index: 3;
}
.herotxt>svg {
    position: absolute;
    z-index: 1;
    height: auto;
    right: -15%;
    top: -60px;
    width: 45%;
}
.herotxt__txt {
    position: relative;
    z-index: 4;
}
.herotxt__txt p {
    margin: 0 auto;
    max-width: 100%;
    width: 800px;
    color: var(--color-fourth);
}

.breads {
    margin-top: 30px;
    margin-bottom: 60px;
}
.breads__items p {
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: .75rem;
    line-height: 130%;
}
.breads .breadcrumb_last {
    display: inline-block;
    color: var(--color-main);
}
.breads .sep {
    display: inline-block;
    font-size: .6rem;
    margin: 0 5px;
}

.cnav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}
.cnav ul {
    background-color: var(--color-second);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 40px 0;
    list-style: none;
    border-radius: var(--radius);
}
.cnav ul li {
    margin: 4px;
}
.cnav ul li a {
    background-color: transparent;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    border-radius: var(--radius);
    align-items: center;
    font-size: clamp(17px, 1.5vw, 35px);
    line-height: 120%;
    font-family: var(--font-second);
    color: var(--color-main);
}
.cnav ul li a.active {
    background-color: #fff;
    box-shadow: 0px 0px 6px rgba(144,144,144, .15);
}
.cnav ul li a:not(.active):hover {
    background-color: #F0EEE9;
}
.cnav__txt {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.cnav__txt p {
    font-weight: 500;
    color: var(--color-fourth);
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.bottom-links a {
    margin: 10px;
    min-width: 160px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.checklist li:not(:last-child) {
    margin-bottom: 15px;
}
.checklist li svg {
    margin-right: 15px;
    width: 30px;
    min-width: 30px;
    position: relative;
    top: -2px;
}

.clist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.clist ul li {
    padding-left: 20px;
    position: relative;
}
.clist ul li:not(:last-child) {
    margin-bottom: 10px;
}
.clist ul li:before {
    content: '';
    background-color: var(--color-main);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 8px;
}

.toptxt__content {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
    font-weight: 500;
    color: var(--color-fourth);
}
.toptxt__content p {
    margin: 0;
}


.slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.slider__nav .slick-arrow {
    border: none;
    font-size: 0;
    color: transparent;
    background-color: var(--color-main);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: center;
    background-image: url(../assets/arrow-white.svg);
    cursor: pointer;
    border-radius: 50%;
    z-index: 4;
    transition: .3s;
}
.slider__nav .slick-arrow.slick-disabled {
    opacity: .5;
}
.slider__nav .slider-prev {
    transform: rotate(180deg);
}

.slick-dots {
    margin: 20px auto 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(144,144,144, .3);
    padding: 12px 22px;
    border-radius: 50px;
    width: max-content;
    max-width: 100%;
}
.slider__nav .slick-dots {
    margin-top: 0;
    margin-right: 15px;
    margin-left: 15px;
}
.slick-dots li {
    margin: 4px;
    display: flex;
}
.slick-dots li button {
    border-radius: 50%;
    cursor: pointer;
    background-color: #E2DDD4;
    padding: 0;
    margin: 0;
    width: 13px;
    height: 13px;
    font-size: 0;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: var(--color-main);
    width: 30px;
    border-radius: 10px;
}

.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    z-index: 4;
}
.slick-lightbox .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 20px;
}
.slick-lightbox .slick-next {
    right: 20px;
}
.slick-lightbox-slick-caption {
    margin-top: 10px;
    display: inline-block;
}



.play-cbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    font-size: 0;
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    z-index: 9;
    width: 70px;
    height: 70px;
    padding: 0;
    transition: .3s;
    border-radius: 50%;
}
.play-cbtn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.play-cbtn.loaded {
    transform: translate(-50%, -50%) scale(1);
}
.play-cbtn span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    transition: .3s;
    border-radius: 50%;
}
.play-cbtn svg {
    width: 100%;
    height: auto;
}
.play-btn:not(.paused) {
    opacity: 0;
}
.play-btn.paused {
    opacity: 1;
}
.play-cbtn svg rect,
.play-cbtn svg path {
    transition: .3s;
}
.play-cbtn:hover svg rect {
    fill: var(--color-main);
}
.play-cbtn:hover svg path {
    fill: #fff;
}

.video-embed video {
    padding: 60px;
    max-height: 100%;
    max-width: 90%;
}
.video-embed {
    z-index: 99999;
    background-color:rgba(184, 160, 136, .87);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-spinner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-spinner,
.video-spinner:after {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.video-spinner {
  display: block;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(59, 49, 39, 0.5);
  border-right: 1.1em solid rgba(59, 49, 39, 0.5);
  border-bottom: 1.1em solid rgba(59, 49, 39, 0.5);
  border-left: 1.1em solid rgba(37, 30, 24, .5);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.video-embed.open {
    display: flex;
}
.video-embed__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.video-embed iframe {
    max-width: 100%;
    width: 1100px;
    height: 500px;
}
.video-close {
    position: absolute;
    top: 100px;
    right: 60px;
    border: none;
    background-color: transparent;
    font-size: 42px;
    font-weight: 600;
    z-index: 9;
    color: var(--txt-color);
    cursor: pointer;
}


.posrel {
    position: relative;
    z-index: 4;
}
.heading>* {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 950px;
}
.heading .subtitle {
    margin-bottom: 5px;
}
.section-heading {
    font-size: clamp(23px, 2.5vw, 45px);
    line-height: 120%;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-second);
}
.section-heading-small {
    font-size: clamp(19px, 2vw, 35px);
    line-height: 120%;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-second);
}
.section-heading-smallest {
    font-size: clamp(17px, 1.6vw, 30px);
    line-height: 120%;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-second);
}
.section-heading strong,
.section-heading-small strong {
    font-family: var(--font-main);
}
.subtitle {
    display: block;
    font-weight: 500;
    letter-spacing: var(--spacing);
}
.page-heading {
    font-size: clamp(28px, 4vw, 60px);
    line-height: 120%;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-second);
}
.page-heading-small {
    font-size: clamp(28px, 3.2vw, 45px);
    line-height: 120%;
    font-weight: 400;
    color: var(--color-main);
    margin-bottom: 30px;
    display: block;
    font-family: var(--font-second);
}

.text-center {
    text-align: center;
}

.error-wrapper {
    margin-top: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cbtn {
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    border-radius: 30px;
    text-align: center;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 120%;
}
.cbtn--white {
    box-shadow: 0px 0px 13px rgba(144,144,144, .3);
    color: var(--color-main);
    background-color: #fff;
    border-color: #fff;
}
.cbtn--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
}
.cbtn--icon svg {
    width: 14px;
    height: auto;
    margin-left: 10px;
    transition: .3s;
}
.cbtn--iconreverse svg {
    margin-left: 0;
    margin-right: 10px;
}
.cbtn--icon:hover svg {
    filter: brightness(0) invert(1);
}
.cbtn:not(.cbtn--white) svg {
    filter: brightness(0) invert(1) !important;
}
.cbtn:hover {
    color: #fff;
    background-color: var(--color-fifth);
    border-color: var(--color-fifth);
    box-shadow: 0px 0px 13px rgba(144,144,144, .3);
}
/* @ @ HEADER @ @ */

/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 20px;
    padding: 0;
    background-color: transparent;
    border: none;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-main);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    transition: .3s;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 999;
}
.videoopened .header {
    z-index: 9;
}
.scrolled .header {
    box-shadow: 0px 0px 8px rgba(144,144,144, .2);
    padding-top: 15px;
    padding-bottom: 15px;
}
.header__wrapper {
    align-items: center;
}
.header__logo {
    max-width: 200px;
    flex: 0 0 200px;
    padding: 0 10px;
}
.header__logo img {
    width: 160px;
    transition: .3s;
}
.scrolled .header__logo img {
    width: 110px;
}

.header__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: max-content;
    max-width: 100%;
}
.header__socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-third);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 9px;
    margin: 5px 7px;
}
.header__socials a:hover {
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(144,144,144, .2);
}
.header__socials img {
    opacity: .65;
    transition: .3s;
}
.header__socials a:hover img {
    opacity: 1;
}
.header__items {
    flex: 1;
    display: flex;
    align-items: center;
}

.header__btns {
    width: max-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: clamp(15px, 1.5vw, 60px);
    padding: 0 10px;
}
.header__woo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 8px;
    position: relative;
}
.header__woo:hover {
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(144,144,144, .2);
}
.header__woo svg {
    width: 100%;
    height: auto;
}
.header__counter {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -8px;
    right: -8px;
    font-weight: 500;
    width: 18px;
    height: 18px;
    background-color: var(--color-main);
    border-radius: 50%;
    padding: 3px;
    font-size: 10px;
    line-height: 100%;
    color: #fff;
}
/* menu start */
.header__menu {
    padding: 0 10px;
    flex: 1;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu ul ul {
    display: none;
}
.header__menu>div>ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__menu>div>ul>li {
    margin: 0 clamp(10px, 2vw, 40px);
}
.header__menu>div>ul>li>a {
    text-align: center;
    font-size: 1rem;
    line-height: 120%;
    letter-spacing: var(--spacing-bigger);
    text-transform: uppercase;
    font-weight: 500;
}
.header__menu>div>ul>li.current-menu-item>a,
.header__menu>div>ul>li>a:hover {
    color: var(--color-main);
}
/* menu end */
/* @ @ HEADER END @ @ */

/* @ @ HERO START @ @ */
.heroimg {
    position: relative;
    overflow-x: clip;
}
.heroimg>svg {
    position: absolute;
    z-index: 1;
    height: auto;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
}
.heroimg__img {
    text-align: center;
}
.heroimg__img img {
    border-radius: var(--radius-big);
}
.heroimg__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.heroimg__content .page-heading {
    margin-bottom: 0;
}
.heroimg__txt {
    color: var(--color-fourth);
    max-width: 100%;
    width: 360px;
}
.heroimg__txt strong {
    font-weight: 500;
}
.heroimg__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.heroimg__links>* {
    margin: 10px 15px 0 0;
}
/* @ @ HERO END @ @ */
/* @ @ DESC START @ @ */
.desc {
    position: relative;
    overflow-x: clip;
}
.desc>svg {
    position: absolute;
    z-index: 1;
    bottom: -80px;
    left: -5%;
    width: 45%;
    height: auto;
}
.desc__img {
    text-align: center;
}
.desc__img img {
    border-radius: var(--radius-big);
}
.desc__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.desc__content>svg {
    position: absolute;
    top: 50%;
    right: -19%;
    transform: translateY(-50%);
    z-index: 1;
    width: 130%;
    height: auto;
}
.desc__txt {
    color: var(--color-fourth);
    max-width: 100%;
    width: 560px;
    font-weight: 500;
}
/* @ @ DESC END @ @ */
/* @ @ PRODS START @ @ */
.prods {
    position: relative;
    overflow-x: clip;
}
.prods>svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2%;
    width: 34%;
    height: auto;
}
/* @ @ PRODS END @ @ */
/* @ @ BOXES START @ @ */
.boxes {
    position: relative;
    z-index: 3;
    overflow-x: clip;
}
.boxes>svg {
    position: absolute;
    bottom: -80px;
    right: -13%;
    width: 65%;
    transform:  scaleX(-1);
    height: auto;
}
.boxes__item {
    margin-top: 40px;
}
.boxes__img {
    display: block;
    border-radius: var(--radius-small);
    overflow: hidden;
}
.boxes__img img {
    border-radius: var(--radius-small);
    transition: .3s;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.boxes__img:hover img {
    transform: scale(1.05);
}
.boxes__title {
    margin: 20px 0 0 0;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 130%;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 0;
    display: block;
    font-family: var(--font-second);
}
.boxes__title a:hover {
    color: var(--txt-color);
}
/* @ @ BOXES END @ @ */
/* @ @ VIDEOBOXES START @ @ */
.videoboxes {
    position: relative;
    z-index: 5;
    background-color: var(--color-second);
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-x: clip;
}
.videoboxes>svg {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 101%;
    max-height: 90%;
    object-fit: contain;
    height: auto;
    filter: brightness(0) invert(1);
    z-index: 1;
    opacity: .8;
}
.videoopened .videoboxes {
    z-index: 10;
}
.videoboxes__box>h2 {
    text-align: center;
}
.videoboxes__item {
    margin-top: 40px;
}
.videoboxes__item-wrapper {
    position: relative;
    border-radius: var(--radius-small);
}
.videoboxes__item-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-small);
    background-color: #B89F8D;
    opacity: .5;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.videoboxes__item-wrapper.active:before {
    opacity: 0;
    z-index: -1;
}
.videoboxes__item img {
    width: 100%;
    aspect-ratio: 3/5;
    border-radius: var(--radius-small);
    object-fit: cover;
    transition: .3s;
}
.videoboxes__item-wrapper.active img {
    opacity: 0;
    z-index: -1;
}
.videoboxes__item video {
    width: 100%;
    border-radius: var(--radius-small);
    object-fit: cover;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.videoboxes__item-wrapper.active video {
    opacity: 1;
}
.videoboxes__item-wrapper.active .play-cbtn {
    display: none;
}
.videoboxes__btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.videoboxes__links {
    position: relative;
    z-index: 2;
}
/* @ @ VIDEOBOXES END @ @ */
/* @ @ SCLS START @ @ */
.scls {
    padding-bottom: 60px;
}
.scls__items {
    flex-wrap: nowrap;
    justify-content: center;
}
.scls__item {
    padding: 0 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    flex: 1;
    max-width: 33.333%;
}
.scls__item>svg {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}
.scls__item:nth-child(2) > svg,
.scls__item:nth-child(4n) > svg  {
    transform: translate(-50%, -50%) rotate(45deg);
}
.scls__item>a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 200px;
    max-width: 75%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 55px;
    background-color: var(--color-third);
}
.scls__item>a:hover {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(144,144,144, .2);
}
/* @ @ SCLS END @ @ */
/* @ @ CONT START @ @ */
.cont {
    position: relative;
    overflow-x: clip;
}
.cont>svg {
    position: absolute;
    width: 60%;
    height: auto;
    left: -10%;
    top: 0;
    z-index: 1;
}
.cont__img {
    text-align: center;
}
.cont__img img {
    border-radius: var(--radius-big);
}
.cont__content {
    padding-left: clamp(15px, 2.5vw, 100px);
}


.cont__form .cf {
    max-width: 100%;
    width: 450px;
}
.cf * {
    font-family: var(--font-main);
    font-size: 1rem;
}
.cf form>p {
    margin: 0;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox']),
.cf textarea {
    font-size: .9rem;
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #D7D7D7;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
    resize: none;
    background-color: var(--color-second);
    border-radius: 12px;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox'])::placeholder,
.cf textarea::placeholder {
    font-family: var(--font-main);
    font-size: .9rem;
    color: var(--color-fourth);
    font-weight: 500;
    opacity: .7;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox']):focus,
.cf textarea:focus {
    border-color: var(--color-main);
}

.cf .wpcf7-acceptance .wpcf7-list-item {
    margin: 30px auto 0 auto;
    max-width: 100%;
    display: block;
    line-height: 140%;
    color: rgba(0, 0, 0, .5);
    font-weight: 500;
}
.cf .wpcf7-acceptance .wpcf7-list-item * {
    font-size: 13px !important;
}
.cf .wpcf7-acceptance .wpcf7-list-item a {
    font-weight: 400;
    text-decoration: underline;
}
.cf .wpcf7-acceptance label {
    padding-left: 45px !important;
    position: relative;
    display: block;
}
.cf .wpcf7-acceptance label:before {
    content: '';
    width: 25px;
    height: 25px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 10px;
    top: 0;
    border: 1px solid #DFDDDA;
    background-color: #F9F8F6;
}
.cf .wpcf7-acceptance label.active:after {
    content: '';
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    left: 5px;
    top: -3px;
    background-image: url(../assets/check.svg);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: center;
}
.cf input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}
.cf .wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    margin-bottom: -20px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--color-main);
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    margin-top: 10px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--txt-color);
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    margin-top: 10px !important;
}

.cf .rcaptcha a {
    font-size: 12px;
    line-height: 100%;
    font-weight: 300;
}
.cf .rcaptcha {
    font-size: 12px;
    line-height: 100%;
    font-weight: 300;
    display: block;
    width: 100%;
}
.footer .rcaptcha {
    display: block;
    font-size: 11px;
    line-height: 120%;
    color: var(--color-fourth);
}
.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
    z-index: -999;
}
/* @ @ CONT END @ @ */
/* @ @ OPS START @ @ */
.ops {
    position: relative;
    overflow-x: clip;
}
.ops>svg {
    width: 95%;
    height: auto;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    max-height: 150%;
    object-fit: contain;
}

.ops__item {
    padding: 10px 20px;
}
.ops__item-wrapper {
    background-color: #fff;
    box-shadow: 0px 0px 13px rgba(144,144,144, .3);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-small);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.ops__txt {
    color: var(--color-fourth);
    font-weight: 500;
    font-size: .9rem;
    line-height: 130%;
    margin: 0 0 30px 0;
}
.ops__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    width: 100%;
}
.ops__stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 10px;
}
.ops__stars span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1px;
}
.ops__stars svg {
    width: 18px;
    height: auto;
}
.ops__stars span:not(.active) {
    opacity: .5;
}
.ops__sign {
    display: inline-block;
    color: var(--color-fourth);
    font-size: .9rem;
    line-height: 120%;
    letter-spacing: var(--spacing);
    font-weight: 500;
}

.ops__slider .slick-track {
    display: flex !important;
}
.ops__slider .slick-slide {
    height: inherit !important;
}
/* @ @ OPS END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ OPTIONS START @ @ */
.options__item {
    position: relative;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 5;
}
.options__title {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 120px;
    font-size: clamp(16px, 1.5vw, 28px);
    line-height: 130%;
}
.options__title>svg {
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: 140%;
    object-fit: contain;
    z-index: 1;
}
.options__title>span {
    text-align: center;
    display: inline-block;
    max-width: 100%;
    width: 180px;
    position: relative;
}
.options__title>span:before {
    content: '';
    width: 100%;
    background-color: var(--color-third);
    border-radius: 50%;
    aspect-ratio: 1/1;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.options__price {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    letter-spacing: var(--spacing);
    font-size: 1.25rem;
    line-height: 130%;
    z-index: 5;
    position: relative;
}
.options__price-txt {
    font-size: .9rem;
    line-height: 120%;
    color: var(--color-fourth);
    margin-top: 3px;
}
.options__list {
    width: 100%;
    margin-top: auto;
    margin-top: 40px !important;
}
.options__list li {
    color: var(--color-fourth);
    font-weight: 500;
}

.infobox__content {
    background-color: var(--color-second);
    border-radius: var(--radius);
    padding: 15px 20px 15px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: .9rem;
    line-height: 130%;
    color: var(--color-fourth);
    font-weight: 500;
}
.infobox__content svg {
    width: 10px;
    min-width: 10px;
    height: auto;
    margin-right: 25px;
}
/* @ @ OPTIONS END @ @ */
/* @ @ STEPS START @ @ */
.steps {
    position: relative;
    z-index: 3;
    overflow-x: clip;
}
.steps>svg {
    position: absolute;
    bottom: 25%;
    right: -15%;
    width: 65%;
    height: auto;
    z-index: 1;
    transform: scaleX(-1);
    opacity: .7;
}
.steps__item {
    padding: 15px;
}
.steps__item-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    padding: 50px 70px;
    background-color: var(--color-second);
    position: relative;
    overflow: hidden;
}
.steps__item-wrapper>svg {
    position: absolute;
    z-index: 1;
    filter: brightness(0) invert(1);
    width: 115%;
    opacity: .7;
    bottom: -8vw;
    height: auto;
    left: 40px;
}
.steps__txt {
    color: var(--color-fourth);
    font-weight: 500;
}
/* @ @ STEPS END @ @ */
/* @ @ CFORM START @ @ */
.cform {
    position: relative;
    z-index: 3;
    overflow-x: clip;
}
.cform>svg {
    position: absolute;
    top: 30%;
    left: -16%;
    width: 76%;
    height: auto;
    z-index: 1;
    opacity: .7;
}
.cform__txt {
    font-weight: 500;
    color: var(--color-fourth);
    margin-bottom: 60px;
}

.cform__item {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 400px;
}
.cform__item .cf textarea,
.cform__item .cf input:not([type='file']):not([type='submit']):not([type='checkbox']) {
    background-color: #fff;
}
.cform__item .cf input[type="submit"] {
    margin: 10px auto 0 auto;
    display: block;
}
/* @ @ CFORM END @ @ */
/* @ @ EDITORTXT START @ @ */
.editortxt__item {
    font-weight: 500;
    color: var(--color-fourth);
}
/* @ @ EDITORTXT END @ @ */
/* @ @ GALSLIDER START @ @ */

.galslider__slick {
    padding-left: 60px;
    padding-right: 60px;
}
.galslider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: var(--color-main);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    background-image: url(../assets/arrow-white.svg);
    cursor: pointer;
    z-index: 4;
    transition: .3s;
}
.galslider .slick-arrow.slick-disabled {
    opacity: .6;
}
.galslider .slick-arrow:not(.slick-disabled):hover {
    background-color: var(--color-fifth);
}
.galslider .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 0;
}
.galslider .slick-next {
    right: 0;
}
.galslider__item {
    padding: 0 15px;
}
.galslider__item a {
    overflow: hidden;
    display: block;
    border-radius: var(--radius);
}
.galslider__item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
    border-radius: var(--radius);
}
.galslider__item a:hover img {
    transform: scale(1.05);
}
/* @ @ GALSLIDER END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */

/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ VIDEOLIST START @ @ */
.videolist {
    position: relative;
    z-index: 5;
}
.videoopened .videolist {
    z-index: 10;
}
.videolist__box>h2 {
    text-align: center;
}
.videolist__item {
    margin-top: 40px;
}
.videolist__item--hidden {
    display: none;
}
.videolist__item-wrapper {
    position: relative;
    border-radius: var(--radius-small);
    background-color: #414141;
}
.videolist__item-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-small);
    background-color: #B89F8D;
    opacity: .5;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.videolist__item-wrapper.active:before {
    opacity: 0;
    z-index: -1;
}
.videolist__item-wrapper.active img {
    opacity: 0;
    z-index: -1;
}
.videolist__item video {
    width: 100%;
    border-radius: var(--radius-small);
    object-fit: cover;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.videolist__item-wrapper.active video {
    opacity: 1;
}
.videolist__item-wrapper.active .play-cbtn {
    display: none;
}
.videolist__item img {
    width: 100%;
    aspect-ratio: 3/5;
    border-radius: var(--radius-small);
    object-fit: cover;
    position: relative;
}
.videolist__btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.videolist__txt {
    margin: 30px 0 0 0;
}
/* @ @ VIDEOLIST END @ @ */
/* @ @ NEWSLETTER START @ @ */
.newsletter {
    position: relative;
    z-index: 5;
    align-items: center;
    overflow-x: clip;
}
body.home .newsletter {
    margin-top: 220px;
}
.newsletter__item {
    border-radius: var(--radius);
    background-color: var(--color-second);
    padding: 60px clamp(15px, 7vw, 140px) 60px 60px;
}
.newsletter__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 0 !important;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input,
.newsletter__form input {
    border: 1px solid #DFDDDA !important;
    border-radius: 13px !important;
    padding: 20px 25px !important;
    color: #2F2A25 !important;
    line-height: 120% !important;
    font-size: 1rem !important;
    font-family: var(--font-main) !important;
    max-width: 100% !important;
    width: 340px !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder,
.newsletter__form input::placeholder {
    opacity: .5;
}
.newsletter__form input:focus {
    color: #000 !important;
}
.newsletter__form button {
    margin-top: 20px !important;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
    display: flex;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
    display: inline-block !important;
    padding: 15px 25px !important;
    background-color: var(--color-main) !important;
    border: 1px solid var(--color-main) !important;
    color: #fff !important;
    transition: .3s !important;
    cursor: pointer !important;
    border-radius: 30px !important;
    text-align: center !important;
    font-family: var(--font-main) !important;
    font-size: 1rem !important;
    line-height: 120% !important;
    width: initial !important;
    margin-top: 5px !important;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover {
    background-color: var(--color-fifth) !important;
}
body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent, #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
    margin-bottom: 0 !important;
}
.newsletter__img {
    text-align: center;
}
.newsletter__img img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
}
/* @ @ NEWSLETTER END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    margin-top: 80px;
}
.footer__top-items {
    background-color: var(--color-second);
    border-radius: var(--radius);
    padding: 60px 30px;
}
.footer__menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__menu ul li:not(:last-child) {
    margin-bottom: 20px;
}
.footer__menu ul li a {
    text-transform: uppercase;
    letter-spacing: var(--spacing);
    display: inline-block;
    font-weight: 500;
}
.footer__menu ul li a:hover {
    color: var(--color-main);
}
.footer__menu ul ul {
    display: none;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.footer__logo>a>img {
    width: 180px;
}
.footer__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.footer__socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-third);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 12px;
    margin: 5px;
}
.footer__socials a:hover {
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(144,144,144, .2);
}
.footer__socials img {
    opacity: .65;
    transition: .3s;
}
.footer__socials a:hover img {
    opacity: 1;
}

.footer__cont {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer__title {
    display: block;
    font-weight: 500;
    letter-spacing: var(--spacing);
    margin-bottom: 15px;
}
.footer__cont a {
    display: block;
    font-weight: 500;
    letter-spacing: var(--spacing);
    color: var(--color-main);
}
.footer__cont a:hover {
    color: var(--txt-color);
}

.footer__bottom {
    color: #929292;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
}
.footer__policy {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer__policy img {
    width: 70px;
    min-width: 70px;
    margin-right: 10px;
}
.footer__policy p {
    margin: 0;
}
.footer__policy a span {
    display: inline-block;
    margin: 0 5px;
}
.footer__copy {
    text-align: center;
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    justify-content: center;
}
.footer__copy span {
    display: inline-block;
    margin-left: 3px;
}
.footer__built {
    margin: 10px 0;
}
.footer__built p {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer__built p a {
    text-decoration: underline;
    display: inline-block;
    margin-left: 15px;
}
.footer__built p a img {
    margin-left: 20px;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2400px) {
    main {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrap {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-biggest {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1680px) {
    body, html {
        font-size: 17px;
        line-height: 27px;
    }
}
@media(max-width: 1440px) {
    body, html {
        font-size: 16px;
        line-height: 24px;
    }
    body {
        padding-top: 110px;
        --radius: 70px;
        --radius-small: 50px;
        --radius-big: 200px;
        --spacing: 2px;
        --spacing-bigger: 3px;
    }
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .wrapper-biggest {
        padding-left: 9vw;
        padding-right: 9vw;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }

    .header__logo {
        max-width: 150px;
        flex: 0 0 150px;
    }
    .header__logo img {
        width: 120px;
    }


    /*  */
    .desc__content>svg {
        width: 110%;
        right: -10%;
    }

    /*  */
    .videoboxes>svg  {
        top: 60px;
    }

    /*  */
    .scls__item>a {
        width: 180px;
    }
    /*  */
    .ops__item {
        padding: 10px 15px;
    }

    /*  */
    .options__item {
        padding: 0 15px;
    }
    .options__title {
        margin-bottom: 80px;
    }
    .options__title>svg {
        height: 160%;
    }

    /*  */
    .steps__item-wrapper {
        padding: 40px 30px;
    }
    .steps__item-wrapper>svg {
        left: 20px;
    }
}
@media(max-width: 1380px) {
    .ops>svg {
        top: -100px;
    }
}
@media(max-width: 1280px) {
    .options__title>svg {
        height: 200%;
    }
}
@media(max-width: 1200px) {
    .header__logo {
        max-width: 120px;
        flex: 0 0 120px;
    }
    .header__logo img {
        width: 90px;
    }
    .scrolled .header__logo img {
        width: 70px;
    }

    /*  */
    .ops__items {
        margin-top: 30px !important;
    }

    /*  */
    .galslider__item {
        padding: 0 10px;
    }

    /*  */
    body.home .newsletter {
        margin-top: 120px;
    }
}
@media(max-width: 1150px) {
    body {
        padding-top: 90px;
    }
    .nav-icon {
        display: block;
    }
    .header__items {
        position: fixed;
        top: 0;
        right: -500px;
        height: 100%;
        overflow: auto;
        background-color: #fff;
        box-shadow: 0px 0px 8px rgba(144,144,144,.2);
        padding: 40px 30px 40px 30px;
        width: 450px;
        max-width: 100%;
        transition: .8s;
        z-index: 99;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .menuopened .header__items {
        right: 0;
    }
    .header__menu {
        flex: initial;
        padding: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header__menu>div>ul>li {
        margin: 0 0 15px 0;
    }
    .header__menu>div>ul>li>a {
        text-align: left;
        font-size: 18px;
    }
    .header__socials {
        justify-content: flex-start;
    }
    .header__socials a {
        margin: 5px 6px 0 0;
    }
    .header__btns {
        width: initial;
        flex: 1;
    }
}
@media(min-width: 993px) {
 
}
@media(max-width: 992px) {
    body, html {
        font-size: 15px;
        line-height: 26px;
    }
    body {
        padding-top: 74px;
        --radius: 40px;
        --radius-small: 30px;
        --radius-big: 150px;
        --spacing: 1px;
    }
    .wrapper-biggest,
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    .breads {
        margin-bottom: 40px;
        margin-top: 20px;
    }
    .checklist li svg {
        margin-right: 6px;
        width: 20px;
        height: 20px;
        top: 2px;
    }

    .cbtn {
        padding: 10px 25px;
    }

    .video-embed iframe {
        height: 400px;
    }

    .header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .scrolled .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__logo {
        max-width: 100px;
        flex: 0 0 100px;
    }
    .header__logo img {
        width: 70px;
    }
    .scrolled .header__logo img {
        width: 60px;
    }

    /*  */
    .heroimg>svg {
        transform: initial;
        top: 20%;
        width: 95%;
        right: -10%;
    }
    .heroimg__content {
        align-items: center;
        text-align: center;
    }
    .heroimg__links {
        justify-content: center;
    }
    .heroimg__links>* {
        margin: 5px;
    }
    .heroimg__img {
        margin-top: 40px;
    }

    /*  */
    .desc>svg {
        bottom: initial;
        top: 30%;
        width: 40%;
        left: 5px;
        order: 3;
    }
    .desc__content {
        order: 0;
    }
    .desc__content>svg {
        width: 100%;
        right: initial;
        left: 50%;
        transform: translate(-50%, -50%);
        max-height: 100%;
        object-fit: contain;
    }
    .desc__content header {
        width: 100%;
        text-align: center;
    }
    .desc__txt {
        width: 100%;
    }
    .desc__txt * {
        margin-top: 0;
    }
    .desc__img {
        order: 1;
        margin-top: 20px;
    }

    /*  */
    .scls__item>a {
        width: 120px;
        padding: 40px;
    }
    /*  */
    .cont__content {
        padding-left: 15x;
        margin-top: 30px;
    }
    .cont__content header {
        text-align: center;
    }
    .cont__form {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /*  */
    .ops {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .ops>svg {
        top: -50px;
        transform: translateX(-50%);
    }
    .ops__items {
        margin-top: 0 !important;
    }

    /*  */
    .options__items {
        margin-top: 0 !important;
    }
    .options__title {
        margin-bottom: 40px;
    }
    .options__title>svg {
        height: 140%;
    }
    .options__title>span:before {
        width: 100px;
        opacity: .8;
    }
    .options__price {
        margin-top: initial;
    }
    .options__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: flex-start;
        margin-top: 20px;
    }

    /*  */
    .steps>svg {
        bottom: 50%;
        width: 70%;
    }
    /*  */
    .galslider__items {
        margin-top: 10px !important;
    }
    .galslider__slick {
        padding: 0;
    }

    /*  */
    body.home .newsletter {
        margin-top: 60px;
    }
    .newsletter__img {
        display: none;
    }
    /*  */

    .footer__logo {
        order: 0;
    }
    .footer__menu {
        margin-top: 20px;
        text-align: center;
        order: 1;
    }
    .footer__menu ul li:not(:last-child) {
        margin-bottom: 10px;
    }
    .footer__cont {
        margin-top: 30px;
        text-align: center;
    }
    .footer__title {
        margin-bottom: 5px;
    }

    .footer__policy {
        justify-content: center;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    .footer__policy img {
        margin: 0 0 10px 0;
    }
    .footer__built {
        display: flex;
        justify-content: center;
    }
    .footer__built p {
        justify-content: center;
    }
}
@media(max-width: 767px) {
    body, html {
        font-size: 14px;
        line-height: 22px;
    }
    body {
        padding-top: 66px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .marg-top-biggest {
        margin-top: 60px;
    }
    .play-cbtn {
        width: 50px;
        height: 50px;
    }
    .slick-dots {
        padding: 10px 15px;
    }
    .slick-dots li {
        margin: 2px;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .slick-dots li.slick-active button {
        width: 24px;
    }
    .slider__nav .slider-btn {
        display: none !important;
    }

    .video-close {
        right: 10px;
        top: 30px;
    }
    .video-embed__item {
        padding: 20px;
        overflow: auto;
        min-height: 400px;
    }
    .video-embed iframe {
        height: auto;
        aspect-ratio: 16/9;
        width: 100%;
    }

    .cnav {
        margin-top: 0;
    }
    .cnav ul {
        padding: 6px 10px;
    }
    .cnav ul li a {
        font-size: 1.1rem;
        line-height: 120%;
        padding: 8px 15px;
    }

    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__woo {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    .header__counter {
        top: -5px;
        right: -5px;
    }

    /*  */
    .boxes__heading h2 {
        margin-bottom: 0;
    }
    .boxes>svg {
        bottom: -20px;
        width: 80%;
    }

    /*  */
    .videoboxes {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .videoboxes>svg {
        top: 10px;
        transform: translateX(-50%);
    }
    .videoboxes__item {
        padding: 0 4px;
        margin-top: 0;
    }

    /*  */
    .scls__item {
        margin-top: 60px;
        padding: 0 15px;
    }
    .scls__item>a {
        width: 60px;
        padding: 15px;
    }
    /*  */
    .ops__item-wrapper {
        padding: 30px;
    }

    /*  */
    .steps__item {
        padding: 10px;
    }
    .steps__item-wrapper {
        padding: 30px;
    }
    .steps__item-wrapper>svg {
        bottom: -100px;
    }



    /*  */
    .videolist__item:nth-child(2),
    .videolist__item:first-child {
        margin-top: 0 !important;
    }
    .videolist__item-wrapper {
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
    }
    .videolist__item img {
        aspect-ratio: 6/9;
    }
    /*  */
    .newsletter__items {
        padding: 0;
    }
    .newsletter__item {
        padding: 40px 30px;
    }
    body #mlb2-24808378.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input,
    .newsletter__form input {
        padding: 12px 20px !important;
    }
    /*  */
    .footer__top-items {
        padding: 40px 30px;
    }
    .footer__logo>a>img {
        width: 110px;
    }
    .footer__socials {
        margin-top: 25px;
    }
    .footer__socials a {
        width: 35px;
        height: 35px;
        padding: 10px;
    }

    .footer__built p a,
    .footer__built p {
        display: flex;
        align-items: center;
        flex-direction: column;

    }
    .footer__built p a  {
        margin-left: 0;
    }
    .footer__built p a img {
        margin-left: 0;
        margin-top: 10px;
    }
    
}
@media(max-width: 500px) {
    .boxes__item {
        padding: 0 4px;
    }
    .boxes__title {
        margin-top: 10px;
    }
    /*  */
    .scls__item {
        padding: 0 5px;
        margin-top: 30px;
    }
    .scls__item>a {
        width: 50px;
        padding: 15px;
    }
    /*  */
    .galslider__item {
        padding: 0 6px;
    }
    /*  */
    .videolist__item {
        padding: 0 4px;
        margin-top: 20px;
    }
    .videolist__txt {
        margin-top: 20px;
    }
}
/* @ @ MEDIA END @ @  */