@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


body {
  font-family: "IBM Plex Sans", sans-serif !important;
  color: #000;
}

a {
  color: #ff6137;
  text-decoration: none;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "IBM Plex Sans", sans-serif;*/
  font-family: "Outfit", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #003c40;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff6137;
  border-top-color: #003c40;
  border-bottom-color: #003c40;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #ff6137;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(23, 26, 29, 0);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}
.logo img {
  max-height: 100px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff6137;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #ff6137;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff6137;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 39, 43, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #394047;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff6137;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff6137;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.bg{
  background-image: url('../img/new/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  z-index: 999;
  height: 100vh;
}
.bg{
  background-color: #0a4447;
}
/* .content-top{
  background-color: #0a4447;
  height: 520px;
  z-index: -1;
} */

.content-top{
  /* height: 100%; */
}
.video-banner {
    position: relative;
}
.content-box {
    position: absolute;
    /* transform: translate(0%, 130%); */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding-bottom:45px;
}

.content-top h3{
  font-size: clamp(50px, 10vw, 85px);
  font-weight: 600;
  text-align: center;
  color: #fff;
  padding-bottom: 25px;

  /* margin-top: 150px;
  margin-bottom: 50px; */

}
.sertop h4{
   font-size:30px;
   font-weight:700;
}


.content-box h3 {
    color: #ffffff;
    text-shadow: 2px 5px 10px #000;
}


a.btn{
  padding:12px 35px;
  color: #ff6137;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  transition: 0.5s all;
  border-radius: 50px;
  /* overflow: hidden; */
}
a.btn:hover{
  background-color: #ff6137;
  color: #fff;
}
a.btn span{
  display: inline-block;
  padding-left: 5px;
  transform: rotate(-35deg) translateX(0px);
  /* transition: 0.5s all ; */
}
a.btn span:hover{
  transition:move 0.5s all ;
}

/*.scrolled-past .content-box a.btn{*/
/*    display:none;*/
/*}*/

/* .video-banner video{
  transform: scale(0.8);
  transition: 0.5s all;
}

.video-active .video-banner video{
  transform: scale(1);
} */


/*==========Serivce==============*/
section#services {
    background-color: #f5f7fa;
}
.ser-box{
  background-color: #003c40;
  transition: 0.5s all;
  /* transform: scale(0.9); */
  /* clip-path: inset(0% 5%); */
  border-radius: 15px;
  width:90%;
  margin: auto;
}
.ser-box-active{
  /* transform: scale(1); */
  /* clip-path: inset(0% 0%); */
  width:100%;
  border-radius: 0px;
}
.ser-list ul{
  padding: 0;
  margin: 0;

}
.ser-list ul li{
  list-style: none;
  color: #fff;
  margin-top: 25px;
  display: flex;
}
/* .ser-list ul li span{
  display: inline-block;
  padding-top: 10px;
  padding-right: 15px;

} */
.ser-list ul li h3{
  font-size: 35px;
  font-weight: 400;
}

.ser-list ul li p{
  color: #fff;
}

.ser-box-list h3{
  font-size: 35px;
  font-weight: 400;
  color: #fff;
}

.top-ser{
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #ff613775;
    margin-bottom: 31px;
}
.top-ser h3{
    font-size:35px;
    font-weight:400;
    color:#fff;
    padding-bottom:10px;
}
.top-ser p{
    color:#fff;
}
.ser-cont{
    padding-left:25px;
     border-left: 1px solid #ff613775;
     margin-top:20px;
}


.ser-box-list p{
  color: #fff;
}
.btn-box{
  padding: 5px 0px;
  outline: none;
  box-shadow: none;
  border: 0;
  background-color: transparent;
  color: #fff;
  transition: 0.5s all;
}
.btn-box:hover{
  letter-spacing: 2px;
}
.btn-box i{
  font-size: 14px;
  padding-left: 5px;
}
.content-ser{
  border-width: 0;
  transition: 0.5s all;
}
.active-ser{
  position: relative;
  /* border-bottom: 1px solid #ff6137; */
  padding-bottom: 15px;
  transition: 0.5s all;
}
.content-ser::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ff6137;
  width:0%;
  height: 1px;
  transition: 0.5s all;
}
.content-ser.active-ser::after{
  width:100%;
}

.content-ser::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color:#ff61373d;
  width:100% !important;
  height: 1px;
  transition: 0.5s all;
}



