:root {
    --scrollbar-width: 0px;
}
button {
    position: relative;
}
.footer {
    display: flex;
    gap: 24px;
    background-color: #fff;
    padding-top: 64px;
    padding-bottom: 64px;
    border-radius: 128px 128px 0 0;
    flex-wrap: wrap;
    margin-top: -175px;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}
.footer .footer__bg-content-links,
.footer .intro__bg-content-links {
    position: absolute;
    background-color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    display: flex;
    gap: 16px;
    align-items: center;
    bottom: 16px;
    right: 16px;
    box-shadow: 0 0 11.8px rgba(255, 187, 58, 0.2);
    padding: 8px 24px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__col-copy {
    border-top: 1px solid #d7dbe0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 64px;
}
.footer__col-copy a,
.footer__col-copy p {
    color: #90959e;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.footer__col-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__col-actions a {
    font-size: 12px;
    font-weight: 700;
    color: #f66b34;
    transition: 0.4s ease-in-out;
    position: relative;
    width: auto;
    height: auto;
    display: block;
    line-height: 1.6;
    border-radius: 8px;
    padding: 4px 8px;
}
.footer__col-actions a:hover {
    text-decoration: underline;
    -webkit-text-decoration: solid underline #f66b34;
    text-decoration: solid underline #f66b34;
}
.footer__col-actions a.focus-visible:focus:not([disabled]) {
    outline: 0;
    box-shadow: 0 0 0 5px #4766d2;
}
.footer__col-actions-btn {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.footer__bg-content-links {
    position: relative !important;
    bottom: initial !important;
    top: initial !important;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #242a34;
}
.footer__nav-add {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer__nav-add-link {
    color: #242a34;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}
@media (max-width: 1000px) {
    .footer {
        border-radius: 64px 64px 0 0;
    }
}
@media (max-width: 720px) {
    .footer__col--1 {
        width: 100%;
        align-items: center;
        padding-bottom: 64px;
    }
    .footer__col--2 {
        padding-bottom: 24px;
    }
    .footer__col--4 {
        width: 100%;
    }
    .footer__col-copy {
        flex-direction: column;
        gap: 24px;
    }
    .footer__col-actions-btn {
        width: 100%;
    }
    .footer__col-actions {
        width: 100%;
        align-items: center;
        padding-bottom: 32px;
    }
}

