﻿:root {
    --blue-color: #2f296b;
    --yellow-color: #fee444;
    --text-color: #171b24;
    --dark-grey: #000000;
}
.footer {
    background-color: white;
    height: 330px;
    padding: 0 100px;
    padding-top: 40px;
}

.footer-mobile {
    display: none;
}

.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-main-label {
    color: #828288;
    font-size: 11px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 3px;
}

.footer-main-one {
    display: flex;
    flex-direction: column;
}

.footer-main-label.one {
    margin-top: 46px;
}

.footer-main-one-social {
    width: 182px;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.footer-main-one-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background-color: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-main-two {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-main-two-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.footer-main-three {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-main-three-content {
    width: 188px;
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.footer-main-four {
    display: flex;
    align-items: flex-end;
    gap: 52px;
}

.footer-main-four-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 22px;
}

.footer-main-four-section-input {
    width: 357px;
    height: 54px;
    border-radius: 4px;
    border: 1px solid rgba(23, 27, 36, 0.1);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 26px;
}

    .footer-main-four-section-input:focus {
        border: 1px solid #233aff;
        outline: 1px solid #233aff;
    }

    .footer-main-four-section-input:active {
        border: 1px solid #233aff;
        outline: 1px solid #233aff;
    }

.footer-main-four-section-input-field {
    width: 100%;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    outline: none;
}

.footer-main-four-section-button {
    width: 357px;
    height: 54px;
    background-color: var(--blue-color);
    box-shadow: 0px 4px 10px 0px #0000003d;
    border-radius: 4px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 3px;
    font-family: inherit;
}

    .footer-main-four-section-button:hover {
        box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.4);
    }

    .footer-main-four-section-button:focus {
        border: 2px solid #fff;
        box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.4);
    }

    .footer-main-four-section-button:active {
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    }

.footer-main-four-button {
    width: 54px;
    height: 54px;
    background-color: var(--yellow-color);
    box-shadow: 0px 4px 10px 0px #0000003d;
    border-radius: 4px;
    border: none;
    outline: none;
    transform: rotate(-90deg);
    cursor: pointer;
}

.footer-divider {
    margin-top: 36px;
    opacity: 0.1;
    background: #171b24;
    height: 2px;
}

.footer-copyright {
    margin: 26px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.8;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .footer {
        height: auto;
        padding: 24px 16px;
    }

    .footer-main {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .footer-main-three {
        margin-top: 32px;
    }

    .footer-main-label {
        font-size: 12px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 3px;
    }

    .footer-main-three-content {
        width: 100%;
        margin-top: 6px;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
    }

    .footer-main-four-section {
        margin-top: 24px;
    }

    .footer-main-four-section-input {
        width: 100%;
        padding: 0 20px;
        gap: 16px;
    }

    .footer-main-four-section-input-field {
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        font-family: inherit;
    }

    .footer-main-four-section-button {
        width: 100%;
        height: 48px;
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 3px;
    }

    .footer-main-two {
        margin-top: 32px;
    }

    .footer-main-two-links {
        margin-top: 6px;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-mobile-one {
        margin-top: 32px;
        font-size: 12px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 3px;
    }

    .footer-main-one-social {
        width: auto;
        margin-top: 10px;
    }

    .footer-main-one-social-icon {
        width: 42px;
        height: 42px;
    }

    .footer-main-four-button {
        margin-left: 48px;
        width: 42px;
        height: 42px;
    }

    .footer-divider {
        margin-top: 26px;
    }

    .footer-copyright {
        margin: 0;
        margin-top: 8px;
    }
}
