*{
    margin: 0;
    padding: 0;
}
.html{
    margin: 0;
    padding: 0;
}
body{
    font-family: Aeonik,Helvetica,sans-serif;
}

.d-none{
  display: none;
}


/* Style for the navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 4%;
    z-index: 999;
    transition: background-color 0.3s ease-in-out; /* Add the transition property */
}

.navbar .animate {
  background-color: #ffffff;
}


/* Style for the hamburger icon */
.hamburger {
    display: none;
    cursor: pointer;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    order: 2;
    justify-self: flex-end;
    /* z-index: 10; */
}

/* Style for the hamburger stripes */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin-bottom: 5px;
    position: relative;
    border-radius: 2px;
    z-index: 1;
    transform-origin: 0 0;
    transition: all 0.5s cubic-bezier(0.75, 0, 0.125, 1);
}

/* Style for the navigation menu */
nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 2;
    order: 2;
    justify-content: flex-end;
    align-items: center;
    
}

nav li {
    margin: 0 4px;
    margin-top: 8px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

nav a:hover {
    color: #cf2e2e;
}


nav .logo-outer{
    height: 60px;
}

nav .logo-outer img{
    height: 60px;
}



/* =============== home section ============== */
.home {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
.home-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 1;
  height: 100vh !important;
  transition: background-image 1s ease-in-out;
}
  
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
  
.content {
  text-align: center;
  color: #fff;
}
  

  
p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
  
  .button {
    cursor: pointer;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    border-radius: 100px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
  }
  .button a{
    display: block;
    margin-top: 4px;
    color: rgb(0, 0, 0);
    text-decoration: none;
  }

  

  .home .main-heading{
    font-family: Aeonik,Helvetica,sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2em;
    margin: 0 0 44px;
    padding: 0;
    text-align: center;
    color: white;
    width: 80%;
      margin-left: auto;
      margin-right: auto;
  }





  /* ============ footer ================ */
  footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    min-height: 200px;
  }
  
  .footer-container {
    max-width: 1200px;
    padding: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .footer-first-outer{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: .5;
    
  }
  .footer-second-outer{
    flex: 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }
  
  .footer-logo {
    height: 100px;
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    max-width: 100%;
  }
  
  .social-icons {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0;
    font-size: 30px;
    width: 100%;
  }
  
  .social-icons a {
    color: #fff;
    margin: 0 12px;
  }
  
  .footer-links {
    display: flex;
  }
  
  .footer-column {
    margin-right: 50px;

  }

  
  .footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 5px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-family: Aeonik,Helvetica,sans-serif;
    font-size: 14px;
  }
  .footer-column:nth-child(1) ul li:nth-child(1){
    margin-bottom: 0;
  }

  .footer-column:nth-child(1) ul li:nth-child(1) a{
    color: #c1c1c1;
  }

  .footer-column ul li{
    margin-bottom: 24px;
  }
  

/* Media query for mobile devices */
@media screen and (max-width: 850px) {

    nav{
        padding: 0px 2%;
        background-color: transparent;
        transition: background-color 0.3s ease-in-out;
    }
   
    /* Style for the navigation menu on mobile devices */
    nav ul {
      position: fixed;
      top: 0px;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: #fff;
      z-index: -2;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding-top: 80px;
      padding-left: 10px;
    }
  
    /* Style for the navigation menu links on mobile devices */
    nav ul li {
      margin: 10px;
    }

    nav ul li a{
        color: rgb(0, 0, 0);
    }
  
    /* Style for the active navigation menu on mobile devices */
    nav ul.active {
      transform: translateX(0%);
    }
  
    /* Style for the hamburger icon on mobile devices */
    .hamburger {
        margin-right: 20px;
        display: block;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(4px, -1px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(-1px, 4px);
        /* rotate(45deg) translate(4px, 1px); */
    }




    /* ============== home page =================== */
    .home .main-heading{
      font-size: 48px;
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }







    /* =========== footer =========== */
    .footer-container {
      flex-direction: column;
    }
    .footer-first-outer{
      width: 60%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px;
    }
    .footer-second-outer{
      justify-content: space-around;
      width: 100%;
    }
  }

  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-links {
      margin-top: 20px;
    }
  
    .footer-column {
      margin-right: 0;
      margin-bottom: 20px;
      text-align: center;
    }
  }


  @media (width < 550px){
    .home .main-heading{
      font-size: 44px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
    .home-buttons-outer{
      display: flex;
      flex-direction: column;
    }


    /* ========= footer =========== */
    .footer-first-outer{
      width: 80%;
    }
    .footer-second-outer{
      flex-direction: column;
    }
  }