/*---------------------------------
Fonts
--------------------------------*/
@font-face {
    font-family: dmregular;
    src: url(/assets/Fonts/DM/DMSans-Regular.ttf);
}

@font-face {
    font-family: dmlight;
    src: url(/assets/Fonts/DM/DMSans-Light.ttf);
}

@font-face {
    font-family: dmbold;
    src: url(/assets/Fonts/DM/DMSans-Bold.ttf);
}

@font-face {
    font-family: dmsemibold;
    src: url(/assets/Fonts/DM/DMSans-SemiBold.ttf);
}

@font-face {
    font-family: dmmedium;
    src: url(/assets/Fonts/DM/DMSans-Medium.ttf);
}

@font-face {
    font-family: dmextrabold;
    src: url(/assets/Fonts/DM/DMSans-ExtraBold.ttf);
}


@font-face {
    font-family: scepmedium;
    src: url(/assets/Fonts/Sceptica-Medium.otf);
}

@font-face {
    font-family: sceplight;
    src: url(/assets/Fonts/Sceptica-Light.otf);
}

@font-face {
    font-family: scepblack;
    src: url(/assets/Fonts/Sceptica-Black.otf);
}
@font-face {
    font-family: scepregular;
    src: url(/assets/Fonts/Sceptica.otf);
}

@font-face {
    font-family: aklight;
    src: url(/assets/Fonts/aeoniktrial-light.otf);
}
@font-face {
    font-family: akregular;
    src: url(/assets/Fonts/aeoniktrial-regular.otf);
}

@media (max-width:767px){
    .desktop-hidden{
        display: none!important;
    }
}

@media (min-width:767px){
    .mobile-hidden{
        display: none!important;
    }
}


a{
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}


body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;

}

main{
    position: relative;
    z-index: 10;
    background-color: #fff;
}


/*---------------------------
Animation
-----------------------------*/

/*------------------------------
Animation
------------------------------*/

.fade-slide-up,
.fade-slide-down {
  opacity: 0;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1); 
  animation-fill-mode: forwards;
  will-change: transform, opacity;
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.fade-slide-up {
  transform: translateY(40px);
  animation-name: fadeSlideUpSmooth;
}


.fade-slide-down {
  transform: translateY(-40px);
  animation-name: fadeSlideDownSmooth;
}

.fade-slide-up, .fade-slide-down {
  animation-play-state: paused;
}


