@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{  margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Bricolage Grotesque", serif;


  
  }
  
  body {
    font-family: "Bricolage Grotesque", serif;
    background-color: #f2f4f6;
  }

  /* h1,h2,h3,h4,h5,h6{
    font-family: "Playfair Display", serif;

  } */
header{
    background-color: #662c91;
    color: #fff;
    padding: 0 8%;
    padding-block: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



  
 

  
  /* Navbar */
  .navbar_all {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0 8%;  padding: 0 8%;
    position: sticky;
    top: 0;
    z-index: 500;
    width: 100%;
  
  }
  
  .logo {
    height: 120px;
    width: 120px;
    background-image: url(../images/logo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .nav_links {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .nav_links a {
    color: #858585;
    font-weight: 500;
  }
  
  #mobile-button {
    display: none;
  }
  .dashed {
      border-top: 2px dashed #F2670C;
    }
    
  .mobile_links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .mobile_links.active {
    display: flex;
  }
  
  .nav_all {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
  }
  

  .mobile_links{
      top: 0;
      position: absolute;
  }
  .mobile_links a{
      display: flex;
      flex-direction: column;
  }
  
  .dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 250px;
    z-index: 7001;
  }
  
  .dropdown-content a {
    color: #858585;
    padding: 12px 16px;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #662c91;
    color: #fff;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
    
    .social_media {
      display: flex;
    
      gap: 15px;
    }
    .social_media a {
      color: #fff;
      font-size:20px;
    }
   /* Swiper */
   .swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
    .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
    padding: 20px;
    /* border-radius: 50%; */
    border-radius: 10px;
    background-color: #e61d31;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
    padding: 20px;
    /* border-radius: 50%; */
    border-radius: 10px;
    background-color: #e61d31;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  .swiper-pagination-bullet {
    width: var(
      --swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 23px)
    );
    height: var(
      --swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 10px)
    );
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 10%);
    background: var(--swiper-pagination-bullet-inactive-color, #6e3fb1);
    border: 2px solid;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 15px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-weight: 900;
  }
  

  
  .swiper-pagination-bullet {
      width: var(
        --swiper-pagination-bullet-width,
        var(--swiper-pagination-bullet-size, 23px)
      );
      height: var(
        --swiper-pagination-bullet-height,
        var(--swiper-pagination-bullet-size, 10px)
      );
      display: inline-block;
      border-radius: var(--swiper-pagination-bullet-border-radius, 10%);
      background: #F2670C;
      border: none;
      border-radius: 30px;
    }

    .forms_groups{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .forms {
      display: flex;
      flex-direction: column;
      margin-top: 25px;
    }
    
    .forms input,
    .forms select,
    .forms textarea {
      width: 100%;
      border: 1.5px solid #ddd;
      padding-left: 3%;
    }
    
    .forms input,
    .forms select {
      height: 35px;
    }
    
    .forms textarea {
      height:100px;
      padding-top: 20px;
    }
    
    .forms input:focus,
    .forms select:focus,
    .forms textarea:focus {
      outline: none;
    }
    
    .forms button {
      height: 45px;
      width: 100%;
      border: none;
      background-color: #F2670C;
      color: #fff;
    }
  
    
  
    .footer_all {
      padding: 0 3%;
      margin-top: 50px;
    
      background-color: #662c91;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      padding-block: 50px;
      color: #fff;
      --mask:
      radial-gradient(16.08px at 50% 17.6px,#000 99%,#0000 101%) calc(50% - 32px) 0/64px 100%,
      radial-gradient(16.08px at 50% -1.6px,#0000 99%,#000 101%) 50% 16px/64px 100% repeat-x;
    -webkit-mask: var(--mask);
            mask: var(--mask);
    }
    
    .social_media {
      display: flex;
    
      gap: 15px;
    }
    .social_media a {
      color: #fff;
      font-size: 20px;
    }
    .ft_tag {
      display: flex;
      flex-direction: column;
    }
    .ft_tag a {
      padding-top: 20px;
      color: #fff;
    }
    .ft_links h1{

      text-transform: uppercase;
    }
    .ft_tag a:hover {
      font-weight: 600;
    }
    
    .quick_links h4 {
      text-align: center;
      
    }

.hero{
  height: 350px;
  background-color: #662c9159;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/Frame-3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
 
        color: #fff;
        --mask:
        radial-gradient(29.07px at 50% calc(100% - 39px),#000 99%,#0000 101%) calc(50% - 52px) 0/104px 100%,
        radial-gradient(29.07px at 50% calc(100% + 13px),#0000 99%,#000 101%) 50% calc(100% - 26px)/104px 100% repeat-x;
      -webkit-mask: var(--mask);
              mask: var(--mask);
}

.hero h1{

  font-size: 55px;
  text-align: left;
  width: 100%;
  padding-left: 8%;
}

  
.blog_details{
  padding: 0 8%;
  padding-block: 50px;
}
.blog_details h1{
  margin-bottom: 25px;
}

.blog_details img{
  width:400px;
  height: auto;
  object-fit: contain;
}
 
.all{
  padding: 0 10%;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 10px;
  text-align: left;
}

th {
  background-color: #F2670C;
  color: white;
}
.whatsapp_link {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  align-items: center;
}

.whatsapp_link p {
  background-color: #fff;
  padding: 3px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 30px;
}

.fa-whatsapp {
  color: #fff;
  background-color: green;
  font-size: 40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

.whatsapp_link a {
  display: flex;
  justify-content: center;
}
.copyright{
  text-align: center;
  padding-block: 20px;
}
  
  /* Media Queries */
  @media only screen and (max-width: 1110px) {
      .footer_all {
          display: grid;
          grid-template-columns: 1fr 1fr;
        }

        .forms_groups{
          display: flex;
          flex-direction: column;
          gap: 0;
        }
     
  }
  
  @media only screen and (max-width: 1010px) {
    #mobile-button {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
      border: none;
      font-size: 22px;
      cursor: pointer;
    }
  
    #mobile-button i{
      color: #000 !important;
      font-weight: 700;
    }
  
    .nav_links {
      display: none;
    }
  
    .mobile_links {
      position: fixed;
      top: 160px;
      width: 0%;
      right: 0;
      background-color: #fff;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
      overflow-y: auto;
      padding: 15px 3%;
      transform: translateX(100%);
      transition: transform 0.8s ease-in-out;
      z-index: 999;
    }
  
    .mobile_links.active {
      transform: translateX(0);
      width: 100%;
     
    }
  
   
  
    .mobile_links a {
      padding-top: 15px;
      color: #000;
    
    }
  
    .dropdown{
      display: flex;
    gap: 20px
 
  
    }
   .dropdown a{
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
   }
  }

  @media only screen and (max-width: 710px) {
    .footer_all {
        display: grid;
        grid-template-columns: 1fr ;
      }

   
   
}