:root { 
    --background-color: #ffffff; 
    --default-color: #364d59; 
    --heading-color: #2e2e2e; 
    --accent-color: #324a90; 
    --surface-color: #ffffff; 
    --contrast-color: #f79321;
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}    

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 87px;
    overflow: clip;
}
/*--------------------------------------------------------------
#Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: #f7f7f7;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 36px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: #fff;
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
  }
  
  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

  /*--------------------------------------------------------------
  #  Menu
  --------------------------------------------------------------*/
  /*  - Desktop */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 14px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: #ed502e;
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* menu - Mobile */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  
  #about, #about2 {
  background-color: #f5f6f6;
  background-image: url(assets/img/section-vector1.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
#about2{
  background-color: transparent;
}
  #about p, #about2 p {
    color: var(--text-color);
    font-family: var(--font-jost);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .51px;
}
.action-btn,.action-btn2 {
  border-radius: 5px;
  background-color: var(--accent-color);
  font-size: 16px;
  color: #fff;
  letter-spacing: .48px;
  text-transform: capitalize;
  line-height: 1;
  padding: 16px 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.action-btn2 {
  
  padding: 11px 16px;
}
.action-btn:hover::after,.action-btn2:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.action-btn::after, .action-btn2::after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 2px;
  background-color: var(--contrast-color);
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all .5s ease-out 0s;
}
.action-btn:hover {
  color: #fff;
}
.destination-card {
  position: relative;
  transition: .5s;
}
.destination-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 12, 8, .4);
  border-radius: 10px;
}
.destination-card .card-title {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 1;
  width: 100%;
  transition: .5s;
}
.destination-card img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}
.destination-card .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.4);
  text-align: center;
  opacity: 0;
  transition: all .5s ease-out;
}
.destination-card .card-title h4 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .54px;
  margin-bottom: 0;
}
.destination-card .content h4 {
  margin-bottom: 20px;font-weight: 800;
  line-height: 1.4;
}
.destination-card .content h4 a{
color: #fff;
}
.destination-card:hover .card-title {
  opacity: 0;
}
.destination-card:hover .content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.destination-card .content h4 a:hover {
  color: var(--accent-color);
}


