@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);
    }
    .lharf
    {
        position: sticky;
        width: 100%;
        height: 200px;
    }
    .rhalf
    {
        position: sticky;
        align-self: center;
        height: 200px;
        display: inline-flex;
        padding-top: 10%;
    }
    .colsmain
    {
        background-color: #a61e1e;
        margin-left: 10%;
        margin-right: 10%;
    }
}
.middle{min-height: 100vh;
    background: url('background.png') no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;  
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center; 
}
.text-box h1{
    font-size: 62px;
}
.text-box h2{
    font-size: 50px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 34px;
    color: #fff;
}
.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;
  }
  .text-column h1 {
    margin-top:50px;
    font-size: x-large;
  }
  .text-column p {
    margin-top:20px;
  }
  @media (max-width:768px){
    .middle{min-height: 120vh;
        background: url('background.png') no-repeat;
        background-size: cover;
        position: relative;
        background-position: top;  
    }
    .text-box h1{
        font-size: 40px;
    }
    .text-box h2{
        font-size: 30px;
    }
    .text-box p{
        padding-top: 15px;
        font-size: large;
    }
    .third{
        
        margin-top: -10%;
    }
}
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .text-column,
    .image-column {
      flex: 100%;
    }
  }
  /* About Us Section */
.adescription-section h2{
    margin-top: 30px;
    font-size: x-large;
}
.adescription-section p{
    margin-top: 30px;
}

.aimage-section,
.adescription-section {
    flex-basis: 100%;
    padding: 20px;
}

@media (min-width: 768px) {
    .aimage-section,
    .adescription-section {
        flex-basis: 50%;
    }
}

.aimage-section img {
    max-width: 100%;
    height: auto;
}
