.footer {
    width: 100%;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.footer .toast_wrapper {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    position: fixed;
    width: 1110px;
    top: 100px;
    height: 80px;
    z-index: 100;
}
.footer .toast_wrapper .toast-item {
    position: absolute;
    top: 0;
    right: -460px;
    display: flex;
    align-items: center;
    width: 343px;
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8EEF0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    transition: all 0.5s linear;
    overflow: hidden;
    padding: 12px;
    background-color: white;
}
.footer .toast_wrapper .toast-item:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    display: block;
    animation: progress 4s linear;
}
.footer .toast_wrapper .toast-item.success:after {
    background: #07C77A;
}
.footer .toast_wrapper .toast-item.error:after {
    background: #D2002E;
}
.footer .toast_wrapper .toast-item.active {
    transform: translateX(0px);
}
.footer .toast_wrapper .toast-item p {
    font-size: 16px;
    font-weight: 400;
    color: #111832;
    line-height: 24px;
    margin: 0 auto 0 8px;
}
.footer .toast_wrapper .toast-item span.close {
    cursor: pointer;
    padding-left: 8px;
    border-left: 1px solid #E8EEF0;
}
@media (max-width: 575.98px) {
    .footer .toast_wrapper {
        left: 0;
        transform: none;
        width: 100%;
    }
    .footer .toast_wrapper .toast-item {
        position: absolute;
        top: 0;
        right: calc(0px - 100vw);
        display: flex;
        align-items: center;
        width: calc(100vw - 40px);
        box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.05);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        transition: all 0.5s linear;
        overflow: hidden;
        padding: 16px;
        background-color: white;
    }
    .footer .toast_wrapper .toast-item p {
        font-size: 14px;
    }
}
@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
.footer .footer-fluid {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}
.footer .footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
.footer .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 40px;
    flex: 1;
}
.footer .logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    height: 200px;
}
.footer .logo {
    width: 275px;
    height: 108.5px;
}
.footer .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .footer-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 29px 0;
    width: 370px;
    height: 200px;
}
.footer .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 12px 0 0;
}
.footer .form-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.265;
    color: #ffffff;
    margin: 0;
}
.footer .newsletter-form {
    width: 100%;
}
.footer .form-group {
    display: block;
    position: relative;
}
.footer .form-control-feedback {
    font-weight: 500;
    font-size: 12px;
    color: #d2002e;
    margin-top: 6px;
}
.footer .form-input {
    width: 100%;
    height: 40px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #e8eef0;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    line-height: 1.265;
    color: #ffffff;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer .form-input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}
.footer .form-input:focus {
    outline: none;
    border-color: #ffffff;
}
.footer .form-input:-webkit-autofill, .footer .form-input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}
.footer .form-submit {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 4px;
}
.footer .form-submit:hover {
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.footer .form-submit svg {
    width: 24px;
    height: 24px;
}
.footer .social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer .social-link:hover {
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    opacity: 0.8;
}
.footer .social-link:first-child svg {
    width: 35.71px;
    height: 20px;
}
.footer .social-link svg {
    width: 20px;
    height: 20px;
}
.footer .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    padding: 62px 0 8px;
    flex: 1;
}
.footer .footer-menus {
    display: flex;
    gap: 40px;
}
.footer .menu-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 200px;
}
.footer .menu-column--contact {
    width: 275px;
}
.footer .menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer .menu-title {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.265;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}
.footer .menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.265;
    color: #ffffff;
    text-decoration: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.footer .menu-item:hover {
    opacity: 0.8;
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}
.footer .contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer .contact-item:nth-child(2) {
    align-items: flex-start;
}
.footer .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #B6DCFD;
}
.footer .contact-icon svg {
    width: 100%;
    height: 100%;
}
.footer .contact-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}
.footer .contact-text--phone {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}
.footer .footer-copyright {
    width: 100%;
}
.footer .copyright-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1199.98px) {
    .footer .footer-left {
        padding-right: 0;
        gap: 60px;
        width: 100%;
        max-width: 400px;
    }
    .footer .logo-wrapper {
        height: 150px;
        padding: 20px 0;
    }
    .footer .logo {
        width: 220px;
        height: 86px;
    }
    .footer .footer-form {
        height: auto;
        padding: 32px 0;
    }
    .footer .footer-right {
        gap: 48px;
        padding: 32px 0 8px;
        width: 100%;
    }
    .footer .footer-menus {
        flex-wrap: wrap;
        gap: 32px;
    }
    .footer .menu-column {
        width: calc(50% - 16px);
    }
    .footer .menu-column--contact {
        width: calc(50% - 16px);
    }
}
@media (max-width: 991.98px) {
    .footer {
        padding: 20px;
    }
    .footer .footer-fluid {
        border-radius: 16px;
        max-width: 680px;
    }
    .footer .footer-container {
        flex-direction: column;
        gap: 48px;
    }
    .footer .footer-left {
        padding-right: 0;
        gap: 0;
        max-width: unset;
    }
    .footer .logo-wrapper {
        height: auto;
        padding: 0;
        justify-content: flex-start;
    }
    .footer .logo {
        width: 182.5px;
        height: 72px;
    }
    .footer .footer-form {
        width: 100%;
        height: auto;
        padding: 12px 0;
        gap: 20px;
    }
    .footer .form-wrapper {
        gap: 20px;
        padding: 12px 0 0;
    }
    .footer .form-title {
        font-weight: 600;
        font-size: 20px;
        line-height: 1.265;
    }
    .footer .form-submit {
        right: 3px;
        top: 3px;
    }
    .footer .social-links {
        gap: 20px;
        justify-content: flex-start;
    }
    .footer .footer-right {
        gap: 40px;
        padding: 24px 0 8px;
    }
    .footer .footer-menus {
        flex-direction: column;
        gap: 40px;
    }
    .footer .menu-column {
        width: 100%;
        gap: 16px;
    }
    .footer .menu-column--contact {
        width: 100%;
    }
    .footer .contact-icon img {
        filter: brightness(0) invert(1);
    }
    .footer .menu-list {
        gap: 16px;
    }
    .footer .contact-list {
        gap: 16px;
    }
    .footer .contact-item {
        align-items: flex-start;
    }
    .footer .contact-item:nth-child(2) {
        align-items: flex-start;
    }
    .footer .copyright-text {
        font-weight: 400;
        font-size: 10px;
        line-height: 1.4;
    }
}
@media (max-width: 767.98px) {
    .footer {
        padding: 20px;
    }
    .footer .logo {
        width: 182.5px;
        height: 72px;
    }
    .footer .footer-fluid {
        border-radius: 16px;
        max-width: 500px;
    }
    .footer .footer-container {
        gap: 10px;
    }
    .footer .form-title {
        font-size: 20px;
    }
    .footer .social-links {
        gap: 20px;
    }
    .footer .social-links .social-link:first-child svg {
        width: 35.71px;
        height: 20px;
    }
    .footer .social-links .social-link svg {
        width: 20px;
        height: 20px;
    }
    .footer .copyright-text {
        font-size: 10px;
    }
}
/*# sourceMappingURL=footer.css.map */