.content-ser span{
  transform: scale(0);
 display: none;
}
.active-ser span{
  width: 45px;
  height: 45px;
  display: inline-block;
  text-align: center;
  line-height: 45px;
  position: absolute;
  top: 0px;
  right: 25px;
  transform: rotate(-25deg) scale(1);
  background-color: #ff6137;
  border-radius: 50px;
  transition: 0.5s all;
}
.ser-box-img img{
  border-radius: 10px 10px 0 0;
}
.tab {
  display: none;
}
.tab.active-ser {
  display: block;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
.copyright p {
  font-size: 16px;
  font-weight: 500;
}
#footer .copyright {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

/*========== New Service Box Design*/
.card-ser-box{
    padding:20px;
    border-radius:10px;
     box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
   position:relative;
   overflow: hidden;
    z-index:1;
    transition:0.5s all;
    text-align:center;
    background-color: #fff;
}
.card-ser-img{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    right:0;
    z-index:-1;
    transition:1s ease-in-out;
}
.card-ser-img::after{
    content:'';
     position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background-color:#fff;
     transition:1s ease-in-out;
}
.card-ser-box:hover .card-ser-img::after{
    background-color:#00000030;
}
.card-ser-box:hover .card-ser-img{
    width:100%;
}
.card-ser-img img{
    width:100%;
    height:100%;  
       object-fit: cover;
}



.card-ser-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 15px 0;
    line-height: 28px;
   
}
.card-ser-box:hover h3{
    color:#fff;
     text-shadow:1px 2px 5px #000;
}
.card-ser-icon{
       width: 60px;
    height: 60px;
    margin: auto;
    background-color: #003c40;
    padding: 10px;
    border-radius: 50%;
     transition:1s ease-in-out;
     opacity:1;
    
}
.card-ser-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.card-ser-box:hover .card-ser-icon{
   opacity:0;
}
.card-ser-box p{
    transition:0.5s all;
      transform:scale(1);
}
.card-ser-box:hover p{
   transform:scaleY(0);
}



.card-ser-box .btn {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
}
.card-ser-box .btn button{
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: 0.5s all;
  border: 0;
    background: transparent;
    margin: auto;

}
.card-ser-box .btn button:hover{
  letter-spacing: 1px;
}

.card-ser-box .btn span{
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50px;
  background: linear-gradient(to top, #ff6137 29%, rgba(116, 152, 106, 0.11));
  margin-left: 10px;
  line-height: 26px;
  text-align: center;
  transition: 0.5s all;
}
.card-ser-box .btn button:hover span{
  background: linear-gradient(to top,#054638 29%,rgba(116,152,106,0.11))
}


.card-ser-box .btn span i{
  display: inline-block;
  transform: rotate(50deg);
  color: #fff;
  font-size: 18px;
  transition: 0.5s all;
}
a:focus{
  box-shadow: none;
  outline: none;
}
.card-ser-box .btn button:hover i{
  transform: rotate(90deg);
}

.card-ser-box .btnbox{
    position:absolute;
    top:60%;
    left:50%;
    transform:translate(-50%,-50%) translateY(50px);
    width:100%;
    text-align:center;
    transition:2s ease;
    opacity:0;
    overflow:hidden;
}

.card-ser-box:hover .btnbox{
       transform:translate(-50%,-50%) translateY(10px);
        opacity:1;
}

.left-side-ser h4{
    font-size:20px;
    color:#ff6137;
    font-weight:600;
}
.left-side-ser h2{
      font-size:45px;
    color:#003c40;
    font-weight:700;
}
.service-sec strong {
    font-weight: 800;
    color: #454545;
}

.top-heading{
       position: relative;

}
.top-heading:after{
      content: '';
    position: absolute;
    top: 50%;
    left: 116px;
    transform: translateX(-50%);
    width: 7%;
    height: 2px;
    background-color: #ff6137;
}

/*-----==============Model Service================---------*/
.model-body-box{
    display:flex;
        justify-content: center;
    align-items: center;
}
.model-img{
    width:50%;
    height:100%;
}
.model-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}
.model-text{
     width:50%;
    height:100%;
    padding-left:25px;
}
.model-text p{
    color:#fff;
}
.model-text h3{
    color:#fff;
    font-size:28px;
    font-weight:600;
    padding-bottom:10px;
    letter-spacing:1px;
}
.modal {
    --bs-modal-bg:#003c40;
    background: #003c4087;
}
h1.modal-title{
    color:#fff;
}
.btn-close {
    color: #fff5f5;
    background: white var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: 1;
}

button.btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 12px;
    font-size: 12px;
    border-radius: 0;
}

.modal-body {
    position: relative;
    /* flex: 1 1 auto; */
     padding: 0 !important; 
}
.btn-close:focus{
      box-shadow: none;  
}

/*==========parllex section=========*/



section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fafafb;
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f5f9fc;
  color: #ff6137;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #ff6137;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  color: #919191;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}









/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
font-size: 45px;
    color: #003c40;
    font-weight: 700;
}
.about .icon-boxes h1 {
    font-size: 45px;
    color: #003c40;
    font-weight: 700;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #b9d4ec;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #ff6137;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #ff6137;
  border-color: #ff6137;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #ff6137;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff6137 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ff6137;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


.about-us h2{
 font-size: 20px;
    color: #ff6137;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #ff6137;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
  padding-top: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #394047;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e3e6e9;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #ff6137;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  margin-bottom: 60px;
}

.services .icon {
  float: left;
}

.services .icon i {
  color: #ff6137;
  font-size: 36px;
  line-height: 1;
}

.services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: #ff6137;
}

