@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Anta",sans-serif;
}

body{
    color: #fff;
    background-color: black;
     
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(152, 152, 155);
    backdrop-filter: blur(50px);
    z-index: -1;
}
.logo{
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    height: 75px;
    width: 155px;
}
.navbar a{
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}
#check{
    display: none;
}
.icons{
    position: absolute;
    font-size: 2.8rem;
    color: #fff;
    right: 5%;
    cursor: pointer;
    display: none;
}

/* BREAK */
@media (max-width:992px){
    .header{
        padding: 1.3rem 5%;
    }
}
@media (max-width:768px){
    .icons{
        display: inline-flex;
    }
    #check:checked~.icons #menu-icon{
        display: none;
    }
    .icons #close-icon
    {
        display: none;
    }
    #check:checked~.icons #close-icon{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(190, 190, 190, 0.1);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(150, 150, 150, 0.1);
        overflow: hidden;
        transition: .3s ease
    }
    #check:checked~.navbar{
        height: 14.3rem;
    }
    .navbar a{
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: .3s ease;
    }
    #check:checked~.navbar a{
        transform: translateY(0);
    }
}
.first {
    padding: 20px;
    padding-top: 160px;
    text-align: center;
    font-size: xx-large;
    font-weight: 800;
}
.third{
    color : #fff;
    box-sizing: border-box;
    margin: 0;
    padding-left:15% ;
    padding-right: 15%;
    font-family: Arial, sans-serif;
}  
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.text-column {
    flex: 1;
    padding: 20px;
}
.image-column {
    flex: 1;
    padding: 20px;
}  
.image-column img {
    max-width: 100%;
    height: auto;
    padding-top: 45px;
}
.text-column h1 {
    margin-top:50px;
    font-size: x-large;
}
.text-column p {
    margin-top:20px;
}
@media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .text-column,.image-column {
      flex: 100%;
    }
}
.text-column li::marker {
    color: rgb(255, 255, 255);
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }
  
  .gallery img {
    width: 100%;
    max-width: 31%;
    margin: 0 1%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  @media (max-width: 768px) {
    .gallery img {
      max-width: 48%;
    }
  }
  
  @media (max-width: 480px) {
    .gallery img {
      max-width: 100%;
    }
  }