body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

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

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

/*--------------------------------------------------------------
# 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 #ed502e;
  border-top-color: white;
  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: 996;
  background: #ed502e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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




/* ======================================= comman css  */
.action-btn {
  margin-top: 25px;
  display: flex;
  text-align: center;
}

.action-btn a {
  background: transparent;
  position: relative;
  padding: 4px 5px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  outline: none;
  overflow: hidden;
  color: #444;
  transition: color 0.3s 0.1s ease-out;
  text-align: center;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn a span {
  margin: 2px;

}


.action-btn a:hover span {
  color: #fff !important;
  z-index: 10;
}



.action-btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
}

.action-btn a:hover {
  color: #fff !important;
  border: 1px solid var(--color-primary);
}

.action-btn a:hover::before {
  box-shadow: inset 0 0 0 10em var(--color-primary);
}




.left-side-heading {
  background-color: var(--color-primary);
  width: fit-content;
  padding: 3px 22px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.left-side-heading::before {
  position: absolute;
  content: "";
  height: 99%;
  width: 100%;
  z-index: 2;
  background-color: var(--color-primary);
  top: -0px;
  right: -20px;
  transform: skew(-35deg);

}

.left-side-heading h2 {
  margin: 0px !important;
  padding: 7px 1px !important;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  z-index: 10;
  font-weight: bold;
}















/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  padding: 10px 0;
  /* position: relative; */
  background-color: #fff;
  z-index: 888888888;
}

#header::before {
  position: absolute;
  content: "";
  width: 230px;
  height: 68px;
  background-image: url(../images/monogram.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0px;
  left: 23%;
  z-index: 9999999999;
  opacity: 0.10;
  overflow: hidden;
  transition: all 0.5s;

}


#header.header-scrolled::before {
  width: 230px;
  height: 60px;
  transition: all 0.5s;

}








#header.header-scrolled {
  padding: 6px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  margin: 0;
  padding: 0;
  width: auto;
  height: 48px;
}

#header .logo img {
  width: 138px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar {
  padding: 0;
  position: relative;
  z-index: 99999999999;
}

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

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 15px;
  margin-right: 12px;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 3px;
  overflow: hidden;
  text-transform: uppercase;
}

.navbar a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

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

.navbar .getstarted {
  margin-right: 0px !important;
}


.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ed502e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  margin-right: 0px !important;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 20px) !important;
  margin: 0;
  padding: 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
  transition: 0.1s !important;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  transition: 0.5s all;

}

#header.header-scrolled .dropdown ul {
  top: calc(100% + 17px) !important;
}



.navbar .dropdown ul li {
  min-width: 200px;
  transition: 0.5s !important;

}

.navbar .dropdown ul a {
  padding: 10px 10px;
  text-transform: none;
  text-transform: uppercase;
  margin: 0px !important;
  text-align: left;
  display: flex;
  justify-content: start;
  transition: 0.1s !important;

}

.navbar .dropdown ul a i {
  font-size: 0px;
  color: #fff;
  padding-right: 15px;
  transition: 0.5s all;

}

.navbar .dropdown ul li:hover i {
  font-size: 15px;
  transition: 0.5s all;

}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
  transition: 0s !important;
}

.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: #0b2341;
  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(4, 12, 21, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  padding:25px;
}

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

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

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

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

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

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

