*,::after,::before {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box
}

a {
    text-decoration: none
}

li,ol,ul {
    list-style: none
}

img {
    vertical-align: top
}

h1,h2,h3,h4,h5,h6 {
    font-weight: inherit;
    font-size: inherit
}

body,html {
    height: 100%;
    font-family: Montserrat;
    color: var(--primary-text-color);
    font-size: 14px;
    line-height: 1;
    background-color: #fff;
    color: #000;
    font-weight: 500
}

:root {
    --primary-color: #ff7b47;
    --secondary-color-1: #006db2;
    --secondary-color-2: #17213c;
    --text-color: #252b42;
    --second-text-color: #737373;
    --light-text-color: #fff;
    --dark-background-color: #252b42;
    --light-background-color: #fff;
    --hover-color: #2a7cc7;
    --disabled-element-color: #8ec2f2;
    --muted-color: #bdbdbd;
    --success-color: #2dc071;
    --alert-color: #e77c40;
    --danger-color: #e74040
}

.wrapper {
    min-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.page {
    flex: 1 1 auto
}

.page__services {
    position: relative;
    z-index: 2
}

@media (min-width: 479.98px) {
    .page__services {
        margin:-25px 0 0 0
    }
}

@media (min-width: 768px) {
    .page__services {
        margin:-60px 0 0 0
    }
}

@media (min-width: 1024px) {
    .page__services {
        margin:-111px 0 0 0
    }
}

[class*="__container"] {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto
}

._ibg {
    position: relative
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #fff;
    transition: opacity .3s
}

.header.scroll::before {
    opacity: .98
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 104px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative
}

@media (max-width: 479.98px) {
    .header__container {
        min-height:85px
    }

    .header__social-container {
        display: none!important
    }
}

.header__logo {
    overflow: hidden;
    cursor: pointer;
    width: 150px;
    height: 80px
}

.menu__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 5px
}

@media (max-width: 992px) {
    .menu__list {
        column-gap:15px
    }

    .info-header__phone {
        font-size: 12px
    }

    .header__social-container {
        display: none!important
    }
}

.menu__item {
    position: relative
}

.menu__link {
    cursor: pointer;
    letter-spacing: .17px;
    font-size: 14px;
    font-weight: 600;
    line-height: 171%;
    color: var(--text-color)
}

.menu__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    transition: all .4s ease 0s;
    background-color: var(--secondary-color-1)
}

.menu__link:focus:after,.menu__link:hover:after {
    width: 100%
}

.menu__link:focus,.menu__link:hover {
    color: var(--secondary-color-1)
}

.header__socials {
    margin-top: 0!important
}

.header__info {
    display: flex;
    flex-direction: column;
    row-gap: 5px
}

.header__info a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600
}

.info-header {
    display: flex;
    gap: 15px;
    cursor: pointer
}

.header-phone {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    fill: #000;
    cursor: pointer
}

.info-header__email {
    color: var(--second-text-color)
}

.header__button {
    width: 150px;
    height: 50px;
    border-radius: 59px;
    transition: background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;
    cursor: pointer;
    background-color: var(--secondary-color-1);
    color: #fff;
    font-size: 15px;
    transition: transform .3s ease 0s
}

.header__button:focus,.header__button:hover {
    transform: scale(1.04);
    background-color: #0c95c7;
    transition-duration: all
}

@media (max-width: 768px) {
    .menu {
        display:none
    }

    .header__info {
        display: none
    }

    .header__button {
        display: none
    }
}

.menu .link {
    padding: 10px;
    color: inherit;
    text-decoration: none
}

.menu .link:focus,.menu .link:hover {
    text-decoration: underline
}

.menu-toggle {
    min-height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    outline: 0
}

@media (min-width: 768px) {
    .menu-toggle {
        display:none
    }
}

.menu-toggle:focus,.menu-toggle:hover {
    background-color: rgba(0,0,0,.1)
}

.menu-container {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 65px 31px;
    background-color: var(--secondary-color-1);
    z-index: 999;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 250ms ease-in-out
}

.menu-container.is-open {
    transform: translateX(0)
}

