html {
    scroll-behavior: smooth
}

.footer {
    position: relative;
    background: #0b1110;
    color: #fff;
    padding: 90px 5% 30px;
    overflow: hidden
}

.footer-container {
    max-width: 1450px;
    margin: auto
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8%;
    padding-bottom: 90px
}

.footer-logo {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -2px
}

.footer-logo span {
    color: #b8ff5a
}

.footer-intro>p {
    max-width: 380px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: #747b76
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px
}

.footer-column {
    display: flex;
    flex-direction: column
}

.footer-column-title {
    display: block;
    margin-bottom: 28px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #626964
}

.footer-column>a {
    position: relative;
    width: fit-content;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: #a3a9a5;
    transition: .3s
}

.footer-column>a i {
    font-style: normal;
    font-size: 11px;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: .3s
}

.footer-column>a:hover {
    color: #fff
}

.footer-column>a:hover i {
    opacity: 1;
    transform: translate(0, 0)
}

.footer-contact {
    display: flex;
    flex-direction: column
}

.footer-email {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    transition: .3s
}

.footer-email i {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 15px;
    transition: .4s
}

.footer-email:hover {
    border-color: #b8ff5a
}

.footer-email:hover i {
    background: #b8ff5a;
    border-color: #b8ff5a;
    color: #111;
    transform: rotate(45deg)
}

.footer-address {
    margin-top: 40px
}

.footer-address span {
    display: block;
    margin-bottom: 10px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #626964
}

.footer-address p {
    font-size: 13px;
    line-height: 1.7;
    color: #8a918c
}

.footer-wordmark {
    height: clamp(130px, 19vw, 290px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.footer-wordmark span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: clamp(170px, 26vw, 400px);
    font-weight: 600;
    line-height: .68;
    letter-spacing: -25px;
    color: #f4f1eb;
    transform: translateY(8px)
}

.footer-bottom {
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px
}

.footer-bottom>p {
    font-size: 10px;
    color: #606762
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px
}

.footer-legal a {
    font-size: 10px;
    color: #606762;
    transition: .3s
}

.footer-legal a:hover {
    color: #fff
}

.footer-back-top {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b928d
}

.footer-back-top i {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 14px;
    transition: .4s
}

.footer-back-top:hover i {
    background: #b8ff5a;
    border-color: #b8ff5a;
    color: #111;
    transform: translateY(-5px)
}

@media(max-width:1000px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 70px
    }

    .footer-intro {
        grid-column: span 2
    }

    .footer-intro>p {
        max-width: 550px
    }

    .footer-wordmark {
        height: 200px
    }

    .footer-wordmark span {
        font-size: 27vw;
        letter-spacing: -15px
    }
}

@media(max-width:650px) {
    .footer {
        padding: 70px 6% 20px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-bottom: 70px
    }

    .footer-intro {
        grid-column: span 1
    }

    .footer-navigation {
        gap: 40px
    }

    .footer-wordmark {
        height: 130px
    }

    .footer-wordmark span {
        font-size: 31vw;
        letter-spacing: -10px
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        gap: 20px;
        padding: 25px 0
    }

    .footer-legal {
        grid-column: span 2;
        grid-row: 2;
        justify-content: flex-start
    }

    .footer-back-top {
        grid-column: 2;
        grid-row: 1
    }
}