*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
:root {
    --variable-collection-green: rgba(62, 180, 137, 1);
    --variable-collection-my-coral: rgba(255, 188, 164, 1);
    --variable-collection-stroke: rgba(189, 187, 187, 1);
}

button {    
    background: none;
    cursor: pointer;
    font-family: inherit;
    border: none;
}
 
body {
    background-color: black;
    font-family: 'Open Sans', sans-serif;
    /* font-family: 'montserrat', sans-serif; */
    /* font-family: 'Poppins', sans-serif; */
}

a {
    text-decoration: none;
}

/* header */
 
.header {
    display: flex;
    flex-wrap: wrap;
    padding: .5rem 0;
    justify-content: space-between;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    position: fixed;                    
    background-color: #fff;               */
}

.logo {
    display: flex; /* Use flexbox for easy alignment */
    align-items: center; /* Vertically center the items */
  }

.logo__link {
    text-decoration: none;
    display: flex; /* Change to inline */
  }

  .logo__link:hover { 
    transform: scale(1.025); /* was 1.05 before*/
    transition: all 0.1s ease-in-out; /*was 0.3 */
}
.logo__text {
    margin-left: 10px; /* Add some space between the image and text */
  }

  .header__title {
    font-family: 'Nunito', serif;
    /* font-family: 'DM Serif'; */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.15rem; 
    color: whitesmoke;
  }
  
  .header__span{
    font-weight: 300;
    font-family: .5rem;
  }

.header__menu{
    display: none;
    flex-wrap: wrap;
    gap: 2.2rem;
    margin: 1rem 1rem;
    /* margin-inline: auto; */
    justify-content: flex-end;
}

.header__menu__sidebar{
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.938);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 30px;
    gap: 1rem;
    /* sidebar animation */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    opacity: 0;
}

.header__menu__sidebar.show {
    transform: translateX(0);
    opacity: 1;
  }

.header__menu__sidebar.is-active{
    left: 0;
}

.header__link__sidebar{
    display: flex;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

.header__link__sidebar:hover{
    color: #1ab79d ;
    transform: scale(1.05); /* was 1.05 before*/
    transition: all 0.1s ease-in-out;
}

.header__link{
    display: flex;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    margin-inline: auto;
    transition: color;
}

.header__link:hover{
    color: #1ab79d ;
    transform: scale(1.05); /* was 1.05 before*/
    transition: all 0.1s ease-in-out;
}

.header__close {
    display: flex;
    margin-left: auto;
    color: #1ab79d;
    }

.header__bars {
    color: #1ab79d;
    margin: .5rem .5rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem
}

/* xs */
@media (min-width: 475px) {
    .header__title {
        font-size: 1.3rem;
    }
}


/* sm */
/* @media (min-width: 640px) {
    .header{
        margin-inline: auto;
        padding: .4rem 0;
        justify-content:center;
        gap: 9rem; 
    }
} */


/* lg */
@media (min-width: 1024px) {
    .logo img{
        height: auto;
        width: 50px;
    }
}
    
/* xl */
@media (min-width: 1280px) {
    .header{
        /* margin-inline: auto; */
        justify-content: center;
        gap: 30rem;
    }
    .header__menu{
        display: flex;
    }
    
    .header__bars {
        display: none;
    }
    .header__link{
        font-size: 1rem;
         font-weight: 600;
    }
    /* .logo img{
        height: auto;
        width: 60px;
    }
    .header__title{
        font-size: 1.4rem;
    } */
    .header__btn__container{
        display: flex;
        margin-right: .5rem;
    }
}



/* footer */

.footer{
    display: flex;
    flex-direction: column;
    /* margin: 1rem 0 1rem 0; */
    color: whitesmoke;
}

.footer__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 2rem; */
}
.footer__divider {
    /* border: 0; */
    height: 1px;
    background: #fffdfb; 
    /* background: #1ab79d; */
    width: 60%; 
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.first {
    margin-top: 4rem;
}

.footer__logo img{
    height: auto;
    width: 220px;
}

.footer__sitemap{
    text-align: center;
    /* margin-top: 2rem; */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer__box3 ul{
    text-align: center;
}
.footer__box3 li{
    font-size: 1rem;
}

.footer__link{
    color: whitesmoke;
    text-decoration: none;
    transition: color;
}

.footer__link:hover{
    color: #1ab79d ;
}

/* xs */
@media (min-width: 475px) {
    .footer.container{
        padding-inline: 3rem;
    }
}

/* sm */
@media (min-width: 640px) {
    .footer__box3 li{
        display: inline-block;
        margin-right: 2rem;
    }
}

/* md */
@media (min-width: 768px) {
    /* .footer__box3{
        margin-top: 1rem;
    } */
}

/* lg */
@media (min-width: 1024px) {
    .footer.container{
        padding-inline: 3rem 
    }
    /* .footer__content{
        gap: 2rem;
    } */
}

/* xl */
@media (min-width: 1280px) {
    .footer.container{
        padding-inline: 8rem 
    }
}

/* 2xl */
@media (min-width: 1536px) {
    .footer.container {
        padding-inline: 18rem;
    }
}

         /* Adjust for portrait orientation if needed */
/* @media (orientation: portrait) {
    .footer.container {
        min-height: 35vh;
    }
} */

.copyright__section {
    background-color: black;
    padding: .3rem;
    padding-bottom: 1rem;
    text-align: center; 
}

.copyright__content {
    font-size: .8rem;
    color: #1ab79d;
}