@media (min-width: 768px) {
    .menu-container {
        position:fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color-1);
        transition: top .3s;
        z-index: 1000
    }

    .menu-container.is-open {
        top: 90px
    }

    .menu-toggle .js-close-menu {
        display: none
    }
}

.menu-container .menu-toggle {
    position: absolute;
    top: 23px;
    right: 16px;
    color: #fff
}

.mobile-menu {
    margin: 0;
    list-style: none;
    text-align: center
}

.mobile-menu .link {
    display: block;
    padding: 10px;
    font-size: 16px;
    color: var(--light-text-color);
    text-decoration: none;
    font-family: Montserrat
}

.mobile__contacts {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    text-align: center
}

.contacts-mobile__address {
    color: #fff;
    font-size: 16px
}

.contacts-mobile__list .contacts-mobile__item {
    padding: 10px
}

.contacts-mobile__contacts {
    color: #fff;
    font-size: 16px;
    font-family: Montserrat
}

.mobile-callback__container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 40px
}

.callback__sub-title {
    color: #fff;
    font-size: 16px;
    font-family: Montserrat;
    text-align: center;
    padding: 15px 0 15px 0
}

.callback__items {
    display: flex;
    justify-content: center;
    flex-direction: row
}

.callback__item:not(:last-child) {
    padding-right: 15px
}

.header-block {
    text-align: center
}

.header-block__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 142%;
    letter-spacing: .01em;
    color: var(--text-color)
}

.header-block_sub-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: .01em;
    color: var(--second-text-color)
}

.header-block_sub-title:not(:last-child) {
    margin-bottom: 10px
}

@media (max-width: 992px) {
    .header-block__title {
        font-size:35px
    }
}

@media (max-width: 767.98px) {
    .header-block__title {
        font-size:30px
    }
}

@media (max-width: 1030px) {
    .priority__column {
        flex:0 1 50%
    }
}

@media (max-width: 630px) {
    .priority__column {
        flex:0 1 100%;
        margin: 0 0 18px 0
    }

    .priority-body {
        margin: 0 -15px -18px
    }

    .header-block__title {
        font-size: 24px
    }
}
main {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.main-block {
    position: relative
}

.main-block__body {
    padding: 184px 0 191px 0;
    position: relative;
    z-index: 2;
    text-align: center
}

@media (max-width: 992px) {
    .main-block__body {
        padding:120px 0 191px 0
    }
}

@media (max-width: 479.98px) {
    .main-block__body {
        padding:80px 0 150px 0
    }
}

.main-block__body>:not(:last-child) {
    margin: 0 0 35px 0
}

.main-block_title {
    font-weight: 800;
    font-size: 58px;
    line-height: 137%;
    color: var(--text-color)
}

@media (max-width: 767.98px) {
    .main-block_title {
        font-size:40px
    }
}

@media (max-width: 479.98px) {
    .main-block_title {
        font-size:37px
    }

    .main-block_text {
        font-size: 15px
    }
}

.main-block_text {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--second-text-color)
}

.main-block_buttons {
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0;
    align-items: start
}

.main-block_button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: .01em;
    text-align: center;
    border-radius: 37px;
    padding: 10px 36px;
    width: 187px;
    height: 48px;
    margin: 10px 10px 10px 10px
}

@media (max-width: 479.98px) {
    .main-block_button {
        flex:1 1 auto
    }
}

@media (min-width: 479.98px) {
    .main-block_button:not(:last-child) {
        margin-right:10px
    }
}

.main-block_button-orange {
    border: 2px solid #0095ff;
    color: #0095ff;
    transition: 0.2s ease-in;
    backdrop-filter: blur(10px);
}
.main-block_button-orange:hover {
    border: 2px solid #0095ff;
    background: #0095ff;
    color: var(--light-text-color);
    transform: translateY(-4px);

}

.main-block_button-border {
    border: 1px solid var(--secondary-color-1);
    color: var(--secondary-color-1);
    font-size: 15px;
    transition: transform .3s ease 0s
}

.main-block_button-border:focus,.main-block_button-border:hover {
    transform: scale(1.04);
    transition-duration: all;
    background-color: var(--hover-color);
    color: var(--light-text-color);
    display: flex;
}

