
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Titillium Web", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1b96d3;
  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: #ff6a40;
  color: #fff;
}

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

/*--------------------------------------------------------------
# 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 #ff4a17;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 9px 0 0;
      background: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

#header .logo {
  margin: 0;
  padding: 0;

}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 65px;
  max-width: unset;
  margin-top: 0px;
}

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

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
      color: #171717;
    font-size: 16px;
    font-family: "Titillium Web", sans-serif;
    letter-spacing: 0.3px;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #9a0101;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #9a0101;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fffefe;
  border-color: #9a0101;
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  color: #171717;
  font-weight: 600;
  font-family: "Titillium Web", sans-serif;
  border-bottom: 1px solid #ddd;

}
.navbar .dropdown ul li:last-child a { border:0;}

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

.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 {
    right: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #262525;
  border: 1px solid #ddd;
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.navbar-mobile .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(4, 7, 9, 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;
    font-family: "Titillium Web", sans-serif;
}

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

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

.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-family: "Titillium Web", sans-serif;
}

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

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*==========================*/
.header-action {
  margin:0;
    display: flex;
    align-items: center;
}
.header-link-1 {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-link-1 .icon {
    position: relative;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: #1b96d3;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    /*transform: rotate(-45deg);*/
}
.header-link-1 .icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    height: 55px;
    width: 55px;
    border: 1px solid #1b96d3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    }
.header-link-1 .content span {
    color: #171717;
     font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}
.header-link-1 .content h6 {
    color: #1b96d3;
     font-family: "Titillium Web", sans-serif;
     font-weight: 600;

}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 100px);
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 70px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}

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

#hero h2 {
  color: #fff;
  margin: 0;
  font-weight: 900;
  font-size: 85px;
  font-family: "poppins", sans-serif;
}

#hero h3 {
  animation-delay: 0.4s;
  color: #c92424;
  margin-top: 10px;
  font-size: 85px;
  font-weight: 800;
  font-family: "poppins", sans-serif;
}

@media (min-width: 1200px) {
  #hero h2 {
    font-size: 65px;
  }
}

#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-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#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: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

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

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

#hero .btn-get-started:hover {
  background: #9a0101;
}
#hero .btn-conatct {
  background:#1b96d3;
}
@media (max-width: 992px) {
  #hero {
    height: 33vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 24px;
  }
}

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

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c8eb0;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content {
  
}

