:root{

    --dark-black: #000000;
    --dark-brown: #231f20;
    --sec-dark-brown: #2e2621;
    --light-brown: #5d4f47;
    --gray: #a6a6a6;
    --dark-red: #80080c;
    --light-red: #b15349;
    --bright-red: #fd5b52;
    --red: #ff474d; 
    --yellowish-peach: #e0c789;
    --medium-gray: #c8c2bd;
    --light-gray: #d9d9d9;
    --bright-gray: #e7e9ec;
    --brightest-gray: #e2e1e1;
    --dark-yellow: #deab31;
    --bright-yellow: #ffcc00;
    --peach: #f3da9d;
    --white: #ffffff;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}
  
  *{
    margin: 0;
    padding: 0;
  }

  body {
    margin: 0;
    overflow-x: hidden;
 }

 button a {
  text-decoration: none;
  display: block;
  width: 100%; 
  height: 100%;
}

.header{
  background-image: url(header-pic.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
}

  .logo img {
    display: block;
    width: 14rem;
    height: auto;
    margin: 1.5rem 1.5rem;
  }

  nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }  
  
  nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-inline-end: 3rem;
    box-sizing: border-box;
  }
  
  nav li{
    font-family: "Poppins", serif;
  }
  
  .nav-link {
    height: 100%;
    padding: 0 23px;
    font-size: 1.1vw;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--white);
    transition: letter-spacing 0.3s ease, color 0.3s ease;
  }
  
  .nav-link:hover {
    letter-spacing: 2px;
  }  
  
  nav li:first-child{
    margin-right: auto;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    right: -250px; 
    height: 100vh;
    width: 250px;
    background-color: rgba(46, 38, 33, 0.6)    ;
    backdrop-filter: blur(12px); 
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.3s ease-in-out; 
    z-index: 100; 
  }
  
  .sidebar.active {
    right: 0; 
  }
  
  .sidebar li {
    width: 100%;
  }
  
  .sidebar a {
    width: 100%;
    text-decoration: none;
    color: var(--white); 
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .sidebar a:hover {
    background-color: rgba(101, 67, 33, 0.2); 
  }
  
  .sidebar svg {
    fill: var(--white); 
    margin-right: 10px;
  }
  
  .menu-button {
    display: none;
    cursor: pointer;
  }
  
  .menu-button svg {
    fill: var(--white);
  }
  
  nav ul {
    display: flex;
    align-items: center; 
  }
  
  nav li:first-child {
    margin-right: auto; 
  }

  @media (min-width: 1024px) and (max-width: 1200px){
    .nav-link{
      font-size: 1.2vw;
    }
  }
  
  @media (max-width: 1024px) {
    .hideOnMobile {
      display: none;
    }
    nav ul{
      padding-inline-end: 0;
    }
    .menu-button {
      display: block; 
      margin-right: 2rem;
    }
    .logo img{
      margin: 1.5rem 1.5rem;
      width: 12rem;
    }
    .nav-link:hover {
      color: var(--white);
      letter-spacing: 0px;
    }  
  }

  @media(max-width: 450px){
    .logo img{
      margin: 1rem .7rem;
    }
  }

  @media (max-width: 320px){
    .logo img{
      width: 10rem;
    }
  }

  .main-textbox{
    top: 42%;
    position: relative;
    left: 10%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
  }
  
  .main-textbox h2{
    font-family: 'Poppins', 'sans-serif';
    text-transform: uppercase;
    color: var(--light-gray);
    font-weight: 400;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 2vw;
  }

  .red{
    color: var(--red);
  }
  
  .main-textbox-line{
    background: var(--gray);
    height: 8vw;
    width: 5px;
  }

  .main-textbox h1{
    font-family: 'Playfair Display', 'sans-serif';
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-size: 3.3vw;
  }

  .header-boxes-con{
    position: relative;
    top: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-boxes{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--dark-brown);
    gap: 2rem;
    padding: 2rem 0;
    width: 88%;
    border-radius: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-boxes:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

  .header-box{
    flex-basis: 27%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }  

  .line{
    width: 2px;
    height: 17vw;
    background: var(--gray);
  }

  .header-icon img{
    display: block;
    height: auto;
    width: 5vw;
    transition: transform 0.4s ease;
}

.header-icon img:hover {
  transform: rotate(30deg) scale(1.1);
}

  .header-box h2{
    color: var(--red);
    text-transform: uppercase;
    font-family: 'Playfair Display', sans-serif;
    margin: .7rem 0 .5rem 0;
    font-size: 1.5vw;
  }

  .header-box p{
    color: var(--white);
    font-family: 'Poppins', 'sans-serif';
    font-size: .9vw;
  }

  @media (min-width: 700px) and (max-width: 1024px){
    .main-textbox{
      top: 40%;
      left: 8%;
      gap: 1.5rem;
    }
    .main-textbox h2{
      font-size: 2.5vw;
    }
    .main-textbox h1{
      font-size: 4.6vw;
    }
    .main-textbox-line{
      height: 12vw;
    }
    .header-boxes{
      gap: 1rem;
      width: 90%;
    }
    .line{
      width: 1px;
    }
    .header-box h2{
      font-size: 1.8vw;
    }
    .header-box p{
      font-size: 1.1vw;
    }
  }

  @media (min-width: 500px) and (max-width: 700px){
    .main-textbox{
      top: 38%;
      left: 6%;
      margin: 0 5rem 0 0;
      gap: 1rem;
    }
    .main-textbox h2{
      font-size: 3.5vw;
    }
    .main-textbox h1{
      font-size: 6vw;
    }
    .main-textbox-line{
      height: 21vw;
    }
    .header-boxes{
      padding: 2rem 2rem;
      width: 58%;
      flex-direction: column;
    }
    .line{
      width: 90%;
      height: 1px;
    }
    .header-icon img{
      width: 9vw;
    }
    .header-box h2{
      font-size: 2.7vw;
    }
    .header-box p{
      font-size: 1.8vw;
    }
  }

  @media (min-width: 400px) and (max-width: 500px){
    .main-textbox{
      top: 38%;
      left: 5%;
      margin-right: 2rem;
      gap: 1rem;
    }
    .main-textbox h2{
      font-size: 4.5vw;
    }
    .main-textbox h1{
      font-size: 7.5vw;
    }
    .main-textbox-line{
      height: 29vw;
    }
    .header-boxes{
      padding: 2rem 2rem;
      width: 62%;
      flex-direction: column;
    }
    .line{
      width: 90%;
      height: 1px;
    }
    .header-icon img{
      width: 13vw;
    }
    .header-box h2{
      font-size: 3.7vw;
    }
    .header-box p{
      font-size: 2.3vw;
    }
  }

  @media (max-width: 400px){
    .main-textbox{
      top: 34%;
      left: 4%;
      margin-right: 2rem;
      gap: 1rem;
    }
    .main-textbox h2{
      font-size: 5.5vw;
    }
    .main-textbox h1{
      font-size: 9vw;
    }
    .main-textbox-line{
      height: 40vw;
    }
    .header-boxes{
      padding: 2rem 1.8rem;
      width: 65%;
      flex-direction: column;
    }
    .line{
      width: 90%;
      height: 1px;
    }
    .header-icon img{
      width: 15vw;
    }
    .header-box h2{
      font-size: 4.7vw;
    }
    .header-box p{
      font-size: 3vw;
    }
  }

  .about-sec{
    background: var(--white);
    margin-top: 10rem;
  }

  .about-container{
    padding: 6rem 4rem 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  .about-pic{
    position: relative;
  }

  .about-pic img{
    display: block;
    height: auto;
    width: 47vw;
  }

  .circle-button {
    position: absolute;
    top: 5%;
    right: 0%;
    width: 7vw;
    height: 7vw;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    cursor: pointer;
  }
  
  .circle-button:hover {
    transform: scale(1.05);
  }
  
  .circle-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transition: transform 1s linear;
  }
  
  .circle-button:hover .circle-text {
    transform: rotate(360deg);
  }
  
  .arrow {
    color: white;
    font-size: 28px;
    z-index: 2;
  }  

  .about-textbox .short-h2{
    font-family: 'Poppins', 'sans-serif';
    text-transform: uppercase;
    color: var(--light-brown);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 2vw;
  }

  .about-textbox h1{
    color: var(--sec-dark-brown);
    font-family: 'Playfair Display', 'sans-serif';
    font-size: 3vw;
  }

  .about-textbox h1 b{
    font-weight: 700;
    color: var(--dark-red);
  }

  .about-p-bold{
    margin-top: 1rem;
    font-family: 'Poppins';
    color: var(--dark-black);
    font-size: 1.1vw;
  }

  .about-p{
    font-family: 'Poppins', 'sans-serif';
    color: var(--dark-black);
    margin-top: 1rem;
    font-size: 1.1vw;
  }

  .about-counters{
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
  }

  .about-counter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light-gray);
    border-radius: 1.5rem;
    font-family: 'Poppins', 'sans-serif';
    color: var(--dark-brown);
    padding: 1rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-counter:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
} 

  .about-counter h2{
    font-size: 2vw;
  }

  .about-counter p{
    font-size: 1vw;
  }

  @media (min-width: 800px) and (max-width: 1024px){
    .about-container{
      padding: 6rem 3rem 6rem 1rem;
    }
    .about-pic img{
      width: 50vw;
    }
    .about-textbox .short-h2{
      font-size: 2.5vw;
    }
    .about-textbox h1{
      font-size: 4vw;
    }
    .about-p-bold{
      font-size: 1.3vw;
    }
    .about-p{
      font-size: 1.3vw;
    }
    .about-counter h2{
      font-size: 2.3vw;
    }
    .about-counter p{
      font-size: 1.2vw;
    }
    .circle-button{
      width: 9vw;
      height: 9vw;
    }
  }

  @media (min-width: 600px) and (max-width: 700px){
    .about-sec{
      margin-top: 42rem;
    }
  }

  @media (min-width: 500px) and (max-width: 600px){
    .about-sec{
      margin-top: 37rem;
    }
  }

  @media (min-width: 450px) and (max-width: 500px){
    .about-sec{
      margin-top: 43rem;
    }
  }

  @media (min-width: 400px) and (max-width: 450px){
    .about-sec{
      margin-top: 38rem;
    }
  }

  @media (min-width: 370px) and (max-width: 400px){
    .about-sec{
      margin-top: 48rem;
    }
  }

  @media (max-width: 370px){
    .about-sec{
      margin-top: 44rem;
    }
  }

  @media (min-width: 600px) and (max-width: 800px){
    .about-container{
      flex-direction: column;
      padding: 6rem 4rem;
    }
    .about-pic img{
      width: 70vw;
    }
    .about-textbox{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .about-textbox .short-h2{
      font-size: 3vw;
    }
    .about-textbox h1{
      font-size: 5vw;
    }
    .about-p-bold{
      font-size: 1.6vw;
    }
    .about-p{
      font-size: 1.6vw;
    }
    .about-counter h2{
      font-size: 3vw;
    }
    .about-counter p{
      font-size: 1.5vw;
    }
    .circle-button{
      width: 10vw;
      height: 10vw;
    }
  }

  @media (min-width: 400px) and (max-width: 600px){
    .about-container{
      flex-direction: column;
      padding: 6rem 3rem;
    }
    .about-pic img{
      width: 80vw;
    }
    .about-textbox{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .about-textbox .short-h2{
      font-size: 3.5vw;
    }
    .about-textbox h1{
      font-size: 6vw;
    }
    .about-p-bold{
      font-size: 1.9vw;
    }
    .about-p{
      font-size: 1.9vw;
    }
    .about-counter h2{
      font-size: 3.6vw;
    }
    .about-counter p{
      font-size: 1.7vw;
    }
    .circle-button{
      width: 10vw;
      height: 10vw;
    }
  }

  @media (max-width: 400px){
    .about-container{
      flex-direction: column;
      padding: 6rem 2rem;
    }
    .about-pic img{
      width: 88vw;
    }
    .about-textbox{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .about-textbox .short-h2{
      font-size: 5.5vw;
    }
    .about-textbox h1{
      font-size: 7.5vw;
    }
    .about-p-bold{
      font-size: 2.5vw;
    }
    .about-p{
      font-size: 2.5vw;
    }
    .about-counters{
      flex-direction: column;
    }
    .about-counter h2{
      font-size: 5.6vw;
    }
    .about-counter p{
      font-size: 3vw;
    }
    .circle-button{
      width: 15vw;
      height: 15vw;
    }
  }

  .contact-panel-sec{
    background-image: url(contact-panelbg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .sec-decor img{
    display: block;
    height: auto;
    width: 13vw;
    position: relative;
    left: 75%;
  }

  .contact-panel-con{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 5rem 3rem 5rem;
  }

  .contact-panel-textbox h1{
    color: var(--red);
    font-family: 'Playfair Display', sans-serif;
    font-size: 3vw;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }

  .contact-panel-textbox p{
    color: var(--white);
    font-family: 'Poppins', 'sans-serif';
    font-size: 1.1vw;
    margin-top: .3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }

  .panel-decor{
    margin-top: .5rem;
  }

  .panel-decor img{
    display: block;
    height: auto;
    width: 24vw;
  }

  .contact-panel-btn button{
    background: transparent;
    border: 2px solid var(--red);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1vw;
    cursor: pointer;
    transition: .3s;
  }

  .contact-panel-btn button:hover{
    background: var(--red);
  }

  @media (min-width: 700px) and (max-width: 1024px){
    .contact-panel-con{
      padding: 1rem 3rem 3rem 3rem;
    }
    .contact-panel-textbox{
      flex-basis: 62%;
    }
    .contact-panel-textbox h1{
      font-size: 4vw;
    }
    .contact-panel-textbox p{
      font-size: 1.4vw;
    }
    .panel-decor img{
      width: 30vw;
    }
    .sec-decor img{
      width: 15vw;
    }
    .contact-panel-btn button{
      font-size: 1.4vw;
    }
  }

  @media (min-width: 500px) and (max-width: 700px){
    .contact-panel-con{
      justify-content: center;
      padding: 1rem 4rem 3rem 4rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .contact-panel-textbox h1{
      font-size: 5vw;
    }
    .contact-panel-textbox p{
      font-size: 1.9vw;
    }
    .panel-decor{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .panel-decor img{
      width: 43vw;
    }
    .sec-decor img{
      width: 24vw;
      left: 68%;
    }
    .contact-panel-btn button{
      font-size: 1.7vw;
    }
  }

  @media (min-width: 400px) and (max-width: 500px){
    .contact-panel-con{
      justify-content: center;
      padding: 1rem 2rem 3rem 2rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .contact-panel-textbox h1{
      font-size: 6vw;
    }
    .contact-panel-textbox p{
      font-size: 2.5vw;
    }
    .panel-decor{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .panel-decor img{
      width: 51vw;
    }
    .sec-decor img{
      width: 26vw;
      left: 68%;
    }
    .contact-panel-btn button{
      font-size: 2.1vw;
    }
  }

  @media (max-width: 400px){
    .contact-panel-con{
      justify-content: center;
      padding: 1rem 1.4rem 3rem 1.4rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .contact-panel-textbox h1{
      font-size: 7vw;
    }
    .contact-panel-textbox p{
      font-size: 2.8vw;
    }
    .panel-decor{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .panel-decor img{
      width: 56vw;
    }
    .sec-decor img{
      width: 29vw;
      left: 64%;
    }
    .contact-panel-btn button{
      font-size: 2.4vw;
    }
  }

  .services-sec{
    background: var(--bright-gray);
  }

  .services-head{
    padding: 5rem 4rem 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .small-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .arrow img{
    display: block;
    height: auto;
    width: 6vw;
  }

  .small-heading h2{
    font-family: 'Poppins', 'sans-serif';
    text-transform: uppercase;
    color: var(--light-brown);
    font-weight: 400;
    font-size: 2vw;
  }

  .services-head h1{
    font-family: 'Playfair Display', 'sans-serif';
    color: var(--dark-black);
    font-size: 3vw;
  }

  .dif-color-w{
    color: var(--white) !important;
  }

  .services-head h1 b{
    font-weight: 700;
    color: var(--dark-red);
  }

  .services-head p{
    font-family: 'Poppins', 'sans-serif';
    color: var(--dark-black);
    margin-top: 1rem;
    font-size: 1.1vw;
  }

  @media (min-width: 800px) and (max-width: 1024px){
    .small-heading h2{
      font-size: 2.5vw;
      }
      .arrow img{
        width: 8vw;
      }
      .services-head h1{
        font-size: 4vw;
      }
      .services-head p{
        font-size: 1.3vw;
      }
    }

    @media (min-width: 600px) and (max-width: 800px){
      .small-heading h2{
        font-size: 3.3vw;
        }
        .arrow img{
          width: 10vw;
        }
        .services-head h1{
          font-size: 5vw;
        }
        .services-head p{
          font-size: 1.6vw;
        }
      }

    @media (min-width: 400px) and (max-width: 600px){
        .services-head{
          padding: 5rem 2rem 0 2rem;
        }
        .small-heading{
          gap: 1rem;
        }
        .small-heading h2{
          font-size: 4vw;
          }
          .arrow img{
            width: 12vw;
          }
          .services-head h1{
            font-size: 6vw;
          }
          .services-head p{
            font-size: 2.1vw;
          }
    }

    @media (max-width: 400px){
          .services-head{
            padding: 5rem 1rem 0 1rem;
          }
          .small-heading{
            gap: 1rem;
          }
          .small-heading h2{
            font-size: 5vw;
            }
            .arrow img{
              width: 15vw;
            }
            .services-head h1{
              font-size: 8vw;
            }
            .services-head p{
              font-size: 2.9vw;
            }
        }  

  .sec5{
    background: var(--bright-gray);
  }

  .sec5-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5rem 4rem;
    gap: 2rem;
  }

  .sec5-pic img{
    display: block;
    height: auto;
    width: 43vw;
  }

  .sec5-textbox{
    flex-basis: 40%;
  }

  .sec5-textbox p{
    color: var(--dark-black);
    font-family: 'Poppins', 'sans-serif';
    font-size: 1.1vw;
  }

  .p-mr{
    margin-top: .5rem;
  }

  .ceo-profile{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .ceo-picture img{
    display: block;
    height: auto;
    width: 6vw;
  }

  .ceo-profile{
    text-align: left;
  }

  .ceo-profile h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.4vw;
    color: var(--dark-black);
  }

  @media (min-width: 800px) and (max-width: 1024px){
    .sec5-container{
      padding: 5rem 2rem;
      gap: 1.3rem;
    }
    .sec5-pic img{
      width: 49vw;
    }
    .sec5-textbox p{
      font-size: 1.2vw;
    }
    .ceo-profile h2{
      font-size: 1.6vw;
    }
    .ceo-picture img{
      width: 7vw;
    }
  }

  @media (min-width: 600px) and (max-width: 800px){
    .sec5-container{
      flex-direction: column;
    }
    .sec5-pic img{
      width: 71vw;
    }
    .sec5-textbox{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .sec5-textbox p{
      font-size: 1.7vw;
    }
    .ceo-profile h2{
      font-size: 2vw;
    }
    .ceo-picture img{
      width: 10vw;
    }
  }

  @media (min-width: 400px) and (max-width: 600px){
    .sec5-container{
      flex-direction: column;
      padding: 5rem 2rem;
    }
    .sec5-pic img{
      width: 78vw;
    }
    .sec5-textbox{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .sec5-textbox p{
      font-size: 2.1vw;
    }
    .sec5-textbox button{
      font-size: 2vw;
    }
    .ceo-profile h2{
      font-size: 2.7vw;
    }
    .ceo-picture img{
      width: 15vw;
    }
  }

  @media (max-width: 400px){
    .sec5-container{
      flex-direction: column;
      padding: 5rem 1rem;
    }
    .sec5-pic img{
      width: 79vw;
    }
    .sec5-textbox{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .sec5-textbox p{
      font-size: 2.9vw;
    }
    .sec5-textbox button{
      font-size: 2.9vw;
    }
    .ceo-profile{
      gap: 1rem;
    }
    .ceo-profile h2{
      font-size: 3.4vw;
    }
    .ceo-picture img{
      width: 20vw;
    }
  }

  .catering-container{
    padding: 5rem 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
  }

  .cater-small-con {
    position: relative;
    width: fit-content;
  }

  .cater-small-con:nth-child(1){
    transition-delay: 200ms;
  }
  
  .cater-small-con:nth-child(2){
    transition-delay: 400ms;
  }
  
  .cater-small-con:nth-child(3){
    transition-delay: 600ms;
  }
  
  .cater-small-con:nth-child(4){
    transition-delay: 200ms;
  }
  
  .cater-small-con:nth-child(5){
    transition-delay: 400ms;
  }
  
  .small-con-pic {
    position: relative;
    display: inline-block;
  }
  
  .small-con-pic img {
    display: block;
    height: 24vw;
    width: 27vw;
    border-radius: 1rem;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all 0.4s ease;
}

.small-con-pic:hover img{
    filter: grayscale(0%) brightness(1.1);
}

  .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    z-index: 1;
  }

  .small-con-textbox {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    max-width: 85%;
  }
  
  .small-con-textbox h2{
    font-family: 'Poppins', 'sans-serif';
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-size: 1.2vw;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
  }
  
  .sep-service-btn button{
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    padding: .5rem 2rem;
    border-radius: 2rem;
    font-size: .95vw;
    cursor: pointer;
    transition: .3s;
  }

  .sep-service-btn button:hover{
    background: var(--red);
  }

  @media (min-width: 800px) and (max-width: 1024px){
    .catering-container{
      padding: 5rem 2rem;
      gap: .7rem;
    }
    .small-con-pic img{
      height: 27vw;
      width: 28vw;
    }
    .small-con-textbox{
      bottom: 1rem;
      left: 1rem;
    }
    .small-con-textbox h2{
      font-size: 1.5vw;
    }
  }

  @media (min-width: 600px) and (max-width: 800px){
    .catering-container{
      padding: 5rem 2rem;
      align-items: center;
    }
    .small-con-pic img{
      height: 35vw;
      width: 37vw;
    }
    .small-con-textbox{
      bottom: 1.5rem;
      left: 1.5rem;
    }
    .small-con-textbox h2{
      font-size: 2vw;
    }
    .sep-service-btn button{
      font-size: 1.4vw;
    }
    .cater-small-con:nth-child(1){
      transition-delay: 200ms;
    }
    .cater-small-con:nth-child(2){
      transition-delay: 400ms;
    }
    .cater-small-con:nth-child(3){
      transition-delay: 200ms;
    }
    .cater-small-con:nth-child(4){
      transition-delay: 400ms;
    }
    .cater-small-con:nth-child(5){
      transition-delay: 200ms;
    }
  }

  @media (max-width: 600px){
    .cater-small-con:nth-child(1){
      transition-delay: 0ms;
    }
    .cater-small-con:nth-child(2){
      transition-delay: 0ms;
    }
    .cater-small-con:nth-child(3){
      transition-delay: 0ms;
    }
    .cater-small-con:nth-child(4){
      transition-delay: 0ms;
    }
    .cater-small-con:nth-child(5){
      transition-delay: 0ms;
    }
  }

  @media (min-width: 460px) and (max-width: 600px){
    .catering-container{
      padding: 5rem 2rem;
      flex-direction: column;
      align-items: center;
    }
    .small-con-pic img{
      height: 52vw;
      width: 59vw;
    }
    .small-con-textbox{
      bottom: 1rem;
      left: 1rem;
    }
    .small-con-textbox h2{
      font-size: 3vw;
    }
    .sep-service-btn button{
      font-size: 1.7vw;
    }
  }

  @media (max-width: 460px){
    .catering-container{
      padding: 5rem 2rem;
      flex-direction: column;
      align-items: center;
    }
    .small-con-pic img{
      height: 60vw;
      width: 67vw;
    }
    .small-con-textbox{
      bottom: 1rem;
      left: 1rem;
    }
    .small-con-textbox h2{
      font-size: 3.5vw;
    }
    .sep-service-btn button{
      font-size: 2.1vw;
    }
  }

  .members-sec{
    background: var(--bright-gray);
  }

  .members-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 5rem 2rem 7rem 2rem;
  }

  .member{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-basis: 19%;
  }

  .member:nth-child(1){
    transition-delay: 200ms;
  }
  
  .member:nth-child(2){
    transition-delay: 400ms;
  }
  
  .member:nth-child(3){
    transition-delay: 600ms;
  }
  
  .member:nth-child(4){
    transition-delay: 800ms;
  }

  .member-pic img{
    display: block;
    height: auto;
    width: 18vw;
    border-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.member-pic:hover img{
  transform: translateY(-10px);
} 

  .member h2{
    color: var(--dark-black);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3vw;
    margin-top: .8rem;
  }

  .member p{
    font-family: 'Poppins', sans-serif;
    color: var(--dark-black);
    font-size: 1.1vw;
  }

  @media (min-width: 800px) and (max-width: 1024px){
    .members-con{
      gap: 1rem;
    }
    .member{
      flex-basis: 21%;
    }
    .member-pic img{
      width: 20vw;
    }
    .member h2{
      font-size: 1.5vw;
    }
    .member p{
      font-size: 1.3vw;
    }
  }

  @media (min-width: 600px) and (max-width: 800px){
    .member{
      flex-basis: 32%;
    }
    .member-pic img{
      width: 29vw;
    }
    .member h2{
      font-size: 2vw;
    }
    .member p{
      font-size: 1.8vw;
    }
  }

  @media (min-width: 500px) and (max-width: 600px){
    .members-con{
      gap: 1rem;
    }
    .member{
      flex-basis: 37%;
    }
    .member-pic img{
      width: 33vw;
    }
    .member h2{
      font-size: 2.4vw;
    }
    .member p{
      font-size: 2vw;
    }
  }

  @media (max-width: 500px){
    .members-con{
      gap: 1rem;
      flex-direction: column;
      align-items: center;
    }
    .member-pic img{
      width: 50vw;
    }
    .member h2{
      font-size: 3.2vw;
    }
    .member p{
      font-size: 2.8vw;
    }
  }

.portfolio-sec{
  background: var(--white);
}

.container {
  position: relative;
  padding: 5rem 4rem;
}

.container .image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.container .image-container .media {
  overflow: hidden;
  cursor: pointer;
}

.container .image-container .media img {
  display: block;
  height: 20vw;
  border-radius: 1rem;
  width: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
  filter: grayscale(50%);
  transition: all 0.4s ease;
}

.container .image-container .media:hover img{
    filter: grayscale(0%) brightness(1.1);
}

.container .popup-media {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  display: none;
  opacity: 0;
  transform: scale(0.8); 
  transition: opacity 0.4s ease, transform 0.4s ease; 
}

.media:nth-child(1){
  transition-delay: 200ms;
}

.media:nth-child(2){
  transition-delay: 400ms;
}

.media:nth-child(3){
  transition-delay: 600ms;
}

.media:nth-child(4){
  transition-delay: 800ms;
}

.media:nth-child(5){
  transition-delay: 200ms;
}

.media:nth-child(6){
  transition-delay: 400ms;
}

.media:nth-child(7){
  transition-delay: 600ms;
}

.container .popup-media.active {
  display: block;
  opacity: 1;
  transform: scale(1); 
}

.container .popup-media span {
  position: absolute;
  top: 2%;
  right: 10px;
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}

.container .popup-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  max-height: 75%;
  max-width: 65%;
  object-fit: cover;
}

@keyframes popupOpen {
  from {
      opacity: 0;
      transform: scale(0.8);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.container .popup-media {
  animation: popupOpen 0.4s ease forwards;
  display: none;
  opacity: 0;
}

@media (max-width: 768px) {
  .container .popup-media img {
      width: 90%;
  }
}

@media (min-width: 800px) and (max-width: 1024px){
  .container {
    padding: 5rem 2rem;
  }
  .container .image-container .media img {
    height: 22vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .container{
    padding: 5rem 2rem;
  }
  .container .image-container{
    align-items: center;
    gap: .5rem;
  }
  .container .image-container .media img{
    height: 28vw;
    width: auto;
  }
  .media:nth-child(1){
    transition-delay: 200ms;
  }
  .media:nth-child(2){
    transition-delay: 400ms;
  }
  .media:nth-child(3){
    transition-delay: 600ms;
  }
  .media:nth-child(4){
    transition-delay: 200ms;
  }
  .media:nth-child(5){
    transition-delay: 400ms;
  }
  .media:nth-child(6){
    transition-delay: 600ms;
  }
  .media:nth-child(7){
    transition-delay: 200ms;
  }
}

@media (min-width: 500px) and (max-width: 600px){
  .container{
    padding: 5rem 2rem;
  }
  .container .image-container{
    align-items: center;
    gap: .7rem;
  }
  .container .image-container .media img{
    height: 46vw;
    width: 35vw;
    object-fit: cover;
  }
}

@media (max-width: 500px){
  .container{
    padding: 5rem 2rem;
  }
  .container .image-container{
    flex-direction: column;
    align-items: center;
    gap: .7rem;
  }
  .container .image-container .media img{
    height: auto;
    width: 54vw;
  }
}

.logos{
    overflow: hidden;
    white-space: nowrap;
    margin: 2rem 0;
    background: var(--bright-gray);
  }
  
  .logos-slide{
    display: inline-block;
    animation: 30s slide infinite linear;
    padding: 24px 0 41px 0;
  }
  
  .logos-slide img{
    padding: 0 35px;
    width: 16vw;
    height: auto;
  }
  
  @keyframes slide {
    from{
      transform: translateX(0);
    }
    to{
      transform: translateX(-100%);
    }
  }

  @media (min-width: 750px) and (max-width: 1024px){
    .logos-slide img{
      width: 20vw;
    }
  }

  @media (min-width: 550px) and (max-width: 750px){
    .logos-slide img{
      width: 25vw;
      padding: 0 25px;
    }
  }

  @media (max-width: 550px){
    .logos-slide img{
      width: 28vw;
      padding: 0 21px;
    }
  }

.testimonials-container {
  padding: 5rem 0;   
}

.testimonials-swiper {
  width: 75%;
}

 .testimonials-swiper .swiper-slide {
  background: var(--white);
  border: 3px solid var(--dark-red);
  border-radius: 1rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto !important;
  box-sizing: border-box;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent !important;
}

.testimonials-swiper .swiper-button-prev {
  background-image: url('arrow-left.png');
}

.testimonials-swiper .swiper-button-next {
  background-image: url('arrow-right.png');
}

.swiper-slide-inn{
  margin: .8rem 1.3rem;
}

.profile-pic{
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-pic img{
  display: block;
  height: auto;
  width: 6vw;
  border-radius: 50%;
}

.testimonials-swiper .swiper-slide p{
  font-size: 1vw;
  margin-top: 1.2rem;
  color: var(--dark-black);
}

@media (min-width: 800px) and (max-width: 1024px){
  .testimonials-swiper{
    width: 82%;
  }
  .testimonials-swiper .swiper-slide p{
    font-size: 1.3vw;
  }
  .profile-pic img{
    width: 8vw;
  }
}

@media (min-width: 800px) and (max-width: 1024px){
  .testimonials-swiper{
    width: 82%;
  }
  .testimonials-swiper .swiper-slide p{
    font-size: 1.3vw;
  }
  .profile-pic img{
    width: 8vw;
  }
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
  width: 35px !important;
  height: 35px !important;
}
}

@media (min-width: 600px) and (max-width: 800px){
  .testimonials-swiper{
    width: 84%;
  }
  .testimonials-swiper .swiper-slide p{
    font-size: 1.6vw;
  }
  .profile-pic img{
    width: 10vw;
  }
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
  width: 35px !important;
  height: 35px !important;
}
}

@media (min-width: 450px) and (max-width: 600px){
  .testimonials-swiper{
    width: 80%;
  }
  .testimonials-swiper .swiper-slide p{
    font-size: 1.9vw;
  }
  .profile-pic img{
    width: 13vw;
  }
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
  display: none !important;
}
}

@media (max-width: 450px){
  .testimonials-swiper{
    width: 80%;
  }
  .testimonials-swiper .swiper-slide p{
    font-size: 2.4vw;
  }
  .profile-pic img{
    width: 16vw;
  }
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
  display: none !important;
}
}

.footer{
  background: var(--sec-dark-brown);
}

.footer-links{
  padding-top: 7rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.footer-link{
  flex-basis: 20%;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}

.footer-ul-h1{
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Playfair Display', 'sans-serif';
}

.footer-link ul{
  list-style-type: none;
}

.footer-link ul li a{
  text-decoration: none;
  color: var(--bright-gray);
  transition: 0.5s;
}

.footer-link ul li .foot-hover:hover{
  color: var(--red);
}

.footer-link ul li{
  font-size: .75rem;
  margin-top: .75rem;
  font-family: 'poppins', 'sans serif';
}

.footer-link ul li:hover{
  color: var(--white);
}

.mr-r2{
margin-right: 1.5rem;
}

.fa-chevron-right{
color: var(--red);
margin-right: 1rem;
}

.foot-mar{
  margin-right: 1rem;
  color: var(--red);
}

.fa-brands{
  margin-right: 1rem;
  font-size: 1.1rem;
}

.fl-footer{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-panel{
  background-color: var(--dark-brown);
  color: var(--white);
  padding:  1.8rem 0;
  font-weight: 500;
  font-size: .85rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-panel p{
font-family: 'Poppins', 'sans-serif';
margin: 0 1rem;
}

.footer-panel p a{
text-decoration: none;
color: var(--white);
font-weight: 700;
}

@media (min-width: 600px) and (max-width: 1024px){
  .footer-text{
      margin-left: 2rem;
  }
  .footer-h1{
      margin-left: 2rem;
      font-size: 2rem;
  }
  .footer-link{
      flex-basis: 40%;
      margin-bottom: 2rem;
      margin-right: 1rem;
  }
  .footer-ul-h1{
      font-size: 1.1rem;
  }
}


@media (max-width: 600px){
  .footer-text{
      margin-left: 0;
  }
  .footer-text .small{
      margin-left: 1.5rem;
  }
  .footer-h1{
      margin-left: 2rem;
      font-size: 1.5rem;
  }
  .footer-link{
      flex-basis: 80%;
      margin-bottom: 2rem;
      margin-right: 1rem;
  }
  .footer-ul-h1{
      font-size: 1rem;
  }
  .footer-link ul li{
      font-size: .65rem;
  }
  .footer-link p{
      font-size: .65rem;
  }
  .footer-panel{
      padding: 1.4rem 0;
      font-size: .65rem;
  }
}

.socials {
display: flex;
align-items: center;
margin: 1rem 0 0 0.45rem;
}

.social {
border: 1px solid var(--gray);
border-radius: 50%;
width: 40px;
height: 40px;
display: flex; 
justify-content: center;
align-items: center;
margin-right: 1rem; 
}

.social a {
text-decoration: none;
color: var(--bright-gray);
font-size: 18px;
transition: 0.5s;
}

.social a:hover {
color: var(--red);
}

.social a i{
margin-right: 0;
}

.hidden {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.from-left {
  transform: translateX(-150px);
}
.from-left.show {
  transform: translateX(0);
  opacity: 1;
}

.from-right {
  transform: translateX(150px);
}
.from-right.show {
  transform: translateX(0);
  opacity: 1;
}

.from-bottom {
  transform: translateY(150px);
}
.from-bottom.show {
  transform: translateY(0);
  opacity: 1;
}

.from-top {
  transform: translateY(-150px);
}
.from-top.show {
  transform: translateY(0);
  opacity: 1;
}

.sep-header{
  height: 34rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.about-page{
  background-image: url(about-page-bg.jpg);
}

.foodtruck-page{
  background-image: url(foodtruck-page-bg.jpg);
}

.hiring-page{
  background-image: url(hiring-page-bg.png);
}

.services-page{
  background-image: url(services-page-bg.jpg);
}

.events-sep-page{
  background-image: url(eventmanage-sep-page-bg.jpg);
}

.hospitality-sep-page{
  background-image: url(hospitality-page-bg.jpg);
}

.manpower-sep-page{
  background-image: url(manpower-page-bg.jpg);
}

.food-sep-page{
  background-image: url(food&beverages-page-bg.jpg);
}

.facility-sep-page{
  background-image: url(facilitymanagement-page-bg.jpg);
}

.contact-sep-page{
  background-image: url(contact-page-bg.jpg);
}

.page-links{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  top: 40%;
  left: 7%;
}

.page-links ul{
  display: flex;
  align-items: baseline;
  justify-content: center;
  list-style-type: none;
  color: var(--brightest-gray);
  font-family: 'Poppins', sans-serif;
  margin-left: .5rem;
}

.page-links ul li a{
  text-decoration: none;
  color: var(--brightest-gray);
  font-size: 1.1vw;
}

.page-link span{
  margin: 0 .55rem;
  font-size: 1.1vw;
}

.page-links h1{
  color: var(--white);
  font-family: 'Playfair Display', sans-serif;
  font-size: 3.5vw;
}

.header-decor img{
  display: block;
  height: auto;
  width: 24vw;
}

.bg-page-decor{
  position: absolute;
  right: 10%;
  transform: rotate(180deg);
  bottom: 0%;
}

.bg-page-decor img{
  display: block;
  height: auto;
  width: 20vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .page-links{
    left: 6%;
  }
  .page-links ul li a{
    font-size: 1.4vw;
  }
  .page-link span{
    font-size: 1.4vw;
  }
  .page-links h1{
    font-size: 4.5vw;
  }
  .header-decor img{
    width: 32vw;
  }
  .bg-page-decor img{
    width: 24vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .page-links{
    left: 6%;
  }
  .page-links ul li a{
    font-size: 1.8vw;
  }
  .page-link span{
    font-size: 1.8vw;
  }
  .page-links h1{
    font-size: 6vw;
  }
  .header-decor img{
    width: 40vw;
  }
  .bg-page-decor img{
    width: 33vw;
  }
}

@media (min-width: 420px) and (max-width: 600px){
  .sep-header{
    height: 38rem;
  }
  .page-links{
    left: 6%;
  }
  .page-links ul li a{
    font-size: 2.4vw;
  }
  .page-link span{
    font-size: 2.4vw;
  }
  .page-links h1{
    font-size: 8vw;
  }
  .header-decor img{
    width: 53vw;
  }
  .bg-page-decor img{
    width: 41vw;
  }
}

@media (max-width: 420px){
  .sep-header{
    height: 38rem;
  }
  .page-links{
    left: 6%;
  }
  .page-links ul li a{
    font-size: 3.1vw;
  }
  .page-link span{
    font-size: 3.1vw;
  }
  .page-links h1{
    font-size: 10vw;
  }
  .header-decor img{
    width: 61vw;
  }
  .bg-page-decor img{
    width: 48vw;
  }
}

.values-sec{
  background-image: url(values-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.values-con{
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7rem;
}

.vision{
  display: flex;
  justify-content: start;
  align-items: flex-end;
  position: relative;
}

.mission{
  display: flex;
  flex-direction: row-reverse;
  justify-content: end;
  align-items: flex-start;
  position: relative;
}

.val-text-mis{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  position: relative;
  left: 10%;
}

.border-val img{
  display: block;
  height: auto;
  width: 14vw;
}

.val-text-vis{
  position: relative;
  right: 10%;
}

.val-h1{
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: 'Playfair Display', sans-serif;
  font-size: 3.3vw;
}

.val-h1 b{
  color: var(--red);
}

.val-p{
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .values-con{
    padding: 4rem 4rem;
    gap: 6rem;
  }
  .border-val img{
    width: 18vw;
  }
  .val-text-vis{
    right: 15%;
  }
  .val-text-mis{
    left: 15%;
  }
  .val-h1{
    font-size: 4.3vw;
  }
  .val-p{
    font-size: 1.3vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .values-con{
    padding: 4rem 3rem;
    gap: 5rem;
  }
  .border-val img{
    width: 20vw;
  }
  .val-text-vis{
    right: 17%;
  }
  .val-text-mis{
    left: 17%;
  }
  .val-h1{
    font-size: 5.3vw;
  }
  .val-p{
    font-size: 1.5vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .values-con{
    padding: 4rem 2rem;
    gap: 4rem;
  }
  .border-val img{
    width: 27vw;
  }
  .val-text-vis{
    right: 23%;
  }
  .val-text-mis{
    left: 23%;
  }
  .val-h1{
    font-size: 6.3vw;
  }
  .val-p{
    font-size: 1.8vw;
  }
}

@media (min-width: 250px) and (max-width: 450px){
  .values-con{
    padding: 4rem 2rem;
    gap: 4rem;
  }
  .border-val img{
    width: 41vw;
  }
  .val-text-vis{
    right: 40%;
  }
  .val-text-mis{
    left: 40%;
  }
  .val-h1{
    font-size: 6.5vw;
  }
  .val-p{
    font-size: 2.2vw;
  }
}

.members-sep-sec{
  background: var(--white);
}

.whyus-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 5rem 2rem 7rem 2rem;
  gap: 2rem;
}

.whyus-el{
  flex-basis: 21%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  background: var(--bright-gray);
  position: relative;
  padding: 6rem 1.5rem 3rem 1.5rem;
  border-radius: 2rem;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease;
}

.whyus-el:hover {
  transform: translateY(-10px);
}

.whyus-el h2{
  color: var(--dark-black);
  font-size: 1.4vw;
}

.whyus-el p{
  color: var(--dark-black);
  margin-top: .5rem;
  font-size: 1.1vw;
}

.whyus-icon{
  height: 105px;
  width: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  bottom: 82%;
  left: 50%;
  transform: translateX(-50%);
}

.icon-1{
  background: var(--dark-brown);
}

.icon-2{
  background: var(--dark-red);
}

.icon-3{
  background: var(--dark-brown);
}

.whyus-icon img{
  display: block;
  height: auto;
  width: 4.5vw;
  transition: transform 0.4s ease;
}

.whyus-icon img:hover {
  transform: rotate(30deg) scale(1.1);
}

@media (min-width: 800px) and (max-width: 1024px){
  .whyus-con{
    gap: 1.5rem;
  }
  .whyus-el{
    flex-basis: 23%;
    padding: 5rem 1.5rem 3rem 1.5rem;
  }
  .whyus-icon{
    height: 95px;
    width: 95px;
  }
  .whyus-icon img{
    width: 6vw;
  }
  .whyus-el h2{
    font-size: 1.6vw;
  }
  .whyus-el p{
    margin-top: .7rem;
    font-size: 1.3vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .whyus-con{
    padding: 7rem 5rem 7rem 5rem;
    gap: 5rem;
    flex-direction: column;
  }
  .whyus-el{
    padding: 4rem 1.5rem 3rem 1.5rem;
  }
  .whyus-icon{
    height: 95px;
    width: 95px;
  }
  .whyus-icon img{
    width: 8vw;
  }
  .whyus-el h2{
    font-size: 2vw;
    margin-top: 1rem;
  }
  .whyus-el p{
    margin-top: .5rem;
    font-size: 1.7vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .whyus-con{
    padding: 7rem 5rem 7rem 5rem;
    gap: 6rem;
    flex-direction: column;
  }
  .whyus-el{
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
  .whyus-icon{
    height: 95px;
    width: 95px;
  }
  .whyus-icon img{
    width: 10vw;
  }
  .whyus-el h2{
    font-size: 2.5vw;
    margin-top: 1rem;
  }
  .whyus-el p{
    margin-top: .5rem;
    font-size: 2vw;
  }
}

@media (max-width: 450px){
  .whyus-con{
    padding: 7rem 3rem 7rem 3rem;
    gap: 5rem;
    flex-direction: column;
  }
  .whyus-el{
    padding: 2rem 1.5rem 2rem 1.5rem;
  }
  .whyus-icon{
    height: 75px;
    width: 75px;
  }
  .whyus-icon img{
    width: 11vw;
  }
  .whyus-el h2{
    font-size: 3.3vw;
    margin-top: 1rem;
  }
  .whyus-el p{
    margin-top: .5rem;
    font-size: 2.4vw;
  }
}

.testimonials-sep-sec{
  background: var(--bright-gray);
}

.about-hop-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  gap: 2rem;
}

.about-hop-textbox{
  flex-basis: 41%;
}

.about-hop-textbox h1{
  font-family: 'Playfair Display', sans-serif;
  color: var(--dark-yellow);
  font-size: 3.5vw;
}

.about-hop-textbox h1 b{
  color: var(--dark-black);
}

.about-hop-textbox p{
  color: var(--dark-black);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1vw;
  margin-right: 4rem;
}

.mr-t2{
  margin-top: 1.2rem;
}

.line-ab-hop{
  height: 2px;
  width: 34vw;
  background: var(--dark-yellow);
  margin: 2.5rem 0 2.5rem 0;
}

.about-hop-pics{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.about-hop-pic:nth-child(1){
  margin-top: 4rem;
}

.about-hop-pic img{
  display: block;
  height: auto;
  width: 18vw;
  border-radius: 1rem;
}

@media (min-width: 700px) and (max-width: 1024px){
  .about-hop-con{
    padding: 5rem 1rem;
    gap: 1rem;
  }
  .about-hop-textbox{
    flex-basis: 45%;
  }
  .about-hop-textbox h1{
    font-size: 4.5vw;
  }
  .line-ab-hop{
    margin: 1.5rem 0 1.5rem 0;
  }
  .about-hop-textbox p{
    font-size: 1.3vw;
    margin-right: 2rem;
  }
  .about-hop-pics{
    gap: .7rem;
  }
  .about-hop-pic img{
    width: 20vw;
  }
}

@media (min-width: 500px) and (max-width: 700px){
  .about-hop-con{
    padding: 5rem 4rem;
    gap: 1rem;
    flex-direction: column;
  }
  .about-hop-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about-hop-textbox h1{
    font-size: 5.5vw;
  }
  .line-ab-hop{
    margin: 1.5rem 0 1.5rem 0;
  }
  .about-hop-textbox p{
    font-size: 1.8vw;
    margin-right: 0rem;
  }
  .about-hop-pics{
    gap: .7rem;
  }
  .about-hop-pic img{
    width: 33vw;
  }
}

@media (min-width: 410px) and (max-width: 500px){
  .about-hop-con{
    padding: 5rem 3rem;
    gap: 1rem;
    flex-direction: column;
  }
  .about-hop-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about-hop-textbox h1{
    font-size: 7vw;
  }
  .line-ab-hop{
    margin: 1.5rem 0 1.5rem 0;
    width: 47vw;
  }
  .about-hop-textbox p{
    font-size: 2.2vw;
    margin-right: 0rem;
  }
  .about-hop-pics{
    gap: .7rem;
  }
  .about-hop-pic img{
    width: 36vw;
  }
}

@media (max-width: 410px){
  .about-hop-con{
    padding: 5rem 1.2rem;
    gap: 1rem;
    flex-direction: column;
  }
  .about-hop-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about-hop-textbox h1{
    font-size: 8vw;
  }
  .line-ab-hop{
    margin: 1.5rem 0 1.5rem 0;
    width: 55vw;
  }
  .about-hop-textbox p{
    font-size: 2.7vw;
    margin-right: 0rem;
  }
  .about-hop-pics{
    gap: .7rem;
  }
  .about-hop-pic img{
    width: 38vw;
  }
}

.hop-mission-sec{
  background: var(--bright-gray);
}

.cl-dif b{
  color: var(--dark-yellow) !important;
}

.hop-mission-con{
  padding: 5rem 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hop-mission-first{
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.hop-mission-second{
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}

.hop-mission-points{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.point-1{
  align-items: flex-start;
}

.point-2{
  align-items: flex-end;
}

.hop-mission-point{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
}

.row-r{
  flex-direction: row-reverse;
  text-align: right;
}

.hop-mission-icon{
  background: var(--dark-black);
  height: 8vw;
  width: 8vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.hop-mission-icon img{
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.hop-mission-pic img{
  display: block;
  height: auto;
  width: 26vw;
  border-radius: 1rem;
}

.hop-mission-point h2{
  font-family: 'Poppins', sans-serif;
  font-size: 1.4vw;
}

.hop-mission-point p{
  font-family: 'Poppins', sans-serif;
  font-size: 1.1vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .hop-mission-con{
    padding: 5rem 5rem;
  }
  .hop-mission-point{
    gap: 1rem;
  }
  .hop-mission-icon{
    height: 10vw;
    width: 10vw;
  }
  .hop-mission-point h2{
    font-size: 1.6vw;
  }
  .hop-mission-point p{
    font-size: 1.3vw;
  }
  .hop-mission-pic img{
    width: 32vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .hop-mission-con{
    padding: 5rem 3rem;
  }
  .hop-mission-first{
    flex-basis: 48%;
  }
  .hop-mission-second{
    flex-basis: 48%;
  }
  .hop-mission-point{
    gap: 1rem;
  }
  .hop-mission-icon{
    height: 12vw;
    width: 12vw;
  }
  .hop-mission-point h2{
    font-size: 1.8vw;
  }
  .hop-mission-point p{
    font-size: 1.5vw;
  }
  .hop-mission-pic img{
    width: 36vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .hop-mission-con{
    padding: 5rem 3rem;
    flex-direction: column;
    gap: 2rem;
  }
  .hop-mission-first{
    align-items: center;
    gap: 3rem;
  }
  .hop-mission-second{
    align-items: center;
    gap: 3rem;
    flex-direction: column-reverse;
  }
  .hop-mission-point{
    gap: 1rem;
  }
  .hop-mission-icon{
    height: 15vw;
    width: 15vw;
  }
  .hop-mission-point h2{
    font-size: 2.3vw;
  }
  .hop-mission-point p{
    font-size: 1.9vw;
  }
  .hop-mission-pic img{
    width: 47vw;
  }
}

@media (max-width: 450px){
  .hop-mission-con{
    padding: 5rem 2rem;
    flex-direction: column;
    gap: 2rem;
  }
  .hop-mission-first{
    align-items: center;
    gap: 3rem;
  }
  .hop-mission-second{
    align-items: center;
    gap: 3rem;
    flex-direction: column-reverse;
  }
  .hop-mission-point{
    gap: 1rem;
  }
  .hop-mission-icon{
    height: 18vw;
    width: 18vw;
  }
  .hop-mission-point h2{
    font-size: 2.9vw;
  }
  .hop-mission-point p{
    font-size: 2.6vw;
  }
  .hop-mission-pic img{
    width: 65vw;
  }
}

.events-main-con{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: .5rem;
  padding: 5rem 1rem;
}

.events-con-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  flex-basis: 53%;
}

.events-con-2{
  display: flex;
  gap: .5rem;
}

.event-pic{
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.event-pic img{
  display: block;
  height: auto;
  width: 100%;
  border-radius: 1rem;
  filter: grayscale(40%);
  transition: all 0.4s ease;
}

.event-pic:hover img{
  filter: grayscale(0%) brightness(1.1);
}

.sec-pic-fb{
  width: 20vw;
}

.event-pic-text{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
}

.event-pic-text h2{
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-size: 1.2vw;
}

.event-pic-text p{
  font-size: .8vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .events-con-1{
     flex-basis: 59%;
  }
  .sec-pic-fb{
    width: 22vw;
  }
  .event-pic-text h2{
    font-size: 1.4vw;
  }
  .event-pic-text p{
    font-size: 1vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .events-main-con{
    padding: 5rem 3rem;
    flex-direction: column;
  }
  .sec-pic-fb{
    width: 100%;
  }
  .event-pic-text h2{
    font-size: 1.8vw;
  }
  .event-pic-text p{
    font-size: 1.4vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .events-main-con{
    padding: 5rem 3rem;
    flex-direction: column;
  }
  .events-con-2{
    flex-direction: column;
  }
  .event-pic{
    height: 19vh;
  }
  .event-pic img{
    height: 100%;
    object-fit: cover;
  }
  .sec-pic-fb{
    width: 100%;
  }
  .event-pic-text{
    bottom: .5rem;
  }
  .event-pic-text h2{
    font-size: 2.2vw;
  }
  .event-pic-text p{
    font-size: 1.7vw;
  }
}

@media (max-width: 450px){
  .events-main-con{
    padding: 5rem 2rem;
    flex-direction: column;
  }
  .events-con-2{
    flex-direction: column;
  }
  .event-pic{
    height: 19vh;
  }
  .event-pic img{
    height: 100%;
    object-fit: cover;
  }
  .sec-pic-fb{
    width: 100%;
  }
  .event-pic-text{
    bottom: .5rem;
  }
  .event-pic-text h2{
    font-size: 2.7vw;
  }
  .event-pic-text p{
    font-size: 2.2vw;
  }
}

.menu-highlights-sec{
  background: var(--bright-gray);
}

.menu-highlights-con{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: start;
  padding: 5rem 6rem;
}

.menu-highlights-first-el{
  flex-basis: 40%;
}

.menu-highlights-pic img{
  display: block;
  height: auto;
  width: 33vw;
  border-radius: 1rem;
}

.menu-highlights-textbox h1{
  font-family: 'Playfair Display', sans-serif;
  color: var(--dark-black);
  margin-top: 2rem;
  font-size: 3vw;
}

.line-high{
  background: var(--dark-yellow);
  height: 3px;
  width: 23vw;
  margin: 2rem 0;
}

.menu-highlights-textbox p{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
  font-size: 1.1vw;
}

.menu-highlights-second-el{
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-sep-el{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.menu-sep-el:hover{
  transform: translateX(10px);
} 

.sep-bg-b{
  background: var(--dark-brown);
  color: var(--white);
}

.sep-bg-y{
  background: var(--bright-yellow);
  color: var(--dark-black);
}

.menu-sep-el h2{
  font-size: 1.3vw;
}

.menu-sep-el p{
  font-size: .9vw;
  margin-top: .5rem;
}

.sep-el-pic img{
  display: block;
  height: auto;
  width: 10vw;
  border-radius: 1rem;
}

@media (min-width: 800px) and (max-width: 1024px){
  .menu-highlights-con{
    padding: 5rem 4rem;
  }
  .menu-highlights-first-el{
    flex-basis: 43%;
  }
  .menu-highlights-pic img{
    width: 36vw;
  }
  .menu-highlights-textbox h1{
    font-size: 3.7vw;
  }
  .line-high{
    width: 26vw;
  }
  .menu-highlights-textbox p{
    font-size: 1.3vw;
  }
  .menu-highlights-second-el{
    flex-basis: 45%;
  }
  .menu-sep-el{
    padding: 1rem 1.2rem;
  }
  .sep-el-pic img{
    width: 12vw;
  }
  .menu-sep-el h2{
    font-size: 1.6vw;
  }
  .menu-sep-el p{
    font-size: 1.1vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .menu-highlights-con{
    padding: 5rem 5rem;
    flex-direction: column;
    gap: 3rem;
  }
  .menu-highlights-first-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu-highlights-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .menu-highlights-pic img{
    width: 57vw;
  }
  .menu-highlights-textbox h1{
    font-size: 5vw;
  }
  .line-high{
    width: 33vw;
  }
  .menu-highlights-textbox p{
    font-size: 1.6vw;
  }
  .menu-sep-el{
    padding: 1.4rem 1.5rem;
  }
  .sep-el-pic img{
    width: 18vw;
  }
  .menu-sep-el h2{
    font-size: 2.2vw;
  }
  .menu-sep-el p{
    font-size: 1.5vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .menu-highlights-con{
    padding: 5rem 4rem;
    flex-direction: column;
    gap: 3rem;
  }
  .menu-highlights-first-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu-highlights-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .menu-highlights-pic img{
    width: 61vw;
  }
  .menu-highlights-textbox h1{
    font-size: 6vw;
  }
  .line-high{
    width: 37vw;
  }
  .menu-highlights-textbox p{
    font-size: 2vw;
  }
  .menu-sep-el{
    padding: 1.4rem 1.5rem;
  }
  .sep-el-pic img{
    width: 21vw;
  }
  .menu-sep-el h2{
    font-size: 2.6vw;
  }
  .menu-sep-el p{
    font-size: 1.9vw;
  }
}

@media (max-width: 450px){
  .menu-highlights-con{
    padding: 5rem 2.7rem;
    flex-direction: column;
    gap: 3rem;
  }
  .menu-highlights-first-el{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu-highlights-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .menu-highlights-pic img{
    width: 65vw;
  }
  .menu-highlights-textbox h1{
    font-size: 7vw;
  }
  .line-high{
    width: 42vw;
  }
  .menu-highlights-textbox p{
    font-size: 2.5vw;
  }
  .menu-sep-el{
    padding: 1.4rem 1rem;
  }
  .sep-el-pic img{
    width: 24vw;
  }
  .menu-sep-el h2{
    font-size: 3vw;
  }
  .menu-sep-el p{
    font-size: 2.3vw;
  }
}

.more-items-head{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 6rem;
}

.more-items-head h1{
  font-family: 'Playfair Display', sans-serif;
  color: var(--dark-black);
  font-size: 3.2vw;
}

.line-items{
  background: var(--dark-yellow);
  height: 3px;
  width: 17vw;
  margin-top: 1.5rem;
}

.more-items-con{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3rem 6rem;
}

.more-item-pic img{
  display: block;
  height: auto;
  width: 27vw;
  border-radius: 1rem;
}

@media (min-width: 800px) and (max-width: 1024px){
  .more-items-head{
    padding-right: 4rem;
  }
  .more-items-head h1{
    font-size: 3.8vw;
  }
  .line-items{
    width: 20vw;
  }
  .more-items-con{
    padding: 3rem 4rem;
  }
  .more-item-pic img{
    width: 30vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .more-items-head{
    align-items: center;
    padding-right: 0;
    text-align: center;
  }
  .more-items-head h1{
    font-size: 5vw;
  }
  .line-items{
    width: 25vw;
  }
  .more-items-con{
    padding: 3rem 6rem;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
  .more-item-pic img{
    height: 29vw;
    width: 47vw;
    border-radius: 1rem;
    object-fit: cover;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .more-items-head{
    align-items: center;
    padding-right: 0;
    text-align: center;
  }
  .more-items-head h1{
    font-size: 6vw;
  }
  .line-items{
    width: 29vw;
  }
  .more-items-con{
    padding: 3rem 4rem;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
  .more-item-pic img{
    height: 35vw;
    width: 57vw;
    border-radius: 1rem;
    object-fit: cover;
  }
}

@media (max-width: 450px){
  .more-items-head{
    align-items: center;
    padding-right: 0;
    text-align: center;
  }
  .more-items-head h1{
    font-size: 7vw;
  }
  .line-items{
    width: 34vw;
  }
  .more-items-con{
    padding: 3rem 2.7rem;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
  .more-item-pic img{
    height: 45vw;
    width: 64vw;
    border-radius: 1rem;
    object-fit: cover;
  }
}

.signature-swiper{
  width: 47%;
  padding: 8rem 0 6rem 0 !important;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper{
  align-items: stretch !important;
}

.signature-swiper .swiper-slide{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--dark-brown);
  position: relative;
  border-radius: 2rem;
  overflow: visible;
}

.signature-pic{
  z-index: 2;
  position: relative;
}

.signature-pic img{
  display: block;
  height: auto;
  width: 53vw;
  max-width: 100%;
  margin-top: -5rem;
}

.signature-textbox{
  margin: 1rem 4rem 3rem 4rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
}

.signature-textbox h2{
  font-size: 1.6vw;
}

.signature-textbox p{
  font-size: 1.1vw;
}

.signature-swiper .swiper-button-prev,
.signature-swiper .swiper-button-next {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50% !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent !important;
}

.signature-swiper .swiper-button-prev {
  background-image: url('foodtruck-arrow-left.png');
}

.signature-swiper .swiper-button-next {
  background-image: url('foodtruck-arrow-right.png');
}

@media (min-width: 700px) and (max-width: 1024px){
  .signature-swiper{
    width: 62%;
  }
  .signature-textbox h2{
    font-size: 2vw;
  }
  .signature-textbox p{
    font-size: 1.4vw;
  }
  .signature-pic img{
    width: 61vw;
  }
  .signature-swiper .swiper-button-prev,
  .signature-swiper .swiper-button-next{
    width: 45px !important;
    height: 45px !important;
  }
}

@media (min-width: 500px) and (max-width: 700px){
  .signature-swiper{
    width: 76%;
  }
  .signature-textbox h2{
    font-size: 2.7vw;
  }
  .signature-textbox p{
    font-size: 1.9vw;
  }
  .signature-pic img{
    width: 76vw;
  }
  .signature-swiper .swiper-button-prev,
  .signature-swiper .swiper-button-next{
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 500px){
  .signature-swiper{
    width: 81%;
  }
  .signature-textbox{
    margin: 1rem 3rem 2rem 3rem;
  }
  .signature-textbox h2{
    font-size: 3.4vw;
  }
  .signature-textbox p{
    font-size: 2.3vw;
  }
  .signature-pic img{
    width: 81vw;
  }
  .signature-swiper .swiper-button-prev,
  .signature-swiper .swiper-button-next{
    width: 37px !important;
    height: 37px !important;
  }
}

.full-menu-button{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 4rem;
}

.full-menu-button button{
    background: transparent;
    border: 2px solid var(--dark-yellow);
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    color: var(--dark-black);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1vw;
    cursor: pointer;
    transition: .3s;
  }

  .full-menu-button button:hover{
    background: var(--dark-yellow);
  }

  .full-menu-button p{
    font-family: 'Poppins', sans-serif;
    color: var(--dark-black);
    font-size: 1.1vw;
  }

  @media (min-width: 800px) and (max-width: 1024px){
    .full-menu-button button{
      font-size: 1.3vw;
    }
    .full-menu-button p{
      font-size: 1.3vw;
    }
  }

  @media (min-width: 600px) and (max-width: 800px){
    .full-menu-button button{
      font-size: 1.6vw;
    }
    .full-menu-button p{
      font-size: 1.6vw;
    }
  }
  
  @media (min-width: 500px) and (max-width: 600px){
    .full-menu-button button{
      font-size: 2vw;
    }
    .full-menu-button p{
      font-size: 2vw;
    }
  }
  
  @media (max-width: 500px){
    .full-menu-button button{
      font-size: 2.5vw;
    }
    .full-menu-button p{
      font-size: 2.5vw;
    }
  }
  
.culinary-sec{
  background: var(--bright-gray);
}

.culinary-con{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
}

.culinary-el{
    display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.culinary-pic img{
  display: block;
  height: auto;
  width: 30vw;
  border-radius: 1rem;
}

.culinary-textbox{
  flex-basis: 40%;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
}

.culinary-textbox h2{
  font-size: 1.5vw;
}

.culinary-textbox p{
  font-size: 1.1vw;
}

.row-r2{
  flex-direction: row-reverse;
  text-align: right;
}

@media (min-width: 800px) and (max-width: 1024px){
  .culinary-pic img{
    width: 34vw;
  }
  .culinary-textbox{
    flex-basis: 42%;
  }
  .culinary-textbox h2{
    font-size: 1.8vw;
  }
  .culinary-textbox p{
    font-size: 1.3vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .culinary-el{
    gap: 1.5rem;
  }
  .culinary-pic img{
    width: 37vw;
  }
  .culinary-textbox{
    flex-basis: 45%;
  }
  .culinary-textbox h2{
    font-size: 2.2vw;
  }
  .culinary-textbox p{
    font-size: 1.6vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .culinary-con{
    padding: 5rem 3rem;
  }
  .culinary-el{
    gap: 1.5rem;
    text-align: center;
    flex-direction: column;
  }
  .row-r2{
    flex-direction: column;
  }
  .culinary-pic img{
    width: 47vw;
  }
  .culinary-textbox h2{
    font-size: 2.7vw;
  }
  .culinary-textbox p{
    font-size: 2vw;
  }
}

@media (max-width: 450px){
  .culinary-el{
    gap: 1.5rem;
    text-align: center;
    flex-direction: column;
  }
  .row-r2{
    flex-direction: column;
  }
  .culinary-pic img{
    width: 54vw;
  }
  .culinary-textbox h2{
    font-size: 3.4vw;
  }
  .culinary-textbox p{
    font-size: 2.5vw;
  }
}

.whyusfd-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 5rem 2rem 7rem 2rem;
  gap: 2rem;
}

.whyusfd-el{
  flex-basis: 21%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  padding: 6rem 1.5rem 3rem 1.5rem;
  border-radius: 2rem;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease;
}

.why-bg-b{
  background: var(--dark-brown);
  color: var(--white);
}

.why-bg-y{
  background: var(--bright-yellow);
  color: var(--dark-black);
}

.whyusfd-el:hover {
  transform: translateY(-10px);
}

.whyusfd-el h2{
  font-size: 1.4vw;
}

.whyusfd-el p{
  margin-top: .5rem;
  font-size: 1.1vw;
}

.whyusfd-icon{
  height: 105px;
  width: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  bottom: 82%;
  left: 50%;
  transform: translateX(-50%);
}

.iconfd-1{
  background: var(--bright-yellow);
}

.iconfd-2{
  background: var(--dark-brown);
}

.iconfd-3{
  background: var(--bright-yellow);
}

.whyusfd-icon img{
  display: block;
  height: auto;
  width: 4.5vw;
  transition: transform 0.4s ease;
}

.whyusfd-icon img:hover {
  transform: rotate(30deg) scale(1.1);
}

@media (min-width: 800px) and (max-width: 1024px){
  .whyusfd-con{
    gap: 1.5rem;
  }
  .whyusfd-el{
    flex-basis: 23%;
    padding: 5rem 1.5rem 3rem 1.5rem;
  }
  .whyusfd-icon{
    height: 95px;
    width: 95px;
  }
  .whyusfd-icon img{
    width: 6vw;
  }
  .whyusfd-el h2{
    font-size: 1.6vw;
  }
  .whyusfd-el p{
    margin-top: .7rem;
    font-size: 1.3vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .whyusfd-con{
    padding: 7rem 5rem 7rem 5rem;
    gap: 5rem;
    flex-direction: column;
  }
  .whyusfd-el{
    padding: 4rem 1.5rem 3rem 1.5rem;
  }
  .whyusfd-icon{
    height: 95px;
    width: 95px;
  }
  .whyusfd-icon img{
    width: 8vw;
  }
  .whyusfd-el h2{
    font-size: 2vw;
    margin-top: 1rem;
  }
  .whyusfd-el p{
    margin-top: .5rem;
    font-size: 1.7vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .whyusfd-con{
    padding: 7rem 5rem 7rem 5rem;
    gap: 6rem;
    flex-direction: column;
  }
  .whyusfd-el{
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
  .whyusfd-icon{
    height: 95px;
    width: 95px;
  }
  .whyusfd-icon img{
    width: 10vw;
  }
  .whyusfd-el h2{
    font-size: 2.5vw;
    margin-top: 1rem;
  }
  .whyusfd-el p{
    margin-top: .5rem;
    font-size: 2vw;
  }
}

@media (max-width: 450px){
  .whyusfd-con{
    padding: 7rem 3rem 7rem 3rem;
    gap: 5rem;
    flex-direction: column;
  }
  .whyusfd-el{
    padding: 2rem 1.5rem 2rem 1.5rem;
  }
  .whyusfd-icon{
    height: 75px;
    width: 75px;
  }
  .whyusfd-icon img{
    width: 11vw;
  }
  .whyusfd-el h2{
    font-size: 3.3vw;
    margin-top: 1rem;
  }
  .whyusfd-el p{
    margin-top: .5rem;
    font-size: 2.4vw;
  }
}

.fd-contact-sec{
  background-image: url(fd-contact-page-bg.jpg);
  background-size: cover;
  background-position: center;
}

.fd-contact-con{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 6rem 8rem;
}

.fd-contact-head h1{
  color: var(--dark-black);
  font-family: 'Playfair Display', sans-serif;
  font-size: 3.5vw;
}

.fd-contact-head h1 b{
  color: var(--dark-yellow);
}

.line-contact{
  background: var(--dark-yellow);
  height: 2px;
  width: 17vw;
  margin: 2rem 0;
}

.fd-contact-details{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
}

.fd-contact-details h2{
  font-size: 1.6vw;
}

.fd-contact-el{
  margin: 1rem 0;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon{
  background: var(--bright-yellow);
  padding: 1rem;
  border-radius: .3rem;
}

.fd-contact-i{
  font-size: 2vw;
}

.fd-contact-el h3{
  font-size: 1.3vw;
}

.fd-contact-el p{
  font-size: 1.1vw;
}

.fd-contact-btn{
  margin-top: 3.5rem;
}

.fd-contact-btn button{
  background: transparent;
  border: 2px solid var(--dark-yellow);
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  color: var(--dark-black);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1vw;
  cursor: pointer;
  transition: .3s;
}

.fd-contact-btn button:hover{
  background: var(--dark-yellow);
}

.fd-contact-pic img{
  display: block;
  height: auto;
  width: 18vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .fd-contact-con{
    padding: 6rem 5rem;
  }
  .fd-contact-head h1{
    font-size: 4.5vw;
  }
  .line-contact{
    width: 23vw;
  }
  .fd-contact-details h2{
    font-size: 2vw;
  }
  .fd-contact-i{
    font-size: 2.3vw;
  }
  .fd-contact-el h3{
    font-size: 1.5vw;
  }
  .fd-contact-el p{
    font-size: 1.3vw;
  }
  .fd-contact-btn button{
    font-size: 1.3vw;
  }
  .fd-contact-pic img{
    width: 23vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .fd-contact-con{
    padding: 6rem 3rem;
  }
  .fd-contact-head h1{
    font-size: 5.5vw;
  }
  .line-contact{
    width: 28vw;
  }
  .fd-contact-details h2{
    font-size: 2.5vw;
  }
  .fd-contact-el{
    gap: 1rem;
  }
  .fd-contact-i{
    font-size: 2.5vw;
  }
  .fd-contact-el h3{
    font-size: 1.8vw;
  }
  .fd-contact-el p{
    font-size: 1.6vw;
  }
  .fd-contact-btn button{
    font-size: 1.6vw;
  }
  .fd-contact-pic img{
    width: 28vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .fd-contact-sec{
    background-image: url(fd-contact-page-bg-small.jpg);
  }
  .fd-contact-con{
    padding: 6rem 3rem;
    flex-direction: column;
    gap: 3rem;
  }
  .fd-contact-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fd-contact-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fd-contact-head h1{
    font-size: 6.5vw;
    text-align: center;
  }
  .line-contact{
    width: 32vw;
  }
  .fd-contact-details h2{
    font-size: 3.1vw;
    text-align: center;
  }
  .fd-contact-i{
    font-size: 3vw;
  }
  .fd-contact-el h3{
    font-size: 2.3vw;
  }
  .fd-contact-el p{
    font-size: 2vw;
  }
  .fd-contact-btn{
    margin-top: 2.5rem;
  }
  .fd-contact-btn button{
    font-size: 2vw;
  }
  .fd-contact-pic img{
    width: 33vw;
  }
}

@media (max-width: 450px){
  .fd-contact-sec{
    background-image: url(fd-contact-page-bg-small.jpg);
  }
  .fd-contact-con{
    padding: 6rem 2rem;
    flex-direction: column;
    gap: 3rem;
  }
  .fd-contact-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fd-contact-head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fd-contact-head h1{
    font-size: 8vw;
    text-align: center;
  }
  .line-contact{
    width: 41vw;
  }
  .fd-contact-details h2{
    font-size: 3.8vw;
    text-align: center;
  }
  .fd-contact-i{
    font-size: 4vw;
  }
  .fd-contact-el h3{
    font-size: 3vw;
  }
  .fd-contact-el p{
    font-size: 2.7vw;
  }
  .fd-contact-btn{
    margin-top: 2.5rem;
  }
  .fd-contact-btn button{
    font-size: 2.7vw;
  }
  .fd-contact-pic img{
    width: 43vw;
  }
}

.hiring-head{
  padding: 5rem 6rem;
}

.hiring-head h1{
  color: var(--dark-black);
  font-family: 'Playfair Display', sans-serif;
  font-size: 3.4vw;
}

.hiring-head h1 b{
  color: var(--dark-red);
}

.line-hire{
  background: var(--dark-black);
  height: 2px;
  width: 24vw;
  margin: 1.5rem 0;
}

.hiring-head p{
  color: var(--dark-black);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1vw;
}

.hiring-form-con{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hiring-form{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 73vw;
}

.one-s-con{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hiring-form .form-input input, select{
  border: 3px solid var(--gray);
  padding: .7rem 1rem;
  border-radius: .7rem;
  display: block;
  width: 100%;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.hiring-form .form-input label{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
  font-size: 1vw;
}

.hiring-form select{
  color: #808080;
}

.hiring-form .form-input{
  position: relative;
  min-width: 47%;
  width: 100%;
}

.hiring-form .form-input input:focus {
    outline: 0;
    border-color: #777;
}

.hiring-form .form-input.success input{
    border: 2px solid var(--success-color);
}

.hiring-form .form-input.error input{
    border: 2px solid var(--error-color);
}

.hiring-form .form-input small {
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.hiring-form .form-input.error small {
    visibility: visible;
}

.hiring-form .form-input.error small{
    visibility: visible;
    color: #A52A2A;
    font-weight: 500;
}

.hiring-form-btn{
  margin: 2rem 0 5rem 0;
}

.hiring-form-btn button{
  background: transparent;
  border: 2px solid var(--red);
  padding: 1rem 4rem;
  border-radius: 2rem;
  color: var(--dark-black);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1vw;
  cursor: pointer;
  transition: .3s;
}

.hiring-form-btn button:hover{
  background: var(--red);
}

@media (min-width: 750px) and (max-width: 1024px){
  .hiring-head{
    padding: 5rem 5rem;
  }
  .hiring-head h1{
    font-size: 4.5vw;
  }
  .line-hire{
    width: 26vw;
  }
  .hiring-head p{
    font-size: 1.4vw;
  }
  .hiring-form{
    width: 78vw;
  }
  .hiring-form .form-input label{
    font-size: 1.3vw;
  }
  .hiring-form-btn button{
    font-size: 1.4vw;
  }
}

@media (min-width: 550px) and (max-width: 750px){
  .hiring-head{
    padding: 5rem 4rem;
  }
  .hiring-head h1{
    font-size: 6vw;
  }
  .line-hire{
    width: 29vw;
  }
  .hiring-head p{
    font-size: 1.9vw;
  }
  .hiring-form{
    width: 81vw;
  }
  .hiring-form .form-input label{
    font-size: 1.9vw;
  }
  .hiring-form-btn button{
    font-size: 1.9vw;
  }
}

@media (min-width: 400px) and (max-width: 550px){
  .hiring-head{
    padding: 5rem 2.5rem;
  }
  .hiring-head h1{
    font-size: 7.5vw;
  }
  .line-hire{
    width: 38vw;
  }
  .hiring-head p{
    font-size: 2.5vw;
  }
  .hiring-form{
    width: 81vw;
  }
  .one-s-con{
    flex-direction: column;
    gap: 1.5rem;
  }
  .hiring-form .form-input label{
    font-size: 2.5vw;
  }
  .hiring-form-btn button{
    font-size: 2.5vw;
  }
}

@media (max-width: 400px){
  .hiring-head{
    padding: 5rem 2rem;
  }
  .hiring-head h1{
    font-size: 8.5vw;
  }
  .line-hire{
    width: 41vw;
  }
  .hiring-head p{
    font-size: 3vw;
  }
  .hiring-form{
    width: 81vw;
  }
  .one-s-con{
    flex-direction: column;
    gap: 1.5rem;
  }
  .hiring-form .form-input label{
    font-size: 3vw;
  }
  .hiring-form-btn button{
    font-size: 3vw;
  }
}

.eventmanagement-con{
  padding: 5rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6rem;
}

.eventmanagement-sub-con1{
  flex-basis: 48%;
}

.eventmanagement-textbox h1{
  font-family: 'Playfair Display', sans-serif;
  color: var(--dark-black);
  font-size: 3vw;
}

.eventmanagement-textbox h1 b{
  color: var(--dark-red);
}

.line-event{
  background: var(--dark-black);
  height: 2px;
  width: 24vw;
  margin: 2rem 0;
}

.eventmanagement-textbox h2{
  font-family: 'Poppins';
  color: var(--dark-black);
  font-size: 1.5vw;
}

.eventmanagement-textbox p{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
  font-size: 1.1vw;
  margin-top: .7rem;
}

.eventm-long-pic{
  margin-top: 2rem;
}

.eventm-long-pic img{
  display: block;
  height: auto;
  width: 41vw;
  border-radius: 1rem;
}


.eventm-small-pic img{
  display: block;
  height: auto;
  width: 19vw;
  border-radius: 1rem;
}

@media (min-width: 800px) and (max-width: 1024px){
  .eventmanagement-con{
    padding: 5rem 3rem;
    gap: 5rem;
  }
  .eventmanagement-textbox h1{
    font-size: 4vw;
  }
  .line-event{
    width: 29vw;
  }
  .eventmanagement-textbox h2{
    font-size: 1.8vw;
  }
  .eventmanagement-textbox p{
    font-size: 1.3vw;
  }
  .eventm-long-pic img{
    width: 46vw;
  }
  .eventm-small-pic img{
    width: 23vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .eventmanagement-con{
    padding: 5rem 2rem;
    gap: 3rem;
  }
  .eventmanagement-textbox h1{
    font-size: 5vw;
  }
  .line-event{
    width: 33vw;
  }
  .eventmanagement-textbox h2{
    font-size: 2.1vw;
  }
  .eventmanagement-textbox p{
    font-size: 1.6vw;
  }
  .eventm-long-pic img{
    width: 49vw;
  }
  .eventm-small-pic img{
    width: 29vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .eventmanagement-con{
    padding: 5rem 3rem;
    gap: 3rem;
    flex-direction: column;
  }
  .eventmanagement-sub-con1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .eventmanagement-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .eventmanagement-textbox h1{
    font-size: 7vw;
  }
  .line-event{
    width: 52vw;
  }
  .eventmanagement-textbox h2{
    font-size: 2.8vw;
  }
  .eventmanagement-textbox p{
    font-size: 2vw;
  }
  .eventm-long-pic img{
    width: 76vw;
  }
  .eventm-small-pic img{
    width: 36vw;
  }
}

@media (max-width: 450px){
  .eventmanagement-con{
    padding: 5rem 1.5rem;
    gap: 3rem;
    flex-direction: column;
  }
  .eventmanagement-sub-con1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .eventmanagement-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .eventmanagement-textbox h1{
    font-size: 8vw;
  }
  .line-event{
    width: 57vw;
  }
  .eventmanagement-textbox h2{
    font-size: 3.4vw;
  }
  .eventmanagement-textbox p{
    font-size: 2.6vw;
  }
  .eventm-long-pic img{
    width: 80vw;
  }
  .eventm-small-pic img{
    width: 42vw;
  }
}

.eventm-solutions-sec{
  background: var(--bright-gray);
}

.eventm-sol-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  padding: 6rem 2rem
}

.eventm-sol-el{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.eventm-sol-pic img{
  display: block;
  height: auto;
  width: 20vw;
  border-radius: 1rem;
}

.eventm-sol-textbox{
  border-top: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  padding: 1.5rem 0;
  flex-basis: 55%;
}

.eventm-sol-textbox h2{
  font-family: 'Playfair Display', sans-serif;
  color: var(--red);
  font-size: 1.6vw;
}

.eventm-sol-textbox p{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
  font-size: 1.1vw;
  margin-top: .5rem;
}

.row-r3{
  flex-direction: row-reverse;
  text-align: right;
}

@media (min-width: 800px) and (max-width: 1024px){
  .eventm-sol-pic img{
    width: 25vw;
  }
  .eventm-sol-textbox h2{
    font-size: 2vw;
  }
  .eventm-sol-textbox p{
    font-size: 1.3vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .eventm-sol-pic img{
    width: 30vw;
  }
  .eventm-sol-textbox{
    flex-basis: 52%;
  }
  .eventm-sol-textbox h2{
    font-size: 2.4vw;
  }
  .eventm-sol-textbox p{
    font-size: 1.6vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .eventm-sol-con{
    padding: 6rem 4rem;
  }
  .eventm-sol-el{
    flex-direction: column;
  }
  .eventm-sol-pic img{
    width: 49vw;
  }
  .eventm-sol-textbox{
    text-align: center;
  }
  .eventm-sol-textbox h2{
    font-size: 3.3vw;
  }
  .eventm-sol-textbox p{
    font-size: 2.1vw;
  }
}

@media (max-width: 450px){
  .eventm-sol-con{
    padding: 6rem 2rem;
  }
  .eventm-sol-el{
    flex-direction: column;
  }
  .eventm-sol-pic img{
    width: 58vw;
  }
  .eventm-sol-textbox{
    text-align: center;
  }
  .eventm-sol-textbox h2{
    font-size: 4vw;
  }
  .eventm-sol-textbox p{
    font-size: 2.6vw;
  }
}

.achievements-sec{
  background-image: url(event-stats-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.achievements-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  padding: 6rem 3rem;
}

.achievements-el{
  flex-basis: 21%;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.achievements-el:hover {
  transform: translateY(-10px);
}

.achievements-el h1{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-yellow);
  font-size: 3.5vw;
  margin-top: .5rem;
}

.achievements-el p{
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
  font-size: 1.1vw;
}

.achievements-icon{
  display: flex;
  justify-content: end;
  align-items: center;
}

.achievements-icon img{
  display: block;
  height: auto;
  width: 6vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .achievements-con{
    gap: 1.5rem;
    padding: 6rem 1.5rem;
  }
  .achievements-el{
    flex-basis: 19%;
  }
  .achievements-icon img{
    width: 8vw;
  }
  .achievements-el h1{
    font-size: 4.5vw;
  }
  .achievements-el p{
    font-size: 1.3vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .achievements-con{
    gap: 1rem;
    padding: 6rem 1.5rem;
  }
  .achievements-el{
    flex-basis: 21%;
  }
  .achievements-icon img{
    width: 9vw;
  }
  .achievements-el h1{
    font-size: 5.5vw;
  }
  .achievements-el p{
    font-size: 1.6vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .achievements-con{
    gap: 1rem;
    padding: 6rem 1.5rem;
  }
  .achievements-el{
    flex-basis: 28%;
  }
  .achievements-icon img{
    width: 12vw;
  }
  .achievements-el h1{
    font-size: 7vw;
  }
  .achievements-el p{
    font-size: 2vw;
  }
}

@media (max-width: 450px){
  .achievements-con{
    gap: 1.5rem;
    padding: 6rem 3rem;
    flex-direction: column;
  }
  .achievements-icon img{
    width: 17vw;
  }
  .achievements-el h1{
    font-size: 10vw;
  }
  .achievements-el p{
    font-size: 3vw;
  }
}

.contact-form{
  display: flex;
  flex-direction: column;
  width: 30vw;
  gap: 1.6rem;
  padding: 2rem 2rem;
  background-color: var(--dark-brown);
  border-radius: 1rem;
  backdrop-filter: blur(12px); 
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
}

.contact-form .form-input label{
  font-family: 'Poppins', sans-serif;
  color: var(--light-gray);
  font-size: 1.1vw;
  margin-left: .5rem;
}

.contact-form  .form-input input{
  border: 3px solid var(--gray);
  padding: .7rem 1rem;
  border-radius: .7rem;
  display: block;
  width: 100%;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  background: var(--light-gray);
  margin: .5rem 0;
}

.contact-form textarea{
  height: 8rem;
  border: 3px solid var(--gray);
  padding: .7rem 1rem;
  border-radius: .7rem;
  display: block;
  width: 100%;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  background: var(--light-gray);
  margin: .5rem 0;
}

.form-input{
    position: relative;
}

.form-input input:focus {
    outline: 0;
    border-color: #777;
}

.form-input.success input{
    border: 2px solid var(--success-color);
}

.form-input.error input{
    border: 2px solid var(--error-color);
}

.form-input textarea:focus {
    outline: 0;
    border-color: #777;
}

.form-input.success textarea{
    border: 2px solid var(--success-color);
}

.form-input.error textarea{
    border: 2px solid var(--error-color);
}

.form-input small {
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.form-input.error small {
    visibility: visible;
}

.form-input.error small{
    visibility: visible;
    color: #A52A2A;
    font-weight: 500;
}

.contact-form-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.contact-form-btn button{
  background: transparent;
  border: 2px solid var(--light-gray);
  padding: 1rem 4rem;
  border-radius: 2rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1vw;
  cursor: pointer;
  transition: .3s;
}

.contact-form-btn button:hover{
  background: var(--light-gray);
  color: var(--dark-black);
}

.contact-sep-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 5rem 2rem;
}

.contact-sep-textbox{
  flex-basis: 40%;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-black);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-sep-textbox p{
  font-size: 1.1vw;
}

.line-text-c{
  background: var(--dark-red);
  height: 2px;
  width: 22vw;
  margin: 2rem;
}

.contact-info-con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 2rem 0;
}

.contact-info-el{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-basis: 46%;
}

.contact-info-icon img{
  display: block;
  height: auto;
  width: 5vw;
}

.contact-info-el p a{
  text-decoration: none;
  color: var(--dark-black);
  font-size: 1.1vw;
}

@media (min-width: 800px) and (max-width: 1024px){
  .contact-form{
    width: 33vw;
  }
  .contact-form .form-input label{
    font-size: 1.4vw;
  }
  .contact-sep-textbox p{
    font-size: 1.4vw;
  }
  .line-text-c{
    width: 29vw;
  }
  .contact-info-con{
    gap: 2rem 1rem;
  }
  .contact-info-el{
    flex-basis: 42%;
  }
  .contact-info-icon img{
    width: 7vw;
  }
  .contact-info-el p a{
    font-size: 1.4vw;
  }
  .contact-form-btn button{
    font-size: 1.4vw;
  }
}

@media (min-width: 600px) and (max-width: 800px){
  .contact-sep-con{
    gap: 4rem;
    padding: 5rem 5rem;
    flex-direction: column;
  }
  .contact-form{
    width: 57vw;
  }
  .contact-form .form-input label{
    font-size: 1.9vw;
  }
  .contact-sep-textbox p{
    font-size: 1.9vw;
  }
  .line-text-c{
    width: 53vw;
  }
  .contact-info-con{
    gap: 2rem 1rem;
  }
  .contact-info-el{
    flex-basis: 45%;
  }
  .contact-info-icon img{
    width: 10vw;
  }
  .contact-info-el p a{
    font-size: 1.9vw;
  }
  .contact-form-btn button{
    font-size: 1.9vw;
  }
}

@media (min-width: 450px) and (max-width: 600px){
  .contact-sep-con{
    gap: 4rem;
    padding: 5rem 3rem;
    flex-direction: column;
  }
  .contact-form{
    width: 61vw;
  }
  .contact-form .form-input label{
    font-size: 2.3vw;
  }
  .contact-sep-textbox p{
    font-size: 2.3vw;
  }
  .line-text-c{
    width: 55vw;
  }
  .contact-info-con{
    gap: 2rem 1rem;
  }
  .contact-info-el{
    flex-basis: 45%;
  }
  .contact-info-icon img{
    width: 12vw;
  }
  .contact-info-el p a{
    font-size: 2.3vw;
  }
  .contact-form-btn button{
    font-size: 2.3vw;
  }
}

@media (max-width: 450px){
  .contact-sep-con{
    gap: 4rem;
    padding: 5rem 1rem;
    flex-direction: column;
  }
  .contact-form{
    width: 68vw;
    padding: 2rem 1.5rem;
  }
  .contact-form .form-input label{
    font-size: 2.8vw;
  }
  .contact-sep-textbox p{
    font-size: 2.8vw;
  }
  .line-text-c{
    width: 59vw;
  }
  .contact-info-con{
    gap: 2rem .5rem;
  }
  .contact-info-el{
    flex-basis: 45%;
  }
  .contact-info-icon img{
    width: 14vw;
  }
  .contact-info-el p a{
    font-size: 2.8vw;
  }
  .contact-form-btn button{
    font-size: 2.8vw;
  }
}