@keyframes fadeSlideUpSmooth {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  40% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDownSmooth {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*-------------------------------------
Header
------------------------------------*/
.header{
  width:90%;
  background:transparent;
  padding:3vw 5vw;
  position:absolute;  
  top:0;
  left:0;
  z-index:1000;      
}

.header_inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header_logo svg{
  width:10vw;
  height: auto;
}

.header_nav{
  display:flex;
  gap:4vw;
  align-items: center;
}

.header_nav a{
  font-size:1vw;
  text-decoration:none;
  color:#333;
  font-family: 'scepmedium';
  text-transform: uppercase;
}

.header_cta button{
 background: linear-gradient(to right, #8c2022, #bd3b35);
  color:#fff;
  border:none;
  padding:1vw 1.5vw;
  border-radius:2vw;
  font-size:1vw;
    font-family: 'scepmedium';
  text-transform: uppercase;
  letter-spacing:0.5px;
}

.header_hamburger{
  display: none;
}

.header_hamburger img{
  width:3vw;
  cursor:pointer;
  display:none;
}

.header_mobile{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100%;
background: linear-gradient(to right, #8c2022, #bd3b35);
  display:flex;
  flex-direction:column;
  align-items:center;
  padding-top:35vw;
  gap:8vw;
  transform:translateY(-120%);
  transition:0.4s;
  z-index:999;
}

.header_mobile.active{
  transform:translateY(0);
}

.header_close{
  position:absolute;
  top:5vw;
  right:6vw;
}

.header_close img{
  width:5vw;
  cursor:pointer;
  filter: brightness(0) invert(1);
}

.header_mobile a{
  font-size:4vw;
  text-decoration:none;
  color:#fff;
  font-family: 'scepmedium';
  text-transform: uppercase;
}

.header_mobile button{
 background: linear-gradient(to right, #8c2022, #bd3b35);
  color:#fff;
  border:none;
  padding:2vw 6vw;
  border-radius:6vw;
  font-size:5vw;
  display: none;
}

@media(max-width:600px){

  .header_nav,
  .header_cta{
    display:none;
  }

  .header_mobile button{
  display: block;
}

.header_hamburger{
  display: block;
}


  .header_hamburger img{
    display:block;
  }

  .header_logo svg{
    width:25vw;
  }
}

@media(max-width:600px){
 .header_logo img{
    width:30vw;
  }
      .header_hamburger img {
        width: 6vw;
    }
    .header {
    padding: 5vw 5vw;
}

.header_close img {
    width: 8vw;
}
}

/*------------------------
Home-section-1
-------------------------*/
.home-section-1{
width:100vw;
height:50vw;
overflow:hidden;
position:relative;
z-index:1;
}

.home-section-1-video{
position:absolute;
top:0;
left:0;
width:100vw;
height:100%;
object-fit:cover;
}


.home-section-1::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.2); 
z-index:2;
}
@media(max-width:600px){
.home-section-1{
height:150vw;
}
}

/*--------------------------------
Home-section-2
--------------------------------*/
.home-section-2{
  padding:5vw 5vw 5vw 5vw;
  border-top-left-radius:6vw;
border-top-right-radius:6vw;
background:#fff;
margin-top: -6vw;
z-index: 9999;
position: relative;
}


.home-section-2-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:0vw;
  margin-bottom:5vh;
}


.home-section-2-logo img{
  width:22vw;
  margin-left: 7vw;
}


.home-section-2-content{
  max-width:50vw;
}


.home-section-2-content h3{
  font-size:3vw;
  margin:0 0 1vh 0;
  color:#555;
  font-family: 'sceplight';
  font-weight: 100;
  margin-left: -10vw;
}

.home-section-2-content h2{
  font-size:5vw;
  margin:0;
    font-family: 'sceplight';
     font-weight: 100;
       margin-left: -10vw;
}

.home-section-2-content h2{
  background:#8c2022;
  color:#fff;
  padding:0.5vh 1vw;
  display:inline-block;
    font-family: 'sceplight';
}

.home-section-2-content h4{
  font-size:3.5vw;
  margin:1vh 0;
  font-weight:100;
    font-family: 'sceplight';
    color: #3e3a34;

}

.home-section-2-content p{
  font-size:1.2vw;
  color:#555;
  line-height:1.5;
  max-width:30vw;
  font-family: 'aklight';
   margin-left: -10vw;
}


.home-section-2-image img{
  width:100%;
  height:45vw;
  object-fit:cover;
  border-radius:1vw;
}

.home-section-2-logo,
.home-section-2-content h3,
.home-section-2-content h2,
.home-section-2-content h4,
.home-section-2-content p{
  opacity:0;
  transform:translateY(80px);
}

.home-section-2-image{
  overflow:hidden;
}

.home-section-2-image img{
  width:100%;
  transform:scale(0.8);  
}



@media(max-width:600px){

  .home-section-2{
    padding:8vh 4vw;
    border-radius:5vw;
  }

  .home-section-2-top{
    flex-direction:column;
    align-items:flex-start;
    gap:4vh;
  }

  .home-section-2-logo img{
    width:65vw;
  }

  .home-section-2-content{
    max-width:100%;
  }

  .home-section-2-content h3{
    font-size:8vw;
    margin-left: 0;
  }

  .home-section-2-content h2{
    font-size:12vw;
     margin-left: 0;
     padding: 1vw 5vw;
  }

  .home-section-2-content h4{
    font-size:6vw;
  }

  .home-section-2-content p{
    font-size:3.8vw;
    max-width:100%;
     margin-left: 0;
  }

  .home-section-2-image img{
    height:50vh;
    border-radius:3vw;
  }

}

/*-------------------------
Home-section-3
-------------------------*/
.home-section-3{
  padding:6vw 5vw;
  background:#902223;
  color:#fff;
}


.home-section-3-top h3{ 
  font-size:3vw; 
  font-family: 'sceplight';
  font-weight: 100;
  margin: 0;
  margin-left: 10vw;
}

.home-section-3-top h2{ 
  font-size:10vw;
  font-family: 'sceplight';
   font-weight: 100;
   margin: 0;
   margin-left: 15vw;
   margin-top: -1.5vw;
 }


.home-section-3-bottom{
  display:flex;
  align-items:center;
  gap:1vw;
  margin-top:5vw;
}


.home-section-3-left{ 
  font-size:2.5vw; 
  font-family: 'sceplight';
}


.home-section-3-track{
  position:relative;
  width:90%;
  overflow:hidden;
}


.home-section-3-line{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:2px;
  background:#fff;
}


.home-section-3-car{
  position:absolute;
  top:50%;
  left:-1vw;
  width:20vw;
  transform:translateY(-50%);
  z-index:999;
background:#902223;
}


.home-section-3-points{
  display:flex;
  gap:2vw;
  transition:0.8s ease;
}


.point{
  min-width:20vw;
  text-align:center;
}

.point h4{
  font-size:3vw;
  font-family: 'sceplight';
  margin-top: 0vw;
  font-weight: 100;
  margin-bottom: 2.2vw;
}

.point p{
  font-size:1.8vw;
  font-family: 'aklight';
}


.home-section-3-top h3,
.home-section-3-top h2{
  opacity:0;
  transform:translateY(-60px);
}

.home-section-3-car{
  opacity:0;
}

.home-section-3-line{
  width:0;
  height:2px;
  background:#fff;
}


.point h4{
  opacity:0;
  transform:translateY(-40px);
}

.point svg{
  opacity:0;
  transform:scale(0);
}

.point p{
  opacity:0;
  transform:translateY(40px);
}

@media (max-width:600px){

  .home-section-3 {
    margin-top: 15vw;
}


  .home-section-3-top h3 {
    font-size: 8vw;
  }
.home-section-3-top h2 {
    font-size: 20vw;
}

.home-section-3-car {
    width: 45vw;
}

.home-section-3-left {
    font-size: 6.5vw;
    font-family: 'sceplight';
}

.home-section-3-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.home-section-3-points svg{
  width:3.5vw;
  height: auto;
  margin-top: 3vw;
}

.point h4 {
    font-size: 6vw;
    margin-bottom: 0;
}

.point p {
    font-size: 4vw;
    margin-bottom: 0;
}

.home-section-3-track{
    overflow:hidden;
  }

  .home-section-3-points{
    gap:10vw;
  }

  .point{
    min-width:40%;   
    text-align:center;
  }

}


/*------------------------------
Home section 4
------------------------------*/
.home-section-4{
width:100vw;
display:flex;
justify-content:center;
padding-top:0vw;
padding-bottom:6vw;
background-color: #285005;
flex-direction: column;
align-items: center;
margin-top: 5vw;
}

.home-section-4-top{
  font-size:3vw;
color:#fff;
margin-bottom:1.5vw;
font-family: 'scepregular';
font-weight: 100;
margin-left: 0vw;
line-height: 1.2;
}

.home-section-4-top span{
  background-color: #3C941F;
  padding: 0.5vw 2vw;
  margin-left: 5vw;
}

.home-section-4-bg{
width:95vw;
padding-top:3vw;
padding-bottom:3vw;
display:flex;
justify-content:center;

}

.home-section-4-bottom p{
  font-family: 'aklight';
  color: #fff;
  max-width: 45vw;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
  font-size: 1.2vw;
}

.home-section-4-container{
width:60vw;
background:#fff;
padding:0vw 2vw;
text-align:center;
}

.home-section-4 h2{
font-size:2.8vw;
color:#5aa043;
margin-bottom:1.5vw;
font-family: 'scepregular';
}

.home-section-4-desc{
font-size:1.280vw;
color:#666;
width:50vw;
margin:auto;
margin-bottom:3vw;
line-height:1.8vw;
font-family: 'scepregular';
}

.home-section-4-certificate{
position:relative;
display:flex;
justify-content:center;
margin-bottom:3vw;
}

.home-section-4-certificate img{
width:40vw;
}

.home-section-4-points{
display:grid;
grid-template-columns:1fr 1fr;
gap:2.5vw ;
max-width: 55vw;
margin: 1.5vw auto;
}

.home-section-4-point{
display:flex;
align-items:center;
gap:1vw;
text-align:left;
justify-content: center;

}

.home-section-4-point img{
width:0.9vw;
margin-top:0.3vw;
}

.home-section-4-text{
width:100%;
}

.home-section-4-text span{
font-size:1.2vw;
color:#444;
font-family: 'scepregular';

}

.home-section-4-line{
width:80%;
height:0.1vw;
background:#5aa043;
margin-top:0.8vw;
}

.home-section-4-line-2{
width:80%;
height:0.1vw;
background:#5aa043;
margin-top:0.8vw;
display: none;
}

@media(max-width:600px){

  .home-section-4{
    padding: 5vw 0vw 15vw 0vw;
  }

.home-section-4-line-2{
display: block;
margin-top: 3vw;
}

.home-section-4-bottom p {
    max-width: 85%;
    font-size: 3.2vw;
}

.home-section-4-top {
    font-size: 8vw;
}

.home-section-4-bg{
width:100%;
padding-top:5vw;
padding-bottom:5vw;
}

.home-section-4-container{
width:90vw;
padding:3vw;
}

.home-section-4 h2{
font-size:4.5vw;
margin-bottom:4vw;
}

.home-section-4-desc{
font-size:3vw;
width:100%;
line-height:4.5vw;
margin-bottom:6vw;
}

.home-section-4-certificate img{
width:80vw;
margin-left: 6vw;
}

.home-section-4-badge{
width:16vw;
right:6vw;
bottom:2vw;
}

.home-section-4-points{
grid-template-columns:1fr;
gap:6vw;
max-width: 90%;
margin: 8vw auto;
}

.home-section-4-point {
    gap: 3vw;
}

.home-section-4-point img{
width:3vw;
}

.home-section-4-text span{
font-size:3.8vw;
}

.home-section-4-line{
margin-top: 3vw;
}
}


/*------------------------------
Home section 5
------------------------------*/
.home-section-5{
    padding:8vh 5vw;
    background:#fff;
    text-align:center;
}

.home-section-5-heading{
    font-size:3.5vw;
    color:#B93A34;
    margin-bottom:4vw;
    font-family: 'sceplight';
}


.home-section-5-wrapper{
    display:flex;
    justify-content:center;
    gap:4vw;
    flex-wrap:wrap;
}

.home-section-5-card{
    width:25vw;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.home-section-5-card-img{
    width:100%;
    height:24vw;
    object-fit:cover;
    border-radius:1vw;
    box-shadow:0 1vh 2vh rgba(0,0,0,0.1);
    transition:0.4s;
    background-color: none;
}

.home-section-5-card-img svg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-section-5-card-img:hover{
    transform:scale(1.03);
}


.home-section-5-btn{
    margin-top:3vh;
    padding:1vw 2.5vw;
    background:#B93A34;
    color:#fff;
    border:none;
    border-radius:2vw;
    font-size:1vw;
    letter-spacing:0.1vw;
    cursor:pointer;
    transition:0.3s;
    font-family: 'aklight';
}

.home-section-5-btn:hover{
    background:#a93226;
}


.home-section-5-heading{
  opacity:0;
  transform:translateY(60px);
}


.home-section-5-card{
  opacity:0;
  transform:translateY(80px);
}

.floorplan-popup{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
background:rgba(0,0,0,0.95);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
pointer-events:none;
transition:0.4s;
z-index:9999;
}

.floorplan-popup.active{
opacity:1;
pointer-events:auto;
}

#floorplanContainer svg{
width:50vw;
height:auto;
}

.floorplan-close{
position:absolute;
top:3vh;
right:3vw;
font-size:3vw;
color:white;
cursor:pointer;
}

@media(max-width:600px){

    .home-section-5-wrapper{
        flex-direction:column;
        align-items:center;
        gap: 9vw;
    }

    #floorplanContainer svg {
    width: 90vw;
    height: auto;
}

    .floorplan-close {
    position: absolute;
    top: 3vh;
    right: 6vw;
    font-size: 11vw;
    color: white;
    cursor: pointer;
}

    .home-section-5-card{
        width:80vw;
    }

    .home-section-5-card-img{
        height:35vh;
    }

    .home-section-5-heading{
        font-size:9vw;
    }

  .home-section-5-btn {
        font-size: 5vw;
        border-radius: 5vw;
        padding: 2vw 8vw;
    }
}

/*-----------------------------
Home section 6
-------------------------------*/
.home-section-6{
background: linear-gradient(to right, #8c2022, #bd3b35);
  padding:0vw 4vw 12vw 4vw;
  display:flex;
  justify-content:center;
  position: relative;
}

.home-section-6-container{
  width:80vw;
}

.home-section-6-grid{
  width:93%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4vw 6vw;
}

.home-section-6-item{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0.5vw;
}

.home-section-6-icon{
  width:2.5vw;
  height:2.5vw;
  object-fit:contain;
  border-bottom: 1.5px solid #ccc;
  padding-bottom: 0.5vw;
}

.home-section-6-bottom{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding-top:0vw;
}

.home-section-6-left h4{
  color:#fff;
  font-size:1.3vw;
  margin:0;
  font-family: 'scepregular';
}

.home-section-6-left p{
  color:#ccc;
  font-size:1vw;
  margin:0.3vw 0 0 0;
   font-family: 'scepregular';
}

.home-section-6-right{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0.3vw;
}

.home-section-6-right span{
  color:#ccc;
  font-size:1.2vw;
   font-family: 'scepmedium';
}

.home-section-6-drive{
  display:flex;
  align-items:center;
  gap:1.3vw;
}

.home-section-6-drive img{
  width:2vw;
}

.home-section-6-drive p{
  color:#ccc;
  font-size:1vw;
  margin:0;
   font-family: 'scepregular';
}

.home-section-6-white-box{
  position:absolute;
  right:0;
  bottom:0;
  width:15vw;
  height:7vw;
  background:#ffffff;
}

@media(max-width:600px){
  .home-section-6-grid{
    grid-template-columns:repeat(2,1fr);
    gap:6vw;
  }

  .home-section-6 {
   background: linear-gradient(to right, #8c2022, #bd3b35);
    padding: 0vw 4vw 25vw 4vw;
  }

  .home-section-6-icon {
      width: 8vw;
      height: 8vw;
      padding-bottom: 2vw;
  }

  .home-section-6-white-box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30vw;
    height: 12vw;
    background: #ffffff;
}

  .home-section-6-left h4 {
      font-size: 4vw;
      margin-top: 2vw;
  }

  .home-section-6-left p {
      font-size: 3vw;
      margin-top: 1vw;
  }

  .home-section-6-right span {
      font-size: 4vw;
      margin: 2vw 0vw 1vw 0vw;
  }

  .home-section-6-drive img {
      width: 7vw;
  }

  .home-section-6-drive {
    gap: 3.3vw;
}

  .home-section-6-drive p {
      font-size: 3vw;
  }
  .home-section-6-grid{
    grid-template-columns:1fr;
    gap:8vw;
  }
  }

  /*---------------------------
  Home-section-7
  -----------------------------*/
 .home-section-7{
  padding:4vw 6vw;

  background-image:url("/assets/cyberbg.webp"); 
  background-size:cover;     
  background-position:center;
  background-repeat:no-repeat;
}

.home-section-7-top{
  width:100%;
  text-align:center;
  position:relative;
  margin-bottom:3vw;
}

.home-section-7-divider{
transform-origin:top;
display: none;
}


.home-section-7-tag{
  display:inline-block;
  background: #fff;
  color:#8c2022;
  font-size:4vw;
  padding:0.5vw 1.5vw;
  font-family: 'sceplight';

}

.home-section-7-main{
  font-size:10vw;
  font-weight:300;
  margin-top: 2vw;
  color:#fff;
  font-family: 'sceplight';
  line-height: 0.7;
  margin-left: -25vw;
  margin-bottom: 0;

}

.home-section-7-main span{
    margin-left: 26vw;
}

.home-section-7-sub{
  font-size:3vw;
margin-top: 2vw;
  color:#fff;
  font-family: 'sceplight';
}

.home-section-7-arrow{
  position:absolute;
  right:6vw;
  top:100%;
  transform:translateY(-50%);
  width:5vw;
  height:5vw;
  display:flex;
  align-items:center;
  justify-content:center;
}

.home-section-7-arrow img{
  width:10vw;
  animation:hs3arrowMove 1.5s infinite;
}

.home-section-7-bottom{
  width:100%;
  display:grid;
  grid-template-columns:1fr 0.1vw 1fr;
  gap:4vw;
  align-items:start;

}

.home-section-7-image{
  position: relative;
  overflow: hidden;
}

.home-section-7-bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #AF1E1E, #E52F2F);
  z-index: 0;

  transform: translateX(-40px); /* small shift only */
  opacity: 0;
}
.home-section-7-img{
  position: relative;
  z-index: 1;
  width: 97%;
  height: 35vw;
  object-fit: cover;
  padding-bottom: 0.8vw;
}

.home-section-7-divider{
  width:0.1vw;
  height:100%;
  display: block;
}

.home-section-7-col{
  width:100%;
}


.home-section-7-col h3{
  font-size:3.5vw;
  font-weight:300;
  color:#fff;
  font-family: 'sceplight';
   margin: 1vw 0;
   line-height: 1;
}

.home-section-7-col h3 span{
  font-weight:700;
  font-size: 4.5vw;
}

.home-section-7-text{
  font-size:1.5vw;
  line-height:2vw;
  color:#fff;
  margin-top:1vw;
  font-family: 'sceplight';
}

.home-section-7-btn{
  margin-top:2vw;
  display:flex;
  align-items:center;
  gap:0.6vw;
   padding: 0vw 6vw 6vw 6vw;
}

.home-section-7-btn p{
  font-size:1.2vw;
  color:#fff;
  font-family: 'scepregular';
}

.home-section-7-btn img{
  width:1.5vw;
}

.home-section-7-img{
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}




@media(max-width:600px){
.home-section-7-main {
        font-size: 17vw;
        margin-left: -40vw;
        margin-top: 4vw;
        margin-bottom: 4vw;
    }

    .home-section-7-image {
    position: relative;
    padding: 0vw 2vw 1vw 0vw;
    }

     .home-section-7{
  padding:20vw 6vw;
     }


    .home-section-7-sub {
        font-size: 5vw;
    }

    .home-section-7-tag {
        font-size: 9vw;
    }
    .home-section-7-main span {
    margin-left: 50vw;
}


    .home-section-7-bottom {
        grid-template-columns: 1fr;
        gap: 0vw;
    }

    .home-section-7-divider {
        display: none;
    }

    .home-section-7-img {
        height: 60vw;
    }

    .home-section-7-col h3 {
        font-size: 9vw;
        margin-top: 5vw;
        margin-bottom: 3vw;
        line-height: 1.1;
    }
     .home-section-7-col h3 span {
        font-size: 12vw;
    }


    .home-section-7-text {
        font-size: 5vw;
        line-height: 6vw;
    }

    .home-section-7-btn p {
        font-size:4vw;
    }

    .home-section-7-btn{
   padding: 0vw 6vw 0vw 6vw;
}


    .home-section-7-btn img {
        width:5vw;
    }

    .home-section-7-top {
    margin-bottom: 16vw;
}

    .home-section-7-arrow{
  right:6vw;
  top:100%;
  margin: 5vw 0;
}

.home-section-7-arrow img{
  width:15vw;
}
}


/*---------------------------
Home section 8
---------------------------*/
.home-section-8{
width:100%;
padding:0vw 0;
overflow:hidden;
margin-bottom:0vw;
position: relative;
}

.home-section-8-container{
width:90vw;
margin:auto;
padding:1vw 0 7vw 0;
position: relative;
z-index: 99999;
}

.hs8-word{
display:inline-block;
margin-right:0.5vw;
}


.home-section-8-heading{
text-align:center;
font-size:4vw;
color:#5e5e5e;
font-weight:100;
margin-bottom:-4vw;
font-family:'sceplight';
margin-left: -5vw;
}

.home-section-8--subheading{
text-align:center;
font-size:5vw;
color:#fff;
font-weight:100;
font-family:'sceplight';
padding: 0.5vw 2vw;
background-color: #A12C2A;
display: inline-block;
margin-left: 40vw;
}

.home-section-8-row{
display:flex;
gap:1.2vw;
align-items:center;
justify-content:center;
}


.home-section-8-card::before{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:100%;
background:linear-gradient(
to top,
rgba(0,0,0,0.85) 0%,
rgba(0,0,0,0.55) 15%,
rgba(0,0,0,0.25) 30%,
rgba(0,0,0,0) 50%
);
pointer-events:none;
z-index:1;
}




.home-section-8-card{
position:relative;
width:7vw;
height:35vw;
border-radius:4vw;
overflow:hidden;
cursor:pointer;
flex-shrink:0;
transition:width .6s cubic-bezier(.4,0,.2,1);
}

.home-section-8-card img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .6s cubic-bezier(.4,0,.2,1);
}



