.page-title {
  background-size: cover !important; 
}
.dn_mode{
    background: rgb(0 0 0 / 0%);
    color: #fff!important;
    outline: none!important;
}
.dn_mode:hover{
    color: #fff!important;
}
.header-style-1 .sticky-header{
    background: rgb(0 0 0 / 0%);
    /*background: linear-gradient(180deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 40%), rgb(0 0 0 / 15%), rgb(0 0 0 / 0%));*/
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    background: linear-gradient(180deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 0%));
}
.animated-hero-section{
	position: relative;
	z-index: 1;
	overflow: hidden;
    background-image: url(../images/img/road-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.animated-hero-section::after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	backdrop-filter: blur(var(--blurval));
	z-index: -1;
}
.animated-hero{
    position: relative;
    min-height: 200vh;
    width: 100%;
    z-index: 1;
}
.animated-hero::after{
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: -1;
    background-image: url(../images/img/road-min.jpg);
    background-size: 1905px;
    background-repeat: no-repeat;
    background-position: center var(--topval);
    background-attachment: fixed;
    transition: 0.1s;
    filter: blur(var(--blurval));
}
.animated-hero .car-center{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    transition: 0.2s;
}
.animated-hero .car-center .car_img{
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, var(--top-y)) scale(var(--scale));
    width: 1000px;
    max-width: unset;
    /*transition: 0.1s;*/
}
.banner-info{
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 40%), rgb(0 0 0 / 30%), rgb(0 0 0 / 20%), transparent);
    /*min-height: 100vh;*/
}
.banner-info .banner_slider{
	min-height: 100vh;
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
}
.banner-info .banner_slider .container{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.banner-info .banner_slider .container > div{
	width: 100%;
}
.banner-info .banner_slider .slide-title h2{
	font-size: 72px;
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 0.4em;
    text-transform: capitalize;
}
.banner-info .banner_slider .slide-text p {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 2em;
}
.banner-info .swiper-button-next, 
.banner-info .swiper-button-prev{
	filter: grayscale(1) brightness(0) invert(1);
    width: 35px;
    height: 35px;
    background-size: contain;
}

.banner-info .swiper-slide{
	opacity: 0;
}
.banner-info .swiper-slide.swiper-slide-active{
	opacity: 1;
}
/*Loader animation*/
/* From Uiverse.io by vinodjangid07 */ 
.loader {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truckWrapper {
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  overflow-x: hidden;
}
/* truck upper body */
.truckBody {
  width: 130px;
  height: fit-content;
  margin-bottom: 6px;
  animation: motion 1s linear infinite;
}
/* truck suspension animation*/
@keyframes motion {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* truck's tires */
.truckTires {
  width: 130px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 15px;
  position: absolute;
  bottom: 0;
}
.truckTires svg {
  width: 24px;
}

.road {
  width: 100%;
  height: 1.5px;
  background-color: #282828;
  position: relative;
  bottom: 0;
  align-self: flex-end;
  border-radius: 3px;
}
.road::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: #282828;
  right: -50%;
  border-radius: 3px;
  animation: roadAnimation 1.4s linear infinite;
  border-left: 10px solid white;
}
.road::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-color: #282828;
  right: -65%;
  border-radius: 3px;
  animation: roadAnimation 1.4s linear infinite;
  border-left: 4px solid white;
}

.lampPost {
  position: absolute;
  bottom: 0;
  right: -90%;
  height: 90px;
  animation: roadAnimation 1.4s linear infinite;
}

@keyframes roadAnimation {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-350px);
  }
}

/*end*/

/*Scroll Animation*/
/* Base state */
.scroll-animate {
  opacity: 0;
  transform: none;
  filter: none;
  will-change: transform, opacity, filter;
  transition: none; /* we will handle transform in JS */
}

