@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

body {
  font-family: "Urbanist", sans-serif !important;
  color: #444444;
}

a {
  color: #07332f;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Saira Semi Condensed", sans-serif;
}
p{
  font-size: 16px !important;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #07332f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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: #ffb120;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  transition: all 0.4s;
   transform: rotate(45deg);
}

.back-to-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
  transform: rotate(-45deg);
}

.back-to-top:hover {
  background: #07332f;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom:1px solid #ffb120;
  width: 100%;
  margin: auto;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
}

#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: #000000;
}

#header .logo img {
  max-height: 80px;
}

@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: #000000;
  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: #07332f;
}

.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: 16px;
    font-weight: 500;
    text-transform: none;
    color: #000000;
}

.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: #ffb120;
}

.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: #000000;
  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: #ffb120;
}

.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: #ffb120;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
  /* padding-top: 150px; */
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* #hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 13, 14, 0.8);
} */

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  /* text-align: center; */
    padding-top: 100px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 75px;
  font-weight: 700;
  position: relative;
}

#hero h2::after{
  content: '';
  position: absolute;
  top: 0;
  left:-20px;
  width: 4px;
  height: 100%;
  background-color: #ffb120;
}
#hero h2 span{
  color: #ffb120;
}

#hero p {
  animation-delay: 0.4s;
  /* margin: 0 auto 30px auto; */
  color: #fff !important;
  max-width: 60%!important;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 45px;
  height: 5px;
  border-radius: 0px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ffb120;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #ffb120;
}

#hero .btn-get-started:hover {
  background: #07332f;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


.carousel-control-next, .carousel-control-prev {
  width: 5%;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
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: #07332f;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h1 {
 margin: 15px 0 0 0;
  font-size: 45px;
  font-weight: 600;
  color:#07332f;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 40px;
  font-weight: 700;
  color: #07332f;
}

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

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

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
  font-size: 45px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 15px;
  position: relative;
}
.about-head{
  position: relative;
}
.about-head::after{
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 4px;
  height: 100%;
  background-color: #ffb120;
}

.about .icon-boxes h4{
  color: #ffb120;
  font-size: 20px;
}

.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: #ffb120;
  font-size: 32px;
}

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

.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: #ffb120;
}

.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;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom:100px;
  position: relative;
  z-index: 1;
  background-image: url('../img/ser-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.services::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background-color: #07332f;
  z-index: -1;
}

.img-ser{
  margin: 50px -250px 50px -150px;
}

.heading-ser{
  position: relative;
}

.heading-ser::after{
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 4px;
  height: 100%;
  background-color: #ffb120;
}

.heading-ser h2{
  font-size: 40px;
  font-weight: 600;
  color: #2f2f2f;
}

.heading-ser h4{
    color: #ffb120;
    font-size: 20px;
    font-weight: 600;
}
.card{
  box-shadow: none;
  border: 0;
  margin-bottom: 30px;
}

.card-ser{
 background-color: #fff;
 padding: 30px;
 border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
transition:0.5s all;
}
.card-ser:hover{
  transform: scale(1.05);
}


.card-icon{
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
 align-items: center;
    border: 1px solid #07332f;
    margin: auto;
    margin-bottom: 25px;
    padding: 10px;
    transform: rotate(45deg);
}

.card-icon img{
 transform: rotate(-45deg);   
}

.card-icon i{
  font-size:30px;
  color: #ffb120;
}

.card-ser h3{
  font-size: 22px;
  font-weight: 600;
}

.fecture-box h3{
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  margin-top: 20px;
}
.fecture-box h3::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #ffb120;
}

.fecture-box{
    transition:0.5s all;
}
.fecture-box:hover{
    transform:translateY(-25px);
}

.fecture-box:hover a{
 letter-spacing: 1px;
}



.btn:focus{
  outline: none;
  box-shadow: none;
}
.btn a{
  color: #07332f; 
  transition: 0.5s all;
  
}

.card-ser:hover .btn a{
  letter-spacing: 1px;
  padding-right: 10px;
}

.btn span{
  color: #07332f;
  display: inline-block;
  padding-left: 2px;
  transition: 0.5s all;
}

.card-ser:hover span{
  padding-left: 8px;
}

.btn-1 a{
  display: inline-block;
  padding: 12px 25px;
  background-color: #07332f;
  color: #fff;
  font-size: 16px;
  position: relative;
  letter-spacing: 1px;
  margin-top: 10px;
  font-weight: 500;
  transition: 0.5s all;
}
.btn-2 a{
  background-color: #ffb120;
}
.btn-1 a:hover{
 letter-spacing: 0.5;
 background-color: #ffb120;
 color: #07332f;
}

.btn-2 a:hover{
  letter-spacing: 0.5;
  background-color: #ffffff;
  color: #07332f;
 }