.home-section-8-card:hover img{
transform:scale(1.05);
}

.home-section-8-card.active{
width:40vw;
}

.home-section-8-row:hover .home-section-8-card{
width:8vw;
}


.home-section-8-row:hover .home-section-8-card:hover{
width:40vw;
}

.home-section-8-overlay{
position:absolute;
bottom:1.5vw;
left:50%;
transform:translateX(-50%);
display:flex;
align-items:center;
justify-content:center;
transition:.45s cubic-bezier(.4,0,.2,1);
z-index: 2;
}

.home-section-8-icon{
width:4vw;
height:4vw;
border-radius:50%;
border:.15vw solid #fff;
display:flex;
align-items:center;
justify-content:center;
}

.home-section-8-icon img{
width:2vw;
height:2vw;
}

.home-section-8-text{
position:absolute;
left:5vw;
opacity:0;
color:#fff;
font-size:1.6vw;
white-space:nowrap;
transition:opacity .35s ease;
font-family:'scepregular';
text-transform:uppercase;
}


.home-section-8-card:hover .home-section-8-overlay{
left:3vw;
transform:none;
}

.home-section-8-card:hover .home-section-8-text{
opacity:1;
}


.home-section-8-row:hover .home-section-8-card:hover .home-section-8-overlay{
left:3vw;
transform:none;
}