.main-block_image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.main-block_image img {
    opacity: .3
}

@media (max-width: 1300px) {
    .main-block_image img {
        object-position:right
    }
}

.services {
    background: #fafafa
}

.services__body {
    transform: translate(0,-16.765027%);
    display: flex;
    justify-content: center;
}

@media (min-width: 670px) {
    .services__body {
        display:flex;
        flex-wrap: wrap;
        margin: 0 -15px
    }
}

.services__column {
    flex: 0 1 33.333%;
    text-align: left;

}

@media (min-width: 670px) {
    .services__column {
        padding:0 15px
    }
}

@media (max-width: 992px) {
    .services__column {
        flex:0 1 50%;
        margin: 0 0 30px 0
    }

    .services__column:last-child {
        flex: 1 1 100%
    }
}

.services__item {
    height: 100%;
    box-shadow: 0 13px 19px 0 rgba(0,0,0,.07);
    background: var(--light-text-color);
    padding: 35px;
    transition: 0.1s ease-in;
}
.services__item:hover {
    transform: translateY(-5px);
}
@media (max-width: 479.98px) {
    .services__item {
        padding:25px
    }

    .services__body {
        transform: translate(0,-10.765027%)
    }
}

.item-service {
    border-radius: 10px;
}

.item-service>:not(:last-child) {
    margin: 0 0 10px 0;
}

.item-service__green {
    background: var(--secondary-color-1)
}

.item-service__green .item-service__title {
    color: var(--light-text-color)
}

.item-service__green .item-service__text {
    color: var(--light-text-color)
}

.item-service__icon img {
    width: 48px;
    height: 48px;
}

.item-service__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    color: var(--text-color)
}

.item-service__text {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: .01em;
    color: var(--second-text-color)
}
/* Оптимізація для екранів 430x932 пікселів */

