body,html {
    font-size: 17px;
    line-height: 28px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    background-color: var(--color-third);
    font-size: 17px;
    font-weight: 500;
    padding-top: 0;
    --txt-color: #968678;
    --color-main: #968678;
    --color-second: #F4F2EF;
    --color-third: #FBFAF8;
    --font-main: 'Montserrat', sans-serif;
    --font-second: 'the-seasons', sans-serif;
    --radius: 40px;
    --radius-small: 30px;
}
body.logged-in {
    background-color: #fff;
    padding-top: 0;
}
body:not(.home) {
    padding-top: 140px;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-second);
    font-weight: 400;
    color: #000;
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper {
    padding-left: 12vw;
    padding-right: 12vw;
}
.wrapper-big {
    padding-left: 16vw;
    padding-right: 16vw;
}
.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: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-second);
}

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

.slick-dots {
    margin: 20px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slick-dots li {
    margin: 3px;
}
.slick-dots li button {
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--color-main);
    padding: 0;
    margin: 0;
    width: 12px;
    height: 12px;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: #000;
}

.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 34px;
    height: 34px;
    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;
}

.hero {
    position: relative;
    z-index: 3;
    overflow-x: clip;
}
.hero>img {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    filter: brightness(0);
    opacity: .02;
    width: 85vw;
    
    animation: move 15s ease-in-out infinite;
    
    -ms-animation: move 15s ease-in-out infinite;
    -webkit-animation: move 15s ease-in-out infinite;
    -moz-animation: move 15s ease-in-out infinite;
}
.hero header {
    position: relative;
    z-index: 3;
    padding-top: 30px;
}
.hero__breadcrumbs {
    margin: 0 0 20px 0;
}
#breadcrumbs {
    margin: 0;
    font-size: .75rem;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-gray);
}
#breadcrumbs .sep {
    display: inline-block;
    margin: 0 10px;
    font-size: .7rem;
}
#breadcrumbs .breadcrumb_last {
    color: var(--color-main);
}

.checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checklist ul li {
    padding-left: 40px;
    position: relative;
    margin: 15px 0;
}
.checklist ul li:before {
    content: '';
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-image: url(../assets/checklist.svg);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.posrel {
    position: relative;
    z-index: 4;
}
.subtitle {
    display: inline-block;
    font-size: 1rem;
    line-height: 110%;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-main);
}
.section-txt {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
    width: 100%;
}
.section-txt p {
    color: var(--color-main);
    font-weight: 500;
    max-width: 100%;
    margin: 0;
    width: 580px;
}
.section-heading {
    display: block;
    font-family: var(--font-second);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 120%;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}
.page-heading {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 120%;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
    font-family: var(--font-second);
}

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

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

.iconbtn {
    display: flex;
    max-width: 100%;
    width: max-content;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.iconbtn:hover {
    color: #000;
}
.iconbtn svg {
    width: 24px;
    height: auto;
    margin-left: 15px;
    transition: .3s;
}
.iconbtn:hover svg {
    transform: rotate(360deg);
    filter: brightness(0);
} 

.cbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    width: max-content;
    max-width: 100%;
    color: #fff;
    font-weight: 500;
    padding: 10px 25px;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    transition: .3s;
    cursor: pointer;
    font-size: 1rem;
    line-height: 120%;
    font-family: var(--font-main);
}
.cbtn svg {
    margin-left: 15px;
    height: auto;
    width: 20px;
}
.cbtn:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
}
.cbtn--icon svg {
    margin-right: 15px;
    width: 14px;
    height: auto;
    margin-left: 0;
}
/* @ @ 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: 10px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    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%;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: .3s;
    z-index: 9999;
}
.scrolled .header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(144,144,144, .2);
}
.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    width: 100px;
}
.header__items {
    width: max-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__menu {
    display: flex;
    justify-content: center;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__menu ul li {
    margin: 0 clamp(15px, 2vw, 60px);
}
.header__menu ul li a:hover {
    color: #000;
}

.header__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__socials a {
    margin: 0 0 0 20px;
    background-color: var(--color-second);
    width: 80px;
    height: 45px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.header__socials a svg,
.header__socials a img {
    width: 19px;
    height: 19px;
    object-fit: contain;
    transition: .3s;
}
.header__socials a:hover {
    background-color: var(--color-main);
}
.header__socials a svg path {
    fill: var(--color-main);
}
.header__socials a:hover svg,
.header__socials a:hover img {
    filter: brightness(0) invert(1);
}
/* menu start */

