@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
}

a {
    text-decoration: none;
    color: inherit;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.leftPart {
    width: calc(100% - 70px);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Jost", sans-serif;
}

p,span{
  font-family: "Outfit", sans-serif;
}


.navbar{
  background-color: #14212B;
}

.navbar-sticky {
  position: sticky;
  top:-2px;
  z-index: 1020;
  }


.navbar-brand{
    display: block;
    /* width:180px;
     */
     margin-right: 0px;
}
.navbar-brand img{
  max-width: 80px;
}

.navMenu{
  width: 100%;
}

.navbar-expand-lg .offcanvas .offcanvas-body {
justify-content: space-between;
}

.logo-img{
    width: 100%;
}
  .call-container ,.call-parent-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-area-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }

.divider{
    width: 1px;
    height: 40px;
    background-color:rgba(207, 201, 201,.4);
}

.left-yellow-border{
    border-left: 4px solid #e5b20a;
    padding-left: 5px;
}

.icon-area{
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 18px;
    color:#ffffff;
    background: #D38E25;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-area i{
    animation: ring .4s .4s infinite ease-in-out;
    /* animation: name duration timing-function delay iteration-count direction fill-mode; */
}

.call-info-container a{
  color: #e7e1e1;
}

.logo-container.phone{
  display: none;
}

.navbar-toggler {
 color: #ffffff;
}

@keyframes ring {
    10%{
        transform: rotate(30deg);
    }
    20%{
        transform: rotate(20deg);
    }
    30%{
        transform: rotate(30deg) scale(1.2);
    }
}
.call-info-container span{
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
    margin: 0;
    color:#ffffff;
}

.call-info-container p{
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    text-align: left;
    margin: 0;
    color: #E5B20A;
}

.menu-area-container ul{
    position: relative;
}

.menu-area-container li{
     padding:10px 10px;
     /* padding:30px 10px; */
     position: relative;
    display: inline-block;
}

.menu-area-container li a{
   
    position: relative;
    font-weight: 600;
    display: flex;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    align-items: center;
    justify-content: start;
    gap:10px;
    color: #ffffff;
}

.subList span i{
  width: 12px;
}

.megaImg{
  width: 70px;
}

.menu-image{
  border: 1px dashed;
  border-radius: 100%;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color:#E5B20A;
}

.nav-link:hover,.nav-link:focus {
    color:#E5B20A;
}


.about-para {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em; 
  max-height: 6.5em; 
  text-align: justify;
  font-size: 14px;
}

/* START TITLE HEADING */

/* === BASE HEADING === */ 