.services .description {
  margin-left: 60px;
  line-height: 24px;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 40px 40px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  text-align: center;
}

.contact .info i {
  font-size: 48px;
  color: #92bce0;
  margin-bottom: 15px;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f7f8f8;
  min-height: 40px;
  margin-top: 70px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #505a63;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {

  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  background-image: url('../img/new/footer-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003c40d6;
  z-index: -1;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #2e3339;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-top {
  /* background: #272c305c; */
  border-top: 1px solid #394047;
  border-bottom: 1px solid #394047;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #ff6137;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff6137;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff6137;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff6137;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.footer-con ul{
  padding: 0;
  margin: 0;
}
.footer-con ul li {
  list-style: none;
  margin-top: 15px;
  font-size: 15px;
  display: flex;
  color: #fff;
  /* flex-direction: column; */
}
.footer-con ul li span {
  display: flex;
  padding-right: 5px;
}
.footer-con ul li a {
     color: #fff;
    display: inline-block;
    padding-left: 10px;
    font-size: 16px;
}
.footer-con ul li p{
   padding-left: 10px;  
    color: #fff;
    font-size:16px;
}

.footer-con ul li span i{
    color:#ff6137;
        font-size: 16px;
}
.footer-con ul li span h5{
    padding-right:15px;
}
.footer-bottom{
background-color: #292929;
}
.footer-con ul li span{
    display:flex;
}
.footer-con ul li span h5{
     font-size: 15px;
    font-weight: 700;
    display: inline-block;
    margin-left: 13px;
}
.footer-con ul li i{
  font-size: 15px;  
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 500;
  border: 0;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: #fff;
}

.faq .accordion-button:not(.collapsed) {
  color: #fff;
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
  filter: brightness(9);
}

.faq .accordion-body {
  padding: 15px 40px 30px 45px;
  border: 0;
  border-radius: 0px;
  background: #003c40;
  box-shadow: none;
  border-top: 1px solid #ccc;
  line-height: 25px;
  color: #fff;
}
.accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
  background-color: #003c40;
}

/*=============Why Us==========*/
.why-us{
  background-color: #fff;
  padding: 0;
  margin: 70px 0;
}

.why-content {
  padding-top: 20px;
  padding-left: 20px;
}
.why-content h3{
  font-size: 35px;
}

.why-content ul{
  padding: 0;
  margin: 0;
  margin-top: 25px;
}
.why-content ul li{
  list-style: none;
  margin-top: 15px;
  font-size: 17px;
}

h4.top-heading::after {
    left: -15px;
    display:none;
}
.top-heading:after{
      display:none;
}

.social-links.mt-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-block;
    background: #ff6137;
    color: #fff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 6px;
    border-radius: 4px;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.banner-bo{
    background-color:#f5f7fa;
}
.banner-bottom{
    text-align:center;
}

.banner-bottom h2{
       font-size: 39px;
    color: #003c40;
    font-weight: 700; 
    padding-bottom:10px;
}
.banner-bottom p{
    font-size: 18px;  
    line-height:32px;
}

/*=========-----------Responsive Area-------=============*/

  
@media only screen and (min-width: 1400px) {
.scrolled-past .content-box {
    transform: translate(0%, 150%);
}
p ,.accordion-body,a{
    font-size: 20px!important;
    line-height: 37px !important;
}
.faq .accordion-button {
    font-size: 25px;
}
.footer-con ul li span i {
    color: #ff6137;
    font-size: 28px;
}
.back-to-top i {
    font-size: 40px;
}
.back-to-top {
    width: 55px;
    height: 55px;
}
  .card-ser-box {
    min-height: 300px !important;
  }

}

@media only screen and (max-width: 992px) {
    .model-body-box {
    display: block;
        
    }
    .model-img {
    width: 100%;
    height: 285px;
}
.model-text {
    width: 100%;
    height: 100%;
    padding-left: 0px;
    padding-top: 20px;
}
}

@media only screen and (max-width: 768px) {
    .ser-box-1.ser-box-list {
    margin-top: 35px;
}
.col-lg-6.pb-2 {
    padding: 0;
}
#footer .footer-top .footer-info {
    text-align: start !important;
}
.scrolled-past .content-box {
    transform: translate(0%, 60%);
}
}


@media only screen and (max-width: 450px) {
    .content-top h3 {
        font-size: clamp(25px, 7vw, 82px);
    }
.ser-box {
    width: 100%;
}
.ser-list ul li h3 {
    font-size: 27px;
    padding-bottom: 10px;
}
    .about .icon-boxes h3 {
    font-size: 30px;
    }
    .about-us h2 {
    margin-top: 20px;
}
.left-side-ser h2 {
    font-size: 30px;
}
.why-content {
    padding-top: 20px;
    padding-left: 0px;
}
.content-box {
    padding-top: 50px;
    padding-bottom: 50px;
}
    .scrolled-past .content-box {
        transform: translate(0%, 100%);
    }
}

@media only screen and (max-width: 375px) {
    .content-top h3 {
        font-size: clamp(20px, 6vw, 82px);
    }
}