/*about page animation*/
/*flex items*/  
.flxcontrol{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}
.align-items-start{
    align-items: flex-start;
}
.flx-reverse{
    lex-direction: row-reverse;
}
.justify-content-center{
    justify-content: center;
}
.fullwidth{
    width: 100%!important;
}
.halfwidth{
    width: 50%!important;
}
/*end*/
.position-relative{
    position: relative;
}
.mb-5{
    margin-bottom: 50px;
}
.mb-4{
    margin-bottom: 40px;
}
.mb-3{
    margin-bottom: 30px;
}
.mb-2{
    margin-bottom: 20px;
}
.mb-1{
    margin-bottom: 10px;
}
.mb-0{
    margin-bottom: 0px;
}
.mt-5{
    margin-top: 50px;
}
.mt-4{
    margin-top: 40px;
}
.mt-3{
    margin-top: 30px;
}
.mt-2{
    margin-top: 20px;
}
.mt-1{
    margin-top: 10px;
}
.mt-0{
    margin-top: 0px;
}
.about-us-section{
    padding-bottom: 0px;
}
.ab_sec2 {
    position: relative;
    overflow: hidden;
    transition: 1s;
}
.ab_sec2 .card{    
    border-radius: 24px;
    padding: 60px 30px;
    background: #f1f1f1;
    height: 65vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    background-image: url(../images/img/history-right-bg.eca731dc.png), url(../images/img/history-left-bg.ab7b1768.png);
    background-position: 100%, 0;
    background-repeat: no-repeat, no-repeat;
    background-size: cover;
    background-blend-mode: color-burn;
}  
.img-fluid{
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 280px;
}
.img-fluid.img1{
    transform: rotate(348deg);
}
.ab_sec2 .stry_cont p{
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: var(--bg-color);
}
.ab_sec2 .text-muted p{
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0px;
    color: rgba(32, 34, 35, 1);
    opacity: 0.4;
  }
.ab_sec2 .card {
    /*overflow-y: auto;*/
    /*scroll-snap-type: y mandatory;*/
}
.ab_sec2.active .card{
    /*overflow: auto;*/
}
.story_item {
    scroll-snap-align: start;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 15px);
    height: 100%;
    padding: 60px 44px;
    overflow: hidden;
    border-radius: 24px;
}
.story_item .stry_cont,
.story_item .text-muted,
.story_item .img-fluid  {
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease-out;
}
.story_item .img-fluid{
    transition: 1s ease-out;
    position: relative;
    z-index: 1;
}
.story_item.active {
    /*opacity: 1;
    visibility: visible;*/
    z-index: 2;
}
.story_item.active .stry_cont,
.story_item.active .text-muted,
.story_item.active .img-fluid  {
    opacity: 1;
    visibility: visible;
}
.story_item.leaved .stry_cont{    
    transform: translateY(-100%);
}
.ab_sec2 .story_item.active .img-fluid.img1{
    transform: translate(70%, -90%) rotate(17deg);
}
.ab_sec2.active .story_item.active .img-fluid.img1{
    transform: rotate(17deg);
}
.ab_sec2 .story_item.leaved .img-fluid.img1{
    transform: scale(0.75) translate(-150%, 140%) rotate(17deg);
    visibility: visible;
    opacity: 1;
}
.story_item .img-fluid.img2{
    transform: rotate(0deg);;
}
.story_item.active .img-fluid.img2{
    transform: rotate(-15deg);
}
.story_item.leaved .img-fluid.img2{
    transform: scale(0.75) translate(100%, 125%) rotate(-17deg);
    visibility: visible;
    opacity: 1;
}
.story_item .img-fluid.img3{
    transform: scale(0.5) rotate(0deg);
}
.story_item.active .img-fluid.img3{
    transform: scale(0.8) rotate(17deg);
}
.story_item.leaved .img-fluid.img3{
    transform: scale(0.7) translate(-110%, -158%) rotate(17deg);
    visibility: visible;
    opacity: 1;
}
.story_item .img-fluid.img4{    
    transform: scale(0.4);
}
.story_item.active .img-fluid.img4{
    transform: scale(0.8) rotate(-17deg);
}
.story_item.leaved .img-fluid.img4{
    transform: scale(1) translate(40%, -30%) rotate(-17deg);
    visibility: visible;
    opacity: 1;
}
body.issafari.stop-scroll{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}
.stop-scroll .ab_sec2.active{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9;
    display: flex;
    align-items: center;    
    backdrop-filter: blur(25px);
}

.scrollicon{
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
}
.scrollicon img{
    width: 60px;
    opacity: .3;
    filter: invert(1);
}
.bounce {
    animation: bounce 5s ease infinite;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0%);
    }
    40% {
      transform: translateY(-30%);
    }
    60% {
      transform: translateY(-15%);
    }
}
/*end*/

