@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    background: #F4F4F4;
  }
  
  a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
 
  }
  /* nav styles */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    background: #ffffff;
  }

  
  .logo {
    font-size: 1.8rem;
    padding-left: 20px;
  }
  
  .hamburger {
    padding-right: 20px;
    cursor: pointer;
  }
  
  .hamburger .line {
    display: block;
    width: 40px;
    height: 5px;
    margin-bottom: 10px;
    background-color: black;
  }
  
  .nav__link {
    position: fixed;
    width: 100%;
    top: 96px;
    left: 0px;
    background-color: #fff;
  }
  
  .nav__link a {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
  
  
  .hide {
    display: none;
  }
  /* Slider Container */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Full viewport height */
    z-index: -1;
}
.slider-1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 65vh;
  margin-top: 70px;
}

/* Individual Slides */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide:nth-child(1) {
    background-image: url('s6.jpg'); /* Replace with your images */
}

.slide:nth-child(2) {
    background-image: url('s2.jpg');
}

.slide:nth-child(3) {
    background-image: url('s3.jpg');
}
.slide:nth-child(4) {
    background-image: url('s4.jpg');
}
.slide:nth-child(5) {
    background-image: url('slide-3.jpg');
}

/* Active Slide */
.slide.active {
    opacity: 1;
}
.slide-1.active {
  opacity: 1;
}
/* Slide Content */
.content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding-bottom: 150px;
}
.content h2{
    z-index: 5;
    white-space: nowrap;
    font-size: 34px;
    line-height: 76px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    font-family: Montserrat;
    visibility: inherit;
    transition: none;
    text-align: left;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform-origin: 50% 50% 0px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.8);
    padding: 0 15px;
    -ms-transform: skew(-15deg);
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    padding-left: 80px
}
.content .btn{
    padding-right: 55px;
    padding-left: 55px;
    display: inline-block;
    vertical-align: top;
    color: #ffffff;
    background-color: rgb(170, 57, 59);
    font-size: 12px;
    transform-origin: 50% 50% 0px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    background: rgba(170, 57, 59);
    padding: 0 15px;
    -ms-transform: skew(-18deg);
    -webkit-transform: skew(-18deg);
    transform: skew(-15deg);
    /* padding-left: 80px; */
    padding:25px;
    margin-top: 15px;
}
/* Navigation Buttons */
.nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    cursor: pointer;
}
.nav-buttons-1 {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  cursor: pointer;
}
.nav-buttons span {
    cursor: pointer;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s;

}
.nav-buttons-1 span {
  cursor: pointer;
  padding: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s;

}
.nav-buttons span:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.nav-buttons-1 span:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
    background-color: #fff;
    width: 93%;
    margin-left: 48px;
    margin-top: -95px;
}
.card{
    width: 380px;
    background-color: #ffffff;
    overflow: hidden;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); */
    margin: 20px;
}
.card img{
  width: 100%;
  height: auto;

  margin-bottom: 22px;
  margin-top: 25px;
}

