body, html {
    font-size: 17px;
    line-height: 29px;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    background-color: #fff;
    color: var(--txt-color);
    font-weight: 400;
    --txt-color: #000;
    --color-main: #42D138;
    --font-main: 'Arial', sans-serif;
    --font-second: 'Archivo Black', sans-serif;
}
* {
    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: 600;
}
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;
}
.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%;
}
.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: 50%;
    cursor: pointer;
    background-color: var(--main-color);
    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: var(--txt-color);
}

.posrel {
    position: relative;
    z-index: 4;
}

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

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

.section-heading {
    display: block;
    color: var(--color-main);
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 32px);
    line-height: 120%;
}

.cbtn {
    position: relative;
    display: inline-block;
    padding: 12px 45px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(to right, #42D138 0%, #C4FC63 100%);
    transition: transform .3s ease;
    color: #000;
    text-align: center;
    font-weight: 700;
    width: 350px;
    max-width: 100%;
}
.cbtn span {
    position: relative;
    z-index: 4;
    transition: .3s;
}
.cbtn:hover span {
    color: #fff;
}
.cbtn:before {
    content: '';
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: .3s;
    opacity: 0;
    background: #000;
}
.cbtn:hover:before {
    opacity: 1;
}

/* @ @ 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 */

/* menu start */

/* menu end */
/* @ @ HEADER END @ @ */
/* @ @ SEARCH POP START @ @ */
.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-top: 80px;
    padding-bottom: 80px;
    position: relative;
    align-items: center;
    color: #fff;
}
.baner>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(50%);
}
.baner__logo {
    max-width: 250px;
    flex: 0 0 250px;
    padding: 0 15px;
}
.baner__content {
    padding-left: 80px;   
    max-width: calc(100% - 250px);
    flex: 0 0 calc(100% - 250px);
}
.baner__content>div {
    max-width: 100%;
    width: 620px;
}
.baner__title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 120%;
}
.baner__subtitle {
    display: block;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 120%;
    margin: 0;
}
.baner__socials {
    display: flex;
    flex-wrap: wrap;
}
.baner__socials a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 10px 0 0;
}
.baner__socials a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: .3s;
}
.baner__socials a:hover img {
    filter: brightness(0) invert(1);
}
/* @ @ BANER END @ @ */
/* @ @ CFORM START @ @ */
.cform {
    justify-content: center;
}
.cform__content {
    max-width: 100%;
    padding: 0 15px;
    flex: 0 0 920px;
    margin: auto;
}
.cform__title {
    display: block;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 120%;
    font-weight: 700;
    font-family: var(--font-second);
    text-align: center;
    width: 100%;
}

.cform__item {
    margin-top: 60px;
}
.cform__cols {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px 80px;
}
.cform__col {
    max-width: calc(50% - 40px);
    flex: 0 0 calc(50% - 40px);
}
.cform__col--full {
    max-width: 100%;
    flex: 0 0 100%;
}
.cform__col p {
    margin: 0;
}
.cf .wpcf7-form-control-wrap {
	display: block;
}
.cf textarea,
.cf input:not([type="submit"]):not([type="checkbox"]) {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 120%;
    color: #000;
    padding: 15px 20px;
    resize: none;
    border: none;
    width: 100%;
}
.cf textarea::placeholder,
.cf input:not([type="submit"]):not([type="checkbout"])::placeholder {
    color: #B0B0B0;
}
.cform__border {
    position: relative;
    border-radius: 5px;
    background: #fff;
    display: block;
    padding: 2px;
}
.cform__border::before {
    content: "";
    position: absolute;
    top: -2px; bottom: -2px; left: -2px; right: -2px;
    border-radius: 8px;
    background: linear-gradient(90deg, #42D138 0%, #C4FC63 100%);
    z-index: -1;
}


.cf .wpcf7-acceptance .wpcf7-list-item {
    margin: 30px auto 0 auto;
    max-width: 100%;
    display: block;
    line-height: 140%;
    font-weight: 300;
}
.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: 35px !important;
    position: relative;
    display: block;
}
.cf .wpcf7-acceptance label:before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 0%;
    top: 0;
    border: none;
    background-image: url(../assets/icon-border.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.cf .wpcf7-acceptance label.active:before {
    border-color: transparent;
}
.cf .wpcf7-acceptance label.active:after {
    content: '';
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 0%;
    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 .wpcf7-acceptance input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}
.cf .wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    position: absolute;
}
.cf .wpcf7 form.invalid .wpcf7-response-output, .cf .wpcf7 form.unaccepted .wpcf7-response-output, .cf .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
	padding: 10px;
}
.cf .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--color-main);
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    margin-top: 10px !important;
	padding: 10px;
}

.cform__boxes {
    width: 100%;
}
.cform__boxes>p {
    margin: 30px 0 40px 0;
}
.cform__boxes .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px 40px;
}
.cform__boxes .wpcf7-form-control>span {
    display: block;
    max-width: calc(50% - 40px);
    flex: 0 0 calc(50% - 40px);
}
.cf .cform__boxes label {
    padding-left: 35px !important;
    position: relative;
    display: block;
}
.cf .cform__boxes label:before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    position: absolute;
    left: 0;
    border-radius: 0%;
    top: 0;
    border: none;
    background-image: url(../assets/icon-border.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.cf .cform__boxes label.active:before {
    border-color: transparent;
}
.cf .cform__boxes label.active:after {
    content: '';
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 0%;
    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 .cform__boxes input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

.cform button[type="submit"] {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 40px;
}
/* @ @ CFORM 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 @ @ */
/* @ @  START @ @ */

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

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

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

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

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

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

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

/* @ @  END @ @ */
/* @ @ LOADER CF START @ @ */
#cf7-pageloader {
    display:none; 
    justify-content: center;
    align-items: center;
    position: fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.7); 
    z-index:9999; 
    color: #fff;
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 32px);
    line-height: 120%;
    text-align: center;
    font-family: var(--font-second);
}
/* @ @ LOADER CF END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    margin-top: 80px;
    padding-bottom: 20px;
}
.footer__copy {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .85rem;
    line-height: 130%;
    opacity: .3;
}
#footer__year {
    display: inline-block;
    margin-left: 5px;
}
/* @ @ 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) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
 
}
@media(max-width: 992px) {
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    
    .baner__logo {
        max-width: 200px;
        flex: 0 0 200px;
        padding: 0 15px;
    }
    .baner__content {
        max-width: calc(100% - 200px);
        flex: 0 0 calc(100% - 200px);
    }

}
@media(max-width: 767px) {
    body, html {
        font-size: 16px;
        line-height: 24px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 60px;
    }

    .cbtn {
        width: 250px;
        min-width: max-content;
    }


    .baner__logo {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    .baner__logo img {
        width: 140px;
    }
    .baner__content {
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .baner__socials a {
        height: 30px;
        width: 30px;
    }
    .baner__socials a img {
        width: 30px;
        height: 30px;
    }

    /*  */
    .cform__cols {
        gap: 30px 0;
    }
    .cform__col {
        max-width: 100%;
        flex: 0 0 100%;
    }

        
    .cform__boxes .wpcf7-form-control {
        gap: 10px 0;
    }
    .cform__boxes .wpcf7-form-control>span {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
}
/* @ @ MEDIA END @ @  */