#footer {
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}
.footer-logo {
    margin-bottom: clamp(12px, 2vw, 24px);
    width: fit-content;
    display: flex;
    margin-inline: auto;
}
.footer-about {
    color: #fff;
    font-size: 14px;
    margin-bottom: 40px;
}
.footer-row:before {
    content: "";
    background-color: var(--white);
    width: 135%;
    height: clamp(60px, 11vw, 170px);
    position: absolute;
    top: max(-14%, min(-9vw, -5%));
    right: 50%;
    border-radius: 50%;
    transform: translateX(50%);
    z-index: 1;
}
.footer-row:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    right: 0;
    z-index: -1;
    background: #10395A;
    /*background: radial-gradient(circle, rgba(0, 48, 64, 1) 0%, rgba(21, 89, 112, 1) 50%);*/
}
.socials {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.socials a {
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}
.socials a:hover {
    color: var(--color1);
}
.footer-sub-menu {
    display: flex;
    align-items: center;
    gap: 56px;
    justify-content: center;
    margin-block: 3rem;
}
.footer-sub-menu a {
    color: var(--white);
    position: relative;
    padding-right: 12px;
}
.footer-sub-menu a:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    right: 0;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 50%;
    transition: 0.4s;
    top: 50%;
    transform: translateY(-50%);
}
.footer-sub-menu a:hover:before {
    background-color: white;
}
.location {
    display: flex;
    justify-content: space-between;
    margin-block: 3rem;
    /*background: rgb(255 255 255 / 10%);*/
    /*border: 1px solid rgb(255 255 255 / 20%);*/
    border-radius: 100px;
    padding: 12px 32px;
    line-height: 1.7;
    color: white;
    position: relative;
    gap: 10px;
}
.location i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.location-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 20%);
    padding: 16px clamp(20px, 3vw, 64px) 16px 16px;
    border-radius: 64px;
    width: 100%;
}
.location-wrap a,
.location-wrap > span {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 13px;
    transition: 0.4s;
}
.location-wrap a:hover {
    color: var(--color1);
}
.footer-contact-wrap {
    position: relative;
    min-height: 78px;
}
.footer-contact-wrap:before {
    content: "\e91b";
    font-family: 'icomoon';
    font-size: 5rem;
    position: absolute;
    bottom: -41px;
    z-index: 0;
    color: white;
    right: 50%;
    transform: translateX(50%);
}
.footer-contact {
    display: flex;
    gap: 80px;
    z-index: 1;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
}
.footer-contact .phones .d-flex {
    gap: 30px;
}
.footer-contact .phones .d-flex a {
    position: relative;
}
.footer-contact .phones .d-flex a:nth-last-child(1):before {
    content: "";
    width: 6px;
    height: 1px;
    background: var(--black);
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: -15px;
}
.footer-contact li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.li-label {
    font-size: 10px;
}
.footer-contact li i {
    width: 20px;
    height: 20px;
    font-size: 18px;
}
.footer-contact li > div {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
}
.footer-contact li:not(:nth-last-child(1)):before {
    content: "";
    background-color: #DCDCDC;
    width: 1px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
}
.copy-right-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
}
.copy-right {
    font-size: 14px;
}
.copy-right strong {
    font-weight: bold;
    color: var(--color1);
}
@media only screen and (max-width: 768px) {
    .copy-right-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .copy-right {
        text-align: center;
    }
    footer .wrap-ft-menu {
        background: rgb(255 255 255 / 10%);
        border: 1px solid rgb(255 255 255 / 20%);
        padding: 15px 20px;
        border-radius: 14px;
        color: var(--white);
        margin-bottom: 1rem;
        position: relative;
    }
    footer .wrap-ft-menu a {
        color: var(--white);
        font-size: 12px;
    }
    .accordion-title:before {
        content: "\e921";
        font-family: 'icomoon';
        position: absolute;
        left: 20px;
        font-size: 20px;
        top: 21px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        align-items: center;
        transition: 0.4s;
    }
    .accordion-title.active:before {
        content: "\e920";
    }
    .footer-mobile-contact {
        gap: 14px;
        display: flex;
        flex-direction: column;
    }
    .footer-mobile-contact li {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .footer-mobile-contact li > div {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        font-size: 12px;
    }
    .li-label {
        flex: 0 0 4rem;
    }
    .accordion-container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgb(255 255 255 / 20%);
    }
    .footer-mobile-menu {
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .location {
        flex-direction: column;
        gap: 18px;
        padding: 0;
        margin-bottom: 16px;
    }
    .location:before {
        content: none;
        /*background-image: url(../img/location-mobile.png);*/
        /*background-size: contain;*/
    }
    .location-wrap {
        gap: 16px;
        background: rgb(255 255 255 / 10%);
        border: 1px solid rgb(255 255 255 / 20%);
        padding: 1rem 1.4rem;
        border-radius: 24px;
    }
}
.sticky-mobile {
    position: fixed;
    bottom: 0;
    right: 0;
    /*transform: translateX(50%);*/
    width: 100%;
    z-index: 12;
    display: flex;
    align-items: center;
    min-height: 60px;
    justify-content: space-between;
    padding: 20px 12px 12px;
}
.sticky-mobile:before {
    /*content: '\e93f';*/
    content: "";
    font-family: 'icomoon';
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 73px;
    color: white;
    z-index: -1;
    background-image: url(../img/navmobile.svg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.wrap-sticky:nth-child(3) {
    margin-left: clamp(6rem, 2vw, 10rem);
}
.wrap-sticky.home-icon {
    position: absolute;
    bottom: calc(100% - 2rem);
    right: 50%;
    transform: translateX(50%);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color1);
    border-radius: 50%;
    color: white;
    box-shadow: 0px 0px 11px var(--color1);
}
.wrap-sticky {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.wrap-sticky i {
    font-size: 16px;
}
