*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body{
    color: black;
   background-color: white;
    font-family: 'Guaruja Neue', sans-serif;
    font-family: 'Guaruja Neue', sans-serif;
    overflow-x: hidden;  
  }
  
  @import url('https://fonts.cdnfonts.com/css/guaruja-neue');
  
  nav{
    height: 6rem;
    width: 100vw;
    background-color: white;
    display: flex;
    position: fixed;
    z-index: 9999;
     top: 0%;
     background-color: transparent;
  }
  
  
  @media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
  }
  
  @media only screen and (min-width: 800px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
  }
  
  /*Styling logo*/
  
  .logo{
    display: flex;
  text-align: center;
  align-items: center;
  width: 350px;
  border-radius: 0px 20px 20px 0px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(7px);
  font-family: 'Guaruja Neue', sans-serif;
  }
  .logo a{
  color: black;
  text-transform: uppercase;
  padding: 0px 50px;
  font-size: 2em;
  text-decoration: none;
  cursor: pointer;
  } 
  
  
  
  /*Styling Links*/
  .nav-links{
    display: flex;
    list-style: none; 
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(7px);
    
  }
  .nav-links li a{
    text-decoration: none;
    margin: 0 0.7vw;
    font-weight: 500;
    color: black;
    font-family: 'Guaruja Neue', sans-serif;
  }
  
  .nav-links li {
    position: relative;
  }
  
  
  .nav-links li::before{
  content: '';
  z-index: 20;
  height: 1px;
  background: black;
  position: absolute;
  bottom: -10px;
  width: 100%;
  transform: scaleX(0);
  transition: 0.5s ease-in-out; 
  transform-origin: left;
  }
  
  .nav-links li:hover::before{
    transform: scaleX(1);
    transform-origin:left;
    }
  
  
  
  /*Styling Hamburger Icon*/
  .hamburger div{
    width: 30px;
    height:3px;
    background: black;
    margin: 5px;
    transition: all 0.3s ease;
  }
  .hamburger{
    display: none;
  }
  
  /*Stying for small screens*/
  @media screen and (max-width: 800px){
    nav{
        position: fixed;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: white;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
  
    
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
  }
  /*Animating Hamburger Icon on Click*/
  .toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
  }
  .toggle .line2{
    transition: all 0.7s ease;
    width:0;
  }
  .toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
  }
  


  .container-first{
width: 100%;
height: 600px;
margin-block-start: 150px;
background-image: url('img3.jpg');
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: flex-end;

  }


  .container-first h1{
    font-size: 3rem;
    font-weight:1200;
    color: white;
    padding: 10px;
    font-family: 'Guaruja Neue', sans-serif;
    margin: 20px;
  }

  .container-first span{
    font-size: 3rem;
    font-weight:1200;
    color: white;
    padding: 20px;
    font-family: 'Guaruja Neue', sans-serif;
    background-color: rgb(238, 238, 84);
    border-radius: 20px;
  }
  .container-first p{
      width: 600px;
      font-size: 1.5rem;
      color: white;
      padding: 20px;
      font-family: 'Guaruja Neue', sans-serif;
      -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(7px);
margin: 20px;
  }


  .container-first button {
    padding: 20px;
color: white;
border-radius: 20px;
border: none;
cursor: pointer;
font-size: 1rem;
background-color: rgb(238, 238, 84);
transition: all 0.2s;
width: 200px;
margin: 50px;

  }



.container-second{
width: 100%;
text-align: center;
margin-block-start: 100px;
padding: 20px;
display: flex;
align-items: center;
flex-direction: column;
}

.container-second h2{
    font-size: 3rem;
    font-weight:1200;
    color: rgb(238, 238, 84);
    padding: 10px;
    font-family: 'Guaruja Neue', sans-serif;
    margin: 20px;
  }
.container-second p{
width: 600px;
font-family: 'Guaruja Neue', sans-serif;
margin: 20px;
font-size: 1.2rem;
}


@media only screen and (max-width: 868px){

    .container-first{
        width: 100%;
        height: 600px;
        margin-block-start: 150px;
        background-image: url('img3.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
          }
        
        
          .container-first h1{
              max-width: 300px;
            font-size: 2rem;
            font-weight:1200;
            color: white;
        margin: 0px;
            font-family: 'Guaruja Neue', sans-serif;
            text-align: center;
          }
        
          .container-first span{
            font-size: 2rem;
            font-weight:1200;
            color: white;
            font-family: 'Guaruja Neue', sans-serif;
            background-color: rgb(238, 238, 84);
            border-radius: 20px;
          }
          .container-first p{
             width: 300px;   
              font-size: 1rem;
              color: white;
              max-width: 100%;
              font-family: 'Guaruja Neue', sans-serif;
              -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(7px);
        margin: 0px;
          }
        
        
          .container-first button {
            padding: 20px;
        color: white;
        border-radius: 20px;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        background-color: rgb(238, 238, 84);
        transition: all 0.2s;
        width: 200px;
        margin: 50px;
        
          }
        
        
        
        .container-second{
        width: 100%;
        text-align: center;
        margin-block-start: 100px;
        padding: 0px;
        display: flex;
        align-items: center;
        flex-direction: column;
       gap: 20px;
        }
        
        .container-second h2{
            font-size: 2rem;
            font-weight:1200;
            color: rgb(238, 238, 84);
          margin: 0px;
          padding: 0px;
            font-family: 'Guaruja Neue', sans-serif;
           width: 100%;
          }
        .container-second p{
            width: 100%;
        font-family: 'Guaruja Neue', sans-serif;
margin: 0px;
        font-size: 1rem;
        height: auto;
        text-align: center;
        }
        
}















  .accordion {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    text-align: center;
    background-color:white; 
    color: rgb(238, 238, 84);
    font-size: 1.7rem;
padding: 50px;
border-bottom: 2px solid white;
font-family: 'Times New Roman', Times, serif;
position: relative;
transition: all 0.4s;
border-bottom: 1px solid black;
}
  

  .active, .accordion:hover {
    background-color: rgb(238, 238, 84);
    color: white;
    
  }

  .accordion button{
font-size: 2rem;
padding: 20px;
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: center;
    height: 200px;

  }
.panel p{
    font-size: 1.2rem;
padding: 20px;
}
