html {
    scroll-behavior: smooth;
}


a{
    text-decoration:none;
}
a:hover{
    text-decoration:none!important;
}
.swiper-slide.one{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../images/banner/banner-2.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
   
    position: relative;
}

.swiper-slide.two{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/banner-3.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;

    position: relative;
}
.swiper-slide.three{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../images/banner/about-1.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;

    position: relative;
}
.swiper-slide{
    transition: background-size 0.5s ease;
    transform: scale(1.1);
}
.swiper-slide.four{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../images/banner/banner-new.avif);
    height: 100vh;
    width: 100%;
    background-size: cover;

    position: relative;
}
.main_wrapper{
    position: relative;
}

.main_wrapper .call-btn{
    position: absolute;
    bottom:50px;
    left: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
}
.main_wrapper .call-btn span{
    color: #fff;
}
.main_wrapper .call-btn a{
    color: #fff;
}


.main_wrapper .social_links{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main_wrapper .social_links a{
    color: #fff;
    font-size: 20px;
}

.main_wrapper .slider_content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


.main_wrapper .slider_content h1 {
    font-size: 9vw; /* Responsive font size */
    line-height: 1.2;
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    margin: 26rem 0 20px;
    font-family: "Tangerine", cursive;
    letter-spacing: 1px;
}

/* Adjustments for larger screens */
@media (min-width: 768px) {
    .main_wrapper .slider_content h1 {
        font-size: 6vw; /* Slightly smaller on tablets */
        margin: 20rem 0 20px;
    }
}

@media (min-width: 1024px) {
    .main_wrapper .slider_content h1 {
        font-size: 4vw; /* Smaller font size on larger screens */
        margin: 16rem 0 20px;
    }
}

/* Adjustments for smaller screens */
@media (max-width: 480px) {
    .main_wrapper .slider_content h1 {
        font-size: 10vw; /* Larger on small screens */
        margin: 12rem 0 20px;
    }
}


.slider_content .btns{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
/* .slider_content .main-btn{
    padding: 8px 20px !important;
    width: fit-content;
} */
.slider_content .play_btn{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 100;
}
.slider_content .play_btn img{
    width: 50px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--second-color);
    width: 1px;
    height: 1px;
    border: 1px solid #fff;
    padding: 3px;
}

footer {
    background:linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, .1), rgba(0, 0, 0, 0.1)),url(../images/background/bg-1.png);
    background-size: cover;
    padding: 30px 0;
}

footer .booking_logos{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 0px 0 50px;
    border-bottom: 0.5px solid #f2eee938;
}
footer .booking_logos img{
    width: 150px;
}

footer .footer_container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 50px;
    padding: 30px 0;
    color: #fff;
}

footer .footer_logo{
    width: 50%;
    margin-bottom: 20px;
}
footer .footer_title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color:#BE355D;
    font-family: "Rufina", serif;
}

footer .contact-details p{
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 100;
}
footer .contact-details h2 {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 100;
}
footer a{
    color: #BE355D;
    transition: all .3s;
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 500;
    text-align:justify;
}
footer a:hover{
    color: var(--green-color);
}
footer ul li{
    margin-top: 10px;
}

footer .social_links{
    display: flex;
    gap: 25px;
}
footer .social_links a{
    font-size: 25px;
}
footer p{
    text-align:start;
    color:#BE355D;
}





.open-button {
    background-color: #25D366;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 50px;
    right: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    border-radius: 50px;
    transition: all .4s;
}
.open-button:hover{
    color: #fff;
}

.open-button i {
    font-size: 30px;
}

.open-button:hover i {
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  background: #BE355DCC;
  border-radius: 100%;
  padding: 20px;
  width: 0.5em;
  height: 0.5em;
 
}
.swiper-button-prev:after,
.swiper-button-next::after {

   color:#fff;
  font-size:18px!important;
}
.two_section{
    background:url(../images/background/bg-2.jpg);
 
    width: 100%;
    background-size: cover;
    position: relative;
    padding:70px;
}
.section_content{
    max-width:60%;
}

.two_section .container{
    max-width: 1024px !important;
    margin: auto;
    
}

.two_section .grid_row{
   
    align-items: center;
}


.two_section h6{
    color: #fff;
    letter-spacing: 2px;
    font-weight: 100;
}
.two_section h2{
  font-family: "Rufina", serif;
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}
.two_section p{
    max-width: 100%;
    font-size: 14px;
    text-align:justify;
    color: #fff;
    font-weight:300!important;
    font-family:"Inter", sans-serif;
    
}
.two_section .main-btn{
    background-color:#852a42;
    color: #fff !important;
    padding: 10px 20px !important;
    width: fit-content;
}



