@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
.footer{
    background: var(--Black, #000);
    padding: 80px 0px 95px;
}
.footer-link h5{
    color: var(--Tan, #F0A247);
    font-family: Jost;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 26.4px */
    letter-spacing: -0.33px;
    margin-bottom: 20px;
}
.footer-link a{
    color: var(--Tan, #F0A247);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.27px;
	  text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  
}
.footer-link ul{
    padding: 0px;
    margin-bottom: 0px;
    list-style: none;
}
.footer-main-menu{
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}
.footer-link-one ul{
    display: flex;
    gap: 16px;
    flex-direction: column;

}
.footer-link p{
    color: var(--White, #FFF);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.27px;
    margin-bottom: 0px;
}
.footer-email{
    margin-top: 8px;
}
.footer-icon{
    margin-top: 20px;
}
.footer-icon a{
    text-decoration: none;
}
.footer-icon{
    display: flex;
    align-items: flex-start;
    gap: 21px;
}
.footer-right p{
    margin-bottom: 0px;
    color: var(--White, #FFF);
    text-align: right;
    font-family: Jost;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.24px;
    margin: 30px 0px;
}
.footer-right{
    width: 316px;
    text-align: right;
    max-width: 100%;
    float: right;
}


@media only screen and (max-width: 600px) {
    .footer-main-menu {
        display: flex;
        gap: 20px;
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
    }
    .footer-link-one ul {
        display: flex;
        gap: 16px;
        flex-direction: column;
        margin-bottom: 12px;
    }
    .footer-right {
        width: 316px;
        text-align: center;
        max-width: 100%;
        float: none;
        margin: auto;
    }
    .footer-right p {
        margin-bottom: 0px;
        color: var(--White, #FFF);
        text-align: center;
        font-family: Jost;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: -0.24px;
        margin: 18px 0px;
    }
    .footer-icon {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        justify-content: center;
        margin-bottom: 20px;
    }
    .footer {
        background: var(--Black, #000);
        padding: 50px 0px 50px;
    }
}
@media screen and (min-width: 700px) and (max-width: 960px) {
   .footer-main-menu {
        display: flex;
        gap: 28px;
        width: 100%;
        justify-content: space-between;
        margin-bottom: 40px;
        padding: 0px 16px;
    }
    .footer-right {
        width: 316px;
        text-align: right;
        max-width: 100%;
        float: none;
        margin: auto;
    }
    
}