/* Основні медіа-запити для 430px */
@media (max-width: 430px) {
    /* Контейнер */
    [class*="__container"] {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Header оптимізація */
    .header__container {
        min-height: 70px;
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 10px;
    }
    
    .header__logo {
        width: 150px;
        height: 60px;
    }
    
    /* Main block */
    .main-block__body {
        padding: 50px 0 100px 0;
    }
    
    .main-block_title {
        font-size: 26px;
        line-height: 125%;
        margin-bottom: 16px;
    }
    
    .main-block_text {
        font-size: 14px;
        line-height: 140%;
        padding: 0 8px;
        margin-bottom: 24px;
    }
    
    /* Services section - головна оптимізація */
    .services {
        padding: 16px 0 32px 0;
        background: #fafafa;
    }
    
    .services__container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .services__body {
        transform: translate(0, -6%);
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0;
        align-items: stretch;
    }
    
    .services__column {
        flex: 1 1 100%;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .services__item {
        padding: 18px 16px;
        margin: 0;
        border-radius: 10px;
        box-shadow: 0 6px 20px 0 rgba(0,0,0,.08);
        background: #fff;
        height: auto;
        min-height: 160px;
        display: flex;
        flex-direction: column;
    }
    
    .item-service {
        border-radius: 10px;
        text-align: center;
    }
    
    .item-service > :not(:last-child) {
        margin: 0 0 12px 0;
    }
    
    .item-service__icon {
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .item-service__icon img {
        width: 36px;
        height: 36px;
    }
    
    .item-service__title {
        font-size: 17px;
        line-height: 125%;
        font-weight: 700;
        text-align: center;
        margin-bottom: 12px;
        color: var(--text-color);
    }
    
    .item-service__text {
        font-size: 12px;
        line-height: 150%;
        text-align: left;
        letter-spacing: 0.01em;
        color: var(--second-text-color);
        flex-grow: 1;
    }
    
    /* Спеціальні стилі для зеленої картки */
    .item-service__green {
        background: var(--secondary-color-1);
    }
    
    .item-service__green .item-service__title {
        color: var(--light-text-color);
    }
    
    .item-service__green .item-service__text {
        color: var(--light-text-color);
    }
    
    /* Clients section */
    .clients {
        padding: 32px 0;
    }
    
    .clients__title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .clients__item {
        padding: 6px 10px;
        min-width: 120px;
    }
    
    /* Form section */
    .sec-form {
        margin-top: 24px;
        padding: 16px 0;
    }
    
    .form-container {
        padding: 24px 16px;
        margin: 8px;
        border-radius: 16px;
        bottom: 20px;
    }
    
    h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    input, select, textarea {
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    textarea {
        min-height: 100px;
    }
    
    .btn {
        padding: 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 24px 0;
    }
    
    .footer__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }
    
    .footer__logo {
        width: 160px;
        height: 64px;
    }
    
    .footer-address {
        margin-top: 16px;
    }
    
    .footer-list .item {
        margin-top: 8px;
    }
    
    .footer-contacts, .footer-addres {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-title {
        font-size: 13px;
        text-align: center;
    }
    
    .footer-socials {
        margin-top: 16px;
        gap: 16px;
    }
    
    .footer-social-item:not(:last-child) {
        margin-right: 16px;
    }
    
    /* Header block загальний */
    .header-block__title {
        font-size: 22px;
        line-height: 135%;
    }
    
    .header-block_sub-title {
        font-size: 13px;
        line-height: 145%;
    }
}

/* Додаткова оптимізація для дуже маленьких екранів (менше 380px) */
@media (max-width: 380px) {
    .services__container {
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .services__body {
        gap: 12px;
    }
    
    .services__item {
        padding: 14px 12px;
        min-height: 140px;
    }
    
    .item-service__title {
        font-size: 16px;
    }
    
    .item-service__text {
        font-size: 11px;
        line-height: 155%;
    }
    
    .form-container {
        padding: 20px 12px;
        margin: 6px;
    }
    
    .main-block_title {
        font-size: 24px;
    }
}

/* Покращення взаємодії з дотиком */
@media (max-width: 430px) {
    .menu__link, .footer-social-link, .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-social-item img {
        width: 32px;
        height: 32px;
    }
    
    /* Покращення читабельності */
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Оптимізація кнопок */
    .header__button, .main-block_button {
        min-height: 48px;
        font-size: 15px;
        padding: 12px 20px;
    }
}
/* Mobile optimization for services section - 425px and below */
@media (max-width: 425px) {
    .services {
        padding: 20px 0;
    }
    
    .services__container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .services__body {
        transform: translate(0, -8%);
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }
    
    .services__column {
        flex: 1 1 100%;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .services__item {
        padding: 20px 15px;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
    }
    
    .item-service > :not(:last-child) {
        margin: 0 0 15px 0;
    }
    
    .item-service__icon {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .item-service__icon img {
        width: 40px;
        height: 40px;
    }
    
    .item-service__title {
        font-size: 18px;
        line-height: 125%;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .item-service__text {
        font-size: 13px;
        line-height: 150%;
        text-align: left;
        letter-spacing: 0.01em;
    }
    
    .main-block__body {
        padding: 60px 0 120px 0;
    }
    
    .main-block_title {
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 20px;
    }
    
    .main-block_text {
        font-size: 14px;
        line-height: 140%;
        padding: 0 10px;
    }
}

/* Extra small mobile devices - 375px and below */
@media (max-width: 375px) {
    .services__container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .services__item {
        padding: 18px 12px;
    }
    
    .item-service__title {
        font-size: 16px;
    }
    
    .item-service__text {
        font-size: 12px;
    }
    
    .main-block_title {
        font-size: 24px;
    }
    
    .main-block_text {
        font-size: 13px;
    }
}

/* Improve spacing and readability on very small screens */
@media (max-width: 320px) {
    .services__body {
        gap: 15px;
    }
    
    .services__item {
        padding: 15px 10px;
    }
    
    .item-service__title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .item-service__text {
        font-size: 11px;
        line-height: 155%;
    }
}
        .carousel-container {
            max-width: 800px;
            position: relative;
            margin: 0 auto;
            padding: 30px;
            width: 100%;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 13px 19px 0 rgba(0, 0, 0, .07);
        }

        .carousel-wrapper {
            display: flex;
            width: 200%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            width: 50%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .carousel-slide:hover img {
            transform: scale(1.05);
        }

        .slide-overlay {
            text-align: left;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .carousel-slide:hover .slide-overlay {
            transform: translateY(0);
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .slide-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .carousel {
            cursor: grab;
        }

        .carousel:active {
            cursor: grabbing;
        }

        .carousel-title {
            text-align: center;
            color:  var(--text-color);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 30px;
        }

        @media (max-width: 768px) {
            .carousel-container {
                padding: 20px;
                margin: 10px;
            }
            
            .carousel {
                height: 300px;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .carousel-nav.prev {
                left: 10px;
            }
            
            .carousel-nav.next {
                right: 10px;
            }
            
            .carousel-title {
                font-size: 1.5rem;
            }
        }
.clients {
    padding: 50px 0
}

.clients_container {
    min-width: 0
}

.clients-block__title {
    margin: 0 0 45px 0
}

.clients__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 142%;
    letter-spacing: .01em;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase
}

@media (max-width: 992px) {
    .clients__title {
        font-size:30px
    }
}

@media (max-width: 767.98px) {
    .clients__title {
        font-size:20px
    }
}

.clients__items {
    display: flex;
    align-items: center
}

.clients__item {
    padding: 8px 15px;
    flex: 1 1 auto;
    text-align: center;
    min-width: 150px
}

.clients__item img {
    max-width: 100%;
    transition: 0.2s ease-in;
}

.clients__item img:hover {
    transform: scale(1.4);
}

.clients-image__slider .swiper-button-next::after,.clients-image__slider .swiper-button-prev::after {
    font-size: 30px;
    color: var(--secondary-color-1)
}

@media (max-width: 767.98px) {
    .clients-image__slider .swiper-button-next::after,.clients-image__slider .swiper-button-prev::after {
        display:none
    }
}
.sec-form {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fafafa;
}
        .form-container {
            background: white;
            border-radius: 20px;
            box-shadow: rgba(0, 0, 0, 0.07) 0px 13px 19px 0px;
            padding: 40px;
            width: 100%;
            max-width: 600px;
            animation: slideUp 0.6s ease-out;
            position: relative;
            bottom: 40px;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h2 {
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            font-size: 28px;
            font-weight: 600;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 14px;
        }

        input, select, textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .btn {
            background: #0095ff;
            color: white;
            border: none;
            border-radius: 10px;
            padding: 18px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
            background-color: #4ac24a;
        }

        .btn:active {
            transform: translateY(0);
        }

        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }

        .error-message {
            display: none;
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .form-container {
                padding: 25px;
                margin: 10px;
            }
            
            h2 {
                font-size: 24px;
            }
        }

        /* Netlify bot field - hidden */
        .netlify-bot-field {
            display: none;
        }
.footer {
    padding: 60px 0 40px 0;
    background-color: #2f303a
}

.footer-container {
    align-items: baseline
}

@media screen and (min-width: 768px) {
    .footer__container {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-around
    }
}

@media screen and (max-width: 1199px) {
    .footer-left {
        text-align:center;
        margin-bottom: 60px
    }
}

.footer-left {
    text-align: center
}

.footer__logo {
    width: 200px;
    height: 80px
}

.footer-address {
    margin-top: 20px;
    font-style: normal;
    color: #fff
}

.footer-list {
    padding: 0;
    margin: 0
}

.footer-list .item {
    margin-top: 9px
}

.footer-list .item:first-child {
    margin-top: 0
}

.footer-contacts {
    color: rgba(255,255,255,.6);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: .03em;
    text-decoration: none
}

.footer-addres {
    color: var(--button-color-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: .03em;
    text-decoration: none
}

.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media (max-width: 767.98px) {
    .footer-social {
        margin-bottom:40px
    }
}

.footer-title {
    font-weight: 700;
    font-size: 14px;
    line-height: calc(16 / 14);
    letter-spacing: .03em;
    text-transform: uppercase;
    text-align: start;
    color: #fff
}

@media (max-width: 1199.98px) {
    .footer-title {
        text-align:center
    }
}

.footer-socials {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.footer-social-item:not(:last-child) {
    margin-right: 20px
}

.footer-social-item:focus img,.footer-social-item:hover img {
    transform: scale(1.5)
}

.footer-social-item img {
    transition: transform .3s ease 0s;
}
