@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body, html {
    font-size: 18px;
    line-height: 32px;
}
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: 100px;
    --txt-color: #2B2B2B;
    --color-main: #245DB7;
    --color-second: #2B2B2B;
    --color-third: #F2F2F2;
    --font-main: "Aeonik", sans-serif;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-big {
    padding-left: 12vw;
    padding-right: 12vw;
}
.wrapper-biggest {
    padding-left: calc(9vw + 200px);
    padding-right: calc(9vw + 200px);
}
.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%;
}
.absolute-link {
    position: relative;
}
.absolute-link .absolute-link__item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}

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

.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: 0;
    cursor: pointer;
    background-color: var(--txt-color);
    padding: 0;
    margin: 0;
    width: 10px;
    height: 3px;
    transition: .3s;
    color: transparent;
    border: none;
    font-size: 0;
}
.slick-dots li.slick-active button {
    background-color: var(--color-main);
    width: 20px;
}

.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;
    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;
}

.posrel {
    position: relative;
    z-index: 4;
}
.section-lead * {
    font-size: clamp(1rem, 3vw, 62px);
    line-height: 120%;
    margin: 0;
    font-weight: 500;
    display: block;
}
.section-heading {
    font-size: clamp(42px, 4vw, 76px);
    line-height: 100%;
    font-weight: 700;
    display: block;
    color: var(--txt-color);
    margin-bottom: 30px;
}
.section-heading-smallest {
    font-size: clamp(38px, 2.2vw, 42px);
    line-height: 100%;
    font-weight: 700;
    display: block;
    color: var(--txt-color);
    margin-bottom: 30px;
}
.page-heading {
    font-size: clamp(36px, 4vw, 76px);
    line-height: 100%;
    font-weight: 700;
    display: block;
    color: var(--txt-color);
    margin-bottom: 30px;
}