.destination-banner {
  background-image: url(./assets/img/destination-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  height: 100%;
}
.destination-banner h2 {
  color: #100c08;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 35px;
}
.destination-banner .batch {
  background-color: var(--contrast-color);
  padding: 7px 29px;
  white-space: nowrap;
  display: inline-flex;
  color: #fff;
  margin-bottom: 12px;
}
.packages {
  background-image: url(./assets/img/tour-pack-section-bg.png), linear-gradient(180deg, #1d231f 0%, #1d231f 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.packages-content{
  border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}
.packages-info{
  padding: 25px;
}
.packages-info h4{
  margin-bottom: 15px;
}
  .packages-info a{
  color: #100c08;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    transition: .5s;
  }
  .packages-info a:hover{
    color: var(--accent-color);}
    .feature-list {
      display: flex;
      align-items: center;
      gap: 30px;    margin: 0;
      padding: 0;
      list-style: none;
      line-height: 1;
  }
  .feature-list li {
    color: rgba(16, 12, 8, .5);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
}
.packages-info-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 25px;
  border-top: 1px solid rgba(34, 34, 34, .2);
}
.price-area .title {
  color: #100c08;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .26px;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 5px;
}
.price-area h6 {
  color: #63ab45;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  margin-bottom: 0;
}
.price-area h6 del {
  color: rgba(16, 12, 8, .5);
  font-size: 16px;
  font-weight: 500;
}
.price-area span {
  color: var(--title-color);
  font-family: var(--font-rubik);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .22px;
  text-transform: capitalize;
}
.action-btn2 svg {
  fill: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #334a8e;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, #fff, transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #fff, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #fff, transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer a {
  color: color-mix(in srgb, #ffffff, transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer a:hover {
  color: var(--contrast-color) !important;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, #fff, transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Testimonials 
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

.section-title2 h2 {
  color: #100c08;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: 
color-mix(in srgb, #444444, transparent 50%);
  position: relative;
}
.section-title {
  padding-bottom: 60px;
  position: relative;
  text-align: center;
}
.section-title h2 {
  text-align: center;
}
.section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
.section-title div {
  color: #0b2341;
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: #0b2341;
  color: #100c08;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
}
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3) 101.02%), url(assets/img/page-title-bg.png);
}

.page-title h1 {
  font-size: 56px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 10px;
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title a {
  color: #fff;
}
.page-title .current {
  color: #fff;
  font-weight: 800;
  text-transform: capitalize;
}
.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: 
color-mix(in srgb, #fff, transparent 20%);
}
.text-left{
  text-align: left !important;
}
.facility-card {
  background-color: #454dab1a;
  border-radius: 10px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: .5s;
}
.facility-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}
.facility-card .content h6 {
  color: #100c08;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: .34px;
  text-transform: capitalize;
  margin-bottom: 0;
  transition: .5s;
}
.stats-item span{
  display: flex;
    align-items: center;
    font-weight: 800;
    line-height: 1;
    color: #100c08;
    margin-bottom: 4px;font-size: 30px;
    line-height: 1;
}
.stats-item p {
  margin-bottom: 0;
  color: #787878;
  line-height: 22px;
  font-size: 16px;
  font-weight: 400;
}
.gap-20{
  gap:20px
}
.stats .divider {
  position: relative;
}
.stats .divider::after {
  content: "";
  height: 41px;
  width: 1px;
  background-color: rgba(19, 20, 26, .16);
  position: absolute;
  right: 0;
  top: 50%;
  left: unset;
  transform: translateY(-50%);
}
.franctional-slider-section {
  overflow: hidden;
  position: relative;
}
.franctional-slider-section .rating-wrapper {
  background-image: url(assets/img/rating-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  border-radius: 20px;
  z-index: 99;
}
#about2 ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-wrap: wrap;
  padding-bottom: 55px;
}
#about2 ul li{
    color: #100c08;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .51px;
}
#about2 li::marker {
  color: var(--accent-color);
}
.bg-light{
  background-color: #f9f4f0 !important
}
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3, .contact form h3 {
  font-size: 20px;
  color: #100c08;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  font-size: 30px;
    margin-bottom: 20px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: #454dab1a;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-radius: 10px;
    padding: 60px 70px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.contact .single-contact {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  width: 80% !important;
}
.content h6 a {
    color: #100c08;
    font-size: 14px;
    font-weight: 400;
    padding-top: 10px;
    transition: .35s;
    line-height: 23px;
}
.single-contact .title {
  line-height: 1;
  background-color: #fff;
  position: absolute;
  left: 35px;
  top: -10px;
  padding: 0 20px;
}
.single-contact .icon {
  height: 44px;
  min-width: 44px;
  max-width: 44px;
  border-radius: 50px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-contact .title h6{
  color:#787878; font-size: 14px;
}
.single-contact .icon svg {
  fill: #fff;
}.mb-40 {
  margin-bottom: 40px !important;
}
#packages2 .portfolio-item{
  margin-bottom: 30px !important;
}
.includes-notes{
  width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #c3c3c3b0 0%, rgba(166, 166, 166, 0) 100%);
    border-radius: 100%;
    padding: 5px 0;
}
.includes{
  font-size: 10px;
  color: #212121;
  text-align: center;
  display: block;
  white-space: nowrap;
  line-height: 13px;
}
.gap-30{
  gap:30px
}
.accordion-item{
  position: relative !important;
  padding-left: 30px;
  border: 0;
}
.accordion-item:before {
  position: absolute;
  display: inline-block;
  left: -16px;
  top: 0px;
  content: "";
  width: 15px;
  height: 20px;
  background: url(assets/img/pin.svg) no-repeat center;
  background-size: contain;
  z-index: 2;
}
.accordion-item:after {
  position: absolute;
    display: inline-block;
    top: 3px;
    left: -10px;
    content: "";
    width: 2px;
    height: 100%;
    border: 1px dashed #dedede;
    z-index: 1;
}
.accordion-header small{
  font-size: 12px;
}
.accordion-header strong{
  font-weight: 500;
}
.accordion-body{
  padding-left: 0;
  padding-right: 0;
}
.hidden{
    display: none !important;
}