.btn-1 a::after{
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 25%;
  height: 2px;
  background-color: #07332f;
  transition: 0.5s all;
}

.btn-2 a::after{
  background-color: #ffb120;
}

.btn-1 a::before{
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 25%;
  height: 2px;
  background-color: #07332f;
  transition: 0.5s all;
}

.btn-2 a::before{
  background-color: #ffb120;
}

.btn-1 a:hover::before ,.btn-1 a:hover::after{
  width: 100%;
  background-color: #ffb120;
}

.btn-2 a:hover::before ,.btn-2 a:hover::after{
  width: 100%;
  background-color: #ffffff;
}

.why-choose-img img{
    border-radius:0px;
}
.why-content ul{
    padding:0;
    margin:0;
}

.why-content ul li{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    list-style:none;
    margin-top:15px;
}

.icon-arrow{
    width: 50px;
    height: 45px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    background-color: #ffb1206e;
    margin-right: 10px;
    color: #000;
    transform: rotate(45deg);
}
.icon-arrow i{
     transform: rotate(-45deg);
}
.content-arrow{
    padding-left:10px;
      width: 100%;
}

.content-arrow h3{
    font-size:20px;
    color:#000;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 20px;
  background: #ffb120;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #07332f;
}


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

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


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

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

.contact .info p a{
    color:#000;
    font-size: 16px;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 90px 0;
    background: #f7f8f8;
    min-height: 40px;
    margin-top: 85px;
    /*background-image: url(../img/titlebar.jpg);*/
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    text-align:center;
}

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

.breadcrumbs h2 {
  font-size: 35px;
  font-weight: 600;
  color:#fd7e14;
}

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:#07332f;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 15px !important;
  /* background-image: url('../img/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

#footer .footer-top {
  background: #272c3000;
  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: 20px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
}

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




#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #ffb120;
  color: #000;
  line-height: 1;
  padding: 10px 0;
  margin-right: 15px;
  border-radius: 0px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  position: relative;
  transform: none !important; /* Rotate hata diya */
}

#footer .footer-top .social-links a i {
  transform: none !important; /* Icon ke andar ka element bhi seedha */
  display: inline-block;
  line-height: 1;
}













/*#footer .footer-top .social-links a::after{*/
/*    contain:'';*/
/*    position:absolute;*/
/*    width:50px;*/
/*    height:50px;*/
/*    background-color:red;*/
/*    top:0;*/
/*    left:0;*/
    
/*}*/

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

#footer .footer-top .social-links a .bx {
    font-family: boxicons !important;
    font-weight: 400;
    transform: rotate(-43deg);
}

#footer .footer-top h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

#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:#ffb120;
  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: #ddd;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#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 .copyright a{
    color:#ffb120;
}

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

.address ul li {
    color: #ddd;
    margin-top: 15px;
    font-size: 15px;
    list-style: none;
    display: flex;
}

.address ul li span i {
    color: #ffb120;
    display: inline-block;
    margin-right: 10px;
}

.address ul li a {
    color: #ddd;
}


.testimonial{
    background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0;
}
.testimonial-box{
    padding:25px;
    /*border:1px solid #ccc;*/
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
   /* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 5px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
min-height:300px;
}

.testimonial-box h3{
    font-size:25px;
    font-weight:600;
    color:#fff;
    padding:0px 0;
}
.testimonial-box h4{
    font-size:16px;
    font-weight:400;
    color:#fff;
}
.testimonial-box p{
    color:#fff;
    line-height:28px;
}

.swiper {
    padding: 50px 0;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #ffb120;
}


/*================Service Area=============*/

.ser-details{
  background-color: #f4f4f4;  
}


.left-side-ser{
  padding:20px;
  /*box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;*/
     border: 2px solid #fff;
}   

.left-side-ser ul{
    padding:0;
    margin:0;
}

.left-side-ser ul li{
    margin-top:10px;
    list-style:none;
}

.left-side-ser ul li a{
    display: block;
    padding: 14px 12px;
    border-radius:0px;
    color:#000;
        transition: 0.5s;
    border: 2px solid #ffff;
    text-transform: uppercase;
    position:relative;
    border-radius:5px;
    overflow:hidden;
    z-index:99;
}


.left-side-ser ul li a::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:100%;
    z-index:-1;
       transition: 0.5s;
}

.left-side-ser ul li a:hover::after{
    background-color:#07332f;
    width:100%;
}

.left-side-ser ul li a:hover{
    color:#fff !important;
}



.left-side-ser ul li a span{
    display:inline-block;
    position:relative;
    padding-right:10px;
}

.left-side-ser ul li a span.arrow{
    display:inline-block; 
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
}

.left-side-ser ul li a span i{
   color:#07332f;
}

.left-side-ser ul li a:hover i{
   color:#fff;
}


.left-side-ser h3 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 15px;
    position: relative;
    color:#07332f;
    margin-bottom:15px;
}