.home-section-8-row:hover .home-section-8-card:hover .home-section-8-text{
opacity:1;
}


.home-section-8-card.active .home-section-8-overlay{
left:3vw;
transform:none;
}

.home-section-8-card.active .home-section-8-text{
opacity:1;
}

.home-section-8-row:hover .home-section-8-card.active:not(:hover) .home-section-8-overlay{
left:50%;
transform:translateX(-50%);
}

.home-section-8-row:hover .home-section-8-card.active:not(:hover) .home-section-8-text{
opacity:0;
}

.home-section-8-card.active:hover .home-section-8-overlay{
left:3vw;
transform:none;
}

.home-section-8-card.active:hover .home-section-8-text{
opacity:1;
}


@media(max-width:600px){

.home-section-8{
margin-bottom:0;
padding:8vw 0 0 0;
margin-bottom: -13vw;
border-top-left-radius: 10vw;
}

.home-section-8-text br {
display: none;
}

.home-section-8-container{
width:100vw;
padding:6vw 0 10vw 0;
overflow:hidden;
}

.home-section-8-heading{
font-size:9vw;
margin-bottom:-10vw;
text-align:center;
margin-left: -15vw;
}

.home-section-8--subheading {
    text-align: center;
    font-size: 11vw;
}

.home-section-8-row{
display:flex !important;
flex-wrap:nowrap !important;
overflow-x:auto !important;
overflow-y:hidden;
gap:4vw;
padding:0 4vw;
justify-content:flex-start;
scroll-snap-type:x mandatory;
}

.home-section-8-row::-webkit-scrollbar{
display:none;
}

.home-section-8-card,
.home-section-8-card.active{
flex:0 0 85vw !important;
width:85vw !important;
height:110vw !important;
border-radius:6vw;
transition:none !important;
scroll-snap-align:center;
}

.home-section-8-row:hover .home-section-8-card{
width:85vw !important;
}

.home-section-8-row:hover .home-section-8-card:hover{
width:85vw !important;
}

.home-section-8-card img{
width:100%;
height:100%;
object-fit:cover;
}

.home-section-8-overlay{
position:absolute;
left:4vw !important;
bottom:5vw !important;
transform:none !important;
display:flex;
align-items:center;
gap:3vw;
z-index:2;
}

.home-section-8-icon{
width:15vw;
height:15vw;
border:.4vw solid #fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.home-section-8-icon img{
width:7vw;
height:7vw;
}

.home-section-8-text{
position:static !important;
opacity:1 !important;
display:block !important;
font-size:4vw;
line-height:1.2;
white-space:normal;
max-width:60vw;
color:#fff;
}

.home-section-8-card:hover .home-section-8-text{
opacity:1 !important;
}

.home-section-8-card.active .home-section-8-text{
opacity:1 !important;
}

.home-section-8-row:hover .home-section-8-card.active:not(:hover) .home-section-8-text{
opacity:1 !important;
}

}