.card-content{
    padding: 16px;
    font-family: "Montserrat";
}
.card-content h3{
    font-size: 20px;
    margin-bottom: 20px;
    color: #404040;
}
  .card-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
  }
  .card-content .btn{
    display: inline-block;
    padding: 8px 16px;
    background-color: #a8393b;
    text-decoration: none;
    margin-top: 25px;
    color: #ffffff;
    font-family: "Montserrat";
    font-weight:500;
    padding: 20px;
    padding-left: 35px;
    padding-right: 35px;
    transition: .5s linear;
  }
  .card-content .btn:hover{
    background-color: red;


  }
  .wrapper{
    margin: 150px auto;
    width: 93%;
  }
  img{
    max-width: 100%;
    float: left;
   margin-right: 100px;
  }
  .text-box p{
    color: #000;
    font-size: 16px;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #818181;
    font-weight: 400;
    overflow-y: scroll;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
  }
  .text-box .btn{
    display: inline-block;
    padding: 8px 16px;
    background-color: #a8393b;
    text-decoration: none;
    margin-top: 35px;
    color: #ffffff;
    font-family: "Montserrat";
    font-weight:500;
    padding: 20px;
    padding-left: 35px;
    padding-right: 35px;
    transition: .5s linear;
    border-radius: 4px;
  }
  .text-box .btn:hover{
    background-color: red;
  }
  .logos{
    background: #fff;
  }
  .main1{

    margin: 2%;
   }
   
   .card1{
        width: 20%;
        display: inline-block;
        margin: 2%;
       }
   
   .image1 img{
     width: 100%; 
    }
    
  
  @media screen and (min-width: 600px) {
    .nav__link {
      display: block;
      position: static;
      width: auto;
      margin-right: 20px;
      background: none;
    }
  
    .nav__link a {
      display: inline-block;
      padding: 15px 20px;
    }
  
    .hamburger {
      display: none;
    }
  }
  @media screen and (width: 430px){
    img {
      max-width: 150%;
        float: left;
        margin-right: 88px;
        margin-top: -16px;
  }
  .hamburger .line {
    display: block;
    width: 29px;
    height: 3px;
    margin-bottom: 10px;
    background-color: #ff0000;
    margin-right: 178px;
  }
  .slide {
    position: absolute;
    width: 57%;
    height: 65%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 176.4%;
  height: 100vh;
  z-index: -1;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 176.4%;
  height: 100vh;
  z-index: -1;
}
.content h2 {
  z-index: 5;
  white-space: nowrap;
  font-size: 20px;
  line-height: 76px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  visibility: inherit;
  transition: none;
  text-align: left;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  opacity: 1;
  transform-origin: -19% -119% -65px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.8);
  padding: 0 15px;
  -ms-transform: skew(-15deg);
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  padding-left: 80px;
}
.nav__link {
  position: fixed;
  width: 68.8%;
  top: 73px;
  left: 0;
  background-color: #fff;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  background: #ffffff;
  width: 100%;
}
.nav__link a {
  display: block;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #dfdfdf;
  font-size: 23px;
}
.hamburger {
  padding-right: 20px;
  cursor: pointer;
  margin-right: -191px;
}
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
  background-color: #fff;
  width: 88%;
  margin-left: 28px;
  margin-top: -95px;
}
.card img {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  margin-top: 25px;
}
.card-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #404040;
  text-align: center;
}
.card-content p {
  color: #666;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
.card-content .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #a8393b;
  text-decoration: none;
  margin-top: 25px;
  color: #ffffff;
  font-family: "Montserrat";
  font-weight: 500;
  padding: 20px;
  padding-left: 35px;
  padding-right: 35px;
  transition: .5s linear;
  margin-left: 90px;
}
.vid_img{
  width: 100%;
}
.text-box p {
  color: #000;
  font-size: 40px;
  font-family: Raleway, sans-serif;
  font-size: 19px;
  line-height: 26px;
  color: #818181;
  font-weight: 400;
  overflow-y: scroll;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  margin-left: -1px;
  text-align: center;
  padding-top: 65px;
}
.text-box .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #a8393b;
  text-decoration: none;
  margin-top: 35px;
  color: #ffffff;
  font-family: "Montserrat";
  font-weight: 500;
  padding: 20px;
  padding-left: 35px;
  padding-right: 35px;
  transition: .5s linear;
  border-radius: 4px;
  align-items: center;
  margin-left: 103px;
}
.logos {
  background: #fff;
  padding-top: 11px;
}
.footer-content p {
  margin: auto;
  padding: 7px;
  color: #fff;
  line-height: 1.5;
  font-size: 7px;
}
.q-link {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
  margin-left: -62px;
}
h3 {
  font-size: 40px;
  margin-bottom: 15px;
  /* text-align: center; */
  color: #ffffff;
  margin-left: 133px;
}
}
