 main {
     font-family: Poppins, sans-serif;
     background-color: black;
     overflow: hidden;
 }


 section.first {
     background-image: linear-gradient(to bottom, #000000, #000000, #0c5449);
     height: 45vh;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 section.first div.first-main h1 {
     font-size: 40px;
 }

 .benefit-card {
     background-color: #1d3c4a;
     border: 1px solid #2a5266;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     color: black;
 }

 .benefit-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
     background-color: #0c5449;
     color: white;
 }

 .card-box {
     max-width: 1600px !important;
 }

 .card_section {
     background-color: whitesmoke;
     color: black;
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .card_section:hover {
     color: white;
     background-color: #0c5449;
     transform: translateY(-5px);
 }

 .card-box-second {
     max-width: 1609px !important;
 }

 /* ///////////////////////// */
 .star_size {
     font-size: 22px;
 }

 .swiper-horizontal {
     touch-action: pan-y;
     max-width: 1442px !important;
 }

 .grid-box {
     background: black;
     color: white;
     border-radius: 18px;
     padding-right: 2rem !important;
     padding-left: 2rem !important;
 }

 .grid-box:hover {
     background: white;
     color: black;
 }


 .swiper-button-prev,
 .swiper-button-next {
     left: auto;
     background: royalblue;
     padding: 22px 22px !important;
     border-radius: 50%;
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
     font-size: 22px;
     font-weight: 700 !important;
     color: white;
 }

 @media screen and (max-width: 600px) {
     .swiper-horizontal {
         touch-action: pan-y;
         max-width: 400px !important;
     }
 }

 @media screen and (max-width: 450px) {
     .swiper-horizontal {
         touch-action: pan-y;
         max-width: 349px !important;
     }
 }

 /* /////////////////// */

 .faq-item {
     color: #fff;
     border-radius: 5px;
     overflow: hidden;
     transition: 0.3s;
     background: white;
     color: black;
     cursor: pointer;
 }

 .faq-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease;
 }

 .faq-item.active .faq-content {
     max-height: 380px;
 }

 .icon {
     transition: transform 0.4s ease;
     display: inline-block;
 }

 .faq-item.active .icon {
     transform: rotate(45deg);
 }

 @media (max-width: 768px) {
     .faq-item h5 {
         font-size: 1rem;
     }

     .icon {
         font-size: 1.5rem;
     }
 }