.base-tag {
  position: relative;
  padding: 0;
  margin: 0;
  font-weight:bold;
  font-size: 45px;
  /* font-family: Arial, Helvetica, sans-serif; */
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.base-tag span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
.base-tag em {
  font-style: normal;
  font-weight: 600;
}

.eleven .base-tag {
  font-size:30px;
  text-align:center;
  line-height:1.5em;
  padding-bottom:40px;
  /* font-family: Arial, Helvetica, sans-serif; */
  text-transform:uppercase;
  letter-spacing: 2px; color:#111;
}


.eleven .base-tag:before {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 10%;
  left:50%;
  /* margin-left:-30%; */
  transform: translateX(-50%);
  height: 1px;
  content: "";
  background-color: #777; z-index: 4;
}
.eleven .base-tag:after {
  position:absolute;
  width:40px;
  height:40px;
  left:50%;
  margin-left:-20px;
  bottom:0px;
  content: '\f005';
  font-family: fontawesome;
  font-size:14px;
  line-height:40px;
  color:#D38E25;
  font-weight:400; z-index: 5;
  display:block;
  background-color:#FFFFFF;
}

.eleven{
  margin:24px auto;
}

/* END TITLE HEADING */


/* styling dropdown */

.serviceListContainer{
  display: flex;
  align-items: start;
  gap: 12px;
}

.scrollable{
  height: 70vh !important;
  overflow-y: scroll !important;
}
.dropdown {
    z-index: 100;
  }
  .dropdown:hover {
    cursor: pointer;
  }

  .dropdown:hover .dropdown_menu li {
    display: block;
  }
  .dropdown_menu {
    position: absolute !important;
    top: 100%;
    left:-80px;
    z-index: -1;
    padding-left: 0;
    overflow: hidden;
    width:1020px;
    background-color: #fff;
    border: 1px solid rgb(233, 226, 226);
    border-top: none;
    border-radius: 0px 0px 12px 12px;
    padding:24px;
  }

  .industriesDrop{
    width:500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-item {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu-item img {
    margin-right: 10px; /* Adds space between image and text */
}

.menu-item a {
    text-decoration: none;
    color: inherit; /* Keeps the default text color */
    display: flex;
    align-items: center;
}

  .dropdown_menu li {
    display: none;
    color: #fff;
    background-color: #fff;
    padding:5px 0px;
    font-size: 16px;
    line-height: 10px;
    opacity: 0;
    
  }

  .dropdown_menu li a{
    /* border-bottom: 1px dotted #00000047; */
    color: #003054;
  }

  .dropdown_menu li a span{
    text-transform: capitalize;
    text-wrap: nowrap;
  }

 

  .dropdown_menu li:nth-last-child(-n+2) a {
   border-bottom: 0;
  }

  .dropdown_menu li:hover a {
    color: #E5B20A;
  }
  .dropdown:hover .dropdown_menu--animated {
    display: block;
  }
  .dropdown:hover .dropdown_menu--animated.industriesDrop {
    display: grid;
 }
  .dropdown_menu--animated {
    display: none;
  }
  .dropdown_menu--animated li {
    display: block;
    opacity: 1;
  }

  .dropdown_menu-7 {
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
  }

  @keyframes rotateMenu {
    0% {
      transform: rotateX(-90deg);
    }
    70% {
      transform: rotateX(20deg);
    }
    100% {
      transform: rotateX(0deg);
    }
  }

 
  /* end styling dropdown */

  /* mega menu style start */

  .subList li{
    color: #000000;
  }
  .accordion-item{
    border: 0;
    margin-top: 22px;
  }
  .accordion-item .accordion-button{
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    font-weight: bold;
    /* font-family: Arial, Helvetica, sans-serif; */
  }

  .megaIconContaioner img{
    border: 1px dashed;
    border-radius: 100%;
  }

  .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.subList{
  padding: 12px 0px;
}

.accordion-button::after {
  width:30px;
  margin-left: 12px;
}
  /* mega mune style end */


/* start btn style */

  .readMoreBtn{
    font-size: 12px;
    border: 1px solid #003054;
    background-color: #0b273d;
    color: #fff;
    padding: 6px 24px;
    border-radius: 2px;
    margin-bottom: 12px;
  }

  .readMoreBtn:hover{
    background: #003054;
  }

/* end btn style */


  /* start sub header styling */
.sub-header {
    background-color: #ffffff;
    color: #14212B;
  }
  .sub-header ul{
    margin-bottom: 0;
    padding-left: 0;
  }
  
  .sub-header a{
    text-decoration: none;
    height: 100%;
  }
  .sub-header li{
    list-style: none;
  }
  
  .info li {
      margin-top: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
  }
  
  .info li i {
    font-size: 11px !important;
  }
  
  .info li a {
    font-size: 12px;
  }
  
  .info span {
    height: 20px;
    display: block;
    width: 2px;
    background-color: #fff !important;
    color: #000;
    margin: 8px 30px;
  }
  
  .socialContainer {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 20px;
  }
  
  .socialContainer .social-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  .socialContainer .social-links li{
    background-color: #14212B;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
  }
  
  .socialContainer .social-links li a i{
    font-size:12px;
    color: #ffffff;
  }

  .get-quate{
    flex-basis: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }


  .get-quate a{
    color: #fff;
    font-weight: 600;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: start;
    background: #E5B20A;
  }
  
  .triangle {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    width:40px;
    height:40px;
    border-bottom: solid 20px #E5B20A;
    border-right: solid 20px #E5B20A;
    border-left: solid 20px transparent;
    border-top: solid 20px transparent;
    margin-right: 0px;
  }

  .menu-image{
    /* filter: drop-shadow(2px 2px 0px #081622); */
  }

  .navbar-toggler{
    outline: none;
    border: none;
    font-size:26px;
  }

  .navbar-toggler:focus{
    outline: none;
    box-shadow: none;
  }
 
  .subInfoCard{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .subInfoCard .subInfoIcon{
    color:#D38E25;
    border: 1px solid #d38d2567;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .subInfoCard p{
    margin-bottom: 0;
    font-size: 14px;
    color:#000000;
    opacity: .7;
  }

  .subInfoCard a{
    font-weight: bold;
  }
  /* end sub header styling */


/* start counting section design */


.sectionClass {
  
  position: relative;
  display: block;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap{
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 25%;
  height: 100%;
  padding: 30px 0px;
  text-align: center;
  background: #FAF5F3;
}



.projectFactsWrap .item p.number{
  font-size: 30px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p{
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
}


.projectFactsWrap .item span{
  width: 100px;
  background: rgba(0, 0, 0, 0.09);
  height: 2px;
  /* display: block; */
  margin: 0 auto;
  display: none;
}


.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}

.iconImgContainer img{
  width: 60px;
}

.numberContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.rightBorder{
  position: relative;
}

.rightBorder::before{
  content: '';
  display: block;
  width:1px;
  height: 50%;
  position: absolute;
  top: 50%;
  right:10px;
  transform: translateY(-50%);
  background: #e4e0de;
}




@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
  .projectFactsWrap .item:nth-child(2).rightBorder::before{
    display: none;
  }
}

/* end counting section design */

/* banner style start */
.swiper {
  width: 100%;
  height: calc(100vh - 85px - 106px);
}

.banner-section{
  /* background-image: url('../img/bannerImg.jpg'); */
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  /* height: 100vh; */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background:transparent;
  display: flex;
  justify-content: space-between;
  align-items: start;

}

.mySwiper2 .swiper-slide{
  justify-content: center !important;
  align-items: center;
}

.swiper-slide img {
  /* display: block;
  width:500px;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  float: right; */
}

.bannerImgContainer{
  height: 100%;
  width: 70%;
  position: absolute;
  background: #000;
  right:0px;
  z-index: -3;
}

.bannerImgContainer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.bannerTextContainer{
  height: 100%;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 30px;
  position: relative;
}

.bannerTextContainer > div{
  width: 60% !important;
  margin-left: 100px;

}

.bannerTextContainer::before{
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: circle(89.9% at 13% 89%);
  pointer-events: none;
}

.bannerTextContainer::after{
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgb(104, 102, 105);
  position: absolute;
  top:0px;
  left:15px;
  z-index: -2;
  /* transform: rotate(-2deg); */
  clip-path: circle(89.9% at 13% 89%);
  pointer-events: none;
}

.slide1 .bannerTextContainer::after{
  background-color:#53270E;
}

.circleBg{
  position: relative;
  padding: 0px;
}

.circleBg::before{
  content: '';
  display: block;
  width:450px;
  height:450px;
  background-color: #F8DD91;
  position: absolute;
  bottom: -30px;
  right:0px;
  z-index: -1;
  border-radius: 100%;
}

.slideHeading{
    font-size: 35px;
    color: #000000;
    font-weight: bold;
    text-transform: capitalize;
    line-height:43px;
    text-align: left;
    /* margin: 12px auto; */
}

.subHeading{
    color: lightslategray;
    font-family: "outfit", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 16px;
    letter-spacing: 1.76px;
    display: block;
    text-align: left;
    padding: 12px 0px;
}

.slidePara{
  font-size: 16px;
  line-height: 20px;
  color: #6B6B6B;
  text-align: left;
  padding-top: 12px;
}
/* end banner style */

/* btn style start for lwsBtn */

.btnContainer{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin: 24px auto;
}

.lwsBtn{
  background: #D38E25;
  padding: 10px 30px;
  border: 1px solid #D38E25;
  color: #fff;
}

.lwsBtn.outline{
  background: transparent;
  color:rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
}

.highlight{
  color: #D38E25;
  font-size: 50px;
}

/* ::before,
::after {
  position: absolute;
  content: "";
} */

.btn-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 10px auto 35px;
}
.btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  /* margin: 0px 25px 15px; */
  min-width: 150px;
}
  .btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
  }





/*--- btn-3 ---*/

.accordion-button:not(.collapsed) {
 box-shadow: none;
}

.btn-3 {
  padding: 5px;
}
.btn-3 span {
  color: rgb(255, 255, 255);
  background-color: #14212B;
}
.btn-3::before,
.btn-3::after {
  position: absolute;
  content: "";
  background: transparent;
  z-index: 2;
}

/* 11. hover-border-1 */
.btn.hover-border-1::before,
.btn.hover-border-1::after {
  position: absolute;
  content: "";
  width: 10%; height: 25%;
  transition: 0.35s;
}
.btn.hover-border-1::before {
  position: absolute;
  content: "";
  top: 0; left: 0;
  border-left: 1px solid #14212B;
  border-top: 1px solid #14212B;
}
.btn.hover-border-1::after {
  position: absolute;
  content: "";
  bottom: 0; right: 0;
  border-right: 1px solid #14212B;
  border-bottom: 1px solid #14212B;
}
.btn.hover-border-1:hover::before,
.btn.hover-border-1:hover::after {
  width: 99%;
  height: 98%;
}


/*--- btn-5 ---*/
.btn-5 span {
  color: #14212B;
  border: 2px solid #D38E25;
  transition: 0.2s;
}
.btn-5 span:hover {
  background-color: rgb(245,245,245);
}

/* 21. hover-border-11 */
.btn.hover-border-11::before,
.btn.hover-border-11::after {
  position: absolute;
  content: "";
  width: 84%; height: 2px;
  background-color: rgb(54, 56, 55);
  z-index: 2;
  transition: 0.35s; 
}
.btn.hover-border-11::before {
  position: absolute;
  content: "";
  top: 6px; right: 13px;
}
.btn.hover-border-11::after {
  position: absolute;
  content: "";
  bottom: 6px; left:13px;
}
.btn.hover-border-11:hover::before,
.btn.hover-border-11:hover::after {
  position: absolute;
  content: "";
  width: 0%;
  transition: 0.2s 0.2s ease-out; 
}

.btn.hover-border-11 span::before,
.btn.hover-border-11 span::after {
  position: absolute;
  content: "";
  width: 2px; height: 100%;
  background-color: rgb(54, 56, 55);
  z-index: 2;
  transition: 0.25s; 
}
.btn.hover-border-11 span::before {
  position: absolute;
  content: "";
  bottom: 0; right: -2px;
}
.btn.hover-border-11 span::after {
  position: absolute;
  content: "";
  top: 0; left: -2px;
}
.btn.hover-border-11 span:hover::before,
.btn.hover-border-11 span:hover::after {
  height: 0%;
}
/* btn style end for lwsBtn */



.faq-section{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.imgShadow{
  filter: drop-shadow(2px 3px 5px rgb(141, 140, 140));
}


/*--------------------------------------------
            #Start Timeline Rules
--------------------------------------------*/
#timeline
{
  width: 100%;
  background-color:#ffffff;
  padding: 20px 0px;
  
}

#timeline ul
{
  min-height: 950px;
  border-top: 0;
  border-left: 4px solid transparent;
  border-left-color: #D38E25; /* Fullback */
  -webkit-border-image: -webkit-linear-gradient( 
    top, 
    #D38E25 0%,
    #14212B 35%,
    #f2af00 50%,
    #14212B 65%,
    #D38E25 100%);
  -moz-border-image: -moz-linear-gradient( 
    top, 
    #D38E25 0%,
    #14212B 35%,
    #f2af00 50%,
    #14212B 65%,
    #D38E25 100%);
  -ms-border-image: -ms-linear-gradient( 
    top, 
    #D38E25 0%,
    #14212B 35%,
    #f2af00 50%,
    #14212B 65%,
    #D38E25 100%);
  -o-border-image: -o-linear-gradient( 
    top, 
    #D38E25 0%,
    #14212B 35%,
    #f2af00 50%,
    #14212B 65%,
    #D38E25 100%);
  border-image: linear-gradient( 
    top, 
    #D38E25 0%,
    #14212B 35%,
    #f2af00 50%,
    #14212B 65%,
    #D38E25 100%);
  border-image-slice: 1;
  position: relative;
  top: 5%;
  left: 50%;
  perspective: 2000px
}

#timeline ul li:after
{
  content: "\2713";
  font-family: fontawesome;
  display:block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: 100;
  font-size: 90%;
  line-height:35px;
  text-align: center;
  background-color: #D38E25;
  color: #fff;
  position:absolute;
  -webkit-transition: transform 1s linear;
  transition: transform 1s linear
}

#timeline ul li:nth-child(even):after
{
  background-color: #14212B;
}



#timeline ul li .cont
{
  width: 200px;
  padding: 25px 10px 10px;
  border: 2px solid transparent;
  border-radius: 4px;
  -webkit-transform: translate(0, -55px);
  transform: translate(0, -55px);
  text-transform: capitalize;
  line-height: 150%;
  font-size: 80%;
  position: absolute;
  top: 22px
}

#timeline ul li .cont h3{
  font-size:20px;
}

#timeline ul li:nth-child(odd) .cont
{
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: transform 1.5s linear;
  transition: transform 1.5s linear
}

#timeline ul li:nth-child(even) .cont
{
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 1.5s linear;
  transition: transform 1.5s linear
}

#timeline ul li:nth-child(even) .cont
{
  color: #D38E25;
}

#timeline ul li:nth-child(odd) .cont
{
  color: #14212B
}

#timeline ul li:nth-child(even) .cont time{background-color: #D38E25}

#timeline ul li:nth-child(odd) .cont time{background-color: #14212B}



#timeline ul li .cont p{display: block}

#timeline ul li:nth-child(n+1):after{left: -18px}

#timeline ul li:first-child:after,
#timeline ul li:first-child .cont
{
  top: 8%
}

#timeline ul li:nth-child(2):after,
#timeline ul li:nth-child(2) .cont
{
  top: 28%
}

#timeline ul li:nth-child(3):after,
#timeline ul li:nth-child(3) .cont
{
  top: 48%
}



#timeline ul li:last-child:after,
#timeline ul li:last-child .cont
{
  top: 68%
}

#timeline ul li:nth-child(n+1):hover:after
{
  -webkit-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
  -webkit-transition: transform 1s linear;
  transition: transform 1s linear
}



#timeline ul li:nth-child(even) .cont{ border-color: #D38E25}

#timeline ul li:nth-child(odd) .cont{ border-color: #14212B}

#timeline ul li:nth-child(odd) .cont{left: 30px}

#timeline ul li:nth-child(even) .cont{left: -255px}

#timeline ul li .cont:before,
#timeline ul li .cont:after
{
  content: "";
  display: block;
  width: 0 ;
  height: 0;
  position: absolute;
  border-style: solid;
}

#timeline ul li:nth-child(odd) .cont:before
{
  border-width: 11px 11px 11px 0 ;
}

#timeline ul li:nth-child(even) .cont:before
{
  border-width: 11px 0 11px 11px
}

#timeline ul li:nth-child(odd) .cont:after
{
  border-width: 10px 10px 10px 0
}

#timeline ul li:nth-child(even) .cont:after
{
  border-width: 10px 0 10px 10px
}

#timeline ul li:nth-child(odd) .cont:before
{
  top: 50%;
  left: -11px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%)
}

#timeline ul li:nth-child(even) .cont:before
{
  top: 50%;
  right: -11px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%)
}



#timeline ul li:nth-child(even) .cont:before
{
  border-color: transparent transparent transparent #D38E25
}

#timeline ul li:nth-child(odd) .cont:before
{
  border-color: transparent #14212B transparent transparent
}

#timeline ul li:nth-child(odd) .cont:after
{
  border-color: transparent #ffffff;
  top: 50%;
  left: -9px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%)
}

#timeline ul li:nth-child(even) .cont:after
{
  border-color: transparent #ffffff;
  top: 50%;
  right: -9px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%)
}

#timeline ul li .cont time
{
  width: 100px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: calc(100%/2 - 50px);
  background-color: #7AB800;
  color: #f5f5f5;
  line-height: 30px;
  text-align: center;
  border-radius: 3px
}

.copy-right
{
  color: #7AB800;
  text-align: center;
  text-transform: uppercase;
  padding: 130px 0 20px
}

.copy-right a
{
  color: #0085C3;
  text-transform: capitalize
}

@media screen and (max-width: 600px)
{
  /* #timeline ul li .cont
  {
    width: 120px;
    line-height: 120%
  }
  
  #timeline ul li:nth-child(even) .cont{left: -175px} */
  
  #timeline ul li .cont p,
  #timeline ul li .cont time
  {
    font-size: 76%
  }
  
  #timeline ul li .cont time
  {
    width: 80px;
    left: calc(100%/2 - 40px)
  }
}

@media (max-width:518px) {
  #timeline ul li .cont
  {
    width: 160px;
  }

  #timeline ul li:nth-child(even) .cont {
    left: -195px;
}
}

@media (max-width:390px) {
  #timeline ul li:nth-child(even) .cont {
    left: -164px;
}

#timeline ul li .cont {
  width: 130px;
}
.slideHeading {
    font-size: 25px;
    line-height: 26px;
}
  
}
/*-------------------------------------
         #End Timeline Rules
-------------------------------------*/

