.left-side-ser h3::after{
  content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    height: 3px;
    background-color: #ffb120;
}


.ser-content h3{
        font-size: 50px;
    font-weight: 800;
    padding:5px 0;
    color:#07332f;
}
.ser-content p{
    line-height:28px;
}

.img-right-side img{
    border-radius:5px;
}

.card-sub-img img{
   border-radius:5px; 
}
/*============FAQ===================*/

.faq{
    
}

.faq-box{
    padding:20px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    border-radius:5px;
}
.accordion-item {
    margin-bottom: 30px;
     box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
     /*border:1px solid #07332f;*/
  
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #07332f;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
       background-color:#07332f;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(9999);
}

.accordion-button:focus {
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
    box-shadow:none;
}

.accordion-button span{
    font-size:20px;
    font-weight:700;
    padding-right:10px;
    display:inline-block;
}


/*===============Card Service Box===============*/
.ser-details{
      background: #fafafb;
      
}
.service-box{
    background-color:#fafafb;
    border-radius:10px;
}
.ser-card .card-body{
    display:flex;
    padding-bottom:15px;
    justify-content:center;
    align-items:center;
    
}
.ser-card{
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    display:flex;
    background-color:#eee;
    padding:20px 15px;
    border-radius: 5px;
}
.card-content{
   width:100%;  
}
/*.card-icons{*/
/*    text-align: end;*/
/*    width:10%;*/
/*}*/


ul.sub-ser-list{
    padding:0;
    margin:0;
}

ul.sub-ser-list li{
    margin-top:5px;
    list-style:none;
}

ul.sub-ser-list li span{
    display:inline-block;
    padding-right:10px;
}

.ser-card-img{
     width:45%;
         height: 370px;
    
}

.ser-card .card-body{
    width:55%;
}
.ser-card-img img{
     width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.card-content h3 {
    color: #07332f;
    font-size: 32px;
    font-weight: 700;
}

.ser-card-2 {
    flex-direction: row-reverse;
 
}


/*================Sub-Service-Box===================*/

.card-sub{
    border-radius:5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    padding:15px;
    text-align:center;
    transition:0.5s all;
    margin-top:25px;
}

.card-sub:hover{
    transform:translateY(-25px);
}

.card-sub-img img{
    width:100%;
    height:100%;
}

.sub-card-content h3{
     font-size: 25px;
    font-weight: 600;
    padding-top: 15px;
    color: #000;
}

.sub-card-content p{
   width:100%; 
   padding-top:5px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 1px;
}


/*========= Our Work Section==============*/
.work-img{
    position:relative;
}

.work-img::after{
    content: '';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    transition:0.5s all;
}
 
.work-img:hover::after{
 background-color:#07332f8a;
}
.work-img-links{
    position:absolute;
    background-color:#fff;
    bottom:25px;
    left:25px;
    z-index:2;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    transition:0.5s all;
    opacity:0;
   
}
.work-img-links a{
      display:inline-block;
      width:40px;
     height:40px;
     padding: 0;
     text-align:center;
     line-height:50px;
}

.work-img-links i{
    color:#000;
    transform: rotate(-45deg);
    font-size:25px;
}
.work-img:hover .work-img-links{
     transform: rotate(-135deg);
     opacity:1;
}


/*============-- Responsive  ====================*/
@media only screen and (max-width: 1024px) {
   #hero h2 {
    font-size: 45px;
    font-weight: 600;
   }
     
}






@media only screen and (max-width: 925px) {
 .img-ser {
     margin: 0; 
     text-align: center;
      margin-bottom: 30px;
} 
#hero p {
    max-width: 100% !important;
}
.services::after {
    left: auto;
    right: 0;
}
.why-choose-img {
    margin-bottom: 40px;
}

}

@media only screen and (max-width: 768px) {
    .container, .container-sm {
        max-width: 100%;
    }
   .about-img{
      padding-top:20px; 
      margin-top:40px;
   } 
   
   .heading-ser {
    position: relative;
    padding-top: 31px;
  }
  
#hero p {
    max-width: 100% !important;
}

.fecture-box h3 {
    font-size: 30px;
}
.fecture-box h3 {
    font-size: 30px;
}
.col-lg-4.pt-5.mt-5 {
    padding: 0 !important;
    margin: 0 !important;
}
.heading-ser h2 {
    font-size: 30px;
}
.heading-ser h4 {
    color: #ffb120;
    font-size: 15px;
}
.about .icon-boxes h3 {
    font-size: 35px;
    font-weight: 600;
}
}

@media only screen and (max-width:425px) {
    #hero h2 {
        font-size: 25px;
    }
    #hero {
        height: 80vh !important;
    }
    #hero .container {
    /* text-align: center; */
    padding-top: 30px;
    width: 100% !important;
}
    .heading-ser h2 {
        font-size: 26px;
    }
}    