.about .content  h6{
  color:#9a0101;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 2px;
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.about .content  h6:after{
  position: absolute;
    content: "";
    left: 100%;
    top: 50%;
    width: 35px;
    height: 5px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #9a0101;
}
.about .content  h3{
  color: #1b96d3;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Poppins",sans-serif;
}
.about .content  p{
  color: #282828;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Poppins",sans-serif;
    letter-spacing: 0.3px;
}
.about .content  h4{
  color: #282727;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Poppins",sans-serif;
    margin-top: 10px;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.homeabout-left{
  position: relative;
  width: 100%;
  float: left;
  margin-bottom: 40%;
}
.homeabout-left .image1{
  width: 80%;
}
.homeabout-left .image2{
  width: 80%;
    position: absolute;
    content: "";
    right: 10px;
    top: 80%;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1b96d3 50%, rgba(27, 150, 211, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(80% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn i{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
 color: #fff;
 font-size: 30px;  
  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(27, 150, 211, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

.about .play-btn:hover i {
font-size: 32px;
}

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

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.homeabout-right .read-more{
  margin-top: 25px;
  width: 100%;
  float: left;
}
.homeabout-right .read-more a{
  background:  #ff6600;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
  padding: 12px 35px;
  color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
  font-family: "Poppins",sans-serif;
  transition: all 0.5s ease-in;
}
.homeabout-right .read-more a:hover{
  background: #093182;
  border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
/*--------------------------------------------------------------
# counr Boxes
--------------------------------------------------------------*/
.count-section .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.count-section .count-box {
  padding: 60px 0;
  width: 100%;
  position: relative;
}
.count-section .count-box:before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 65px;
    width: 2px;
    height: 40px;
    background: #1b96d3;
}
.count-section .count-box i {
  display: block;
  font-size: 48px;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.count-section .count-box span {
    font-size: 28px;
    line-height: 25px;
    display: inline-block;
    font-weight: 700;
    color: #365870;
    margin-left: 10px;
}

.count-section .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2e4b5e;
}

.count-section .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.count-section .count-box a:hover {
  color: #477392;
}
/*--------------------------------------------------------------
# about Boxes
--------------------------------------------------------------*/
.about-boxes {
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.about-boxes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

.about-boxes .container,
.about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.about-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
}

.about-boxes .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: #ff4a17;
  border-radius: 4px;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.about-boxes .card-body {
  padding-top: 12px;
}

.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.about-boxes .card-title a {
  color: #15222b;
}

.about-boxes .card-title a:hover {
  color: #ff4a17;
}

.about-boxes .card-text {
  color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: #ff4a17;
}

@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 60px 0;
  text-align: center;
}
.clients h3{
  font-weight: 700;
    font-size: 56px;
    color: #093182;
    border-right: 2px solid  #093182;
    text-align: left;
}
.clients img {
  max-width: 85%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  /*filter: grayscale(100);*/
}

.clients img:hover {
  filter:grayscale(100);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 100%;
  }
}
.clients-slider{padding-bottom: 30px;}
  .clients .swiper-button-next:after,   .clients .swiper-button-prev:after {  
    font-size: 25px;
    color: #333;
  }
   .clients   .swiper-button-next,   .clients  .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,85%);
  }
  .clients .swiper-button-prev {
  
    left: 10px;
  }
  .clients .swiper-button-next {
    left: 40px;
    right: unset;
  }
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #b5ccdb;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link img {
  padding-right: 15px;
  width: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #1b96d3;
}

.features .nav-link.active {
  background: #1b96d3;
  color: #fff;
  border-color: #1b96d3;
}
.features .nav-link.active img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .features .nav-link img {
    padding: 0;
    line-height: 1;
    width:  36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link img {
    width: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
 font-weight: 700;
    font-size: 42px;
    color: #093182;
    margin-bottom: 15px;
    margin-top: 15px;
}
.features .tab-pane img{
  border-radius: 5px;
}

.features .tab-pane p {
      color: #282828;
    font-size: 15px;
    line-height: 29px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: "Poppins",sans-serif;
    letter-spacing: 0.3px;

  }


.button{
    background: #9a0101;
    border-radius: 5px;
    padding: 12px 30px;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    transition: all 0.5s ease-in;
}
.button:hover{ background: #1b96d3; color: #fff;}

.button i{ display: inline-block;  transition: 0.1s ease-in;}

.button:hover i{transform: translateX(5px);}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 40px 0 rgba(50,50,50,.1);
  height: 100%;
}
.signle-services-icon-wrapper {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border: 1px solid rgba(27,150,211,.25);
  font-size: 40px;
  background: #fff;
  box-sizing: content-box;
  border-radius: 50%;
  color: #79b32f;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}
 .signle-services-wrapper:hover .signle-service-dot:first-child {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
 .signle-services-icon-wrapper .signle-service-dot:first-child {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation: signle-service-dot_1 2s linear infinite;
  animation: signle-service-dot_1 2s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@-webkit-keyframes signle-service-dot_1 {
 0% {
 -webkit-transform:rotate(0deg);
 transform:rotate(0deg)
}
 to {
 -webkit-transform:rotate(1turn);
 transform:rotate(1turn)
}
}
 @keyframes signle-service-dot_1 {
 0% {
 -webkit-transform:rotate(0deg);
 transform:rotate(0deg)
}
 to {
 -webkit-transform:rotate(1turn);
 transform:rotate(1turn)
}
}
 .signle-services-icon-wrapper .signle-service-dot {
  width: 100%;
  height: 100%;
  left: 56%;
  top: 8%;
}
.dots {
  width: 15px;
  height: 15px;
  background: #1b96d3;
  border-radius: 50%;
  left: 14px;
  top: 0;
  position: relative;
}
.signle-services-icon-wrapper img.fi {
  position: absolute;  
  width: 50px;
}
i {
    transition: all 0.4s ease-in-out 0s;
} 
.signle-service-content{
    overflow: hidden;
    padding-left: 30px;
    text-align: left;
  }
.services .icon-box h4 { 
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;  
    letter-spacing: 0.3px;

}

.services .icon-box h4 a {
 color: #9a0101;;
  transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
  color: #ff6600;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #1b96d3;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
   background: rgb(9 49 131 / 75%);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #a1bdd1;
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff4a17;
  opacity: 1;
}
/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process {
  position: relative;
  display: block;
  padding: 70px 0 80px;
}

.process .section-title {
  text-align: center;
  width: 100%;
  float: left;

}
.process h3 {
 color: #282828;
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.process .section-sub-title {
 color: #9a0101;
  font-size:  17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.process__inner {
  position: relative;
  display: block;
  counter-reset: count;
   width: 100%;
  float: left;
}

.process-shape-1 {
  position: absolute;
  top: 0;
  left: 135px;
}

.process-shape-1 img {
  width: 100%;
}

.process__single {
  position: relative;
  display: block;
  text-align: center;
  padding: 0 15px 0;
  margin-bottom: 22px;
}

.process__icon-box {
  position: relative;
  display: block;
  height: 150px;
  width: 150px;
  margin: 0 auto;
}

.process__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(223, 227, 231);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.1);
  height: 148px;
  width: 148px;
  margin: 0 auto;
  z-index: 1;
}

.process__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: #9a0101;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.process__single:hover .process__icon:before {
  transform: scaleX(1);
}

.process__icon span {
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.process__single:hover .process__icon img {
  transform: scale(0.9);
  filter:  brightness(0) invert(1);
}

.process__count {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #1b96d3;
  z-index: 2;
}

.process__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  font-weight: 700;
  border-radius: 50%;
  counter-increment: count;
  content: counters(count, ".", decimal-leading-zero);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process__single:hover .process__count:before {
  background-color: #749fbc;
}

.process__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.process__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.3px;
    margin-bottom: 7px;
    color: #282828;
}

.process__text {
  font-size: 14px;
  letter-spacing: 0.3px;
  font-family: poppins,sans-serif;
}


.process__single-2 {
  margin-top: 100px;
}

.process__single-2 .process__count {
  bottom: 0;
  right: 0;
  top: inherit;
  left: inherit;
}

.process__single-3 {
  margin-top: 75px;
}
.process__single-4{
  margin-top: -20px;
}
.process__single-4 .process__count {
  bottom: 0;
  right: 0;
  top: inherit;
  left: inherit;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #e5edf3;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #ff4a17;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ff4a17;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff4a17;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff4a17;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 34, 43, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #15222b;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #7fa5c0;
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #477392;
}

.team .member .social a:hover {
  color: #ff4a17;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 10px 30px ;
}

.contact .info-box i {
  font-size: 32px;
  color: #ff4a17;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}
.contact .info-box a {
  color: #282828;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea ,
.contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus  {
  border-color: #ff4a17;
}

.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form select {
  padding: 10px 15px;
      color: #292929;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ff4a17;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff5e31;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
      padding: 30px 0;
    background: #1b96d3;
    min-height: 40px;
    margin-top: 79px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;  
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol a{ color: #9a0101;}

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

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

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

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

@media (max-width: 768px) {
    .breadcrumbs ol {
        display: none;
    }
    .breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: #fff;    margin-bottom: 1.5rem;
}

.back-to-top {
    display: none;
}
.back-to-top.active {
    visibility: hidden;
    opacity: 0;
    
}

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000612;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: rgb( 255 255 255/0.03);
  border-bottom: 1px solid #03163c;
  padding: 60px 0 60px 0;
}

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

#footer .footer-top h3 {
     font-size: 22px;
    margin: 0 0 18px 0;
    padding: 2px 0 6px 0;
    line-height: 1;
    font-weight: 600;
    position: relative;
}
#footer .footer-top h3:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0px;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ff6600 , #03163c 50%);
}
#footer .footer-top .footer-info li {
  font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: #f9f9f9;
    list-style: none;
    padding-left: 15px;
    padding-bottom: 10px;
    display: flex; 
}
#footer .footer-top .footer-info li i{
  margin-left:-15px;
  margin-right: 5px;
  color: #ff6600;
  font-size: 26px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 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: #ff6600;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top p{
  font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: #f9f9f9;
    padding-bottom: 10px;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

#footer .footer-top .footer-links ul li {
  padding: 0px 0 14px;
  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: #f9f9f9;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ff4a17;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}

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

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

#footer .credits a {
  transition: 0.3s;
}
/*==================================*/
.fw-600{font-weight: 600;}
.fw-700{font-weight: 700;}
.f-black{color: #000;}
.f-blue {  color: #9a0101;}
.f-orange {  color: #1b96d3;}

.inner-page{
  padding: 60px 0px;
}
.inner-page ul {
  margin: 0;
  padding: 0;
  }
.inner-page p{
  color: #282828;
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: "Poppins",sans-serif;
    letter-spacing: 0.3px;
}
.inner-page p:last-child{ margin-bottom: 0px}

.inner-page li{
  color: #282828;
    font-size: 14px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Poppins",sans-serif;
    letter-spacing: 0.3px;
    list-style: none;
}
.inner-page li:last-child{ margin-bottom: 0px}

.aboutus h4{color: #282828; font-weight: 700; margin-bottom: 5px;}

.aboutus .para-box{
  border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    margin-top: -20px;
    width: 100%;
    float:left;
}
.aboutus .image-box{
 border: 2px solid #ffd4c0;
    padding: 14px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    float: left;
    margin-left: 20px;
    margin-right: 20px;
    background: #fff7f3;
    position: relative;
}
.aboutus .image-box img{width:100%;}

/*=======*/
.service-sec2 li{
position: relative;
list-style: none;
padding-left:26px;
margin-bottom: 15px;
}
.service-sec2 li:before{
  position:absolute;
  content:"\F3E5";
  left:0px;
  color:#1b96d3;
  font-family: bootstrap-icons !important;
  font-size:18px;
}
.li-2col{
 grid: auto-flow / 1fr 1fr;
    display: grid;
    grid-gap: 4px 25px;
}
@media (max-width: 640px) {
.li-2col{
 grid: auto-flow / 1fr;
    display: grid;
    grid-gap: 4px 0px;
}
}

.service-work-title{
   border-bottom: 1px solid #ddd;
   display: flex;justify-content: center;
}

.service-work{
   border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    float:left;
    position: relative;
    height: 100%;
}
.service-work:before{
  position:absolute;
  content:"";
  left:50%;
  bottom:100%;
  transform:translateX(-50%);
  width:2px;
  height:1rem;
  background:#ddd;
}
.service-img-box{
  text-align: center;
}
.service-img-box img{
  width: 100%;
  margin-top: 0px;
}
/*default modal popup*/
.popup-query{flex-wrap:wrap;}

.enquiry-left {
    width:45%;
    float:left;
    margin-right:2%;
           background: #ddd;
           position:relative;
}
.enquiry-left:before {
    position:absolute;
    content:"";
    right:0px;
    bottom:0px;
    background:#ff6600;
    width:100%;
    height:50%;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    
}
.popup-image{
    width:180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    margin: 0 auto;
}
.popup-image img{
width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: right;
}
.enquiry-left h3{    
    padding: 20px;
    font-weight: 600; 
    
}
.enquiry-left h3 span{ 
    color:#ff6600;
    font-size: 2.8rem;
    display:block;
}

.enquiry-form {
    width:53%;
    float:left;
    margin-right:0%;
    background-color: #fff;
    padding:20px 30px 25px 25px;
    text-align:left;
}

.enquiry-form h2 {
    font-size: 20px;
    color:#ff6600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    float:left;
    font-weight:700;
}

.enquiry-form input, .enquiry-form select {
    float:left;
    width:100%;
    padding:8px 12px;
    border:1px solid #ddd;
    border-radius:4px;
    background-color:#fff;
    margin-bottom:15px;
        font-size: 14px;
}

.submit-details {
    background-color:#093182;
    padding:12px 25px;
    color:#fff;
    text-align:center;
    border-radius:38px;
    font-size:15px;
    border:0;
    margin-top:15px;
}
.submit-details:hover {
    background-color:#ff6600;  
}

/*   This is the background overlay   */
.backgroundOverlay {
  position:fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
  opacity: .85;
  filter: alpha(opacity=85);
  -moz-opacity: .85;
  z-index: 101;
  display: none;
  transition: opacity 500ms;
  z-index: 9999;
}
/*   This is the Popup Window   */
.delayedPopupWindow {
  display: none; 
  background: #fff;
  border-radius: 5px;
  width:65%;
  position: fixed;
  transition: all 5s ease-in-out;
  z-index: 99999;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  text-align:center;
}


/*   This is the closing button  */
#btnClose {
  width:100%;
  display: block;
  text-align: right;
  text-decoration: none;
  position: absolute;
  right: -10px;
  top: -10px;
      z-index: 1;
}
#btnClose span{
  background:#ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: #000;
  display: inline-block;
  text-align:center;
}

/*   This is the closing button hover state  */
#btnClose:hover { 
  color:#c90c12;
}
.wp-button{
	margin-top:8px;
}
.whatsapp{
	position: fixed;
	width:45px;
	height:45px;
	/*margin-left:15px;*/
	bottom:40px;
	right:35px;
	float:right;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
  z-index:1000;
}
.call-btn{background: #9a0101;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
  }

.call-btn:hover{
    color: #fff;
    background: #df5900;
 }

.enquire-cont {
    display: none;
}


 @media only screen and (max-width: 479px) {
    .f_none {
        float: none !important;
    }
    .enquire-cont {
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #1b96d3;
        -webkit-box-shadow: 0 -3px 6px 0 rgb(0 0 0 / 16%);
        -moz-box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, .16);
        box-shadow: 0 -3px 6px 0 rgb(0 0 0 / 16%);
        display: block;
        z-index: 4;
    }
    .enquire-cont a {
        width: 100%;
        width: -webkit-calc(100% - 0.5px);
        width: -moz-calc(100% - .5px);
        width: calc(100% - 0.5px);
        text-align: center;
        height: 60px;
        line-height: 22px;
        font-size: 17px;
        font-weight: 500;
        padding: 18px 0;
        color: #fff; 
        float: left;
        background: #1b96d3;
    }
        .enquire-cont a span {
        height: 18px;
        line-height: 18px;
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
    }
        .d-in-blk {
        display: inline-block;
    }

        .f_left {
        float: left !important;
    }


    .f_none::after {
        display: block;
        clear: both;
        content: "";
    }
#footer {
    background: #03163c;
    padding: 0 0 85px 0;
    color: #fff;
    font-size: 14px;
}

.whatsapp {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 50px;
    right: 16px;
    float: right;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
}




}

.whatsapp-heading{font-size: 30px; color:#000;padding-top: 5%; font-weight: 600;}

.whatsapp-btn {
    padding-top: 5%;
    padding-left: 35%;
}

.whatsapp-btn a i {
    color: #fff;
    background: rgb(29, 73, 36);
    background: linear-gradient(0deg, rgba(29, 73, 36, 1) 0%, rgba(95, 247, 122, 1) 100%);
    border-radius: 15px;
    /* height: 80px; */
    /* width: 80px; */
    /* line-height: 80px; */
    font-size: 52px;
    float: left;
    margin-right: 19px;
    margin-bottom: 6px;
        padding: 2px 18px;
}

.whatsapp-btn a h3 {
    color: #000;
    font-weight: 600;
    text-align: left;
    font-size: 2.0rem;
    line-height: 3rem;
    color: #0c1e4c;
    font-family: 'Roboto', sans-serif;
}

.phone-btn {
    padding-top: 2%;
    padding-left: 35%;
}

.phone-btn a i {
    color: #fff;
    background: rgb(208, 79, 0);
    background: linear-gradient(0deg, rgba(208, 79, 0, 1) 0%, rgba(255, 145, 77, 1) 100%);
    border-radius: 15px;
    /* height: 80px; */
    /* width: 80px; */
    /* line-height: 80px; */
    font-size: 52px;
    float: left;
    margin-right: 19px;
    margin-bottom: 6px;
        padding: 2px 18px;
}

.phone-btn a h3 {
    color: #000;
    font-weight: 600;
    text-align: left;
    font-size: 2.0rem;
    line-height: 3rem;
    color: #0c1e4c;
    font-family: 'Roboto', sans-serif;
}

@media only screen and (max-width: 479px) {
    .whatsapp-heading{font-size: 30px; color:#000;padding-top: 17%; font-weight: 600;}
    .whatsapp-btn {
        padding-top: 13%;
        padding-left: 0%;
    }

    .phone-btn {
    padding-top: 2%;
    padding-left: 0%;
}

}


@media only screen and (min-width: 1280px) and (max-width: 1366px){
    .whatsapp-btn {
        padding-top: 5%;
        padding-left: 35%;
    }

    .phone-btn {
    padding-top: 7%;
    padding-left: 35%;
}

}
.whats-app-btn {background-color: #1b96d3; padding: 10px 35px; text-align: center; border-radius: 25px; color: #fff; font-size: 16px}

.whats-app-btn:hover {background-color: #9a0101; padding: 10px 35px; text-align: center; border-radius: 25px; color: #fff; font-size: 16px}

.phone-app-btn {background-color: #9a0101; padding: 10px 35px; text-align: center; border-radius: 25px; color: #fff; font-size: 16px}

.phone-app-btn:hover {background-color: #1b96d3; padding: 10px 35px; text-align: center; border-radius: 25px; color: #fff; font-size: 16px}


.mt-30{margin-top: 0px}

/* =============================================MENU============================================ */

.menu-sm-lines {
    display: none !important;
}

.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
  z-index: 9999;
}

.cd-panel::after {
  /* overlay layer */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}

.cd-panel.cd-panel--is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
      z-index: 9999;
}

.cd-panel.cd-panel--is-visible::after {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}

.cd-panel__header {
  position: fixed;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #002147;
  z-index: 2;
  -webkit-box-shadow: 0 1px 1px #454545;
          box-shadow: 0 1px 1px #454545;
  -webkit-transition: -webkit-transform 0.3s 0s;
  transition: -webkit-transform 0.3s 0s;
  transition: transform 0.3s 0s;
  transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

.cd-panel__header h1 {
 padding-left: 5%;
  font-size: 16px; 
  margin:10px 0px 0px 0px; 
  color:  #9a0101 !important; 
  font-weight: 400;    font-family: 'poppins', sans-serif;       text-align: left;
}

.cd-panel--from-right .cd-panel__header {
  right: 0;
}

.cd-panel--from-left .cd-panel__header {
  left: 0;
}

.cd-panel--is-visible .cd-panel__header {
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

@media only screen and (min-width: 768px) {
  .cd-panel__header {
    width: 70%;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-panel__header {
    width: 28%;
  }
}

.cd-panel__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-panel__close::before, .cd-panel__close::after {
  /* close icon created in CSS */
  content: '';
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 20px;
  background-color: #fff;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.cd-panel__close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-panel__close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cd-panel__close:hover {
  background-color: #000;
}

.cd-panel__close:hover::before, .cd-panel__close:hover::after {
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cd-panel__close:hover::before {
  -webkit-transform: rotate(220deg);
      -ms-transform: rotate(220deg);
          transform: rotate(220deg);
}

.cd-panel__close:hover::after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.cd-panel--is-visible .cd-panel__close::before {
  -webkit-animation: cd-close-1 0.6s 0.3s;
          animation: cd-close-1 0.6s 0.3s;
}

.cd-panel--is-visible .cd-panel__close::after {
  -webkit-animation: cd-close-2 0.6s 0.3s;
          animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.cd-panel__container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: #080808;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.cd-panel--from-right .cd-panel__container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.cd-panel--from-left .cd-panel__container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.cd-panel--is-visible .cd-panel__container {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

@media only screen and (min-width: 768px) {
  .cd-panel__container {
    width: 70%;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-panel__container {
    width: 28%;
  }
}

.cd-panel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px 5%;
  overflow: auto;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;background: #1b96d3;
}

.cd-panel__content p {
  font-size: 1.4rem;
  color: #424f5c;
  line-height: 1.4;
  margin: 2em 0;
}

.cd-panel__content p:first-of-type {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .cd-panel__content p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.menu-desktop{display: block;}

.menu-mobile{display: none;}

.cd-panel__content ul {padding:5px ;}

.cd-panel__content ul li{padding-bottom:12px; margin-bottom: 12px; border-bottom: 1px solid #031325}

.cd-panel__content ul li a{ font-family: "Roboto", serif;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;}

.cd-panel__content ul li ul {padding:15px ;}

.cd-panel__content ul li ul li{padding-bottom:10px; margin-bottom: 0px; border-bottom: 0px solid #031325}

.cd-panel__content ul li ul li a{ font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;}

.cd-panel__content ul li ul li a i{ 
        color: #fff;
    font-size: 6px;
    float: left;
    padding-right: 10px;
    padding-top: 8px;}


.panel-title > a {
  display: block;
  position: relative;
}
.panel-title > a:after {
  content: "\f078"; /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
}
.panel-title > a[aria-expanded="true"]:after {
  content: "\f077"; /* fa-chevron-up */
}

.panel-heading a{    font-size: 16px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;}

.panel-heading{    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;}

.panel-body ul li { border-bottom: 0px solid #1d3b5e; padding-bottom: 12px;
    margin-bottom: 0px; padding-left: 10px;     list-style-type: none;}

.panel-body ul li a{
      text-transform: uppercase;
  font-size: 14px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px; }

.submenu-padd{padding-left: 15px; }

.submenu-padd a{font-size: 15px;}

.mobile-scrolling{padding:8px 10px; background-color: #1d3b5e}

.menu-mobile a{color:#000;}