/* start footer style */
.footer {
    padding: 100px 0px 0px;
    background-color: #14212B;
}


.footer .widget1 p {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    margin-top: 26px;
}

.footer .socialLinks {
    margin-top: 28px;
}

.socialLinks ul li {
    display: inline-block;
}


.socialLinks ul li a i {
    display: block;
    margin: 0 2px;
    width: 40px;
    height: 40px;
    background: #fafafa;
    border-radius: 50%;
    text-align: center;
    margin-right: 5px;
    line-height: 40px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.socialLinks ul li a .fa-facebook-f {
    color: #4267b2;
}

.socialLinks ul li a .fa-x-twitter {
    color: #000000;
}

.socialLinks ul li a .fa-instagram {
    color: #f56040;
}

.socialLinks ul li a .fa-linkedin-in {
    color: #0177b5;
}

.socialLinks ul li a .fa-youtube{
  color: red;
}

.socialLinks ul li a .fa-whatsapp{
  color: #25D366;
}


.socialLinks ul li a:hover i {
    color: #fff;
}

.socialLinks ul li a:hover .fa-facebook-f {
    background: #4267b2;
}

.socialLinks ul li a:hover .fa-x-twitter {
    background: #000000;
}

.socialLinks ul li a:hover .fa-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

}

.socialLinks ul li a:hover .fa-youtube{
  background-color: red;
}

