#footer {
    background: #111111;
    padding-top: 50px;
    position: relative;
}
.scroll-btn {
    width: 90px;
    height: 90px;
    color: var(--color3);
    background: var(--color2);
    position: absolute;
    left: 5%;
    top: -45px;
    margin: auto;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.4s ease;
    border: none;
}
.scroll-btn::before {
    content: '';
    background: var(--color2);
    width: 90px;
    height: 90px;
    border-radius: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
}
.scroll-text-svg {
    position: absolute;
    width: 85px;
    height: 85px;
    fill: transparent;
    font-size: 20px;
    letter-spacing: 3px;
    word-spacing: 8px;
    direction: ltr;
}
.scroll-text-svg text {
    fill: var(--color3);
}
.scroll-text-svg {
    animation: scrollText 8s linear infinite;
}
.scroll-btn i {
    color: #fff;
    width: 52px;
    height: 52px;
    background: var(--color3);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
}
@keyframes scrollText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0 40px;
}
.footer-about-wrap {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 42px;
}
.footer-logo {
    display: inline-flex;
}
.footer-about {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
    text-align: justify;
}
.footer-about-wrap .socials {
    gap: 25px;
    padding: 0 24px;
    justify-content: center;
}
.footer-about-wrap .socials a {
    color: #fff;
    font-size: 22px;
}
.footer-contact-wrap {
    flex: 0 0 45%;
}
.footer-contact {
    display: grid;
    gap: 20px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}
.copy-right-wrap {

    background: #fff;
    text-align: center;
    padding: 11px 12px;
    height: 63px;
}
.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #111;
    line-height: 32px;
    font-family: var(--med_font);
}
.copy-right strong {
    color: var(--color3);
}
.socials-wrap {
    margin: 20px 0;
}
.footer-sub-menu {
    display: grid;
    gap: 10px;
}
.footer-sub-menu a {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}
.footer-sub-menu a:hover {
    color: var(--color2);
}



.footer-contact li.phones a {
    position: relative;
}
.footer-contact li.phones a:not(:last-child):after {
    content: '-';
    color: #fff;
    position: absolute;
    left: -8px;
}
.footer-contact a, .footer-contact span {
    color: #fff;
    font-size: 16px;
    line-height: 27px;
}
.footer-contact span {
  white-space: nowrap;
}
.footer-contact i {
    color: #fff;
    font-size: 20px;
    margin-top: 4px;
    width: 24px;
    text-align: center;
}
.footer-contact i.icon-mobile {
    font-size: 24px;
}
.footer-contact a:hover {
    color: var(--color2);
}
.footer-menu-title {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 18px;
    display: block;
    font-family: var(--bold_font);
}
.enamad-wrap {
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-menu-wrap {
    flex: 0 0 45%;
}
/***************
   fix menu
****************/
.fixed-menu {
    position: fixed;
    bottom: -4px;
    right: 0;
    left: 0;
    background: #fff;
    height: 65px;
    z-index: 10;
    display: flex;
}
.fixed-menu-wrap li {
    width: 20%;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;

}
.fixed-menu-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}

.fix-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--color_text);
    background: none;
    border: none;
    height: 100%;
    justify-content: center;
    font-family: inherit;
}
.fix-item span {
    font-size: 12px;
    white-space: nowrap;
}
.fix-item i {
    font-size: 18px;
}
.fix-item:hover {
    color: var(--color1);
}
.fix-item i.icon-eyebrow {
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    #footer {
        padding-top: 50px;
        border-radius: 24px 24px 0 0;
    }

}
@media screen and (min-width: 992px) {
    .scroll-up.scroll-btn {
        display: none;
    }
    .footer-contact-wrap {
        flex: 0 0 30%;
    }
    .footer-menu-wrap {
        flex: 0 0 20%;
    }
    .footer-newsletter {
        flex: 0 0 30%;
        margin: 0;
    }
    .footer-about {
        text-align: center;
        margin: 40px auto 32px;
    }
}
@media screen and (min-width: 1200px) {
    .footer-contact-wrap {
        flex: 0 0 24%;
    }
    .footer-menu-wrap {
        flex: 0 0 10%;
    }

    .footer-about-wrap {
        flex: 0 0 26%;
        text-align: center;
        margin-bottom: 0;
    }
    .footer-about-wrap .socials {
        justify-content: center;
    }

}
@media screen and (min-width: 1400px) {
    .footer-about {
        max-width: 80%;
    }
}
@media screen and (min-width: 1700px) {
    .footer-about {
        max-width: 70%;

    }
}
@media screen and (max-width: 991.99px) {
    .footer-contact-wrap,
    .footer-menu-wrap {
        margin-bottom: 24px;
    }
    .enamad-wrap {
        justify-content: center;
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 767.99px) {
    .copy-right-wrap {
        height: unset;
        padding-bottom: 72px;
    }
    .copy-right {
        text-align: center;
        flex-direction: column-reverse;
        height: unset;
        font-size: 13px;
        line-height: 24px;
        gap: 14px;
    }
    #footer {
        margin-top: 180px;
    }
    .scroll-btn {
        left: 50%;
        top: -106px;
        transform: translateX(-50%);
    }
    .footer-contact i {
        font-size: 17px;
    }
    .footer-contact a, .footer-contact span {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-sub-menu li a {
        font-size: 14px;
    }
    .footer-contact {
        gap: 10px 25px;
        margin: 15px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-menu-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #000;
        color: #fff;
        border-radius: 10px;
        margin-bottom: 16px;
        padding: 27px 32px;
        font-size: 18px;
    }
    .footer-menu-title.active {
        color: var(--color2);
    }
    .footer-menu-title::after {
      content: '\e922';
      font-family: 'icomoon';
      font-size: 20px;
      display: inline-block;
      line-height: 1;
      transition: 0.4s ease;
    }
    .footer-menu-title.active::after {
      transform: rotate(180deg);
    }
    .footer-contact-wrap,
    .footer-menu-wrap {
        display: block;
        flex:0 0 100%;
        position: relative;
        z-index: 4;
        margin-bottom: 0;
    }
    .footer-contact,
    .footer-sub-menu {
        display: flex;
        background: #000;
        width: 100%;
        margin-top: -25px;
        padding: 21px 15px 10px;
        border-radius: 0 0 10px 10px;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        pointer-events: none;
        border-top: 0;
        display: none;
    }
    .footer-contact li,
    .footer-sub-menu li {
      width: 100%;
      padding-bottom: 10px;

    }
    .footer-sub-menu li:not(:last-child),
    .footer-contact li:not(:last-child) {
        margin-bottom: 10px;
    }

}
@media screen and (max-width: 380px) {
    .btn-newsletter i {
        display: none;
    }
    .btn-newsletter {
        min-width: 140px;
    }
}