.heading {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.subtitle {
    display: block;
    font-size: 1.2rem;
    line-height: 100%;
    margin: 0;
}
.heading__subtitle {
    max-width: 200px;
    flex: 0 0 200px;
}
.heading__title {
    flex: 1;
}

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

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

.readmore {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: max-content;
    color: var(--txt-color);
}
.readmore svg {
    width: 12px;
    height: auto;
    margin-left: 6px;
    transition: .3s;
}
.readmore:hover svg {
    transform: rotate(360deg);
}
.readmore:hover {
    color: var(--color-main);
}
.readmore svg path {
    transition: .3s;
}
.readmore:hover svg path {
    fill: var(--color-main);
}

.cbtn {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: max-content;
    padding: 12px 35px;
    background-color: var(--txt-color);
    border: 1px solid var(--txt-color);
    color: #fff;
    transition: .3s;
    cursor: pointer;
    border-radius: 0;
    font-size: 1rem;
    line-height: 120%;
    font-family: var(--font-main);
}
.cbtn--icon svg {
    filter: brightness(0) invert(1);
    transition: .3s;
    margin-left: 10px;
    width: 12px;
    height: auto;
}
.cbtn--icon:hover svg {
    transform: rotate(360deg);
}
.cbtn:hover {
    border-color: var(--color-main);
    color: #fff;
    background-color: var(--color-main);
}
/* @ @ 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;
    background-color: transparent;
    border: none;
    padding: 0;
}
.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 */

/* menu start */
.header {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.scrolled .header {
    box-shadow: 0px 0px 8px rgba(144,144,144, .3);
}
.header__wrapper {
    align-items: center;
}
.header__logo {
    max-width: 260px;
    flex: 0 0 260px;
    padding: 0 10px;
}
.header__logo img {
    width: 240px;
    transition: .3s;
}
.scrolled .header__logo img {
    width: 200px;
}
.header__items {
    max-width: calc(100% - 260px);
    flex: 0 0 calc(100% - 260px);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__mobile-logo {
    display: none;
}

.header__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 60px;
}
.header__socials a {
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.header__socials a img {
    width: 21px;
    height: 21px;
    object-fit: contain;
    transition: .3s;
}
/* menu start */
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu ul ul {
    display: none;
}
.header__menu>div>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu>div>ul>li {
    margin: 0 clamp(10px, 1.6vw, 25px);
    position: relative;
}
.header__menu>div>ul>li>a {
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 130%;
}
.header__menu>div>ul>li.current-menu-item>a,
.header__menu>div>ul>li>a:hover {
    color: var(--color-main);
}


/* 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 {
    padding-right: 0 !important;
    overflow-x: clip;
}
.baner__content {
    max-width: 450px;
    flex: 0 0 450px;
    padding: 0 15px;
    padding-top: clamp(60px, 4vw, 120px);
    padding-bottom: clamp(60px, 4vw, 120px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.baner__title {
    font-size: clamp(62px, 5vw, 88px);
    line-height: 100%;
    font-weight: 500;
}
.baner__content>svg {
    width: 66px;
    height: auto;
    margin-top: 40px;
}
.baner__img {
    max-width: calc(100% - 450px);
    flex: 0 0 calc(100% - 450px);
    padding: 0;
}
.baner__img img {
    width: 105%;
    object-fit: cover;
    height: 100%;
    max-width: 105%;
    position: relative;
    left: -5%;
    margin-right: -5%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
}
/* @ @ BANER END @ @ */
/* @ @ PRODS START @ @ */
.prods__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.prods__item:not(:first-child) {
    margin-top: 80px;
}
.prods__img {
    display: block;
    overflow: hidden;
}
.prods__img img {
    width: 100%;
    object-fit: cover;
    transition: .3s;
}
.prods__img:hover img {
    filter: brightness(80%);
    transform: scale(1.02);
}
.prods__title {
    margin: 30px 0 15px 0;
}
.prods__title a:hover {
    color: var(--color-main);
}
.prods__txt {
    margin-bottom: 15px;
    display: block;
    font-size: .9rem;
    line-height: 120%;
}
/* @ @ PRODS END @ @ */
/* @ @ DESCTXT START @ @ */
.desctxt__content>div>* {
    font-size: clamp(1rem, 3vw, 62px);
    line-height: 120%;
    margin: 0;
    font-weight: 500;
}
.desctxt__content .readmore {
    margin-top: 30px;
}
/* @ @ DESCTXT END @ @ */
/* @ @ POINTS START @ @ */
.points {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 0;
    padding-left: 0;
    background-color: var(--color-main);
    color: #fff;
}
.points__item {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 80px;
}
.points__nr {
    font-size: clamp(62px, 5.5vw, 102px);
    line-height: 100%;
    font-weight: 700;
    display: block;
}
.points__title {
    font-size: 1.7rem;
    line-height: 130%;
    font-weight: 700;
    margin-top: 20px;
    display: block;
}
.points__txt {
    display: block;
    margin-top: 20px;
}
.points .slick-dots {
    max-width: 100%;
    width: 1400px;
    margin: 30px auto 0 auto;
}
.points .slick-dots li {
    height: 4px;
    flex: 1;
    width: initial;
    margin: 1px;
}
.points .slick-dots li button {
    background-color: #fff !important;
    border-radius: 0 !important;
    width: 100% !important;
    height: 5px !important;
    opacity: .1;
}
.points .slick-dots li.slick-active button {
    opacity: 1;
}
/* @ @ POINTS END @ @ */
/* @ @ REAL START @ @ */
.real {
    padding-right: 0 !important;
}
.real__item {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 0 !important;
    padding-top: 10px;
    padding-bottom: 15px;
}
.real__title {
    margin: 15px 0 10px 0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 120%;
    font-weight: 700;
}
.real__txt {
    margin-bottom: 15px;
    display: block;
    font-size: .9rem;
    line-height: 120%;
}
.real__item>a {
    display: block;
    overflow: hidden;
}
.real__item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: .3s;
}
.real__item>a:hover img {
    filter: brightness(80%);
    transform: scale(1.03);
}
.real__title a:hover {
    color: var(--color-main);
}
.real__slick .slick-track {
    margin-left: 0;
}
/* @ @ REAL END @ @ */
/* @ @  START @ @ */

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

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

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

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

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

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

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

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

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

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

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

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

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

/* @ @  END @ @ */
/* @ @ TEAM START @ @ */
.team {
    overflow-x: clip;
}
.team__content {
    
}
.team__stan {
    display: block;
}
.team__txt {
    font-size: clamp(1rem, 1.5vw, 27px);
    line-height: 140%;
}

.team__mobile {
    display: none;
}
.team__mobile img {
    width: 400px;
}

.team__img {
    padding-left: 40px;
}
.team__img img {
    width: 467px;
}
/* @ @ TEAM END @ @ */
/* @ @ ICONS START @ @ */
.icons__items {
    padding-top: 60px;
    padding-bottom: 60px;
}
.icons__item {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}
.icons__item:not(:last-child) {
    border-bottom: 1px solid #CDB387;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.icons__item:nth-child(even) .icons__img {
    margin-left: auto;
}
.icons__item:nth-child(even) {
    padding-right: clamp(1px, 5vw, 120px);
}
.icons__img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.icons__img img {
    width: 140px;
}
.icons__txt {
    font-size: clamp(1.2rem, 2vw, 42px);
    line-height: 110%;
    font-weight: 700;
    display: block;
    padding-left: 50px;
    margin-left: 50px;
    position: relative;
}
.icons__txt:before {
    content: '';
    width: 1px;
    height: 90px;
    background-color: #CDB387;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* @ @ ICONS END @ @ */
/* @ @ TXTIMG START @ @ */
.txtimg {
    overflow-x: clip;
}
.txtimg__txt--top {
    margin-left: auto;
}
.txtimg__img {
    position: relative;
}
.txtimg__img>svg {
    position: absolute;
    top: 0;
    left: 130%;
}
/* @ @ TXTIMG END @ @ */
/* @ @ POINTSLIST START @ @ */
.pointslist__items {
    background-color: var(--color-main);
    padding-top: 60px;
    padding-bottom: 60px;
}
.pointslist__item {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}
.pointslist__item:not(:last-child) {
    border-bottom: 1px solid #CDB387;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.pointslist__item:nth-child(even) .pointslist__nr {
    margin-left: auto;
}
.pointslist__nr {
    font-size: clamp(62px, 7.5vw, 190px);
    line-height: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.pointslist__txt {
    font-size: clamp(1.2rem, 2vw, 42px);
    line-height: 120%;
    font-weight: 500;
    display: block;
    padding-left: 30px;
    margin-left: 30px;
    position: relative;
}
.pointslist__txt:before {
    content: '';
    width: 1px;
    height: 60px;
    max-height: 100%;
    background-color: #CDB387;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* @ @ POINTSLIST END @ @ */
/* @ @ GALSLIDER START @ @ */
.galslider {
    padding: 0 !important;
}
.galslider__top img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.galslider__slider {
    padding-left: 6vw;
}
.galslider__bottom figure {
    padding: 0 10px;
}
.galslider__bottom img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}
.galslider__top .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 0;
    color: transparent;
    background-color: transparent;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    background-image: url(../assets/arrow.svg);
    cursor: pointer;
    z-index: 4;
    transition: .3s;
}
.galslider__top .slick-prev {
    transform: translateY(-50%) rotate(180deg);
    left: 30px;
}
.galslider__top .slick-next {
    right: 30px;
}
.galslider__top .slick-arrow.slick-disabled {
    filter: brightness(0) invert(1);
}


.galslider .slick-dots {
    max-width: 100%;
    width: 1400px;
    margin: 60px auto 0 auto;
    max-width: 90%;
}
.galslider .slick-dots li {
    flex: 1;
    width: initial;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.galslider .slick-dots li button {
    background-color: #161616 !important;
    border-radius: 0 !important;
    width: 100%;
    height: 1px !important;
}
.galslider .slick-dots li.slick-active button {
    height: 3px !important;
}
/* @ @ GALSLIDER END @ @ */
/* @ @ CONTACT START @ @ */
.cont__txt {
    font-size: 1.4rem;
    line-height: 140%;
}
.cont__txt a:hover {
    color: var(--color-main);
}
.cont__socials {
    display: flex;
    flex-wrap: wrap;
}
.cont__socials a {
    margin: 10px 15px 0 0;
}
.cont__socials a:hover {
    color: var(--color-main);
}


.cf {
    background-color: var(--color-third);
    padding: 20px 60px 60px 60px;
}
.cf * {
    font-family: var(--font-main);
    font-size: 1rem;
}
.cf br {
    display: none;
}
.cf form>p {
    margin: 0;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox']),
.cf textarea {
    font-size: 1rem;
    width: 100%;
    color: var(--color-main);
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #000;
    font-weight: 400;
    margin-top: 40px;
    resize: none;
    background-color: transparent;
    color: #000;
}
.cf input:not([type='file']):not([type='submit']):not([type='checkbox'])::placeholder,
.cf textarea::placeholder {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
}
.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-gray);
    font-weight: 400;
}
.cf .wpcf7-acceptance .wpcf7-list-item * {
    font-size: 12px !important;
    line-height: 150%;
}
.cf .wpcf7-acceptance .wpcf7-list-item a {
    font-weight: 400;
    text-decoration: underline;
}
.cf .wpcf7-acceptance label {
    padding-left: 40px !important;
    position: relative;
    display: block;
    padding-top: 2px;
}
.cf .wpcf7-acceptance label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 6px;
    top: 0;
    border: 1px solid #61656E;
    background-color: transparent;
}
.cf .wpcf7-acceptance label.active:before {
    border-color: transparent;
}
.cf .wpcf7-acceptance label.active:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #61656E;
    border-radius: 6px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../assets/check.svg);
    background-size: 24px;
    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: 30px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--txt-color);
    font-size: 14px;
    line-height: 130%;
    margin-top: 30px !important;
    text-align: center;
}
.cf button[type="submit"] {
    margin-top: 30px;
}
.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%;
}
/* @ @ CONTACT END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    padding-top: 90px;
    padding-bottom: 60px;
    margin-top: 120px;
    background-color: var(--color-second);
    color: #fff;
}
.footer__menu {
    display: flex;
}
.footer__menu>div {
    margin: 0 auto;
}
.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__menu ul li {
    margin-bottom: 15px;
}
.footer__menu ul li a {
    color: #fff;
    font-size: clamp(1rem, 3vw, 70px);
    font-weight: 700;
    line-height: 90%;
    display: inline-block;
}
.footer__menu ul li a:hover {
    color: var(--color-main);
}
.footer__menu ul ul {
    display: none;
}

.footer__title {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.footer__content {
    display: flex;
    justify-content: center;
}
.footer__content>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer__txt {
    font-weight: 400;
}
.footer__txt a:hover {
    color: var(--color-main);
}
.footer__btn {
    border-bottom: 2px solid #fff;
    padding: 0 0 5px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    max-width: 100%;
    width: 400px;
}
.footer__btn svg {
    transition: .3s;
}
.footer__btn svg path {
    fill: #fff;
}
.footer__btn svg path {
    transition: .3s;
}
.footer__btn:hover svg path {
    fill: var(--color-main);
}
.footer__btn:hover {
    border-color: var(--color-main);
    color: var(--color-main);
}

.footer__copy {
    font-size: .8rem;
    line-height: 130%;
    font-weight: 300;
    display: flex;
    width: 100%;
    margin-top: 50px;
}
.footer__copy>a {
    margin-right: 50px;
}
.footer__copy a:hover {
    color: var(--color-main);
}
.footer__copy>p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2700px) {
    main {
        max-width: 2700px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrap {
        max-width: 2700px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2700px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2700px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2700px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1680px) {
    .wrapper-biggest {
        padding-left: calc(9vw + 100px);
        padding-right: calc(9vw + 100px);
    }
}
@media(max-width: 1440px) {
    body {
        padding-top: 80px;
    }
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }

    .header__logo {
        max-width: 180px;
        flex: 0 0 180px;
    }
    .header__logo img {
        width: 160px;
    }
    .scrolled .header__logo img {
        width: 140px;
    }
    .header__items {
        max-width: calc(100% - 180px);
        flex: 0 0 calc(100% - 180px);
    }
    .header__socials {
        margin-left: 30px;
    }
    .header__socials a img {
        width: 18px;
        height: 18px;
    }
    .header__menu>div>ul>li {
        margin: 0 15px;
    }
    .header__menu>div>ul>li>a {
        font-size: 1rem;
    }


    /*  */
    .cont__txt {
        font-size: 1.1rem;
        line-height: 140%;
    }

    /*  */

    .footer{
        padding-top: 60px;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
}
@media(max-width: 1200px) {
    .wrapper-biggest {
        padding-left: calc(9vw + 80px);
        padding-right: calc(9vw + 80px);
    }
    .heading {
        margin-bottom: 30px;
    }
    .heading__subtitle {
        max-width: 120px;
        flex: 0 0 120px;
    }

    .points__item {
        padding: 0 40px;
    }
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .header__menu>div>ul>li.menu-item-has-children {
        padding-right: 20px;
    }
    .header__menu>div>ul>li.menu-item-has-children:before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 11px;
        height: 11px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        background-image: url(../assets/chevron.svg);
    }
    .header__menu>div>ul>li.menu-item-has-children {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .header__menu>div>ul>li.menu-item-has-children:hover>ul {
        display: block;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul {
        display: none;
        background-color: #fff;
        box-shadow: 0px 0px 6px rgba(144,144,144, .2);
        position: absolute;
        width: 180px;
        left: 0;
        top: 99%;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul>li>a {
        display: block;
        font-size: .85rem;
        line-height: 120%;
        padding: 10px 15px;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul>li>a:hover {
        background-color: var(--color-main);
        color: #fff;
    }
    .header__menu>div>ul>li>ul>li {
        position: relative;
        cursor: pointer;
    }
    .header__menu>div>ul>li>ul>li.menu-item-has-children:before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        right: 10px;
        width: 10px;
        height: 10px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        background-image: url(../assets/chevron.svg);
    }
    .header__menu>div>ul>li>ul>li:hover:before {
        filter: brightness(0) invert(1);
    }
    .header__menu>div>ul>li>ul>li.menu-item-has-children>ul {
        display: none;
        background-color: #fff;
        box-shadow: 0px 0px 6px rgba(144,144,144, .2);
        position: absolute;
        width: 220px;
        left: 100%;
        top: 0;
    }
    .header__menu>div>ul>li>ul>li.menu-item-has-children:hover>ul {
        display: block;
    }
    .header__menu>div>ul>li>ul>li>ul>li>a {
        display: block;
        font-size: .85rem;
        line-height: 120%;
        padding: 10px 15px;
    }
    .header__menu>div>ul>li>ul>li>ul>li>a:hover {
        background-color: var(--color-main);
        color: #fff;
    }
}
@media(max-width: 992px) {
    body {
        padding-top: 70px;
        font-size: 20px;
        line-height: 36px;
    }
    .wrapper-biggest,
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    .section-lead * {
        font-weight: 400;
    }
    .subtitle--bottom {
        margin-bottom: 30px;
    }

    .header__mobile-logo {
        display: inline-block;
        width: 160px;
        margin-bottom: 20px;
    }
    .nav-icon {
        display: block;
    }
    .header__logo {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header__logo img {
        width: 160px;
    }
    .scrolled .header__logo img {
        width: 130px;
    }
    .header__items {
        position: fixed;
        top: 0;
        right: -500px;
        width: 450px;
        max-width: 100%;
        box-shadow: 0px 0px 8px rgba(144,144,144, .3);
        padding: 10px 40px 40px 15px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #fff;
        height: 100%;
        overflow: auto;
        transition: .8s;
    }
    .menuopened .header__items {
        right: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header__menu>div>ul>li {
        margin: 0 0 10px 0;
    }
    .header__menu>div>ul>li>a {
        font-size: 18px;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul {
        padding-left: 10px;
        padding-top: 5px;
        display: block;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul>li {
        padding: 1px 0;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul>li>a {
        font-size: 17px;
        display: block;
        margin: 4px 0;
        line-height: 120%;
        position: relative;
        padding-right: 20px;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul>li.menu-item-has-children>a:after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 7px;
        height: 7px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        background-image: url(../assets/chevron.svg);
    }
    
    .header__menu>div>ul>li.menu-item-has-children>ul>li>ul {
        display: none;
        padding: 10px 0 10px 15px;
    }
    .header__menu>div>ul>li.menu-item-has-children>ul>li>ul>li>a {
        font-size: 15px;
        display: block;
        margin: 2px 0;
        line-height: 120%;
    }

    .header__socials {
        margin: 20px 0 0 0;
    }
    .header__socials a {
        margin: 5px 15px 0 0;
    }

    /*  */
    .baner__content {
        max-width: 320px;
        flex: 0 0 320px;
    }
    .baner__img {
        max-width: calc(100% - 320px);
        flex: 0 0 calc(100% - 320px);
    }

    /*  */
    .desctxt__content {
        margin-top: 15px;
    }
    .desctxt__content>div>* {
        font-size: 1rem;
        line-height: 140%;
        font-weight: 400;
    }

    /*  */
    /*  */
    .team__mobile {
        display: block;
        margin-top: 10px;
    }
    .team__content .section-lead * {
        font-size: clamp(28px, 2.5vw, 47px);
        line-height: 110%;
        font-weight: 500;
    }
    .team__img {
        display: none;
    }

    /* icons */
    .icons__items {
        padding: 10px 10px !important;
    }
    .icons__item {
        padding: 30px 10px !important;
        margin: 0 !important;
    }

    /*  */
    .txtimg__img>svg  {
        display: none;
    }

    /*  */
    .pointslist {
        padding: 0 0 !important;
    }
    .pointslist__items {
        padding: 10px 10px !important;
        margin-top: 0 !important;
    }
    .pointslist__item {
        padding: 30px 10px !important;
        margin: 0 !important;
    }
    
    /*  */
    .galslider__top {
        padding: 0 30px;
    }
    .galslider__top .slick-prev {
        left: 5px;
    }
    .galslider__top .slick-next {
        right: 5px;
    }
    /*  */
    .cont__form {
        margin-top: 40px;
    }
    .cf {
        padding: 20px 20px 20px 20px;
    }
    .cf form>p>span:first-child input {
        margin-top: 0 !important;
    }
    /*  */
    .footer {
        margin-top: 60px;
    }
    .footer__menu {
        justify-content: flex-start;
    }
}
@media(max-width: 767px) {
    body,html {
        font-size: 19px;
        line-height: 33px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 60px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 40px;
    }
    .heading {
        margin-bottom: 20px;
    }
    .readmore {
        background-color: var(--txt-color);
        color: #fff !important;
        padding: 12px 25px;
    }
    .readmore svg {
        filter: brightness(0) invert(1);
    }

    .subtitle {
        font-size: 1.7rem;
        line-height: 110%;
    }
    .heading {
        flex-wrap: wrap;
    }
    .heading__subtitle {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    .heading__title {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header__logo img {
        width: 130px;
    }
    .scrolled .header__logo img {
        width: 100px;
    }

    .baner__content {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 40px 15px 0 15px;
    }
    .baner__content>svg {
        display: none;
    }
    .baner__img {
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 15px;
    }
    .baner__img img {
        width: 100%;
        max-width: 100%;
        left: initial;
        margin-right: initial;
        clip-path: initial;
        aspect-ratio: 16/14;
    }

    .prods {
        padding-right: 0 !important;
    }
    .prods__item {
        padding-right: 0;
    }
    .prods__img {
        padding-right: 0 !important;
    }
    .prods__img img {
        aspect-ratio: 16/13;
    }
    .prods__item .readmore {
        margin-top: 15px;
    }
    .prods__title {
        margin: 25px 0 0 0;
    }

    /*  */
    .icons .heading__title {
        font-size: clamp(26px, 2.2vw, 42px);
        line-height: 100%;
        font-weight: 600;
    }
    .points__item {
        padding: 0 15px;
        margin-top: 60px;
        width: 100%;
    }
    .points__item:first-child {
        margin-top: 0;
    }


  

    /*  */
    .real__item:not(:first-child) {
        margin-top: 30px;
    }

    /*  */
    .icons__items {
        padding: 0 15px !important;
        margin-top: 0 !important;
    }
    .icons__item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px 0 !important;
    }
    .icons__img {
        margin-right: 0;
        margin-left: 0 !important;
        margin-bottom: 20px;
    }
    .icons__img img {
        width: 50px;
    }
    .icons__txt {
        padding: 0;
        margin: 0;
    }
    .icons__txt br {
        display: none;
    }
    .icons__txt::before {
        display: none;
    }

    /*  */
    .txtimg {
        padding-right: 0 !important;
    }
    .txtimg__img {
        padding-right: 0 !important;
    }
    .txtimg__item .heading__title {
        margin-bottom: 0;
    }

    /*  */
    .pointslist__item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .pointslist__nr {
        margin-right: 0;
        margin-left: 0 !important;
        margin-bottom: 15px;
    }
    .pointslist__txt {
        padding: 0;
        margin: 0;
    }
    .pointslist__txt br {
        display: none;
    }
    .pointslist__txt::before {
        display: none;
    }

    /*  */
    .logotxt__img img {
        width: 120px;
    }
    /*  */
    .galslider__top .slick-arrow {
        width: 22px;
        background-size: 12px;
    }
    /*  */

    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .footer__menu>div {
        margin: 0;
    }
    .footer__menu>.subtitle {
        display: none;
    }
    .footer__menu ul li {
        margin-bottom: 5px;
    }
    .footer__menu ul li a {
        font-size: 48px;
        line-height: 100%;
        font-weight: 500;
    }
    .footer__content {
        justify-content: flex-start;
        margin-top: 40px;
    }
    .footer__content>div {
        width: 100%;
    }
    .footer__title {
        margin-bottom: 15px;
        font-size: 2.3rem;
        line-height: 120%;
        margin-top: 20px;
    }
    .footer__info {
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 130%;
    }
    .footer__info svg {
        width: 18px;
        height: 18px;
    }
    .footer__copy {
        flex-direction: column;
    }
    .footer__copy>a {
        margin: 0 0 15px 0;
    }
    .footer__copy>p {
        flex-direction: row;
    }
    .footer__copy>p>a {
        margin-left: 5px;
    }
    
  }
/* @ @ MEDIA END @ @  */