.socialLinks ul li a:hover .fa-linkedin-in {
    background: #0177b5;
}

.socialLinks ul li a:hover .fa-whatsapp{
  background-color: #25D366;
}
footer .logo {
    max-width: 200px;
}

.footer .widget1 h3 {
    font-weight: 500;
    /* margin-bottom: 28px; */
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
    font-size: 21px
}

.footer .widget2 .media img {
    margin-right: 20px;
    max-width: 100px;
}
.footer .widget2 .media p {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-weight: 600;
    line-height: 26px;
}

.footer .widget2 .media span {
    font-size: 12px;
    color: #ffb606;
    text-transform: uppercase;
    margin-top: 15px;
    display: block;
}

.footer .widget2 .media {
    margin-bottom: 20px;
    display: flex;
}

.footer .widget3 ul li a,
.footer .widget4 ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);;
    text-transform: capitalize;
    margin-bottom: 13px;
    display: block;
}

.footer .widget3 ul li a:hover,
.footer .widget4 ul li a:hover,
.footer .widget2 a:hover p {
    color: #ffb606;
}

.footer .widget3 h3 {
    margin-bottom: 22px;
    font-weight: 600;
    color: #fff;
    font-size: 21px;
    line-height: 32px;
}

.footer .widget4 h3 {
    margin-bottom: 22px;
    font-weight: 600;
    color: #fff;
    font-size: 21px;
}

