.footerCertification{
    display: flex;
    gap: 40px;
    padding: 80px 0;
    border-bottom: solid white 1px;
}

.footerCertification div{
    width: calc(8.33% - 36.66px);
}

.footerCertification div img{
    width: 100%;
    height: auto;
    float: left;
}

.allMenu{
    display: flex;
    align-items: flex-start;
    padding: 80px 0;
    gap: 20px
}

.allMenu>div{
    width: calc(20% - 16px);
}

.siteDetails,
.contactDetails,
.menuColumn,
.menuColumn ul,
.newsLetterColumn,
.newsLetterColumn  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.siteLogo{
    width: 80%;
    min-width: 200px;
    height: auto;
    float: left;
}

.siteDetails .socialLinks{
    display: flex;
    align-items: center;
    gap: 20px;
}

.siteDetails .socialLinks li img{
    width: 24px;
    height: auto;
}

.contactDetails li a{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: white;
}

.contactDetails li a:hover,
.menuColumn ul li a:hover{
    color: var(--light-blue);
}

.menuColumn h3,
.newsLetterColumn h3{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.menuColumn h3,
.menuColumn li a,
.newsLetterColumn h3,
.newsLetterColumn p{
    color: white;
    display: flex;
    justify-content: space-between;
}

.menuColumn h3 button{
    padding: 0;
    background: none;
    border: none;
    filter: invert(1) brightness(100);
    transition: 0.3s all;
    display: none;
}

.menuColumn h3 button img{
    float: left;
    width: 20px;
    height: auto;
}

.menuColumn h3 button.active{
    transform: rotate(45deg);
}



.newsLetterColumn form input{
 padding: 12px 16px;
  background: none;
  border: solid white 1px;
  color: white;
}

.newsLetterColumn form input::placeholder{
    color: white;
    opacity: 1;
}

.fieldError{
    color: #ff8080;
    font-size: 13px;
    margin: 0;
}

.formStatus{
    font-weight: 500;
    margin: 0;
}

.formStatus.success{
    color: #4cd964;
}

.formStatus.error{
    color: #ff8080;
}

.copyrights{
    background-color: var(--light-blue);
    padding: 20px 0;
    text-align: center;
    color: white;
}

.copyrights a{
    color: white;
}
.copyrights a:hover{
    color: var(--dark-blue);
}



/* responsive  */

/* tablet  */
@media screen and (max-width:1200px) {

    .mobile_fixed_btn{
    display: none;
}
    
    .footerCertification{
    gap: 40px;
    padding: 50px 0;
    flex-wrap: wrap;
}


.footerCertification div{
    width: calc(16.66% - 33.66px);
}

.allMenu{
    padding: 50px 0;
    flex-wrap: wrap;
    gap: 40px 20px;
}

.allMenu>div{
    width: calc(50% - 10px);
}

}

/* mobile  */
@media screen and (max-width:767px) {

    .mobile_fixed_btn{
        display: flex;
    border-radius: 0;
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
    justify-content: center;
    padding: 16px;
    z-index: 9;
}

    .menuColumn h3 button{
        display: block;
    }

    .menuColumn h3 + ul{
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.3s all;
}

.menuColumn h3:has(button.active) + ul{
    max-height: 1000px;
    visibility: visible;
}

    .siteDetails{
        margin-bottom: 20px;
    }

    .allMenu{
    gap:20px;
}


.siteLogo{
    width: 200px;
}

.allMenu>div{
    width:100%;
}

    .footerCertification{
        gap: 30px;
    }
    .footerCertification div{
    width: calc(25% - 22.5px);
}
}