/*about 3*/
  .ab_sec3{
    position: relative;
    padding: 125px 0;
    background-image: url(../images/img/abt_grid.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    transition: 2s ease-in-out;
    z-index: 1;
  }
  .ab_sec3.reached {
    background-position: center top;
  }
  .ab_sec3::after{
    content: "";
    position: absolute;
    right: -2%;
    bottom: 0;
    z-index: -1;
    width: 420px;
    aspect-ratio: 3 / 2;
    background: url(../images/img/transport_mode.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    display: none;
  }
  .ab_sec3 .dgns{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .ab_sec3 .dgns::after{
    content: "";
    width: 150px;
    height: 100%;
    max-width: 15%;
    background-image: url(../images/img/star_left.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    left: 10%;
    display: none;
  }
  .ab_sec3 .dgns::before{
    content: "";
    width: 150px;
    height: 100%;
    max-width: 15%;
    background-image: url(../images/img/star_right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    right: 10%;
    display: none;
  }
  .ab_sec3 .mission-description {
    /*font-size: 26px;*/
    line-height: 1.6em;
    color: #fff;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    font-weight: 500;
  }
  .ab_sec3 .mission-description p:last-child{
    margin-bottom: 0;
  }
  .ab_sec3 .mission-description span {
    color: var(--secondary-color);
    font-weight: 600;
    /*background: radial-gradient(41.95% 157.14% at 24.09% 0%, #FFFFFF 0%, #FBA1E3 74.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgb(0 0 0 / 0%);*/
  }
/*end*/

/*Animated timeline*/
    .ani-timeline{
        padding-bottom: 150px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        min-height: var(--height);
        background-color: #fff;
    }
    .ani-timeline.active-sec{
        min-height: var(--height);
    }
    .ani-timeline .abt_fixed_bt{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        min-height: var(--height);
    }
    .ani-timeline.active-remove .abt_fixed_bt{
        align-items: flex-end;
    }
    .ani-timeline:before {
        content: "";
        background: url(../images/dots.png) center center / contain repeat local;
        width: 100%;
        height: 100vh;
        position: absolute;
        left: 0;
        top: 0;
    }
    .timeline{
        position: relative;
        z-index: 1;
        width: 100%;
        overflow: hidden;
    }
    .active-sec .timeline{
        /*position: fixed;*/
        left: 0;
        top: 110px;
        position: sticky;
        overflow: hidden;
    }
    .timeline .animated-truck{
        position: absolute;
        width: 100%;
        top: 55px;
        z-index: -1;
        left: 0;
        text-align: center;
    }
    .timeline .animated-truck::after{
        content: "";
        position: absolute;
        left: 0;
        top: 222px;
        width: 100%;
        height: 10px;
        z-index: -4;
        background: #404040;
    }
    .timeline .animated-truck img{
        left: 53%;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
        mix-blend-mode: multiply;
        transition: 1s;
    }
    .timeline .animated-truck img.active{
        /*transform: translateX(50%);*/
    }
    .timeline .animated-truck img.active-reverse{
        /*transform: translateX(-100%);*/
    }
    .timeline .tl-points{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 30px;
        overflow: hidden;
        min-height: 80vh;
    }
    .timeline .tl-points li{
        --x-val: 100%;
        min-width: 550px;
        overflow: hidden;
        text-align: center;
        visibility: hidden;
        /*display: none;*/
        opacity: 0;
        visibility: hidden;
        transform: translateX(var(--x-val)) scale(0.5);
        transition: 0.5s;
        position: absolute;
    }
    .timeline .tl-points li.prev-item{
        transform: translateX(var(--x-val)) scale(0.5);
    }
    .timeline .tl-points li.active{
        /*display: block;*/
        opacity: 1;
        visibility: visible;
        transform: translateX(var(--x-val)) scale(1);
    }
    .timeline .tl-points li.first_blank{
        opacity: 0;
        visibility: hidden;
    }
    .tl-points .tl-info .tl-flag{
        text-align: center;
        margin-bottom: 250px;
        font-weight: 700;
        font-size: 100px;
        position: relative;
        z-index: 1;
    }
    .tl-points .tl-info .tl-flag::after{
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%) rotate(0deg) scale(0.0);
        top: -19px;
        width: 60px;
        height: 160px;
        background-image: url(../images/img/marker_flag.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: 1;
        transition: 0.3s;
        display: none;
    }
    .timeline .tl-points li.active .tl-flag::after{        
        transform: translateX(-50%) rotate(15deg) scale(1);
    }
    .tl-points .tl-info .tl-flag h3{
        font-weight: 700;
        font-size: 60px;
        color: var(--secondary-color);
    }
    .tl-points .tl-info .imgs{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
    }
    .tl-points .tl-info .imgs img{
        max-width: 150px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 10px;
        filter: grayscale(1);
        transition: 0.3s;
    }
    .tl-points li.active .tl-info .imgs img{
        filter: none;
    }
    .tl-points .tl-info .ti-desc{
        
    }
    .tl-points .tl-info .ti-desc h3{
        
    }
    .tl-points .tl-info .ti-desc p{
        line-height: 1.4;
        font-family: "Roboto", sans-serif;
        padding: 5px 15px;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }
/*end*/

/*Need*/
    .partners-section,
    .fun-fact-section{
        z-index: 2;
        position: relative;
        background: #fff;
    }
/*end*/

/*location map*/
    .loc-info{
        overflow: hidden;
        width: 100%;
        margin-bottom: 70px;
    }
    .loc-info > .container{
        padding-top: 0;
    }
    .loc-info > .container > .row{
        display: flex;
        align-items: stretch;
    }
    .loc-content{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .loc-content > h2{
        font-size: 42px;
        font-weight: 700;
        width: 100%;
    }
    .loc-content > h2 span{
        color: var(--secondary-color);
    }
    .loc-content > p{
        width: 100%;
    }
    .loc-box{
        width: calc(50% - 30px);
    }
    .loc-box .lb-l{
        
    }
    .loc-box .lb-l h2{
        display: flex;
        align-items: flex-start;
    }
    .loc-box .lb-l h2 > span{
        font-size: 44px;
        padding: 5px 5px 0px 5px;
    }
    .loc-box .lb-l h2 span.count{
        font-size: 92px;
        color: var(--secondary-color);
        font-weight: 900;
        padding: 0;
    }
    .loc-box .lb-l h3{
        font-size: 22px;
        font-weight: 700;
        color: #000;
        margin-top: 0;
    }
    .loc-box .lb-r{
        
    }
    .loc-box .lb-r p{
        font-size: 14px;
        line-height: 1.4;
    }
    .loc-box.w-100{ 
        width: 100%;
        margin-top: 30px;
        padding: 15px;
        color: #fff;
        border: 1px solid var(--secondary-color);
        background: #ffefef;
        border-radius: 5px;
    }
    .loc-box.w-100 h3{
        font-size: 28px;
        color: var(--secondary-color);
    }
    .loc-box.w-100 p{
       margin-bottom: 0; 
    }
    .loc-map svg{
        height: 100%;
        min-height: 60vh;
    }
    .loc-map svg path{
        transition: 0.3s;
    }
    .loc-map svg g:hover path:not(:hover){
        fill: var(--primary-color);
    }
    .loc-map svg path:hover{
        fill: var(--secondary-color);
    }
/*end*/

/*Projects*/
    .building-hero-slider{
        padding: 0 30px;
    }
    .building-hero-slider .swiper-wrapper{
        gap: 0px;
    }
    .building-hero-slider .swiper-slide .building-card{
        transition: 0.3s;
    }
    .building-hero-slider .swiper-slide.swiper-slide-active .building-card{
        transform: scale(1.1);
        z-index: 4;
    }
/*end*/


/*Gallery*/
  .custom_gallery{
    overflow: hidden;
  }
  .custom_gallery .heading2{
    color: var(--primary-color);
  }
  .clctn{
    position: relative;
  }
  .clctn .thumb_img{
    width: 100%;
  }
  .clctn .thumb_img img{
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .clctn .item_info{
    position: absolute;
    bottom: -1px;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 60%), rgb(0 0 0 / 50%), rgb(0 0 0 / 0%));
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 0 0px;
    width: 100%;
    box-shadow: 0 15px 40px rgb(0 0 0 / 10%);
  }
  .clctn h4{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    margin: 0.5em auto 0.5em;
    padding: 0 15px;
  }
  .swiper-collections .swiper-slide{
    transition: .4s;
    opacity: .5;
  }
  .swiper-collections .swiper-slide-active{
    transform: scale(1.15);
    z-index: 3;
    opacity: 1;
  }
  .swiper-collections .swiper-slide-active .clctn{
    box-shadow: 0 5px 70px rgb(0 0 0 / 12%);
  }
  .swiper-collections .swiper-button-next, .swiper-collections .swiper-button-prev{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
	background-size: 30px 30px;
    box-shadow: 0 5px 14px rgb(0 0 0 / 15%);
    background-color: rgb(255 255 255 / 77%);
  }
  .swiper-collections .swiper-button-next:after, .swiper-collections .swiper-button-prev:after {
    color: #fff;
    font-size: 16px;
  }
  .custom_gallery .btn{
    min-width: 170px;
    padding: 12px 18px;
    background: var(--secondary-color);
    color: #fff;
    position: relative;
    left: -10px;
    animation: pulsh 7s infinite;
  }
  .custom_gallery .btn:hover{
    animation: pulsh 3s infinite;
    background: var(--primary-color);
  }
/*end*/

@media (max-width: 991px) {
	.site-header{
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 99;
	}
	.header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation{
		background: linear-gradient(180deg, rgb(0 0 0 / 70%), transparent);
        backdrop-filter: blur(10px);
        padding: 15px 0;
	}
}
@media (max-width: 767px) {
	.banner-info .banner_slider{
		min-height: 60vh;
	}
    .banner-info .banner_slider .slide-title h2 {
        font-size: 35px;
        font-size: 20px;
    }
    .banner-info .banner_slider .slide-text p {
        font-size: 14px;
        font-weight: normal;
    }
    .animated-hero::after{
    	background-position: center var(--topval-m);
    	background-size: 820px;
    }
    .animated-hero .car-center .car_img{
	    transform: translate(-50%, var(--top-y-m)) scale(var(--scale));
	}
	.service-section-1 {
	    /*margin-top: -100vh;*/
        background: #000;
        overflow: hidden;
	}
	.service-section-1 > .row > .d-flex{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        flex-direction: row;
        align-items: flex-start;
        align-content: center;
        gap: 15px;
        background: rgb(0 0 0 / 40%);
        backdrop-filter: blur(20px);
        padding: 50px 20px;
	}
	.service.layout-1{
        text-align: center;
        background: rgb(255 255 255 / 18%);
        background-size: cover;
        background-repeat: no-repeat;
        max-width: 340px;
        margin: 0 auto;
        padding: 20px 15px;
	}
	.service.layout-1::before{
		display: none;
	}
	.service.layout-1::after{
	    background-color: var(--secondary-color);
	}
	.service.layout-1 .clearfix{
	    display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0px;
	}
	.service.layout-1 .dis.clearfix{
	    display: none;
	}
	.service.layout-1 .icon img {
        width: 50px;
        height: 50px;
    }
    .service.layout-1 a.title{
    	font-size: 16px;
    max-width: calc(100% - 20px);
    text-align: left;
    }

    /*about page animation*/
    .about-us-section{
      overflow: hidden;
    }
    .ab_sec1 {
      margin-top: 90px;
      padding-bottom: 20px;
    }
    .ab_sec2 .card{
      min-height: 600px;
      max-height: 70vh;
    }
    .story_item{
      padding: 30px 30px;
    }
    .story_item .stry_cont{
      margin-bottom: 22px;
    }
    .ab_sec2 .stry_cont p, .ab_sec2 .text-muted p{
      font-size: 16px;
      margin-bottom: 0;
    }
    .ab_sec2 .story_item.active .img-fluid.img1{
      transform: translate(85%, -120%) rotate(20deg) scale(0.5);
    }
    .ab_sec2.active .story_item.active .img-fluid.img1 {
      transform: rotate(17deg) scale(0.8);
    }
    .story_item.active .img-fluid.img2 {
      transform: rotate(-15deg) scale(0.8);
    }
    .story_item.leaved .img-fluid.img3 {
      transform: scale(0.5) translate(-180%, -135%) rotate(17deg);
      visibility: visible;
      opacity: 1;
    }
    .story_item.active .img-fluid.img3 {
      transform: scale(0.7) rotate(17deg);
    }
    .story_item.leaved .img-fluid.img4 {
      transform: scale(0.8) translate(40%, -30%) rotate(-17deg);
    }
    
    .features-area .row{
        flex-direction: column;
    }
    
    .building-hero{
        flex-direction: column;
    }
    .building-hero-content,
    .building-hero-slider{
        max-width: 100%;
        width: 100%;
    }
    
    .featured-project-section, .features-area, .why-choose-section, .locations, .building-hero, .partners-section, .fun-fact-section, .testimonials-section-s2, .about-section, .blog-section, .section-9, .site-footer{
        overflow: hidden;
    }
	.building-hero-content h2{
		font-size: 36px;
	}
    
    /*location*/
        .loc-content > h2{
            font-size: 28px;
        }
        .loc-box .lb-l h2 span.count{
            font-size: 54px;
        }
        .loc-box .lb-l h3{
            font-size: 18px;
        }
        .loc-info > .container > .row{
            display: block;
        }
        .loc-map svg {
            width: 100%;
            min-height: auto;
        }
    /*end*/
    
    /*About*/
        .ab_sec2 > .container{
            width: 100%;
        }
    /*end*/
	
	/* Gallery */
	  .custom_gallery{
		padding-bottom: 0;
	  }
	  .custom_gallery .flxcontrol{
		flex-direction: column;
	  }
	  .swiper-collections .swiper-slide{
		transform: scale(0.8)!important;
		z-index: 1;
		opacity: .5;
	  }
	  .swiper-collections .swiper-slide-active{
		transform: scale(1)!important;
		z-index: 3;
		opacity: 1;
	  }
	  .swiper-collections .swiper-slide-active .clctn{
		box-shadow: 0 5px 70px rgb(0 0 0 / 12%);
	  }
	/* end */
}