* {
    margin: 0px;
    padding: 0px;
    outline: none;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    font-family: 'Proxima Nova', sans-serif;
    color: #000000;
}

a {
    text-decoration: none;
    color: #000000;
}

img,
svg {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.content {
    overflow: hidden;
}

.wrapper {
    padding: 0px 16px;
    max-width: 700px;
    margin: 0px auto;
    box-sizing: content-box;
}

@media screen and (min-width: 1200px) {
    .wrapper {
        max-width: 1200px;
    }
}

/*header*/
.header {
    position: sticky;
    top: 0px;
    background-color: #ffffff;
    box-shadow: 0px 6px 47px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

.header-wrapper {
    display: flex;
    align-items: center;
    height: 52px;
}

.header-logo a {
    display: inline-block;
    transition-property: opacity;
    transition-duration: 200ms;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-logo img {
    height: 30px;
    width: auto;
}

.header-menu-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.header-menu-item a {
    font-size: 26px;
    line-height: 32px;
    transition-property: opacity;
    transition-duration: 200ms;
}

.header-menu-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
    width: 100%;
    padding: 0px 28px;
    background: linear-gradient(180deg, #E25E5E 0%, #C63939 79.82%);
    color: #ffffff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.header-menu-button a:hover {
    background: linear-gradient(180deg, #E25E5E 0%, #A23131 79.82%);
}

.header-menu-toggle {
    flex: none;
    margin-left: auto;
}

.header-menu-toggle__button {
    position: relative;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.header-menu-toggle__button span {
    position: absolute;
    background: #246B6A;
    width: 100%;
    height: 2px;
    transition: transform 200ms ease, top 200ms ease 200ms, bottom 200ms ease 200ms, opacity 200ms ease 200ms;
}

.header-menu-toggle__button span:nth-child(1) {
    top: 0;
}

.header-menu-toggle__button span:nth-child(2) {
    top: calc(50% - 1px);
}

.header-menu-toggle__button span:nth-child(3) {
    bottom: 0;
}

.header-menu-show .header-menu-toggle__button span {
    transition: transform 200ms ease 200ms, top 200ms ease, bottom 200ms ease, opacity 200ms ease;
}

.header-menu-show .header-menu-toggle__button span:nth-child(1) {
    transform: rotate(45deg);
    top: calc(50% - 1px);
}

.header-menu-show .header-menu-toggle__button span:nth-child(2) {
    opacity: 0;
}

.header-menu-show .header-menu-toggle__button span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: calc(50% - 1px);
}

.header-menu-item-mobile {
    display: none;
}

@media screen and (min-width: 500px) {
    .header-menu-button a {
        width: auto;
    }
}

@media screen and (max-width: 1199px) {
    .header-menu-item-mobile {
        display: block;
    }

    .header-menu {
        overflow-y: auto;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding: 84px 16px 40px;
        background-color: #BFE87B;
        -webkit-overflow-scrolling: touch;
        transition-property: opacity;
        transition-duration: 200ms;
    }

    .header:not(.header-menu-show) .header-menu {
        opacity: 0;
        visibility: hidden;
    }

    .header-menu-items {
        max-width: 700px;
        margin: 0px auto;
    }

    .header-menu-item a:hover {
        opacity: 0.8;
    }

    .header-menu-button {
        max-width: 700px;
        margin: 40px auto 0px;
    }
}

@media screen and (min-width: 1200px) {
    .header-wrapper {
        height: 100px;
    }

    .header-logo img {
        height: 54px;
    }

    .header-menu {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 30px;
    }

    .header-menu-items {
        flex-direction: row;
        gap: 20px;
    }

    .header-menu-item a {
        font-size: 16px;
        transition-property: color;
    }

    .header-menu-item a:hover {
        color: #246B6A;
    }

    .header-menu-toggle {
        display: none;
    }
}

/*footer*/
.footer-body {
    padding: 40px 0px 80px;
    background: #BFE87B;
    border-bottom: 0px solid #ffffff;
    border-radius: 40px 40px 0px 0px;
}

.footer-body-wrapper {
    padding: 0px 16px;
    max-width: 700px;
    margin: 0px auto;
    box-sizing: content-box;
}

.footer-title {
    font-size: 38px;
    line-height: 46px;
    font-weight: 600;
    color: #1C1C1C;
}

.footer-title2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    color: #1C1C1C;
margin-top: 10px;
}


.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.footer-column-num {
    margin-bottom: 16px;
}

.footer-column-num span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 26px;
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 50%;
}

.footer-column-text {
    font-size: 18px;
    line-height: 22px;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.footer-column-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 40px;
    height: 60px;
    transition-property: opacity;
    transition-duration: 200ms;
}

.footer-column-link a:hover {
    opacity: 0.8;
}

.footer-column-link img {
    width: auto;
}

.footer-column-button {
    margin-top: 24px;
}

.footer-column-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    height: 60px;
    white-space: nowrap;
    transition-property: opacity;
    transition-duration: 200ms;
}

.footer-column-button a:hover {
    opacity: 0.8;
}

.footer-column-button img {
    width: 40px;
    margin-right: 16px;
    flex: none;
}

.footer-body-image {
    margin-top: 40px;
}

.footer-body-image picture {
    display: flex;
    justify-content: center;
}

.footer-body-image img {
    width: 477px;
    margin: -20px -70px -70px;
}

.footer-panel {
    padding: 16px 0px 24px;
    background: linear-gradient(180deg, #BFE87B 0%, #9CD145 100%);
}

.footer-logo a {
    display: inline-block;
    transition-property: opacity;
    transition-duration: 200ms;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-logo a img {
    height: 54px;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
    gap: 14px;
}

.footer-link a {
    font-size: 14px;
    line-height: 17px;
    text-decoration: underline;
    transition-property: opacity;
    transition-duration: 200ms;
}

.footer-link a:hover {
    opacity: 0.8;
}

.footer-copy {
    font-size: 14px;
    line-height: 17px;
    margin-top: 40px;
}

@media screen and (max-width: 1199px) {
    .footer-title  {
        text-align: center;
    }

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

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

@media screen and (min-width: 768px) {
    .footer-columns {
        flex-direction: row;
        gap: 30px;
    }
}


@media screen and (min-width: 1520px) {
    .footer-body-image img {
        width: 686px;
        margin: -25px -40px -70px -120px;
	}}

@media screen and (min-width: 1200px) and (max-width: 1519px) {
    .footer-body-image img {
        width: 570px;
        margin: -25px -40px -70px -40px;
	}}



@media screen and (min-width: 1200px) {

    .footer-body {
        padding: 50px 0px 54px;
        border-radius: 60px 60px 0px 0px;
    }

    .footer-body-wrapper {
        display: flex;
        padding: 0px 50px;
        max-width: 1300px;
    }

    .footer-body-content {
        order: 1;
        width: 100%;
    }

    .footer-title {
        font-size: 62px;
		line-height: 68px;}

    .footer-title2 {
        font-size: 22px;
        line-height: 29px;
        margin-bottom: 30px;
        margin-top: 15px;}


    .footer-column {
        flex: 1;
    }

    .footer-column-text {
        font-size: 20px;
        line-height: 24px;
        min-height: 72px;
    }

    .footer-column-links {
        gap: 8px;
    }

    .footer-column-link a {
        height: 70px;
    }

    .footer-column-button a {
        height: 70px;
    }

    .footer-body-image {
        margin-top: -115px;
        margin-right: 45px;
        flex: none;
    }


    .footer-panel-wrapper {
        display: flex;
        align-items: center;
    }

    .footer-links {
        margin-left: auto;
        text-align: right;
        gap: 17px;
    }

    .footer-copy {
        margin-top: 62px;
        text-align: center;
    }
}

@media screen and (min-width: 1400px) {
    .footer-column-button img {
        width: 54px;
        margin-right: 24px;
    }
}

/*warning*/
.warning {
    position: sticky;
    bottom: 0;
    background-color: #F5F5F5;
}

.warning:not(.warning-on) {
    display: none;
}

.warning-content {
    text-align: center;
    padding: 20px 40px 20px 16px;
}

.warning-text {
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #5C5C5C;
}

.warning-close {
    position: absolute;
    color: #5C5C5C;
    right: 10px;
    top: 16px;
    transition-property: color;
    transition-duration: 200ms;
    cursor: pointer;
}

.warning-close:hover {
    color: #246B6A;
}

@media screen and (min-width: 1200px) {
    .warning-content {
        padding: 20px 60px;
    }

    .warning-text {
        font-size: 26px;
        line-height: 32px;
    }

    .warning-close {
        right: 20px;
        top: calc(50% - 15px);
    }
}

.contact-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.contacts-header {
    gap: 32px;
}

.contacts-header-title h1 {
    font-weight: 600;
    font-size: 62px;
    line-height: 110%;
    color: #246B6A;
}

.contacts-header-text {
    font-size: 26px;
    line-height: 32px;
    color: #000000;
}

.contacts-form {
    margin-top: 24px;
}

.contacts-form-field {
    position: relative;
    margin-bottom: 8px;

}

.contacts-form-field input {
    border: 1px solid #BFE87B;
    border-radius: 6px;
    height: 56px;
    width: 100%;
    font-size: 16px;
    padding: 0 16px;
    font-family: 'Proxima Nova', sans-serif;
}

.contacts-form-field textarea {
    border: 1px solid #BFE87B;
    border-radius: 6px;
    height: 56px;
    width: 100%;
    font-size: 16px;
    padding: 19px 16px;
    height: 200px;
    resize: none;
    font-family: 'Proxima Nova', sans-serif;
}

.contacts-form-field input.error {
    border-color: #E25E5E;
}

.contacts-form-field textarea.error {
    border-color: #E25E5E;
}

.contacts-form {
    width: 390px;
}

.contacts-form-policy {
    display: flex;
    font-size: 14px;
    line-height: 17px;
    color: #5C5C5C;
}

.contacts-form-policy a {
    color: #246B6A;
    text-decoration: underline;
}

.contacts-form-policy-checkbox {
    flex: none;
    margin-right: 8px;
}

.contacts-form-policy-checkbox span {
    border-radius: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid #246B6A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contacts-form-policy-checkbox svg {
    width: 12px;
    height: auto;
    opacity: 0;
}

.contacts-form-policy-checkbox input {
    display: none;
}

.contacts-form-policy-checkbox input:checked+span svg {
    opacity: 1;
}

.contacts-form-policy label {
    display: flex;
}

.contacts-form-policy div {
    max-width: 400px;
}

.contacts-form-policy.error {
    color: #E25E5E;
}

.contacts-form-policy.error .contacts-form-policy-checkbox span {
    border-color: #E25E5E;
}

.contacts-form-button {
    margin-top: 24px;
}

.contacts-form-button button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 60px;
    width: 100%;
    padding: 0px 28px;
    background: linear-gradient(180deg, #BFE87B 0%, #9CD145 100%);
    color: #ffffff;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    font-family: 'Proxima Nova', sans-serif;
    cursor: pointer;
}

.contacts-form-button button:hover {
    background: linear-gradient(180deg, #BFE87B 0%, #8EBE3D 100%);
}

.contacts-form-required {
    color: #E25E5E;
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
}

.contacts-form-noty {
    margin-top: 8px;
    font-size: 14px;
    line-height: 17px;
    color: #5C5C5C;
}

.contacts-form-noty p {
    display: flex;
}

.contacts-form-noty p span {
    width: 10px;
    flex: none;
    margin-right: 3px;
}

.contacts-form-noty p:not(:last-child) {
    margin-bottom: 8px;
}

.contacts-header {
    display: flex;
}

.contacts-picture-wrapper img {
    width: 780px;
    margin: -30px -45px -70px -135px;
}

.contacts-header-picture {
    margin-left: auto;
}

.contacts-footer {
    display: flex;
    margin-top: 90px;
    gap: 32px;
}

.contacts-footer-title {
    font-weight: 600;
    font-size: 62px;
    line-height: 110%;
    margin-bottom: 24px;
}

.contacts-footer-text {
    font-size: 26px;
    line-height: 32px;
    color: #000000;
}

.contacts-footer-text p:not(:last-child) {
    margin-bottom: 16px;
}

.contacts-footer-address {
    margin-top: 24px;
}

.contacts-footer-address-header {
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    color: #000000;
    display: flex;
}

.contacts-footer-address-header svg {
    width: 14px;
    height: auto;
    flex: none;
    margin-right: 8px;
}

.contacts-footer-address-header-text {
    margin-top: 8px;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}

.contacts-footer-content {
    max-width: 528px;
    width: 100%;
}

.contacts-footer-map {
    width: 600px;
    margin-left: auto;
}

@media screen and (max-width: 1199px) {
    .contacts-picture-wrapper img {
        width: 477px;
        margin: -22px -70px -70px;
    }

    .contacts-header-title h1 {
        font-size: 38px;
        line-height: 46px;
    }

    .contacts-header {
        flex-direction: column;
    }

    .contacts-header-picture {
        margin: 0 auto;
    }

    .contacts-form {
        width: 100%;
    }

    .contact-page {
        padding: 48px 0;
    }

    .contacts-footer {
        margin-top: 60px;
        flex-direction: column;
    }

    .contacts-footer-title {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 16px;
    }

    .contacts-footer-text {
        font-size: 18px;
        line-height: 22px;
    }

    .contacts-footer-text p:not(:last-child) {
        margin-bottom: 8px;
    }

    .contacts-footer-address-header-text {
        font-size: 18px;
        line-height: 22px;
    }

    .contacts-footer-map {
        width: 100%;
    }
}

.footer-question {
    padding: 30px 0 80px;
    text-align: center;
}

.footer-question-title {
    font-weight: 600;
    font-size: 62px;
    line-height: 110%;
}

.footer-question-button {
    margin-top: 40px;
}

.footer-question-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 60px;
    width: auto;
    padding: 0px 28px;
    background: linear-gradient(180deg, #E25E5E 0%, #C63939 79.82%);
    color: #ffffff;
    min-width: 280px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
}

.footer-question-button a:hover {
    background: linear-gradient(180deg, #E25E5E 0%, #A23131 79.82%);
}

@media screen and (max-width: 1199px) {
    .footer-question-title {
        font-size: 38px;
        line-height: 46px;
    }
}

@media screen and (max-width: 499px) {
    .footer-question-button a {
        width: 100%;
    }
}

.footer-logo span {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    width: 290px;
    flex: none;
    text-align: left;
    color: #000000;
}

.footer-logo span img {
    width: 100px;
    margin-right: 16px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo a {
    flex: none;
    margin-right: 24px;
}

@media screen and (max-width: 767px) {
    .footer-logo {
        flex-direction: column;
    }

    .footer-logo a {
        margin-right: 0;
    }

    .footer-logo a {
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 499px) {
    .footer-logo {
        width: 100%;
        align-items: flex-start;
        margin-bottom: 30px;
    }
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    white-space: nowrap;
    padding: 16px;
    background-color: #000;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 30;
}

.modal:before {
    content: '';
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.modal-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    text-align: left;
    width: 100%;
    max-width: 343px;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 32px 32px 40px 32px;
}

.modal-close {
    position: absolute;
    width: 14px;
    top: 20px;
    right: 20px;
    transition: opacity 200ms;
    cursor: pointer;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
    color: #000000;
}

.modal-title span {
    color: #BFE87B;
}

.modal-text {
    font-size: 18px;
    line-height: 130%;
    color: #000000;
}

.modal-text p:not(:first-child) {
    margin-top: 16px;
}

.modal-buttons {
    margin-top: 32px;
}

.modal-buttons span:last-child:not(:first-child) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 64px;
    width: auto;
    padding: 0px 28px;
    background: linear-gradient(180deg, #E25E5E 0%, #C63939 79.82%);
    color: #ffffff;
    min-width: 280px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    cursor: pointer;
}

.modal-buttons span:last-child:not(:first-child):hover {
    background: linear-gradient(180deg, #E25E5E 0%, #A23131 79.82%);
}

.modal-buttons span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 64px;
    width: 100%;
    padding: 0px 28px;
    background: linear-gradient(180deg, #BFE87B 0%, #9CD145 100%);
    color: #ffffff;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.modal-buttons span:first-child:hover {
    background: linear-gradient(180deg, #BFE87B 0%, #8EBE3D 100%);
}

@media screen and (max-width: 480px) {.uteka-widget iframe {width: 100%!important;}}

@media screen and (min-width: 1200px) and (max-width: 1390px) {.uteka-widget iframe {width: calc(100% + 2.9%)!important;}}