.copyRightArea {
    margin-top: 83px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0px 28px;
}

.copyRightArea p {
    color: rgba(255, 255, 255, 0.6);
}

/* end footer style */

.offCanBody{
  /* d-flex align-items-center justify-content-center gap-4 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.textMob{
  display: none;
}

.subInfoCardContainer{
  /* d-flex gap-5 */
  display: flex;
  gap:12px;
}

.ownLogo h3{
  color: #fff;
  font-size: 14px;
}

.ownLogo p{
  margin: 0px !important;
  font-size: 14px !important;
  line-height:15px;
}

/* START FAQS STYLE */
.faq-container{
  padding:30px 0px;
}
.faq-container .accordion-item .accordion-header button {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  box-shadow: none;
  padding: 0;
  position: relative;
  color: #1C2539;
  text-align:start;
}

.faq-container .accordion-body{
  padding:20px 0px 0px 0px;
}

.faq-container .accordion-item{
  background: transparent;
  border: none;
  padding-bottom:0px;
  position: relative;
  padding-left: 60px;
  margin-top: 0;
}

.faq-container .accordion-item:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-left: 2px dashed #D38E25;
  top: 24px;
  left: 18px;
  position: absolute;
}

.faq-container .accordion-header{
  position: relative;
}


.faq-container .accordion-header button::before{
  content: '';
  height: 20px;
  width: 20px;
  display: block;
  /* background-color:#D38E25; */
  background-color: #fff;
  border: 5px solid #D38E25;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left:-51px;
  border-radius: 100%;
  z-index:1;
  transition: all .5s linear;
}

.faq-container .accordion-header button[aria-expanded=true]::before {
  height: 40px;
  width: 40px;
  left:-60px;
  border: none;
  background-color: #D38E25;
}

.faqCtaAddress a{
  display:block;
  margin: 12px;
  color: #fff;
}

.faqCtaAddress span{
  width: 20px;
  color: #fff;
}

.faqCtaContainer{
  background:#14212B;
}
.faqCtaTitle{
  color: #fff;
  margin-bottom: 15px;
}
.faqCtaPara{
  color: #fff;
}

.faqCtaBtn{
  background: #D3913D;
}

.faqCtaBtn span{
  color: #fff;
}
/* END FAQ STYLE */

/* START STYLE CONTACT US */
.contact-rect-card{
  background: #eee;
  display: flex;
  align-items: center;
  padding: 28px 32px;
  gap: 12px;
  margin-top:28px !important;
}

.contact-rect-card a{
  font-size: 24px;
  color:#1d2940;
  font-weight: 700;
}

.contact-rect-card p{
   font-size: 16px;
   color:#1d2940;
   line-height: 16px;
   margin-bottom: 8px;
}

.contact-icon-container{
  background: #1d2940;
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 73px;
    border-radius: 50%;
    color: #fff;
    font-size: 23px;
}

.contact-main-section {
  border-radius: 4px;
  background: #1d2940;
  padding: 32px;
}

.contact-main-text .main-heading{
  color: #fff;
  font-size: 24px;
}

.contact-main-text p{
  color: #fff;
  font-size: 16px;
}

.input-5area input, .input-5area textarea {
  width: 100%;
  padding: 20px 16px;
  outline: none;
  border-radius: 2px;
  background: #343e53;
  color: #fff;
  font-size: 16px;
  height: 100%;
  border: none;
  margin-top: 20px;
}

.input-5area textarea {
  height: 140px;
  border: none;
}

button.contcat5 {
  justify-content: right;
  border-radius: 2px;
  background: #6083a9;
  padding: 18px 22px;
  border: none;
  display: inline-block;
  transition: all .4s ease-in-out;
}

.contact-main-section a.btn span{
  background:#D38E25;
}

.contact-main-section .btn.hover-border-1::before {
  border-left: 1px solid #D38E25;
  border-top: 1px solid #D38E25;
}

.btn.hover-border-1::after {
  border-right: 1px solid #D38E25;
  border-bottom: 1px solid #D38E25;
}
/* END STYLE CONTACT US */

/* styling single page of services start  */

.serviceCardImg{
  width: 80px;
  height: 80px;
  margin:12px auto;
}

.serviceCardImg img{
  width: 100%;
  height: 100%;
}

  .serviceCardInfo{
    color: #060815;
    line-height:25px;
    /* text-transform: capitalize; */
  }

  .serviceCardHeading{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
  }
  .serviceCard{
    padding: 20px 20px 30px;
    text-align: center;
    border-radius: 12px;
  }

  .serviceCard p{
    text-align: center !important;
    font-size: 15px;
    margin-bottom: 0;

  }

  .serviceCard:hover{
    box-shadow: 0 30px 69px 0 rgba(0, 0, 0, .09);
  }

  .card-adjust{
    pointer-events: none;
    box-shadow: 0 30px 69px 0 rgba(0, 0, 0, .09);
  }

/* end style single page of services */

.call-parent-container.section-wise .call-info-container a {
  color: #D38E25;
  font-size: 23px;
}

.call-parent-container.section-wise i {
  animation: unset;
  font-size: 25px;
}

.call-parent-container.section-wise .icon-area {
  width: 50px;
  height: 50px;
}