/* menu end */
/* @ @ HEADER END @ @ */
/* @ @ SEARCH POP START @ @ */
.pop-search {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    display: none;
    background-color: rgba(255,255,255, .95);
    padding: 20px;
}
.pop-search>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pop-search form {
    display: flex;
    align-items: center;
}
.pop-search form input {
    width: 400px;
    background-color: transparent;
    font-size: 1.4rem;
    padding: 20px 15px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-bottom: 1px solid var(--txt-color);
    color: var(--txt-color);
    max-width: calc(100% - 45px);
}
.pop-search form input::placeholder {
    color: var(--txt-color);
    font-weight: 300;
}
.pop-search button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 15px;
    width: 30px;
    height: 30px;
}
.pop-search__close {
    position: absolute;
    top: 120px;
    right: 120px;
    font-weight: 300;
    font-size: 42px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.search-results__item {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 125%;
}
.search-results__title {
    font-weight: 500;
}
.search-results__link {
    font-size: .8rem;
}
/* @ @ SEARCH POP END @ @ */
/* @ @ BANER START @ @ */
.baner {
    position: relative;
    padding-top: clamp(80px, 13vw, 220px);
    background-color: var(--color-third);
    padding-bottom: clamp(60px, 7vw, 120px);
    overflow: clip;
    align-items: flex-start;
}
.baner>svg {
    position: absolute;
    height: auto;
    z-index: 1;
}
.baner__img {
    position: relative;
}
.baner__img img {
    position: relative;
    z-index: 2;
}
.baner__img-txt {
    position: absolute;
    bottom: -30px;
    left: 0;
    background-color: var(--color-main);
    color: #fff;
    font-size: .9rem;
    line-height: 130%;
    border-radius: var(--radius);
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    z-index: 3;
}
.baner__content {
    display: flex;
    align-items: center;
    padding-left: clamp(15px, 5vw, 80px);
}
.baner__content-wrapper {
    max-width: 100%;
    width: 460px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.baner__title {
    display: block;
    font-family: var(--font-second);
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 115%;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}
.baner__title span {
    margin-top: 10px;
    font-size: 55%;
    display: block;
    line-height: 115%;
    font-family: var(--font-main);
}
.baner__content .cbtn {
    margin-top: 15px;
}
.baner__price {
    margin-top: 30px;
    font-size: 1.25rem;
    line-height: 130%;
    display: block;
}
.baner__price span {
    color: #9A9693;
    display: inline-block;
    margin-right: 15px;
    font-weight: 400;
    position: relative;
    font-size: 120%;
}
.baner__price span:after {
    content: '';
    background-color: red;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}
.baner__price-txt {
    color: #000;
    font-size: .85rem;
    line-height: 120%;
    font-weight: 400;
}
/* @ @ BANER END @ @ */
/* @ @ TXTIMG START @ @ */
.txtimg {
    overflow-x: clip;
}
.txtimg__content {
    padding-top: 60px;
    padding-right: 60px;
}
.txtimg__txt {
    max-width: 100%;
    width: 500px;
}
.txtimg__img img {
    border-radius: var(--radius);
}
/* @ @ TXTIMG END @ @ */
/* @ @ DESC START @ @ */
.desc {
    overflow-x: clip;
}
.desc__items {
    background-color: var(--color-third);
    border-radius: var(--radius);
    padding-top: 80px;
    padding-bottom: 60px;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
}
.desc__items>img {
    position: absolute;
    width: auto;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.desc__img {
    padding: 0 40px;
}
.desc__img--top {
    position: relative;
    top: -110px;
    margin-bottom: -110px;
    text-align: center;
}
.desc__img--bottom {
    text-align: center;
}
.desc__content {
    padding-top: 60px;
}
.desc__txt {
    max-width: 100%;
    width: 500px;
}
.socialsitems.desc__socials {
    justify-content: flex-start;
}
.socialsitems.desc__socials a {
    margin: 10px 15px 0 0;
}
/* @ @ DESC END @ @ */
/* @ @ OFFERBOX START @ @ */
.offerbox {
    overflow-x: clip;
}
.offerbox__img figure {
    display: flex !important;
    justify-content: center;
}
.offerbox__content {
    padding-top: 60px;
}
.offerbox__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.offerbox__logo {
    width: 70px;
    margin-right: 25px;
}
.offerbox__top-title {
    display: block;
    font-family: var(--font-second);
    font-size: clamp(20px, 1.5vw, 30px);
    line-height: 115%;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}
.offerbox__top-title span {
    font-size: 75%;
    display: block;
    line-height: 115%;
    margin-top: 10px;
    font-weight: 300;
}
.offerbox__price {
    margin-top: 30px;
    font-size: 1.25rem;
    line-height: 130%;
    display: block;
}
.offerbox__price span {
    color: #9A9693;
    display: inline-block;
    margin-right: 15px;
    font-weight: 400;
    position: relative;
    font-size: 120%;
}
.offerbox__price span:after {
    content: '';
    background-color: red;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}
.offerbox__content .cbtn {
    margin-top: 20px;
}
.offerbox__content #wph_price_info {
    margin-top: 10px;
}

.offerbox__bottom {
    display: flex;
    justify-content: center;
}
.offerbox__bottom img {
    border-radius: var(--radius);
}
/* @ @ OFFERBOX END @ @ */

/* @ @ SLIDER START @ @ */
.slider {
    overflow: hidden;
}
.slider__items {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 550px;
}
.slider .slick-track {
    display: flex !important;
}
.slider .slick-slide {
    height: inherit !important;
}
.slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow-custom.svg);
    cursor: pointer;
    border-radius: 50%;
    z-index: 4;
    background-color: var(--color-second);
    transition: .3s;
}
.slider .slick-arrow:hover {
    filter: brightness(85%);
}
.slider .slick-next {
    right: -100px;
}
.slider .slick-prev {
    left: -100px;
    transform: translateY(-50%) rotate(180deg);
}
.slider .slick-disabled {
    opacity: .5;
}
.slider__item img {
    border-radius: var(--radius-small);
    object-fit: contain;
    width: 450px;
    transition: .3s;
}
.slider__item a:hover img {
    filter: brightness(80%);
}

