.footer-area {
    /* background-color: var(--primary); */
    background-image: url('../img/footer_bg.jpg');
    background-size: cover;
    background-position: bottom;
}

.dark .footer-area {
    background-color: #1b1b1b
}

.footer-area-inner {
    padding-top: 100px;
    position: relative;
    z-index: 1
}

@media only screen and (max-width: 1399px) {
    .footer-area-inner {
        padding-top:80px
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area-inner {
        padding-top:60px
    }
}

.footer-area-inner .shape-1 {
    position: absolute;
    top: 0;
    inset-inline-start: calc(100% - 235px);
    width: 550px;
    z-index: -1
}

@media only screen and (max-width: 1199px) {
    .footer-area-inner .shape-1 {
        width:350px
    }
}

@media only screen and (max-width: 767px) {
    .footer-area-inner .shape-1 {
        display:none
    }
}

.dir-rtl .footer-area-inner .shape-1 img {
    transform: rotateY(180deg)
}

.footer-area .section-title {
    font-size: 65px;
    text-transform: uppercase;
    font-family: var(--font_teko);
    line-height: 1;
    color: #1b1b1b;
    margin-top: 0;
}


@media only screen and (max-width: 1199px) {
    .footer-area .section-title {
        font-size:70px;
        margin-top: -17px
    }
}

@media only screen and (max-width: 991px) {
    .footer-area .section-title {
        font-size:40px;
        margin-top: -9px
    }
}

@media only screen and (max-width: 767px) {
    .footer-area .section-title {
        font-size:35px;
        margin-top: -8px
    }
}

.footer-area .section-title-wrapper {
    margin-bottom: 24px
}

.footer-area .section-header .text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .footer-area .section-header .text-wrapper {
        display: block;
    }
}
.footer-area .section-header .text {
    font-size: 30px;
    line-height: 1.2;
    max-width: 60%;
    font-weight: 300;
    color: #3e3e3e
}

@media only screen and (max-width: 1919px) {
    .footer-area .section-header .text {
        font-size:32px
    }
}

@media only screen and (max-width: 1199px) {
    .footer-area .section-header .text {
        font-size:26px
    }
}

@media only screen and (max-width: 767px) {
    .footer-area .section-header .text {
        font-size:18px
    }
}

.footer-area .social-links {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 1199px) {
    .footer-area .social-links {
        margin-top:36px
    }
}

.footer-area .social-links li {
    line-height: 1
}

.footer-area .social-links li a {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3e3e3e;
    border-radius: 50%;
    color: #ffffff;
}

.footer-area .social-links li a:hover {
    color: #3e3e3e;
    background-color: #fff;
}

.footer-cta {
    border-top: 1px solid rgb(0 0 0 / 11%);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
    display: grid;
    gap: 30px 90px;
    grid-template-columns: 1fr 245px 245px;
}

@media only screen and (max-width: 1199px) {
    .footer-cta {
        gap:30px 40px
    }
}

@media only screen and (max-width: 991px) {
    .footer-cta {
        grid-template-columns:150px 150px 1fr
    }
}

@media only screen and (max-width: 767px) {
    .footer-cta {
        grid-template-columns:auto;
        padding-top: 39px;
        padding-bottom: 39px;
        margin-top: 40px
    }
}

.footer-cta .title {
    font-size: 24px;
    margin-bottom: 18px;
    line-height: 1.5;
    color: #000
}

.footer-cta .footer-nav-list {
    margin-top: 11px
}

.footer-cta .footer-nav-list li {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.46;
    margin-bottom: 10px;
}
.footer-cta .footer-nav-list li a:hover {
    color: #3e3e3e;
}
.footer-cta .footer-nav-list.q_links li {
    display: inline-block;
    width: 49%;
}

.footer-cta .newsletter {
    border-inline-end: 1px solid rgb(0 0 0 / 11%);
    padding-inline-end: 108px;
    padding-top: 0px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 1199px) {
    .footer-cta .newsletter {
        padding-inline-start:48px;
        padding-top: 6px;
        padding-bottom: 19px
    }
}

@media only screen and (max-width: 767px) {
    .footer-cta .newsletter {
        padding-inline-start:0;
        padding-top: 0;
        padding-bottom: 0;
        border-inline-start:0}
}

.footer-cta .newsletter .input-field {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 25px
}

.footer-cta .newsletter input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000;
    font-size: 24px;
    font-weight: 300
}

.footer-cta .newsletter input::-moz-placeholder {
    color: #000
}

.footer-cta .newsletter input::placeholder {
    color: #000
}

.dir-rtl .footer-cta .newsletter button img {
    transform: rotateY(180deg)
}

.copyright-area-inner {
    display: flex;
    gap: 20px 60px;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid rgb(0 0 0 / 11%);
}


@media only screen and (max-width: 767px) {
    .copyright-area-inner {
        flex-direction:column
    }
}

.copyright-area .text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.37;
    color: #3e3e3e
}

.copyright-area .text a {
    color: #000;
    font-weight: 400;
}

.copyright-area .text a:hover {
    color: #3e3e3e
}

.copyright-area .footer-nav-list {
    display: flex;
    gap: 10px 78px;
    flex-wrap: wrap
}

@media only screen and (max-width: 767px) {
    .copyright-area .footer-nav-list {
        gap:10px 38px
    }
}

.copyright-area .footer-nav-list a {
    font-size: 14px;
    font-weight: 300;
    color: #000
}

.copyright-area .footer-nav-list a:hover {
    color: #3e3e3e
}