.call-parent-container.section-wise .call-info-container span {
  color: #636060;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}


/* BENEFITS SECTION START */
.serviceBox{
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding-top: 10px;
}

.serviceBox .service-icon{
  color: #fff;
  background: #fff;
  font-size: 45px;
  line-height: 100px;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.serviceBox .service-icon:before,
.serviceBox .service-icon:after{
  content: "";
  background: linear-gradient(to right, #EBD3B5 50%, transparent 50%);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: -1;
transition: all ease 0.8s;
}
.serviceBox:hover .service-icon:before, .serviceBox:hover .service-icon:after {
  transform: rotateZ(180deg);
}
.serviceBox:hover .service-icon {
  box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.2);
}

.serviceBox .service-icon:after{
  background: #D3913D;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.serviceBox {
  padding: 40px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}


.serviceBox .title{
  color: #000000;
  font-size: 18px;
  font-weight:bold;
  margin: 0 0 10px;
}

.serviceBox .description{
  color: #777;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 0;
}

.service-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-position{
  display: flex;
  justify-content: center;
  align-items: center;
}
.serviceBox.red .service-icon:before{ background: linear-gradient(to right, #A6ABB1 50%, transparent 50%); }
.serviceBox.red .service-icon:after{ background: #203142; }

.serviceBox.blue .service-icon:before{ background: linear-gradient(to right, #EBD3B5 50%, transparent 50%); }
.serviceBox.blue .service-icon:after{ background: #D3913D; }

.serviceBox.green .service-icon:before{ background: linear-gradient(to right, #A6ABB1 50%, transparent 50%); }
.serviceBox.green .service-icon:after{ background: #203142; }

@media only screen and (max-width:990px){
  .serviceBox{ margin: 0 0 30px; }
}

/* BENEFITS SECTION END */

/* breadcrumb start  */
.breadcrumb-item+.breadcrumb-item::before {
  content: '\f105';
  font-family: fontawesome;
  }
  
  .breadcrumb a{
  color: #003054;
  font-weight: bold;
  }
  /* breadcrumb end */

  .staffCard{
    box-shadow: 0 30px 69px 0 rgba(0, 0, 0, .09);
    color: #080808;
    border-radius: 12px 0px 12px 0px;
    padding:25px 12px;
    text-align: center;
    width: 95%;
    margin: auto;
  }


  .topHeading{
    font-weight: 800;
    font-size: 25px;
  }

  /* contact page style start */
  .contactMap{
    width: 100%;
    height: 665px;
  }

  .contactPage .contact-rect-card a{
    font-size:15px;
  }
  /* contac page style end */

  /* styling gallery section */


.section-padding {
  padding-top: 80px;
}

.gallery-section {
  position: relative;
  z-index: 1;
}


.filter {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.gallery-section .btn {
  padding: 10px 20px;
  margin: 5px 4px 4px 0;
  display: inline-block;
  color: #003;
  background: #eee;
  border: 1px solid #003054;
  transition: all 0.4s;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}
.gallery-section .btn:hover,.gallery-section .btn-active {
  background: #003054;
  color: #fff;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  gap:55px;
}
.gallery a {
  display: flex;
}
.gallery img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  margin:8px;
  border:2px solid black;
}



.gallery .certifiacte img{
  object-fit: fill;
  object-position: top !important;
}

.gallery img:hover {
  /* transform: scale(1.1); */
}

.client-logo.gallery img,.client-logo.mySwiper2 img{
  background-color: rgb(255, 255, 255);
  object-fit: contain !important;
  width: 150px;
  height: 150px;
  border: 2px dashed #a19a9a;
  padding: 10px;
  border-radius: 12px;
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
  display: none;
}

.closeBtn {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  right: 25px;
  top: 25px;
  color:#003054;
  transition: 0.5s linear;
  padding: 8px;
  border-radius:100%;
  background:#fff;
}
.closeBtn:hover {
  cursor: pointer;
  background: white;
  color: black;
  outline: 2px solid #000;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}
.imgPreview {
  width: 70%;
  object-fit: scale-down;
  max-height: 40vw;
  height: auto;
}
.prevButton,
.nextButton {
  transition: 1s linear;
  padding: 10px 35px;
  font-size: 18px;
  border: none;
  color: white;
  background: #0005;
  border-radius: 10px;
  border: 1px solid white;
  margin: 10px;
}
.prevButton:hover,
.nextButton:hover {
  background: #fff;
  color: black;
}

.frame{
  position: relative;
}

.frame::before{
  content: '';
  width: 50%;
  height: 100%;
  background-color: #D38E25;
  display: block;
  position: absolute;
  left: 0px;
  z-index: -1;
}

/* end gallery section */


/* services page style start */
.servicesCard{
  width:80%;
  margin: auto;
  display: block;
  background-color:#ffffff;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius:15px;
  position: relative;
  padding: 0 20px 0;
  padding-top:15px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, .14));

}

.serviceCardInfo{
  padding:24px 12px;
  color: #14212B;
  width: 100%;
  margin: auto;
}

.serviceCardInfo .title{
  font-size: 18px;
  font-weight: 700;
}

.serviceCardInfo .para{
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
}
.serviceCardInfo .serviceBtn{
  font-size: 16px;
  color: #D38E25;
  font-weight: 700;
}
.servicesCard::before{
  display: block;
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 40px;
  transform: rotate(-5deg);
  background: #ffffff;
  border-radius: 15px;
  z-index: -1;
  transition: all .4s;
  
}

.servicesCard:hover::before{
  transform: rotate(5deg);
}

.serviceCircleIcon{
  position: absolute;
  top: -40px;
  left: 25px;
  width: 70px;
  height: 70px;
  background:#14212B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.servicesCard:hover .serviceCircleIcon{
  animation: pulse-animation 2s infinite;
}

.serviceCircleIcon img{
  width: 70%;
}



@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(40, 60, 173, 0.2);
  }
  100% {
    box-shadow: 0 0 0 40px rgba(34, 88, 206, 0);
  }
}
/* services page style end */

/* floating btn */
.float {
  position: fixed;
  width: 50px;
  line-height: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  animation: pulse 2s infinite;
  }


    @keyframes pulse {
      0% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
          transform: scale(1.1);
          box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    

  /* end floating btn */

  /* start blog style */
    /* start blog style */

.card-container {
  /* width: 300px; */
  background-color: #fff;
  border-radius: 8px;
  margin: auto;
  box-shadow: 0 2px 20px rgba(0,0,0, 0.1);
  overflow: hidden;
}

.card-image img {
  height: 220px;
  width: 100%;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  transition: all .3s ease-in-out;
  object-fit: cover;
}

.card-image:hover img{
  transform: scale(1.1);
}

.blog-section .card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 16px;
  background-color: #fff;
  /* min-height: 200px; */
}

.blog-section .card-body h3 {
    font-size: 17px;
    margin: 8px 0;
    font-weight: bold;
    color: #003054;
}

.card-body h1 {
  font-size: 17px;
  margin: 8px 0;
  font-weight: bold;
  color: #003054;
}

.card-body h1:hover {
  color: #021829;
}

.card-body p {
    font-size: 16px;
    margin: 8px 0 16px 0;
    text-align: start;
    line-height: 20.2px;
}

.card-body a p {
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    line-height: 20.2px;
    color:#14212B;
}
.card-container .slider-btn {
  font-size: 10px;
  padding: 8px 12px 8px 12px;
}

.card-container .slider-btn i {
  font-size: 10px;
}

/* end blog style */
  /* end blog style */

  .navbar .subInfoCardContainer{
    width: 100%;
  }
  /* styling view All btn */
  .pluseBtn{
    display: inline-block;
    text-align: center;
    border: 1px solid #14212B;
    padding:8px;
    width:40px;
    height:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: sticky;
    z-index: 5;
    background-color: #fff;

  }

  .pluseBtn::before{
    content: '';
    width: 20px;
    height: 30px;
    background-color: #ffffff;
    position: absolute;
    left: -21px;
  }

  .pluseBtn::after{
    content: '';
    width: 20px;
    height: 30px;
    background-color: #ffffff;
    position: absolute;
    right: -21px;
  }

  .pluseBtnContainer{
    position: relative;
  }

  .pluseBtnContainer::before{
    content: '';
    width: 60%;
    height: 1px;
    display: block;
    background-color: #b9cad8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
  }

  .pluseBtn:hover{
    background-color: #14212B;
    color: #fff;
  }
  .exeploreMoreTitle{
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    margin: 12px auto;
    color: #14212B;
  }
  /* end styling view all */

/* sideform style start */
.sidebar-contact {
    position: fixed;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    transition: .5s;
    z-index: 1114;
    border-radius: 20px 0 0 20px
}

.sidebar-contact.active {
    right: 0
}

.toggle {
    position: absolute;
    text-align: center;
    cursor: pointer;
    background: #14212B;
    color: #fff;
    top: 48%;
    left: -74px;
    transform: rotate(90deg);
    padding: 8px 15px;
    border-radius: 0 0 10px 10px
}

.toggle h6 {
    margin-bottom: .5px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    font-family: Overpass,sans-serif
}

.toggle h2 {
    margin-bottom: .5px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    font-family: Overpass,sans-serif
}

.toggle h6 i {
    margin-right: 5px
}

.toggle h2 i {
    margin-right: 5px
}

.sidebar-contact input,.sidebar-contact textarea {
    width: 100%;
    height: 36px;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,.5);
    outline: 0;
    border-radius: 5px
}

.sidebar-contact .btn {
    border: unset;
    font-size: 12px;
    min-width:127px;
    padding:4px;
    margin-top: 12px;
}

.sidebar-contact .btn span{
font-size: 10px;
padding: 13px 10px;
}

/* sideform end */

/* making responsive */
@media (max-width:991px) {
  .slideHeading {
    font-size: 35px;
    line-height: 45px;
}

.highlight {
  font-size: 38px;
}

.subHeading {
  font-size: 13px;
  padding: 10px 0px;
}

.slidePara {
  font-size: 15px;
  line-height: 22px;
}

.btn span {
  font-size: 12px;
  padding: 12px 14px;
}

.circleBg::before {
  width: 395px;
  height: 395px;
}

/* .swiper-slide img {
  width: 440px;
} */


.logo-container.desktop{
  display: none;
}

.logo-container.phone{
  display: block;
}

.offcanvas-body{
  flex-direction: column;
}

.menu-area-container li{
  padding:5px 10px;
}

.menu-area-container li a{
 color: #000000;
}


.menu-area-container {
  width: 100%;
}



.offCanBody{
  justify-content: unset;
}

.dropdown_menu {
  position: static !important;
  width: unset;
  border: none;
}
  
.call-info-container span {
  color: #000000;
}

.call-info-container a {
  color: #161616;
}


.menu-area-container ul {
  width: 100%;
}

.dropdown .dropdown_menu--animated,.dropdown:hover .dropdown_menu--animated {
  display: none
}

.dropdown .dropdown_menu--animated.show {
  display: block;
  position: static!important;
  padding-left: 0
}

.divider {
  width: 80px;
  height: 1px;
  background-color: rgba(207, 201, 201, .4);
}

.dropdown_menu--animated.industriesDrop {
  display: none !important;
}

.dropdown_menu--animated.industriesDrop.show {
  display: block !important;
}

.navMenu{
  width: unset;
}

.contactMap{
  height:475px;
}

.servicesCard{
  width: 99%;
}

.subInfoContainer {
  display: none;
}
.textMob {
  display: block;
  margin-left: 8px;
}

.subInfoCard .subInfoIcon {
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
}


}

@media (max-width:768px) {
 

.circleBg::before {
  width:400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.subInfoContainer{
  display: none;
}

.textMob{
  display: block;
  margin-left: 8px;
}

.subInfoCard .subInfoIcon {
  padding: 8px;
  border-radius: 5px;
  font-size: 12px;
}

.serviceCard {
  padding: 20px 10px 30px;
}
.serviceBox {
  margin: 0 0 0px;
  padding: 15px
}


.contactPage .top-para {
 width: 100%;
 font-size: 12px;
 text-align: justify;
}

.gallery {
  gap:30px;
}



}

@media (max-width:767px) {
  .swiper-slide {
    flex-direction: column-reverse;
   }
   
   .swiper {
     height: auto;
   }

   .bannerTextContainer {
    width:100%;
}

.bannerImgContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height:76%;
  top: 0px;
}


.bannerTextContainer{
  margin-top: 138px;

}


.bannerTextContainer::before {
  clip-path: circle(86.9% at 13% 89%);
  height: 113%;
}

.bannerTextContainer::after {
  height: 115%;
  left: 0px;
}

.bannerTextContainer > div {
  margin-left:0px;
  margin-top:80px;
  width: 80% !important;
}

.bannerImgContainer img {
  object-fit: cover;
}

.sidebar-contact .toggle {
top: 50%;
transform: translateY(-50%) rotate(90deg);
transition: .5s;
}

.sidebar-contact {
width: 100%;
height: 100%;
right: -100%;
border-radius: 0;
}

.sidebar-contact.active .toggle {
top: 15px;
left: 22px;
transform: translateY(0);
border-radius: 10px;
}
.toggle.active h2 {
display: none;
}

.toggle.active::before {
content: '\f00d';
font-family: fontAwesome;
font-size: 18px;
color: #fff;
}

/* end sideform responsive */

}

@media (max-width:535px) {
  .client-logo.mySwiper2 img {
    width: 130px;
    height: 130px;
}

.gallery img {
  width: 180px;
}
}

@media (max-width:500px) {
  .bannerImgContainer {
    height:60%;
  }

  .slideHeading {
    font-size:25px;
    line-height: 35px;
}

.btnContainer {
  gap: 15px;
}

}

@media (max-width:485px) {
  .gallery img {
    width: 155px;
  }
  .contact-icon-container {
height: 50px;
width: 50px;
line-height: 52px;
font-size: 18px;
}
.contact-rect-card a {
        font-size: 18px;
    }
  
}

@media (max-width:470px){
  .client-logo.mySwiper2 img {
    width: 115px;
    height: 115px;
}
}

@media (max-width:425px) {
  .offcanvas{
    width: 90% !important;
  }

  .sub-header {
    padding: 8px 0px !important;
}

.accordion-item {
  margin-top:12px;
}

.megaImg {
  width: 50px;
}

.accordion-item .accordion-button {
  white-space: nowrap;
}

#timeline ul li:nth-child(odd) .cont {
  left: 25px;
}

.serviceCard p {
  font-size: 14px;
  line-height: 17px;
}

.serviceBox .title {
  font-size: 15px;
}

.gallery img {
  width: 150px;
}

.gallery {
  gap: 20px;
}

.card-image img {
  height: 125px;
}
.card-body h1 {
  font-size: 13px;
}

.card-body p {
  margin: 0 0 8px;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-section .btn{
  min-width: 112px;
}
.blog-section .btn span {
  font-size: 12px;
  padding: 12px 14px;
  font-size: 10px;
  padding: 8px 12px;
}

}

@media (max-width:399px) {
  .gallery img {
    width: 135px;
}
    .bannerTextContainer .subHeading {
        font-size: 11px;
        padding: 5px 0px;
        margin-top: 20px;
    } 
}

@media (max-width:375px) {
  .bannerTextContainer{
    margin-top: 10px;
  }
  .bannerTextContainer > div {
    margin-top: 190px;
    width: 100% !important;
}

.btn {
  min-width: 134px;
}

.gallery {
  gap: 10px;
}


.gallery img {
  width: 127px;
  height: 150px;
}

.client-logo.mySwiper2 img {
  width: 100px;
  height: 100px;
}

.btn.hover-border-11::after {
    left: 12px;
    width: 82%;
}


.btn.hover-border-11::before {
    right: 12px;
    width: 82%;
}

}

@media (max-width:366px) {
  .serviceBox .title {
    font-size: 13px;
   }
}


@media (max-width:360px) {
  .subInfoCard .subInfoIcon {
    padding: 5px;
}

.textMob {
  margin-left:4px;
}

.subInfoIcon i{
  font-size: 10px;
}

.socialContainer .social-links {
  gap: 6px;
}

.accordion-item .accordion-button {
  font-size: 13px;
}

.bannerTextContainer > div {
  margin-top: 150px;
}

.gallery img {
  width: 115px;
  height: 142px;
}

}

@media (max-width:340px) {
  .client-logo.mySwiper2 img {
    width: 90px;
    height: 90px;
}
     .contact-rect-card a {
        font-size: 16px;
    }
}

@media (max-width:330px) {
  #timeline ul li:nth-child(2n+1) .cont {
    left: 23px;
}
}

@media (min-width:991px) and (max-width:1199px) {
  .call-parent-container {
    display: none;
  }

}

@media (min-width:767px) and (max-width:1199px) {
  .swiper{
    height: 100% !important;
  }
  .bannerTextContainer {
    height: 100%;
    width: 74%;
  }
  .bannerTextContainer > div {
    width: 70% !important;
    margin-left: 12px;
}

.bannerImgContainer {
  width: 70%;
}
}


@media (min-width:551px) and (max-width:646px) {
  .bannerTextContainer::before {
    height: 126%;
  }
  .bannerTextContainer::after {
    height: 126%;
}
  
}

@media (min-width: 646px) and (max-width: 766px) {
    .bannerTextContainer::after {
        height: 188%;
    }

.bannerTextContainer::before {
        height: 183%;
    }

.bannerTextContainer .subHeading {
margin-top: 90px;
}

.slideHeading {
font-size: 28px;
line-height: 35px;
}
}
p.accordion-header{
     display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
.titleFontSize{
font-size:32px;
}

@media (max-width:454px){
.btn span {

        padding: 12px 8px;
    }

.service-section-para {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

}
@media (max-width:348px){
.btn span{
     font-size:10px;
     padding:10px 5px;
    }
}
@media (max-width:532px){
.call-parent-container {
    display:none;
}
}
@media (max-width:475px){
.card-body p{
            font-size: 10px;
            margin: 0 0 8px;
         }
    .card-body h3{
     font-size:13px;
     }

.card-image img {
        height: 125px
    }
}


.subInfoCardContainer  img{
  display: none;
}

.paynowbtn{
  background-color: #d38e25 !important;
  color: white;
 margin-left: 10px;
    border: none;
    cursor: pointer;
    /* margin: 0px 25px 15px; */
    min-width: 120px;
    padding: 8px;
    font-weight: 700;
    border-radius: 1px;

}
.btn-success{
  background-color: green;
}