/*---------------------------
Home section 9
----------------------------*/
.home-section-9{
  width:90%;
  padding:3vw 0 0vw 0;

  background-color:#A12C2A; 
  background-image:url("/assets/cyber/rectangleline.svg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  overflow:hidden;
  z-index:1;
  margin:0 auto;
}

.home-section-9-container{
width:80vw;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:0vw;
}

.home-section-9-left{
width:35vw;
color:#fff;
}

.heading-right{
margin-left: 6vw;
margin-top: -4vw;
margin-bottom: 0;
}

.home-section-9-heading{
font-size:3.5vw;
font-weight:100;
line-height:1.7;
font-family:'sceplight';
}

.home-section-9-heading span{
background-color: #fff;
color: #A12C2A;
padding: 0.2vw 1vw;
}

.home-section-9-text{
font-size:1vw;
line-height:1.3;
opacity:.9;
margin-bottom:2.5vw;
font-family:'aklight';
}

.home-section-9-btn{
display:inline-block;
background:#fff;

background: linear-gradient(to bottom, #8c2022, #bd3b35);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
padding:1.2vw 5vw;
border-radius:3vw;
font-size:1.3vw;
text-decoration:none;
font-family:'scepmedium';
transition:.3s;
}

.home-section-9-btn:hover{
background:#eaeaea;
}

.home-section-9-right{
width:40vw;
}

.home-section-9-right svg{
width:100%;
height:40vw;
object-fit:cover;
}

@media(max-width:600px){

.home-section-9{
padding:25vw 0 18vw 0;
width: 100%;
}

.home-section-9-container{
flex-direction:column-reverse;
gap:0vw;
}

.home-section-9-left{
width:100%;
}

.home-section-9-container {
    width: 90vw;
}

.home-section-9-heading{
font-size:11vw;
}

.home-section-9-text{
font-size:4vw;
margin-bottom: 5vw;
}
.heading-right{
  margin-top: -14vw!important;
  margin-left: 15vw;
}

.home-section-9-btn{
font-size:5vw;
padding:3vw 10vw;
border-radius:8vw;
}

.home-section-9-right{
width:100%;
}

.home-section-9-right svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

}


/*----------------------------
Home Section 10
---------------------------*/

.home-section-10{
width:100%;
padding:8vw 0;
background:#fff;
}

.home-section-10-container{
width:80vw;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:6vw;
}

.home-section-10-left{
width:30vw;
text-align:center;
}

.home-section-10-logo{
width:20vw;
margin-bottom:1.5vw;
}

.home-section-10-group{
font-size:2vw;
letter-spacing:.3vw;
color:#2d3b5f;
font-family:'scepmedium';
}

.home-section-10-right{
width:45vw;
}

.home-section-10-heading{
font-size:2.8vw;

background: linear-gradient(to bottom, #8c2022, #bd3b35);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
margin-bottom:2vw;
font-family:'sceplight';
letter-spacing: 1px;
}

.home-section-10-text{
font-size:1.2vw;
line-height:1.6;
color:#555;
font-family:'sceplight';
margin-bottom: 2vw;
}

.home-section-10-btn{
display:inline-flex;
align-items:center;
gap:1vw;
background: linear-gradient(to right, #8c2022, #bd3b35);
color:#fff;
padding:1.2vw 3vw;
border-radius:3vw;
font-size:1.5vw;
text-decoration:none;
font-family:'scepmedium';
transition:.3s;
}

.home-section-10-btn-icon{
width:1.6vw;
filter: brightness(0) invert(1);
}


.home-section-10-btn:hover{
background: linear-gradient(to right, #8c2022, #bd3b35);
}

@media(max-width:600px){

.home-section-10{
padding:20vw 0;
}

.home-section-10-container{
flex-direction:column;
gap:8vw;
}

.home-section-10-left{
width:100%;
}

.home-section-10-logo{
width:55vw;
}

.home-section-10-group{
font-size:4vw;
}

.home-section-10-right{
width:100%;
text-align:center;
}

.home-section-10-container {
    width: 90vw;
}

.home-section-10-heading{
font-size:8vw;
margin-bottom: 6vw;
}

.home-section-10-text{
font-size:4vw;
margin-bottom: 6vw;
}

.home-section-10-btn{
font-size:4.5vw;
padding:3vw 7vw;
border-radius:8vw;
}

.home-section-10-btn-icon{
width:4vw;
}

}

/*---------------------------
Home-section-11
---------------------------*/
.home-section-11{
width:100%;
padding:0vw 0 3vw 0;
background:#fff;
}

.home-section-11-heading-wrap{
position:relative;
width:100%;
padding:2vw 0;
margin-bottom:0vw;
}

.home-section-11-heading{
text-align:center;
font-size:3.5vw;
color: #A12C2A;
font-family:'sceplight';
position:relative;
z-index:2;
font-weight: 100;
line-height: 1.3;
margin-left: -13vw;
}

.home-section-11-heading span{
font-family:'sceplight';
background-color: #A8302D;
color: #fff;
padding: 0.5vw 2vw;
margin-left: 30vw;
}

.home-section-11-top-line{
position:absolute;
top:0;
right:0;
width:85%;
height:.15vw;
background:#d9deea;
}

.home-section-11-bottom-line{
position:absolute;
bottom:0;
left:0;
width:85%;
height:.15vw;
background:#d9deea;
}

.home-section-11-blue-top{
position:absolute;
top:0vw;
left:50%;
transform:translateX(-50%);
width:.15vw;
height:3vw;
background: linear-gradient(to right, #8c2022, #bd3b35);
}

.home-section-11-blue-bottom{
position:absolute;
bottom:0vw;
left:50%;
transform:translateX(-50%);
width:.15vw;
height:3vw;
background: linear-gradient(to right, #8c2022, #bd3b35);
}

.home-section-11-container{
width:80vw;
margin:auto;
}

.home-section-11-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:1.5vw;
}

.home-section-11-card{
background:#FFF5F5;
padding:2vw 1vw;
text-align:center;
cursor:pointer;
border-radius:1vw;
position:relative;
overflow:hidden;
transition:.4s;
}

.home-section-11-card::before{
content:"";
position:absolute;
left:0;
top:0;
width:0%;
height:100%;
background:linear-gradient(90deg,#8c2022,#bd3b35);
transition:width .45s cubic-bezier(.4,0,.2,1);
z-index:0;
}

.home-section-11-card:hover::before{
width:100%;
}

.home-section-11-card img,
.home-section-11-card p{
position:relative;
z-index:2;
transition:.35s;
}

.home-section-11-card img{
width:6vw;
height:6vw;
object-fit:contain;
margin-bottom:1vw;
}

.home-section-11-card p{
font-size:1.5vw;
color:#A12C2A;
font-family:'scepregular';
text-transform: uppercase;
}

.home-section-11-card:hover p{
color:#fff;
}

.home-section-11-card:hover img{
filter:brightness(0) invert(1);
}



@media(max-width:600px){

  .home-section-11{
    padding-top: 10vw;
  }

.home-section-11-heading{
font-size:7vw;
margin-left: -40vw;
}

.home-section-11-grid{
grid-template-columns:repeat(2,1fr);
gap:3vw;
}

.home-section-11-heading span {
    margin-left: 50vw;
}



.home-section-11-card{
padding:6vw 2vw;
border-radius:3vw;
}

.home-section-11-container{
width:90vw;
margin:auto;
}

.home-section-11-card img{
width:10vw;
height:10vw;
}

.home-section-11-card p{
font-size:4.5vw;
}

.home-section-11-top-line,
.home-section-11-bottom-line{
height:.45vw;
}

.home-section-11-blue-top,
.home-section-11-blue-bottom{
height:7vw;
width:.30vw;
}

}


/*-----------------------------
Home Section 12
----------------------------*/
.home-section-12{
width:100%;
padding:0vw 0 8vw 0;
background:#fff;
}

.home-section-12-container{
width:65vw;
margin:auto;
text-align:center;
}

.home-section-12-heading{
font-size:4vw;

background: linear-gradient(to bottom, #8c2022, #bd3b35);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
font-family:'scepmedium';
margin-bottom:1vw;
}

.home-section-12-sub{
font-size:1.5vw;
color:#555;
margin-bottom:3vw;
font-family:'scepregular';
}

.home-section-12-form{
width:80%;
margin: 0 auto;
}

.home-section-12-row{
display:flex;
justify-content:space-between;
gap:3vw;
margin-bottom:2vw;
}

.home-section-12-row.single{
justify-content:flex-start;
}

.home-section-12-field{
width:100%;
text-align:left;
}

.home-section-12-field label{
display:block;
font-size:1.2vw;
margin-bottom:.6vw;
color:#333;
font-family:'scepregular';
}

.home-section-12-field input{
width:85%;
height:3vw;
border:.12vw solid #b9c7e3;
background:transparent;
padding:0 1vw;
font-size:1vw;
font-family:'scepregular';
outline:none;
}

.home-section-12-field select{
width:44%;
height:3vw;
border:.12vw solid #b9c7e3;
background:transparent;
padding:0 1vw;
font-size:1vw;
font-family:'scepregular';
outline:none;
}

.home-section-12-field select{
appearance:none;
background:url("arrow.png") no-repeat right 1vw center;
background-size:1vw;
}

.home-section-12-btn-wrap{
margin-top:3vw;
}

.home-section-12-btn{
background:linear-gradient(135deg,#8c2022,#bd3b35);
color:#fff;
border:none;
padding:1.5vw 5vw;
font-size:1.8vw;
border-radius:3vw;
font-family:'scepmedium';
cursor:pointer;
margin-top: 2vw;
}

@media(max-width:600px){

.home-section-12-container{
width:100%;
}

.home-section-12-heading{
font-size:8vw;
}

.home-section-12-sub{
font-size:3.8vw;
line-height: 1.2;
margin-bottom: 7vw;
}

.home-section-12-field input {
    width: 90%;
}

.home-section-12-field select {
    width: 98%;
}

.home-section-12-row.single {
  margin-top: 4vw;
}

.home-section-12-row{
flex-direction:column;
gap:4vw;
}

.home-section-12-field label{
font-size:3.5vw;
}

.home-section-12-field input,
.home-section-12-field select{
height:10vw;
font-size:3.5vw;
padding:0 3vw;
}

.home-section-12-btn{
font-size:4.5vw;
padding:3vw 10vw;
border-radius:8vw;
}

}



/*-----------------------------
Footer
------------------------------*/
.footer-section{
width:100%;
background:#9A2827;
padding:5vh 6vw 0vh 6vw;
box-sizing:border-box;
color:white;
}

.footer-container{
display:flex;
justify-content:space-between;
gap:6vw;
flex-wrap:wrap;
}




.footer-logo svg{
width:11vw;
height:auto;
}


.footer-right{
display:flex;
flex-direction:column;
gap:2vw;
}


.footer-menu{
display:flex;
gap:1.1vw;
justify-content:flex-start;
flex-direction: column;
margin-left: 10vw;
}

.footer-menu a{
color:white;
text-decoration:none;
font-size:1.1vw;
opacity:1;
font-family: 'aklight';
}




.footer-middle{
display:flex;
justify-content:flex-start;
align-items:flex-start;
gap:2vw;
flex-direction: column;

}

.footer-middle h2{
    font-family: 'aklight';
        font-size: 1.5vw;
        margin: 0;
}

.footer-address{
display:flex;
flex-direction:column;
gap:0.8vw;
font-size:1vw;
font-family: 'aklight';
}

.footer-address p{
  margin: 0;
}

.footer-address h3{
    margin-bottom: 0vw;
    margin-top: -0.5vw;
}

.footer-contact-row{
display:flex;
align-items:center;
gap:.8vw;
}

.footer-contact-row{
display:flex;
align-items:center;
gap:0.8vw;

}

.footer-row-first{
margin-top: 2vw;
}

.footer-icon{
display:flex;
align-items:center;
justify-content:center;
width:1.5vw;
height:1.5vw;
flex-shrink:0;
background:#fff;
border-radius:50%;
}

.footer-icon svg{
width:55%;
height:55%;
display:block;
}

.footer-icon svg path{
fill:#9A2827;
}


.footer-social{
display:flex;
gap:1vw;
margin-top: 1.8vw;
}

.footer-social img{
width:2.3vw;
height:auto;
}



.footer-legal{
display:flex;
justify-content:flex-start;
gap:1vw;
font-size:1vw;
opacity:1;
margin-top: 0;
flex-direction: column;
margin-bottom: 3vw;
margin-top: 1.5vw;

}

.footer-legal a{
font-family: 'aklight';
color: #fff;
text-decoration: none;
}


.footer-lines{
margin-top:3vw;
display:flex;
flex-direction:column;
gap:1.5vw;
}

.footer-lines div{
width:100%;
height:1px;
background:#fff;
}


.footer-bottom{
display:flex;
justify-content:center;
margin-top:0;
font-size:.9vw;
opacity:1;
font-family: 'aklight';
margin-left: 4.5vw;
}
@media(max-width:600px){

.footer-container{
flex-direction:column;
gap:1vh;
}

.footer-section{
    padding-bottom:4vh;
}

.footer-left{
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 3vw;
}

.footer-logo svg {
    width: 30vw;
    height: auto;
}


.footer-right{
width:100%;
}

.footer-menu{
flex-wrap:wrap;
justify-content:center;
gap:6vw;
margin-left: 0vw;
text-align: center;
display: none;
}

.footer-menu a{
font-size:4.5vw;
}

.footer-middle{
flex-direction:column;
gap:1vh;
align-items: center;
}

.footer-address{
font-size:4vw;
gap: 6vw;
margin-top: 4vw;
text-align: center;
}

.footer-contact-row {
    gap: 2vw;
    margin-left: 17vw;
}

.footer-social {
    display: flex;
    gap: 3vw;
}


.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width:5vw;
    height:5vw;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
}

.footer-social img{
width:8vw;
}

.footer-legal {
        justify-content: center;
        font-size: 3.5vw;
        margin-top: 8vw;
        text-align: center;
        gap: 4.5vw;
    }

.footer-lines {
    margin-top: 5vw;
    gap: 2.5vw;
}


.footer-bottom{
justify-content:center;
font-size:3.5vw;
margin-top: 8vw;
}

.footer-middle h2 {
    font-family: 'aklight';
    font-size: 6.5vw;
    display: none;
}

}

@media (min-width:600px){
    .mobile{
        display: none;
    }
}

@media (max-width:600px){
    .desktop{
        display: none;
    }
}

/*-----------------------------
Home Section 13
------------------------------*/
.home-section-13{
width:100%;
padding:0vw 6vw 5vw 6vw;
background:#fff;
box-sizing:border-box;
}

.home-section-13-top{
text-align:left;
max-width:100%;
margin:0 auto 5vw auto;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}


.home-section-13-heading{
font-size:7vw;
color: #8c2022;
font-family: 'sceplight';
font-weight: 100;
margin-left: 13vw;
margin-bottom: 0;
}

.home-section-13-subheading{
font-size:3.5vw;
color:#333;
margin-bottom: 0.5vw;
font-family: 'sceplight';
font-weight: 100;
margin-left: 20vw;
margin-top: 0;
}

.home-section-13-para{
font-size:1.3vw;
line-height:1.6;
color:#333;
font-family: 'dmlight';
max-width: 35vw;
margin: 0 auto;
padding-left: 16vw;
}


.home-section-13-container{
display:flex;
justify-content:center;
align-items:center;
gap:6vw;
max-width: 70vw;
margin: 0 auto;
}


.home-section-13-left{
width:40%;
}

.home-section-13-image{
width:35vw;
height:auto;
display:block;
}


.home-section-13-right{
width:50%;
display:flex;
flex-direction:column;
gap:0.5vw;
}


.home-section-13-item{
display:flex;
align-items:center;
gap:1.5vw;
font-size:1.3vw;
line-height:1.5;
color:#333;
font-family: 'dmlight';
max-width: 35vw;
margin-left: 0vw;
}


.home-section-13-number{
width:4.2vw;
height:4.2vw;
border-radius:50%;
border:1px solid #8c2022;
display:flex;
align-items:center;
justify-content:center;
font-size:1.6vw;
color:#000;
flex-shrink:0;
font-family: 'sceplight';
}

.home-section-13-heading span{
display:inline-block;
opacity:0;
transform:translateY(1.5vw);
}

.home-section-13-subheading,
.home-section-13-para{
opacity:0;
transform:translateY(1.5vw);
}

.home-section-13-left{
overflow:hidden;
clip-path: inset(0 100% 0 0);
}

.home-section-13-image{
width:100%;
display:block;
}
.home-section-13-item{
opacity:0;
transform:translateY(1.5vw);
}

@media(max-width:600px){

.home-section-13-top{
max-width:90vw;
}

.home-section-13 {
    width: 100%;
    padding: 0vw 6vw 16vw 6vw;
}

.home-section-13-heading{
font-size:11vw;
margin-left: 0;
margin-bottom: 2vw;
}

.home-section-13-subheading{
font-size:6vw;
margin-left: 8vw;
margin-bottom: 3vw;
}

.home-section-13-image {
    width: 100%;
    margin-left: 0vw;
}


.home-section-13-para {
        font-size: 3.5vw;
        max-width: 100%;
        padding-left: 9vw;
    }

.home-section-13-container{
flex-direction:column;
gap:6vw;
max-width: 100%;
}

.home-section-13-left{
width:100%;
}

.home-section-13-right{
width:100%;
gap:0vw;
}

.home-section-13-item{
font-size:4vw;
gap:3vw;
max-width: 100%;
}

.home-section-13-number{
width:12vw;
height:12vw;
font-size:4.5vw;
border:1px solid #8c2022;
}

}

/*-----------------------------
Home Section 14
----------------------------*/
.home-section-14{
width:100%;
padding:0vw 6vw 6vw 6vw;
background:#fff;
box-sizing:border-box;
}



.home-section-14-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:4vw;
gap:4vw;
}

.home-section-14-heading{
width:50%;
}

.home-section-14-heading h2{
font-size:4vw;
font-weight:100;
line-height:1;
color:#444;
font-family: 'sceplight';
}

.home-section-14-heading em{
background: linear-gradient(to right, #8c2022, #bd3b35);
color:#fff;
padding:0.4vw 0.4vw;
display:inline-block;
margin-top: 1vw;
font-style: normal;
}

.home-section-14-heading b{
  margin-left: 7vw;
  font-style: normal;
}


.home-section-14-para{
width:40%;
}

.home-section-14-para p{
font-size:1.1vw;
line-height:1.6;
color:#444;
font-family: 'dmlight';
margin-top: 6vw;
}


.home-section-14-gallery{
display:flex;
flex-direction:column;
gap:1vw;
}


.home-section-14-row{
display:grid;
gap:1vw;
}

.home-section-14-row-two{
grid-template-columns:0.5fr 1fr;
}

.home-section-14-row-three{
grid-template-columns:0.7fr 1fr 0.7fr;
}


.home-section-14-imgbox{
width:100%;
overflow:hidden;
}

.home-section-14-imgbox img{
width:100%;
height:25vw;
object-fit:cover;
display:block;
}


.home-sec14-word{
display:inline-block;

}

.home-section-14-imgbox{
overflow:hidden;
}

.home-section-14-imgbox img{
width:100%;
display:block;
clip-path: inset(0 100% 0 0);
will-change: transform, clip-path;
transition: transform 2s cubic-bezier(.22,.61,.36,1);
transform: scale(1);
}


.home-section-14-imgbox:hover img{
transform: scale(1.06);
}

@media(max-width:600px){
.home-section-14{
padding:10vw 6vw 6vw 6vw;
}


.home-section-14-top{
flex-direction:column;
gap:4vw;
}

.home-section-14-heading{
width:100%;
}

.home-section-14-heading h2{
font-size:10vw;
margin: 0;
}

.home-section-14-heading span{
padding:1vw 2vw;
}

.home-section-14-para{
width:100%;
margin-bottom: 4vw;
}

.home-section-14-para p{
font-size:3.6vw;
margin: 0;
margin-left: 4vw;
}

.home-section-14-imgbox img {
    width: 100%;
    height: 100%;
}

.home-section-14-row {
    gap: 2vw;
}

.home-section-14-heading b {
    margin-left: 12vw;
}

.home-section-14-row-two{
grid-template-columns:1fr;
}

.home-section-14-row-three{
grid-template-columns:1fr;
}

.home-section-14-gallery{
gap:2vw;
}

}

/*--------------------------
Home Section 15
--------------------------*/
.home-section-15{
width:100%;
padding:4vw 11vw 4vw 11vw;
box-sizing:border-box;
background: linear-gradient(to right, #8c2022, #bd3b35);
margin-bottom: 3vw;
}

.home-section-15-wrapper{
width:100%;
display:flex;
flex-direction:column;
justify-content:space-between;
min-height:12vw;
}


.home-section-15-icon{
width:3vw;
margin-bottom:3vw;
}

.home-section-15-icon svg{
width:3vw;
height: auto;
display:block;
}


.home-section-15-bottom{
display:flex;
justify-content:space-between;
align-items:flex-end;
gap:4vw;
}

.home-section-15-heading{
width:55%;

}

.home-section-15-heading h2{
font-size:2.5vw;
color:#fff;
line-height:1.2;
font-family: 'dmlight';
font-weight: 100;
margin: 0;
}

.home-section-15-text{
width:40%;
}

.home-section-15-text p{
font-size:1.2vw;
line-height:1.6;
color:#e5e5e5;
font-family: 'dmlight';
margin: 0;
}

.home-section-15-icon{
opacity:0;
transform:translateY(3vw);
}

.home-section-15-heading span{
display:inline-block;
opacity:0;
transform:translateY(2vw);
}

.home-section-15-text{
opacity:0;
transform:translateY(2vw);
}


@media(max-width:600px){

.home-section-15{
padding:15vw 6vw;
}

.home-section-15-icon{
width:8vw;
margin-bottom:6vw;
}

.home-section-15-bottom{
flex-direction:column;
align-items:flex-start;
gap:4vw;
}

.home-section-15-icon svg {
    width: 13vw;
}

.home-section-15-heading{
width:100%;
}

.home-section-15-heading h2{
font-size:7vw;
margin-top: 5vw;
}

.home-section-15-text{
width:100%;
}

.home-section-15-text p{
font-size:4vw;
}

}

/*----------------------------
Home Section Form
----------------------------*/

.home-section-form{
  padding:4vw 5vw;
  background:#FFE4E461;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:5vw;
}

.home-section-form-left{
  width:45%;
}

.home-section-form-left h2{
  font-size:4vw;
  font-weight:300;
  margin:0;
  font-family: 'sceplight';
}

.home-section-form-left p{
  font-family: 'aklight';
  font-size: 1.4vw;
  line-height: 1.2;
}

.home-section-form-left h2 span{
  color:#A12C2A;
  font-size:6vw;
}



.home-section-form-right{
  width:45%;
}


.home-section-form-row{
  display:flex;
  gap:1vw;
}

.home-section-form  input:-webkit-autofill,
.home-section-form  textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100vh transparent inset !important;
  box-shadow: 0 0 0 100vh transparent inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 9999s ease-in-out 0s;
}

.home-section-form  input,
.home-section-form  textarea {
  background: transparent;
  color: #000;
}

.home-section-form input{
  width:94%;
  padding:1.2vw;
  margin-bottom:1vw;
  border-radius:0.5vw;
  border:1px solid #000;
  background:transparent;
  font-size:1vw;
  outline:none;
  font-family: 'aklight';
}


.home-section-form button{
  width:100%;
  padding:1.2vw;
  border:none;
  border-radius:3vw;
  background:#B93A34;
  color:#fff;
  font-size:1.5vw;
  cursor:pointer;
  font-family: 'aklight';
}


@media(max-width:600px){

  .home-section-form{
    flex-direction:column;
    gap:8vw;
  }

  .home-section-form-left,
  .home-section-form-right{
    width:100%;
  }

  .home-section-form-left h2{
    font-size:8vw;
  }

  .home-section-form-left p{
    font-size:4vw;
    max-width:100%;
  }

  .home-section-form-row{
    flex-direction:column;
    gap:0;
  }

  .home-section-form-left h2 span{
  color:#A12C2A;
  font-size:13vw;
}

.home-section-form {
    padding: 13vw 5vw;
}

  .home-section-form input{
    font-size:3.5vw;
    padding:3vw;
    margin-bottom:3vw;
    border-radius: 1.5vw;
  }

  .home-section-form button{
    font-size:4vw;
    padding:3vw;
    border-radius:6vw;
  }

}