.category_section {
    padding: 70px 0;
    background: url(../images/background/bg-3.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    position: relative;
}

.category_section .card {
    width: 100%;
    max-width: 350px; /* Adjust this max-width as needed */
    height: 100%;
    max-height: 350px; /* Adjust this max-height as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    border:none;
}

.category_section .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit; /* Maintain the border-radius for the image */
}

.category_section .card:hover {
    transform: scale(1.05);
}


.category_section h1 {
            font-size: 4vw; /* Responsive scaling */
            text-align: center;
            margin: 20px 0;
            line-height: 1.2;
            font-family: 'TAN Mon Cheri', sans-serif;
        }
.category_section h6 {
            font-size: 1.5vw; /* Responsive scaling */
            text-align: center;
            margin: 10px 0;
            line-height: 1.2;
            word-spacing:4px;
            font-weight:300;
         
        }
        /* For extra small devices (phones, less than 576px) */
        @media (max-width: 575.98px) {
          .category_section h1 {
                font-size: 6vw;
            }
        }

        /* For medium devices (tablets, 768px and up) */
        @media (min-width: 768px) {
        .category_section h1 {
                font-size: 3vw;
            }
        }

        /* For large devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .category_section h1 {
                font-size: 2.5vw;
            }
        }
        
        
 

 .best_seller_section h1 {
            font-size: 3vw; /* Responsive scaling */
            text-align: center;
            margin-top:15px;
            line-height: 1.2;
            font-family: 'TAN Mon Cheri', sans-serif;
        }

        /* For extra small devices (phones, less than 576px) */
        @media (max-width: 575.98px) {
          .best_seller_section h1 {
                font-size: 6vw;
            }
        }

        /* For medium devices (tablets, 768px and up) */
        @media (min-width: 768px) {
        .best_seller_section h1 {
                font-size: 3vw;
            }
        }

        /* For large devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .best_seller_section h1 {
                font-size: 2.5vw;
            }
        }
            
 .best_seller_section{
     padding:70px 0;
      padding: 70px 0;
    background: url(../images/background/bg-1.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    position: relative;
 }       
    .best_seller_section .swiper {
      width: 100%;
      height: 100%;
       
    }

    .best_seller_section .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: none;
      display: flex;
      gap:5px;
      justify-content: center;
      align-items: center;
      
    }

    .best_seller_section .swiper-slide img {
      display: block;
      width: 100%;
      height: 500px; /* Fixed height */
  
      object-fit: cover;
    }        
        
        
        
        
        
        
     .view-btn a{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 200;
    padding: 10px 20px !important;
    /* border-radius: 2px; */
    border: 2px solid #000;
    outline: none;
    line-height: 20px;
    display: inline-flex;
    transition: all 0.3s ease-in-out;
    background:none;
    color:#000 !important;
    gap: 5px;
    letter-spacing: 1px;
    font-family: "Rufina", serif;
    
}    
        
.view-btn a:hover{
    background:#692536;
    color:#fff!important;
    border:none;
     text-decoration: none;
}        
        
        
.add_section{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6)), url(../images/banner/final_banner.jpg);
    height: auto;
    width: 100%;
    background-size: cover;
   
    position: relative;
}   
.add_flex{
    display:flex;
    justify-content:space-between;
    align-items:center;  
}
       
.add_section h1 {
    font-size: 2vw; /* Responsive font size */
    line-height: 1.2;
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    font-family: "Rufina", serif;
    letter-spacing: 1px;
   text-align:center;
   margin:50px;
}      
  .add_section img{
      width:80%;
  }      
        
        
 .footer-nav-item.flex {
    display: flex;
    align-items:center;
    gap: 10px;
    padding:30px;
    
}  
.footer-nav-item{
    background:#BE355DCC;
    margin-bottom:10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
   
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    border-radius: 10px;
    transition: all .4s;
}
        
   .footer-nav-item a{
       color:#fff!important;
       font-family: "Poppins", sans-serif;
       font-weight:400;
   }     
        
        
.footer-nav-item i{
    font-size:24px;
}        
        
        
 .we-are-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 900px;
}

@media screen and (max-width: 860px) {
  .we-are-block {
    height: 2200px;
  }
}

@media screen and (max-width: 500px) {
  .we-are-block {
    height: 2300px;
  }
}

