* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0px;
    font-family: poppins;
    background-color: #333;
    color: #fff;
  }
  
  .topnav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Add an active class to highlight the current page */
  .active {
    background-color: #04AA6D;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  
  /* Dropdown container - needed to position the dropdown content */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Style the dropdown button to fit inside the topnav */
  .dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* Style the dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Style the links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: rgb(255, 255, 255);
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    text-align: left;
    
  }
  
  /* Add a dark background on topnav links and the dropdown button on hover */
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #333;
    color: #FE7235;
  }
  
  /* Add a grey background to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #333;
    color: #FE7235;
  }
  
  /* Show the dropdown menu when the user moves the mouse over the dropdown button */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 600px) {
    .topnav a, .dropdown .dropbtn {
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 750px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }


    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      background-color: #333;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: left;
    }
    .flex{
        padding: 0px 20px 0px 20px !important; 
    }
  }

  .flex{
    padding: 0px 100px 0px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .flex-2{
    padding: 0px 100px 0px 100px;
    display: flex;
    align-items: center;
  }

  .logo
    {
        padding: 3px 10px 3px 10px;
        width: 90px;

    }

    /* Header Banner CSS */
    
/* .contaier{
    
} */

    .slider-wrapper {
        position: relative;
        /* height: 100vh; */
        margin: 0 auto;
    }
    
    .slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
        -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    .slider::-webkit-scrollbar {
        display: none;
    }
    
    .slider img {
        flex: 1 0 100%;
        height: 90vh;
        scroll-snap-align: start;
        object-fit: cover;
    }
    
    .slider-nav {
        display: flex;
        column-gap: 1rem;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .slider-nav a {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0.75;
        transition: opacity ease 250ms;
    }
    
    .slider-nav a:hover {
        opacity: 1;
    }
    
/* card Design */


.cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.card{
    width: 100%;
    text-align: center;
}

.card h3{
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.card p{
    font-size: 16px;
    margin: 0;
    color: #ffffff;
    margin-top: 10px;
}

.icon img{
    width: 35%;
    transition: all 0.3s ease;
}

.icon img:hover {
  width: 40%;

}

.ion-speedometer{
  height: 130px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
    .cards{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width: 576px) {
    .services h2{
        font-size: 34px;
        margin-bottom: 5px;
    }

    .services .text-services{
        font-size: 14px;
        line-height: 1.7;
    }
    .cards{
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }
}

.heading-2{
    font-family: Caveat;
    justify-content: center;
    align-items: center;
}

.align-center{
    font-size: 25px;
    font-weight: 300 !important;
    text-align: center;
}


/* Sliding Gallery Start */

.heading-3{
  font-family: poppins;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-decoration: underline solid #FE7235;
}

.wrapper {
	width: 100%;
	overflow: hidden;
}
.photobanner {
	position: relative;
	height: 350px;
	margin-bottom: 30px;
	display: flex;
	width: 100%; 
}

.photobanner img {
  margin: 0px 10px;
}

.photobanner {
  animation: bannermove 50s linear infinite alternate-reverse;
}

@keyframes bannermove {
  from {
    left: 0px;
  }
  to {
    left: -2700px;
  }
}
  /* Sliding Gallery Ends */


  .para{
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }


  /* luxury interior sec start */
.lux-images{
  width: 100%;
}

.img-flex{
  display: flex;
  align-items: center;
  justify-content: center;

}

.img-flex .container {
  position: relative;
  width: 100%;
  margin: 08px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #FE7235;
  
}

.container:hover .overlay {
  opacity: .5;
  
}

.text:hover {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

  /* luxury interior sec end */

  /* subscription sec starts here */

  .card-1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #272727;
  }
  
  .sub-image {
    width: 70%;
    display: flex;
    align-items: center;
  }
  
  .sub-image img {
    width: 100%;
    height: 100% !important;
  }
  
  .subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-left: 2rem;
    color: #fff;
    text-align: center;
  }
  
  .subscribe p {
    margin-top: 0 0 10px 0;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    max-width: 500px;
    font-weight: 500;
  }

  .subscribe h2 {
    margin: 0rem 0;
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .subscribe form {
    display: flex;
    align-items: center;
  }
  
  .subscribe form input {
    padding: 0.75rem;
    border-radius: 0.25rem;
    outline: none;
    background-color: #ffffff;
    color: #303037;
    font-weight: 300;
    width: 300px;
    border: 0;
  }
  
  .button {
    padding: 0.75rem;
    border-radius: 0.1rem;
    outline: none;
    margin-left: 0.5rem;
    border: 1px solid #FE7235;
    background-color: #FE7235;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-top: 20px;
    width: 200px;
  }
  
  .subscribe form button:hover {
    background: transparent;
    color: #93c814;
  }
  
  /* subscription sec ends here */

  /* <!-- experience sec starts here --> */

  .expe-sec{
    background-color: #FE7235;
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .expe-text{
    margin: 10px 50px 10px 50px;
    text-align: center;
  }

  .expe-text h2{
    font-size: 46px;
    font-weight: 700;
    margin: 0;
  }

  .expe-text p{
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    margin-top: 0;
  }

  /* experience sec ends here */

  /* contact sec starts here */

.contact-heading{
  font-family: Caveat;
  color: #FE7235;
  font-size: 36px;
  font-weight: 400;
  justify-content: center;
  align-items: center;
  margin: 20px 0px 10px 0px;
}

.contact-flex{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  padding: 30px 10px 30px 30px;
  background-color: #272727;
}

.contact-p{
  max-width: 500px;
  margin: 0px 0px 20px 0px ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.contact-h3{
  font-size: 26px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 10px;
}

.contact-p2{
  text-align: left;
  margin-left: 80px;
  font-weight: 500;
}

.contact-p3{
  text-align: left;
  margin-left: 20px;
  font-weight: 500;
}

.contact-form form input {
    padding: 0.75rem;
    border-radius: 0.25rem;
    outline: none;
    background-color: #ffffff;
    color: #303037;
    font-weight: 300;
    width: 70%;
    border: 0;
    margin-top: 20px;
  }

  .contact-flex-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact-button {
    padding: 0.75rem;
    border-radius: 0.1rem;
    outline: none;
    margin-left: 0.5rem;
    border: 1px solid #FE7235;
    background-color: #FE7235;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-top: 20px;
    width: 200px;
    align-items: flex-start;
  }

  /* footer sec starts here */
  .container{
    max-width: 1170px;
    margin:auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  ul{
    list-style: none;
  }
  .footer{
    background-color: #232323;
      padding: 20px 0px 10px 0px ;
  }
  .footer-col{
     width: 33%;
     padding: 0 15px;
  }
  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #FE7235;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #232323;
    background-color: #ffffff;
  }
  
  /*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  }
  
  .footer-reserved p{
    text-align: center;
    margin-bottom: 0;
    font-weight: 200;
  }


  /*responsive*/
  @media(max-width: 767px){
    .expe-sec{
      display: flex !important;
      flex-direction: column !important;
    }
    .card-1{
      display: flex !important;
      flex-direction: column !important;
      margin: 10px 0px 20px 0px;
  }
  .sub-image{
    width: 100%;
  }
  .subscribe{
    margin: 0;
    padding: 10px 0px 30px 0px;
  }
  .subscribe h2{
    font-size: 30px;
    margin-top: 20px;
  }
  .subscribe p{
    font-size: 15px;
  }
  .slider img{
    flex: 1 0 100%;
    height: 30vh;
    scroll-snap-align: start;
    object-fit: cover;
  }
  .contact-flex{
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 20px 20px 10px !important;
  }

  .contact-form form input{
    width: 90% !important;
  }
  .contact-p2{
    text-align: center;
    margin-left: 20px !important;
    font-weight: 500;
  }

  .logo{
    width: 70px !important;
  }

  }

  

  @media(max-width: 574px){
    .expe-sec {
      display: flex !important;
      flex-direction: column !important ;
    }
    .card-1{
      display: flex !important;
      flex-direction: column !important;
  }

}