.slider__item {
    display: flex !important;
    justify-content: center;
}

.slider__list {
    column-count: 3;
    column-gap: 40px;
}
.slider__list-item {
    display: inline-block;
    background-color: var(--color-second);
    padding: 8px 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    font-size: .95rem;
    line-height: 120%;
}

.slider__btn {
    justify-content: center;
    align-items: center;
}
.slider__btn>* {
    margin: 10px 20px 10px 20px;
}
/* @ @ SLIDER END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ ICONS START @ @ */
.icons .slick-arrow {
    position: absolute;
    top: -90px;
    right: 20px;
    border: none;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-image: url(../assets/arrow-custom.svg);
    cursor: pointer;
    border-radius: 50%;
    z-index: 4;
    background-color: var(--color-second);
    transition: .3s;
}
.icons .slick-arrow:hover {
    filter: brightness(85%);
}
.icons .slick-prev {
    right: 80px;
    transform: rotate(180deg);
}
.icons .slick-disabled {
    opacity: .5;
}

.icons__slick .slick-track {
    display: flex !important;
}
.icons__slick .slick-slide {
    height: inherit !important;
}
.icons__item {
    padding: 0 20px;
}
.icons__item-wrapper {
    padding: 50px 40px;
    border-radius: var(--radius-small);
    width: 100%;
    height: 100%;
    background-color: var(--color-third);
}
.icons__item:nth-child(odd) .icons__item-wrapper {
    background-color: var(--color-second);
}
.icons__img {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.icons__img img {
    width: auto;
    height: 100%;
}
.icons__title {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 130%;
    margin-bottom: 30px;
}
.icons__txt {
    display: block;
    text-align: center;
    opacity: .6;
}
/* @ @ ICONS END @ @ */
/* @ @ LISTCHECK START @ @ */
.listcheck__item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.listcheck__item p {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
    padding: 7px 12px;
    background-color: var(--color-third);
    margin: 15px 0;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 140%;
    color: var(--color-main);
}
.listcheck__item p svg {
    width: 24px;
    height: auto;
    margin-right: 10px;
}
/* @ @ LISTCHECK END @ @ */
/* @ @ OPS START @ @ */
.ops {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--color-third);
}
.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-main);
    font-weight: 500;
    font-size: .9rem;
    line-height: 130%;
    margin: 0 0 30px 0;
}
.ops__txt span {
    filter: blur(4px);
}
.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;
    font-size: .9rem;
    line-height: 120%;
    letter-spacing: var(--spacing);
    font-weight: 500;
    color: var(--color-main);
}