#about-us-section {
  background: #0c4c91;
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 860px) {
  #about-us-section {
    flex-direction: column;
    justify-content: space-between;
  }
}

.about-us-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 860px) {
  .about-us-image {
    position: relative;
    width: 100%;
    height: 45%;
  }
}

@media screen and (max-width: 747px) {
  .about-us-image {
    height: 35%;
  }
}

@media screen and (max-width: 644px) {
  .about-us-image img {
    position: absolute;
    left: -220px;
  }
}

.about-us-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 40%;
  height: 80%;
  margin-right: 850px;
  margin-left: 12px;
  z-index: 2;
}

@media screen and (max-width: 1353px) {
  .about-us-info {
    margin-right: 400px;
    width: 60%;
    background: #0c4c9199;
    padding: 0px 25px 0px 0px;
  }
}

@media screen and (max-width: 1238px) {
  .about-us-info {
    margin-right: 340px;
    width: 100%;
  }
}

@media screen and (max-width: 1111px) {
  .about-us-info {
    margin-right: 270px;
  }
}

@media screen and (max-width: 910px) {
  .about-us-info {
    margin-right: 150px;
  }
}

@media screen and (max-width: 860px) {
  .about-us-info {
    margin: 0px 0px 0px 0px !important;
    padding: 0px 20px 0px 20px !important;
    width: 100%;
    height: 55%;
    align-items: center;
  }
}

@media screen and (max-width: 747px) {
  .about-us-info {
    height: 65%;
  }
}

.about-us-info h2 {
  color: white;
  font-size: 40pt;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .about-us-info h2 {
    text-align: center;
  }
}

.about-us-info p {
  color: white;
  font-size: 14pt;
  text-align: right;
}

@media screen and (max-width: 860px) {
  .about-us-info p {
    text-align: center;
  }
}

.about-us-info a {
  background-color: white;
  color: #0c4c91;
  width: 180px;
  text-align: center;
  padding: 15px 0px 15px 0px;
  font-size: 14pt;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.about-us-info a:hover {
  background: #404140;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  transform: translateY(10px);
}

#history-section {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 860px) {
  #history-section {
    flex-direction: column;
    justify-content: space-between;
  }
}

.history-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 820px;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 860px) {
  .history-image {
    position: relative;
    width: 100%;
    height: 40%;
  }
}

@media screen and (max-width: 747px) {
  .history-image {
    height: 35%;
  }
}

@media screen and (max-width: 644px) {
  .history-image img {
    position: absolute;
    right: -220px;
  }
}

.history-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  width: 40%;
  height: 80%;
  margin-left: 850px;
  margin-right: 12px;
  z-index: 2;
}

@media screen and (max-width: 1353px) {
  .history-info {
    margin-left: 400px;
    width: 60%;
    background: #ffffff99;
    padding: 0px 0px 0px 25px;
  }
}

@media screen and (max-width: 1238px) {
  .history-info {
    margin-left: 340px;
    width: 100%;
  }
}

@media screen and (max-width: 1111px) {
  .history-info {
    margin-left: 270px;
  }
}

@media screen and (max-width: 910px) {
  .history-info {
    margin-left: 150px;
  }
}

@media screen and (max-width: 860px) {
  .history-info {
    margin: 0px 0px 0px 0px !important;
    padding: 0px 40px 0px 40px !important;
    width: 100%;
    height: 60%;
    align-items: center;
  }
}

@media screen and (max-width: 747px) {
  .history-info {
    height: 65%;
  }
}

.history-info h2 {
  color: #0c4c91;
  font-size: 40pt;
  text-align: left;
}

@media screen and (max-width: 860px) {
  .history-info h2 {
    text-align: center;
  }
}

.history-info p {
  color: #0c4c91;
  font-size: 14pt;
  text-align: left;
}

@media screen and (max-width: 860px) {
  .history-info p {
    text-align: center;
  }
}

.history-info a {
  background-color: #0c4c91;
  color: white;
  width: 180px;
  text-align: center;
  padding: 15px 0px 15px 0px;
  font-size: 14pt;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.history-info a:hover {
  background: #404140;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  transform: translateY(10px);
}

.career_section{
    padding:150px 0;
     background-image:url(../images/banner_car.jpg);
          background-size: cover;
    background-position: center;
    position: relative;
}
.page_banner{
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page_banner .career_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/banner_career.jpg);
 
}
.page_banner .products_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/rooms/IMG-20240530-WA0014.jpg);
}
.page_banner.about_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/banner/Collections.jpg);
}
.page_banner.photo_gallery{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/rooms/IMG-20240530-WA0014.jpg);
}

