.header-section{

}
.hedder-top{
    background: #008CE3;
}
.header-top-row, .header-main-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}
.header-top-row, .header-top-row a{
    color: #fff;
    font-size: 16px;
}
ul.header-contacts, ul.header-socials{
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

.header-main{
    background-color: #fff;
    /* border: 1px solid; */
}
.header-main-row ul.nav-links{
    display: flex;
    min-width: 60%;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    list-style-type: none;
}
.header-main-row ul.nav-links a{
    color: var(--heading-grey);
}
.head-btn-container {
    display: flex;
    gap: 12px;
}
.primary-btn, .header-btn{
    background: var(--yellow);
    border-radius: 10px;
    padding: 0.65rem 2rem;
    display: flex;
    gap: 1rem;
    color: #fff;
    border: 1px solid var(--yellow);
}
 .yellow-primary-btn-arrow{
    display: none;
}
.primary-btn:hover .yellow-primary-btn-arrow, .header-btn:hover .yellow-primary-btn-arrow{
    display: inline;
}
.primary-btn:hover .white-primary-btn-arrow, .header-btn:hover .white-primary-btn-arrow{
    display: none;
}
.primary-btn:hover, .header-btn:hover{
    background: #fff;
    color: var(--yellow) !important;
}




.secondary-btn{
    background: #fff;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}
.secondary-btn:hover{
    background: var(--yellow) ;
    color: #fff !important;
}
.secondary-btn.nav-drawer{
    color: var(--yellow);
}







.header-section-mobile{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}





.cloud-border{
    width: 100%;
}

.footer-section{
    background: #F4EEE5;
    position: relative;
}
.footer-main-row{
    padding: 1rem 0;
    border-bottom: 1px solid #38546938;
}
.footer-card{
    display: flex;
    gap: 1rem;
    align-items: start;
}
.footer-card .footer-context h5{
    color: #385469;
    font-size: 16px;
}
.footer-card .footer-context h3 a, .footer-card .footer-context h3{
    color: var(--heading-grey);
    font-size: 24px;
    font-weight: 700;
}

.copyright-container{
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translate(-50%, 0);
}
.copyright-container .copyright-row{
    display: flex;
    justify-content: space-between;
}
.copyright-container .copyright-row a{
    color: var(--yellow);
}
.copyright-container .copyright-row ul a{
    color: var(--heading-grey);

}
.copyright-container .copyright-row ul{
    list-style-type: none;
    display: flex;
    gap: 1.5rem;
}



.header-section-mobile{
    display: none;
}



/* Extra large devices*/
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
   
}
/* Large devices */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-card .footer-context h3 a, .footer-card .footer-context h3 {
        font-size: 20px;
    }
    .copyright-container {
        bottom: 0.75rem;
    }
    .header-main-row ul.nav-links{
        min-width: 50%;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px){
    .header-main-row ul.nav-links {
        min-width: 40%;
    }
    ul.header-contacts, ul.header-socials {
        gap: 1rem;
    }
    .header-main-row ul.nav-links {
        gap: 1rem;
    }
    .primary-btn, .header-btn {
        padding: 0.65rem 1.5rem;
    }
    .footer-card{
        margin-top: 1rem;
     }
     .copyright-container {
        bottom: 0.5rem;
     }
}

/* Small devices */
@media only screen and (min-width: 576px) and (max-width: 768px){
    .header-section{
        display: none;
    }
    .header-section-mobile{
        display: flex;
    }
    .footer-card{
        margin-top: 1rem;
     }
     .copyright-container {
        bottom: 0.5rem;
        font-size: 14px;
     }

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {
    .header-section{
        display: none;
    }
    .header-section-mobile{
        display: flex;
    }
    .footer-card{
        margin-top: 1rem;
     }
     .copyright-container .copyright-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
     }
}











.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #008ce3d9;
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 90%;
    margin: auto;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 25px;
    color: #e3e3e3;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  .header-btn.nav-drawer{
    width: fit-content;
    padding: 10px 2rem;
  }
/*   
  @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  } */