.ops__slick .slick-track {
    display: flex !important;
}
.ops__slick .slick-slide {
    height: inherit !important;
}
/* @ @ OPS END @ @ */
/* @ @ IMGTXT START @ @ */
.imgtxt__img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgtxt__img figure {
    position: relative;
}
.imgtxt__img img {
    width: 340px;
    position: relative;
    z-index: 3;
}
.imgtxt__img svg {
    position: absolute;
    z-index: 2;
    left: -30%;
    top: 40px;
}
.imgtxt__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.imgtxt__content .cbtn {
    margin-top: 20px;
}
/* @ @ IMGTXT END @ @ */
/* @ @ FAQ START @ @ */
.faq__items {
    border: 1px solid #D7D7D7;
    border-radius: var(--radius-small);
}
.faq__item:not(:last-child) {
    border-bottom: 1px solid #D7D7D7;
}
.faq__title {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: var(--font-second);
    font-size: clamp(1rem, 1.8vw, 22px);
    line-height: 130%;
    text-align: left;
    cursor: pointer;
    padding: 25px 35px;
    color: #000;
    position: relative;
}
.faq__title>svg {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
    border: 1px solid var(--color-main);
    border-radius: 50%;
    padding: 10px;
    transition: .3s;
}
.faq__title.active>svg {
    transform: translateY(-50%) rotate(-90deg);
}
.faq__title>svg path {
    fill: var(--color-main);
}
.faq__txt {
    display: none;
    padding: 0 20px 20px 70px;
}
.faq__txt * {
    font-size: .9rem;
    line-height: 150%;
    font-weight: 500;
    color: var(--color-main);
    margin-top: 0;
}
/* @ @ FAQ END @ @ */
/* @ @ CONT START @ @ */
.cont {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--color-third);
    position: relative;
}

.cont__img-top {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
    max-width: 20%;
}

.cont__img-bottom {
    position: absolute;
    bottom: -1px;
    right: 7%;
    max-width: 20%;
}

.cont__items {
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    width: 500px;
    max-width: 100%;
    position: relative;
    z-index: 4;
}