.page_banner.contact_banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/contact.jpg);
}



.page_banner{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* text-align: center; */
}      
   
.page_banner h2{
    color: #fff;
    font-family: 'TAN Mon Cheri', sans-serif;
    font-size:36px;
        TEXT-ALIGN: CENTER;
}     
        
.about_page_section .content {
  padding: 20px;
  }

.about_page_section.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}       
        
.about_page_section h2 {
    color: #BE355D;
    font-family: 'TAN Mon Cheri', sans-serif;
    font-weight: 600;
    line-height: 1.2; /* Adjust line height for better readability */
    font-size: 2.5rem; /* Default size for larger screens */
}
.about_wrapper h3 {
    color: #BE355D;
    font-family: "Rufina", serif;
    line-height: 1.2; /* Adjust line height for better readability */
    font-size: 2.5rem; /* Default size for larger screens */
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .about_page_section h2 {
        font-size: 2rem; /* Smaller size for medium screens */
    }
}

@media (max-width: 768px) {
    .about_page_section h2 {
        font-size: 1.75rem; /* Smaller size for tablets */
    }
}

@media (max-width: 576px) {
    .about_page_section h2 {
        font-size: 1.5rem; /* Smaller size for mobile devices */
    }
}
       
        
   .our-values {
  padding: 50px 0;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif; /* Ensuring Poppins font for consistency */
}

.our-values h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.values-list li {
  font-size: 1.25rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.values-list i {
  color: #28a745; /* Green color for the icon */
  margin-right: 10px;
  font-size: 1.5rem;
}
 .about_wrapper {
    padding: 20px 0 70px;
}

.about_wrapper .grid_column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    place-items: center;
}



.about_wrapper .right h2 {
    font-size: 35px;
    line-height: 1.2;
    color: #000;
    margin-top: 15px;
}

.about_wrapper .right p {
    font-size: 16px;
    line-height: 1.8;
}

.about_wrapper ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.about_wrapper ul li::after{
    position: absolute;
    top: 0;
    left: 0px;
    content: '';
    background: url(../front/images/check.png);
    background-size: cover;
    width: 20px;
    height: 20px;

}
.sub-title {
    color: #000;
    /* text-transform: uppercase; */
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.about_wrapper .main-btn {
    display: inline-flex;
    gap: 5px;
}
.column-list {
  padding: 0;
  font-family: 'Poppins', sans-serif; /* Apply Poppins font */
  font-size: 1.8rem; /* Increase font size */
  line-height: 1.6; /* Increase line height for better readability */
}

.column-list li {
  margin-bottom: 15px; /* Increase spacing between list items */
  color: #333; /* Adjust text color */
}
.column-list li i {
  margin-right: 10px; /* Space between icon and text */
  font-size: 2rem; /* Adjust icon size */
  color:#BE355D;
}
  .hover-ct {
    position: absolute;
    bottom: -105%;
    left: 0;
    width: 100%;
    background: rgba(161, 48, 80, 0.83);
    box-shadow: 0 4px 30px rgb(0 0 0 / 10%);
    backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
    color: #fff;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: var(--primary-shadow);
    padding: 20px;
    box-sizing: border-box;
    transition: bottom 0.3s ease;
    height: auto;
}

.hover-ct p{
    color:white;
    font-size:18px;
    line-height:20px;
    text-align:center;
    font-weight:500;
}
.hover-ct h4{
    color:white;
    margin-bottom:10px;
   font-family: "Rufina", serif;
    font-weight:500;
    font-style:italic;

  
}
.card-container{
  overflow:hidden;  
}
.card-container{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.card-container:hover .hover-ct {
    bottom: 0; 
}
.gap-custom{
    gap:15px!important;
}
.best_seller_section .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    overflow-x:hidden!important;
}

.contact_box{
     box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 30px; /* Optional: Adds padding inside the box */
  border-radius: 10px;
}


.process__number {
  font-size: 90px;
  -webkit-text-stroke: 1px rgba(161, 48, 80, 0.83); /* Assuming $primary-color is black */
  display: block;
  color: transparent;
  font-family: "Roboto Condensed";
  font-weight: 700;
  transition: 0.4s ease-in-out;

}
.section-4 .grid_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    text-align: center;
}
.section-4 .grid_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    text-align: center;
}

/* For tablets */
@media (max-width: 1024px) {
    .section-4 .grid_row {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .section-4 .grid_row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* For very small mobile devices */
@media (max-width: 480px) {
    .section-4 .grid_row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