#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 {
  body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }

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

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

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

  /*--------------------------------------------------------------
# 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 #ed502e;
    border-top-color: white;
    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: 996;
    background: #ed502e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }

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

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

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




  /* ======================================= comman css  */
  .action-btn {
    margin-top: 25px;
    display: flex;
    text-align: center;
  }

  .action-btn a {
    background: transparent;
    position: relative;
    padding: 4px 5px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    outline: none;
    overflow: hidden;
    color: #444;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .action-btn a span {
    margin: 2px;

  }


  .action-btn a:hover span {
    color: #fff !important;
    z-index: 10;
  }



  .action-btn a::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
  }

  .action-btn a:hover {
    color: #fff !important;
    border: 1px solid var(--color-primary);
  }

  .action-btn a:hover::before {
    box-shadow: inset 0 0 0 10em var(--color-primary);
  }




  .left-side-heading {
    background-color: var(--color-primary);
    width: fit-content;
    padding: 3px 22px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
  }

  .left-side-heading::before {
    position: absolute;
    content: "";
    height: 99%;
    width: 100%;
    z-index: 2;
    background-color: var(--color-primary);
    top: -0px;
    right: -20px;
    transform: skew(-35deg);

  }

  .left-side-heading h2 {
    margin: 0px !important;
    padding: 7px 1px !important;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    z-index: 10;
    font-weight: bold;
  }















  /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    padding: 10px 0;
    /* position: relative; */
    background-color: #fff;
    z-index: 888888888;
  }

  #header::before {
    position: absolute;
    content: "";
    width: 230px;
    height: 68px;
    background-image: url(../images/monogram.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0px;
    left: 23%;
    z-index: 9999999999;
    opacity: 0.04;
    overflow: hidden;
    transition: all 0.5s;

  }


  #header.header-scrolled::before {
    width: 230px;
    height: 60px;
    transition: all 0.5s;

  }








  #header.header-scrolled {
    padding: 6px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  #header .logo {
    margin: 0;
    padding: 0;
    width: auto;
    height: 48px;
  }

  #header .logo img {
    width: 138px;
  }


  /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

  .navbar {
    padding: 0;
    position: relative;
    z-index: 99999999999;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 15px;
    margin-right: 12px;
    font-size: 15px;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 3px;
    overflow: hidden;
    text-transform: uppercase;
  }

  .navbar a:hover {
    background-color: var(--color-primary);
    color: #fff;
  }

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

  .navbar .getstarted {
    margin-right: 0px !important;
  }


  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #ed502e;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
    margin-right: 0px !important;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #ef6445;
  }

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

  #header.header-scrolled .dropdown ul {
    top: calc(100% + 17px) !important;
  }



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

  .navbar .dropdown ul a {
    padding: 10px 10px;
    text-transform: none;
    text-transform: uppercase;
    margin: 0px !important;
    text-align: left;
    display: flex;
    justify-content: start;
  }

  .navbar .dropdown ul a i {
    font-size: 0px;
    color: #fff;
    padding-right: 15px;
  }

  .navbar .dropdown ul li:hover i {
    font-size: 15px;

  }

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

  .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: #0b2341;
    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(4, 12, 21, 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;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }

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

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

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

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

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


  @media (max-width: 425px) {
 .navbar-mobile ul {
   padding:25px;
  }
 
  }
  /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
  }

  #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);
  }

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

  /* #hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
} */

  #hero p {
    animation-delay: 0.4s;
    color: #fff;
    margin-top: 10px;
  }

  .carousel-indicators {
    margin-bottom: 2rem !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-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;
  }





  /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
  section {
    padding: 60px 0;
  }

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

  .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: #aaaaaa;
    font-family: "Poppins", sans-serif;
  }

  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #f38b74;
    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: #0f2f57;
  }

  /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
  #home_about .home-about-img-box {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }

  #home_about .home-about-img-box::before {
    content: "";
    background-color: rgba(4, 12, 21, 0);
  }

  /*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
  #counts {
    padding: 55px 0px;
  }

  .ico-num {
    display: flex;
    align-items: center;
  }

  .counts .count-box {
    padding: 30px;
    width: 100%;
  }

  .counts .count-box i {
    display: block;
    font-size: 50px;
    color: #ed502e;
    float: left;
    transform: translateY(3px);
  }

  .counts .count-box span {
    font-size: 68px;
    line-height: 24px;
    display: block;
    font-weight: 500;
    color: #0b2341;
    margin-bottom: 20px;
    position: relative;
  }

  .counts .count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }



  .counts .count-box h4 {
    padding: 20px 0 1px 0;
    margin: 0;
    text-align: center;
    font-size: 20px;
    width: fit-content;
    border-bottom: 2px solid #444444;
  }

  content: "";
  background-color: rgba(4, 12, 21, 0);
}

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

/* #hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
} */

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

.carousel-indicators {
  margin-bottom: 2rem !important;
}

/* #hero  .bi-chevron-left::before {
  content: "" !important;
}

#hero  .bi-chevron-right::before {
  content: "" !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-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: 16px;
  line-height: 0;
  width: auto;
  height: auto;
  background: var(--color-primary);
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  width: 24px;
  height: 24px;
  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;
}



@media (max-width: 992px) {
  #hero {
    height: 45vh;
  }

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

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

  .banner-text-box {
    display: flex;
    justify-content: center;
  }

  .carousel-indicators {
    margin-bottom: 2rem !important;
    display: none;
  }
}

@media (min-width: 1024px) {

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

@media (max-height: 425px) {
  #hero {
    height: 50vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

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

.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: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  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: #0f2f57;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#home_about .home-about-img-box {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#home_about .home-about-img-box::before {
  content: "";
  background-color: rgba(4, 12, 21, 0);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
#counts {
  padding: 55px 0px;
}

.ico-num {
  display: flex;
  align-items: center;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 50px;
  color: #ed502e;
  float: left;
  transform: translateY(3px);
}

.counts .count-box span {
  font-size: 68px;
  line-height: 24px;
  display: block;
  font-weight: 500;
  color: #0b2341;
  margin-bottom: 20px;
  position: relative;
}

.counts .count-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}



.counts .count-box h4 {
  padding: 20px 0 1px 0;
  margin: 0;
  text-align: center;
  font-size: 20px;
  width: fit-content;
  border-bottom: 2px solid #444444;
}




/* common mobile responce */
@media (max-width:425px) {

  .left-side-heading {
    padding: 1px 13px;
    margin-bottom: 20px;
  }

}