.cf {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-main);
    width: 100%;
}
.cf form>p {
    margin: 0;
}
.cf br {
    display: none;
}
.cf form>p>label {
    margin-bottom: 10px;
    display: block;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox']),
.cf textarea {
    font-size: 1rem;
    width: 100%;
    padding: 20px 25px;
    border: 1px solid #D7D7D7;
    font-weight: 400;
    color: var(--color-main);
    resize: none;
    border-radius: 20px;
    background-color: #fff;
    font-family: var(--font-main);
    margin-top: 10px;
    font-weight: 500;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox'])::placeholder,
.cf textarea::placeholder {
    font-family: var(--color-main);
    font-size: 1rem;
    font-weight: 400;
    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: var(--color-main);
    font-weight: 400;
}
.cf .wpcf7-acceptance .wpcf7-list-item * {
    font-size: 12px !important;
    line-height: 130%;
}
.cf .wpcf7-acceptance .wpcf7-list-item a {
    font-weight: 400;
    text-decoration: underline;
}
.cf .wpcf7-acceptance label {
    padding-left: 30px !important;
    position: relative;
    display: block;
    padding-top: 1px;
}
.cf .wpcf7-acceptance label:before {
    content: '';
    width: 19px;
    height: 19px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 8px;
    top: 0;
    border: 1px solid #D7D7D7;
    background-color: transparent;
}
.cf .wpcf7-acceptance label.active:after {
    content: '';
    width: 19px;
    height: 19px;
    border-radius: 8px;
    display: inline-block;
    position: absolute;
    background-color: transparent;
    left: 5px;
    top: -2px;
    background-image: url(../assets/check.svg);
    background-size: 19px;
    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;
}
.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: 13px;
    line-height: 130%;
    text-align: center;
    margin-top: 20px !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 button[type="submit"] {
    margin: 30px auto 0 auto;
} 

.cf .rcaptcha {
    display: block;
    line-height: 120%;
    font-weight: 400;
    margin: 10px 0;
}
.cf .rcaptcha a {
    font-size: 12px;
    line-height: 120%;
    font-weight: 500;
}
.cf .rcaptcha {
    font-size: 12px;
    line-height: 120%;
    font-weight: 300;
    display: block;
    width: 100%;
}
.grecaptcha-badge {
    z-index: -99;
    opacity: 0;
    visibility: hidden;
}
/* @ @ CONT END @ @ */
/* @ @ BOXES START @ @ */
.boxes__heading {
    align-items: center;
    justify-content: space-between;
}
.boxes__heading .section-heading {
    margin-bottom: 0;
}
.boxes__heading-top {
    align-items: center;
    margin-bottom: 15px;
}
.boxes__subtitle {
    font-weight: 500;
    margin-right: 10px;
    display: inline-block;
    color: var(--color-main);
}
.boxes__hash {
    display: inline-block;
    background-color: var(--color-third);
    color: var(--color-main);
    padding: 4px 15px;
    border-radius: 30px;
}

.socialsitems {
    display: flex;
    align-items: center;
    justify-content: center;
}
.boxes__socials a {
    margin: 5px 0 5px 10px;
}
.socialsitems a {
    margin: 5px 0 5px 10px;
    background-color: var(--color-second);
    width: 70px;
    height: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.socialsitems a img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: .3s;
}
.socialsitems a:hover {
    background-color: var(--color-main);
}
.socialsitems a:hover img {
    filter: brightness(0) invert(1);
}

.boxes__item {
    border-radius: var(--radius);
    padding: 0 30px;
    margin-top: 40px;
    text-align: center;
}
.boxes__item img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* @ @ BOXES END @ @ */
/* @ @ NEWSLETTER START @ @ */
.newsletter {
    position: relative;
    overflow: clip;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 4;
    padding-top: 80px;
}
.newsletter>img {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 3;
    width: clamp(100px, 30vw, 550px);
    object-fit: contain;
    max-height: 60%;
}
.newsletter>svg {
    position: absolute;
    height: auto;
    z-index: 1;
}
.svgicon-1 {
    width: 350px;
    left: -225px;
    bottom: 60px;
}
.svgicon-2 {
    width: 350px;
    left: 6vw;
    top: 60px;
}
.svgicon-3 {
    width: 136px;
    left: 45%;
    top: 90px;
}
.svgicon-4 {
    width: 136px;
    right: 10%;
    top: 20%;
}
.svgicon-5 {
    width: 448px;
    right: -200px;
    top: 50%;
}

.newsletter__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0 0 0;
    padding: 15px;
}
.newsletter__item>img {
    width: 270px;
    margin-right: clamp(60px, 5vw, 120px);
    object-fit: contain;
    max-height: 80%;
}
.newsletter__item>div {
    width: 500px;
    margin-right: 220px;
}
.newsletter__title {
    margin-bottom: 10px !important;
    font-size: clamp(30px, 4vw, 59px);
    line-height: 120%;
    font-weight: 500;
    color: var(--txt-color);
    font-family: var(--font-second);
}
.newsletter__subtitle {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 120%;
    font-weight: 300;
    color: var(--txt-color);
    margin-bottom: 15px;
    font-family: var(--font-second);
}
.newsletter__txt {
    font-weight: 500;
    color: var(--color-main);
    max-width: 100%;
    width: 360px;
}
.newsletter__form {
    max-width: 100%;
    width: 420px;
}

.newsletter__bottom {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: auto auto 40px auto;
    position: relative;
    z-index: 3;
}
.newsletter__bottom a {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-main);
}
/* @ @ NEWSLETTER END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    margin-top: 120px;
}

.footer__top-items {
    background-color: var(--color-third);
    border-radius: var(--radius);
    padding-bottom: 60px;
    padding-left: clamp(20px, 5vw, 120px);
    padding-right: clamp(20px, 5vw, 120px);
    position: relative;
    padding-top: 160px;
}
.footer__logo {
    position: absolute;
    left: 50%;
    z-index: 2;
    top: -60px;
    transform: translateX(-50%);
}
.footer__title {
    display: block;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 120%;
    margin-bottom: 20px;
    font-family: var(--font-second);
}
.footer__txt {
    display: block;
    font-weight: 500;
    color: var(--color-main);
    max-width: 100%;
    width: 440px;
}
.footer__news-item {
    max-width: 100%;
    width: 440px;
    margin-top: 20px;
}

.footer__menu {
    padding: 0;
}
.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__menu ul li:not(:last-child) {
    margin-bottom: 15px;
}
.footer__menu ul li a {
    display: inline-block;
    font-weight: 500;
    color: var(--color-main);
}
.footer__menu ul li a:hover {
    color: var(--txt-color);
}

.footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__socials a {
    margin: 10px;
    background-color: var(--color-second);
    width: 80px;
    height: 45px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.footer__socials a img {
    width: 19px;
    height: 19px;
    object-fit: contain;
    transition: .3s;
}
.footer__socials a:hover {
    background-color: var(--color-main);
}
.footer__socials a:hover img {
    filter: brightness(0) invert(1);
}

.footer__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #929292;
    font-size: 14px;
    line-height: 22px;
}
.footer__policy {
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.footer__policy span {
    display: inline-block;
    margin: 0 5px;
}
.footer__copy {
    text-align: center;
    display: flex;
    align-items: center;
    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;
    }
}
@media(max-width: 1440px) {
    body,html {
        font-size: 16px;
        line-height: 27px;
    }
    .wrapper {
        padding-left: 9vw;
        padding-right: 9vw;
    }
    .wrapper-big {
        padding-right: 12vw;
        padding-left: 12vw;
    }
    .wrapper-small {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    /*  */
    .cont__img-top {
        left: 5%;
    }

    /*  */
    .newsletter>img {
        right: 5%;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .desc__content {
        padding-top: 30px;
    }
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
 
    /*  */
    .faq__items {
        margin-top: 30px;
    }
}
@media(max-width: 992px) {
    body,html {
        font-size: 15px;
        line-height: 24px;
    }
    body:not(.home) {
        padding-top: 90px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    .checklist ul li {
        padding-left: 30px;
        margin: 10px 0;
    }    
    .checklist ul li:before {
        width: 20px;
        height: 20px;
    }

    .header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .scrolled .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__logo {
        width: 50px;
    }
    .header__socials a {
        height: 25px;
        width: 40px;
        margin-left: 5px;
    }
    .header__socials a svg,
    .header__socials a img {
        width: 15px;
        height: 15px;
    }

    /*  */
    .baner__img {
        text-align: center;
    }
    .baner__img img {
        width: 300px;
    }
    .baner__img--txt {
        padding-bottom: 30px;
    }
    .baner__img-txt {
        left: 20%;
        bottom: 0;
    }
    .baner__content {
        margin-top: 30px;
        justify-content: center;
    }
    .baner__content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: flex-start;
    }
    .baner__title {
        margin-bottom: 15px;
    }
    /*  */
    .txtimg__img {
        margin-top: 30px;
        text-align: center;
    }
    .txtimg__img img {
        width: 300px;
    }
    .txtimg__content {
        padding: 0 15px;
    }
    /*  */
    .desc__items {
        padding: 30px;
    }
    .desc__img {
        top: initial !important;
        margin-bottom: 0 !important;
        max-width: 100px;
        flex: 0 0 100px;
        padding: 0;
    }
    .desc__img img {
        width: 100%;
    }
    .desc__content {
        max-width: calc(100% - 100px);
        flex: 0 0 calc(100% - 100px);
        padding: 0 30px;
    }
    .desc__txt {
        width: 100%;
    }
    .desc__img--bottom {
        margin-top: 30px;
    }
    .desc__content--bottom {
        margin-top: 30px;
    }
    /*  */
    .offerbox__content {
        padding-top: 0;
        margin-top: 30px;
        order: 1;
    }
    .offerbox__img {
        order: 0;
        margin-top: 0 !important;
    }
    .offerbox__bottom {
        order: 2;
    }
    /*  */
    .slider__list {
        column-gap: 20px;
    }
    /*  */
    .cont__img-bottom {
        display: none;
    }
    .cont__items {
        margin-left: auto;
        margin-right: 10%;
    }
    /*  */
    .boxes__item {
        padding: 0 15px;
    }
    /*  */
    .newsletter {
        height: auto;
    }
    .newsletter__item {
        justify-content: flex-start;
    }
    .newsletter__item>img {
        width: initial;
        max-width: 30%;
        flex: 0 0 30%;
        max-height: initial;
        margin-right: 30px;
    }
    .newsletter__item>div {
        width: initial;
        max-width: 50%;
        flex: 0 0 50%;
        margin-right: 0;
    }
    .newsletter__bottom {
        margin-top: 50px;
    }

    /*  */
    .footer__menu-item {
        margin-top: 40px;
    }
    .footer__socials a {
        height: 30px;
        width: 50px;
    }
    .footer__socials a img {
        width: 15px;
        height: 15px;
    }
    .footer__policy {
        justify-content: center;
        text-align: center;
    }
    .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 {
        --radius: 30px;
        --radius-small: 20px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    
    /*  */
    .header__socials a.header__socials-desktop{
        display: none;
    }
    /*  */
    .baner__img-txt {
        left: 10%;
    }

    /*  */
    .desc__items {
        padding: 30px 20px;
    }
    .desc__content {
        padding: 0;
        max-width: calc(100% - 60px);
        flex: 0 0 calc(100% - 60px);
    }
    .desc__content--top {
        padding-right: 30px;
    }
    .desc__content--bottom {
        padding-left: 30px;
    }
    .desc__img {
        max-width: 60px;
        flex: 0 0 60px;
    }

    /*  */
    .slider__list {
        column-count: 2;
    }

    /*  */
    .icons__item-wrapper {
        padding: 30px;
    }
    .icons__img {
        height: 35px;
    }

    /*  */
    .listcheck__item p  {
        margin: 10px 0;
    }
    /*  */
    .imgtxt__img img {
        width: 160px;
    }
    .imgtxt__img svg {
        left: -30%;
        width: 160px;
        height: auto;
    }
    /*  */
    .faq__title {
        padding: 15px 40px 15px 20px;
    }
    .faq__title>svg {
        width: 20px;
        height: 20px;
        padding: 5px;
    }
    .faq__txt {
        padding-left: 30px;
    }
    .faq__txt * {
        font-size: .85rem;
        font-weight: 400;
        line-height: 150%;
    }

    /*  */
    .cont {
        padding-top: 80px;
    }
    .cont__img-top {
        transform: initial;
        top: 10px;
        left: 15px;
    }
    .cont__items {
        margin: 0 auto;
    }
    /*  */
    .boxes__heading {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .boxes__socials a {
        margin: 10px 10px 0 0;
    }
    .boxes__item img {
        width: 300px;
    }
    /*  */
    .newsletter {
        justify-content: flex-start;
    }
    .svgicon-2,
    .svgicon-3 {
        display: none;
    }
    .svgicon-5 {
        width: 200px;
        right: -120px;
    }
    .newsletter>img {
        width: 190px;
    }
    .newsletter__item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: initial;
    }
    .newsletter__item>div {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .newsletter__item>img {
        width: 120px;
        margin-bottom: 10px;
        max-width: initial;
        flex: initial;
        margin-left: 0;
        margin-right: 0;
    }
    .newsletter__bottom {
        margin-bottom: 20px;
        justify-content: flex-start;
        font-size: .75rem;
        line-height: 120%;
    }
    /*  */
    .footer__top-items {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 120px;
    }
    .footer__logo {
        width: 160px;
        top: -40px;
    }
    .footer__menu ul li:not(:last-child) {
        margin-bottom: 5px;
    }
    .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) {
    .header__menu ul li {
        margin: 0 5px;
    }
    .header__menu ul li a {
        font-size: 11px;
        line-height: 110%;
    }
    /*  */
    .baner__img-txt {
        font-size: .85rem;
        line-height: 120%;
        left: 0;
        bottom: -15px;
        padding: 10px;
    }

    /*  */
    .slider__item img {
        width: 300px;
    }
    .slider__list {
        column-gap: 5px;
    }
    .slider__list-item {
        margin-bottom: 7px;
        font-size: .75rem;
        line-height: 120%;
    }
}
/* @ @ MEDIA END @ @  */