.footer-container{
    background-color: #111827;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 120px;
    border-bottom: 1px solid #444;
}
/* 
.footer-top .left img {
    width: 120px;
} */

.footer-top .right {
    text-align: right;
    display: flex;
    gap: 24px;
    color: #fafafa;
}

.footer-top .right a{
    text-decoration: none;
    color: #fafafa;
    cursor: pointer;
}

.footer-top .right a:hover{
    text-decoration: underline;
}

.footer-top .follow-text {
    color: #fff;
    font-size: 16px;
}

.footer-top .social-icons {
    display: flex;
    gap: 15px;
}

.footer-top .social-icons a {
    display: inline-block;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    padding: 24px 120px;
    border-bottom: 1px solid #444;
}

.footer-middle a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-middle a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 120px;
}

.footer-bottom .left {
   display: flex;
   gap: 4px;
}

.footer-bottom .left p {
    font-size: 16px;
    color: rgb(255, 255, 255, 0.5);
}

.footer-bottom .right {
    color: rgb(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom .right a {
    color: rgb(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom .right a:hover {
    text-decoration: underline;
}

.footer-extended{
    display: flex;
    justify-content: center;
    padding: 16px;
}

.footer-extended p{
    margin: 0;
    color: #fafafa;
    font-weight: 500;
}

.footer-extended span{
    text-decoration: underline;
    cursor: pointer;
}

.footer-extended span:hover{
    color: #16a34a;
}

.footer-top p{
    text-align: center;
    color: #fafafa;
    margin: 0 16px;
}

.footer-top span{
    text-decoration: underline;
    cursor: pointer;
    transition: 0.3s all ease;
}

.footer-top a{
    color: #fafafa;
}

.footer-top span:hover{
    color: #16a34a;
}

@media (max-width: 1090px) {
    .footer-top {
      padding: 32px 60px;
    }
    .footer-middle,
    .footer-bottom {
      padding: 24px 60px;
    }
  }

@media (max-width: 800px) {
    .footer-top {
      padding: 32px 30px;
    }
    .footer-middle,
    .footer-bottom {
      padding: 24px 30px;
    }
    .follow-text{
        display: none !important;
    }
    .footer-middle a{
        font-size: 14px;
    }
    .footer-bottom .left p {
        font-size: 12px;
    }
    .footer-bottom .right a{
        font-size: 12px;
    }
    .footer-top p{
        font-size: 14px;
    }
  }

  @media(max-width: 600px){
    .footer-top{
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .footer-bottom{
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }
    .footer-bottom .left{
        flex-direction: column;
        gap: 8px;
    }
    .footer-top p{
        font-size: 12px;
    }
  }

  @media(max-width: 460px){
    .footer-middle{
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
  }