@font-face {
  font-family: ethnocentric-rg;
  src: url(https://www.5kcarcare.com/branch-assets/assets/fonts/entho/ethnocentric-rg.ttf);
}


@font-face {
  font-family: Ubuntu-Bold;
  src: url(https://www.5kcarcare.com/branch-assets/assets/fonts/ubuntu/Ubuntu-Bold.ttf);
}
@font-face {
  font-family: Ubuntu-Medium;
  src: url(https://www.5kcarcare.com/branch-assets/assets/fonts/ubuntu/Ubuntu-Medium.ttf);
}
@font-face {
  font-family: Ubuntu-Regular;
  src: url(https://www.5kcarcare.com/branch-assets/assets/fonts/ubuntu/Ubuntu-Regular.ttf);
}

body {
  color: #444;
  font-family: Ubuntu-Regular;
  /* background-image: url(../img/body.png); */
  background-size: contain;
  background-repeat: repeat-y;

}
:root {
  --theme-color: #EB3300;
  --title-color: #0A0A0A;
  --body-color: #4B4B4B;
  --smoke-color: #F3F1F2;
  --smoke-color2: #F6F7F9;
  --black-color: #000000;
  --black-color-2: #4B4B4B;
  --gray-color: #D2D2D2;
  --white-color: #ffffff;
  --light-color: #CDCDCD;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #D2D2D2;
  --title-font: 'Plus Jakarta Sans', sans-serif;
  --body-font: 'Inter', sans-serif;
  --style-font: 'Red Hat Display', cursive;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1290px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}
a {
  color: #428bca;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6, .font-primary {

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    transition: all 0.4s;
    border: 1px solid #EB3300;
}
.back-to-top i {
  font-size: 24px;
  color: #EB3300;
  line-height: 0;
}
.back-to-top:hover {
  background: #000;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #2d3582;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    height: 40px;
    padding: 0;
}
#topbar .contact-info a {
  line-height: 0;
  color: #fff;
}
#topbar .contact-info a:hover {
  opacity: 0.5;
}
#topbar .contact-info i {
  color: #fff;
  line-height: 0;
  margin-right: 5px;  
  border-radius: 30px;
}
#topbar .contact-info .bi {
  animation: pulse-black 2s infinite;
}
@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .social-links a {
    color: #2d3582;
    padding: 3px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
    text-transform: capitalize;
    font-size: 14px;
    border-radius: 30px;
    background-color: #fff;
    border: none;
    animation: pulse-black 2s infinite;
    font-family: Ubuntu-Bold;
}
#topbar .social-links a:hover {
  color: #000;
}
#topbar .social-links a .bi {
    font-size: 13px;
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: auto;
    background: #fff;
    z-index: 997;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 6%);
    padding: 10px 0px;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}
#header .logo img {
      padding: 0;
    margin: 0;
    max-height: 100%;
    height: 80px;
}

.scrolled-offset {
  margin-top: 70px;
}





/*--------------------------------------------------------------
# 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;
    font-size: 17px;
    color: black ;
    white-space: nowrap;
    transition: 0.3s;
    font-family: Ubuntu-Medium;
}
.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 {
  
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  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;
  text-transform: none;
}
.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: #428bca;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  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-nav-toggle {
  color: #1f3548;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute!important;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block!important;
  position: absolute!important;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1f3548;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #428bca;
}
.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: #428bca;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
} */
.navbar {
  position: relative;
  display: flex;
  padding: 10px;
  background-color: #141214;
  justify-content: space-around;
  align-items: center;
  box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
}
.nav-items ul {
  margin-top: 8px;
}
.nav-items > ul > li {
  position: relative;
  display: inline;
  list-style: none;
  margin: 10px;
  padding: 10px 15px;
  cursor: pointer;
}
.nav-items > ul > li > a {
  color: white;
  text-decoration: none;
}
.nav-items > ul > li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.17rem;
  background-color: #c52726;
  left: 0;
  bottom: 0;
  transform-origin: 0% 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-items > ul > li:hover::after {
  transform: scaleX(1);
}
.nav-logo a,
.nav-button a {
  color: white;
  list-style: none;
  text-decoration: none;
  display: flex;
}
.nav-logo {
  font-size: 32px;
}
.nav-button {
  background-color: #c52726;
  border-radius: 50px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.anim-layer {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: white;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-button:hover .anim-layer {
  width: 100%;
  left: 0;
}
.nav-button:hover a {
  color: #141214;
}
.nav-button a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 78%;
  left: 0;
  background-color: #ffffff;
  color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 230px;
}
.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #d01818;
  text-decoration: none;
}
.dropdown-menu li {
  padding: 10px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
@media only screen and (max-width: 770px) {
  #mobile-menu {
    background-color: #c52726;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }
  .mobile-nav-items > ul {
    padding: 0px;
  }
  .mobile-nav-items > ul > li {
    text-align: center;
    position: relative;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
  }
  .mobile-nav-items > ul > li > a {
    color: white;
    text-decoration: none;
  }
  .mobile-nav-items > ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: white;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .mobile-nav-items > ul > li:hover::after {
    transform: scaleX(1);
  }
  .mobile-nav-button {
    background-color: #141214;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
  }
  .mobile-nav-button .anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
  }
  .mobile-nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
  }
  .mobile-nav-button:hover a {
    color: #141214;
  }
  .mobile-nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }
  .nav-items > ul,
  .nav-button {
    display: none;
  }
  #hamburger-cross {
    display: block;
    color: white;
    cursor: pointer;
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 26px;
  }
  #hamburger-menu {
    display: block;
    color: white;
    cursor: pointer;
    font-size: 24px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
} */
#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}
#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-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
}
#hero .btn-get-started:hover {
  background: #1c5c93;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
/* @media (max-height: 500px) {
  #hero, #hero .carousel-item {
    height: 120vh;
  }
} */
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

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

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
    font-size: 30px;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #EB3300;
    font-family: ethnocentric-rg;
}
.section-title h2 span {
    color: #000000;
}
.section-title p {
  margin-bottom: 0;
}



.home-title-head {
    font-size: 30px;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #EB3300;
    font-family: ethnocentric-rg;
    text-align: center;
}
.home-title-head span {
    color: #000000;
}

.about-content .btn-primary {
    background-color: #2d3582;
    border-color: #2d3582;
    padding: 2px 10px 2px 10px;
    text-transform: capitalize;
    font-family: Ubuntu-Medium;
    font-size: 15px;
    border-radius: 0px;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding-bottom: 30px;
}
.about .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}
.about .video-box img {
  padding: 15px 0;
}
.about .section-title p {
    color: #080808;
    font-size: 14px;
    margin-bottom: 0.6em;
    margin-top: 1em;
    font-family: Ubuntu-Regular;
    line-height: 26px;
    text-align: left;
}
.about .about-content {
  padding: 40px;
}
.about .icon-box + .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #428bca;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #428bca;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #428bca;
}
.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box {
  position: relative;
}
.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#cc0001 50%, rgb(213 1 0 / 32%) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #000000;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
.about-lists {
  padding: 40px;
}
.about-lists .row {
  overflow: hidden;
}
.about-lists .content-item {
  padding: 40px;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: -1px;
}
.about-lists .content-item span {
    display: block;
    font-size: 30px;
    color: #fa0d0f24;
    padding-bottom: 10px;
    font-weight: 600;
}
.about-lists .content-item h4 {
    font-size: 25px;
    padding: 0;
    margin: 15px 0;
    font-family: Ubuntu-Bold;
    color: #000;
}
.about-lists .content-item p {
    margin: 0;
    padding: 0;
    color: #080808;
    font-size: 14px;
    margin-bottom: 0em;
    margin-top: 0em;
    font-family: Ubuntu-Regular;
    line-height: 24px;
    text-align: left;
}
@media (max-width: 768px) {
  .about-lists .content-item {
    padding: 40px 0;
  }
}


.service-pare {
    font-size: 21px;
    color: #000;
    text-align: center;
}



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}
.counts .count-box {
  box-shadow: 0px 0 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
  margin-bottom: 30px;
}
.counts .count-box i {
  display: block;
  font-size: 64px;
  margin-bottom: 15px;
}
.counts .count-box span {
  font-size: 42px;
  display: block;
  font-weight: 700;
  color: #000000;
}
.counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #000;
    font-family: Ubuntu-Medium;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #EB3300;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services .icon-box:hover .icon {
  box-shadow: 0px 0 30px rgb(27 36 141);
}
.services .title {
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
    font-family: Ubuntu-Bold;
}
.services .title a {
    color: #000;
    transition: 0.3s;    
}
.services .title a:hover {
  color: #428bca;
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #428bca;
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #428bca;
  color: #fff;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.portfolio .portfolio-wrap img {
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.portfolio .portfolio-wrap .portfolio-info a {
  color: #428bca;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info a i {
  font-size: 22px;
  line-height: 0;
}
.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #428bca;
  color: #fff;
}
.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  padding-bottom: 0;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# 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 #428bca;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #428bca;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(31, 53, 72, 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;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0 30px 0;
}
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}
.team .member img {
  transition: all ease-in-out 0.4s;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
  padding: 15px 0;
  border-radius: 4px;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  color: #9eccf4;
}
.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
@media (max-width: 992px) {
  .team .member {
    margin-bottom: 100px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-bottom: 30px;
}
.faq .faq-item {
  margin-bottom: 40px;
}
.faq .faq-item h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f3548;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}
.contact .info-box i {
  font-size: 32px;
  color: #d9252d;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #d9252d;
  margin-bottom: 0.4em;
}
.contact .info-box h3 {
    color: #000000;
    font-size: 21px;
    line-height: 1.3;
    font-family: Ubuntu-Bold;
}
.contact .info-box p {
  font-size: 15px;
    color: #000;
    font-family: Ubuntu-Regular;
    line-height: 27px;
    word-break: break-all;
}
.contact .info-box p a {
    color: #000;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #428bca;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #428bca;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #629fd3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer {
    background: #EB3300;
    padding: 0px 0 0px 0;
    color: #fff;
    font-size: 14px;
}
#footer .footer-top {
    background: #000000;
    border-top: 1px solid #000000;
    border-bottom: 0px solid #fff;
    padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-family: Ubuntu-Bold;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0.9em;
  color: #fff;
}
#footer .footer-top .footer-info p a {
  color: #fff;
}
#footer .footer-top .footer-info p a .bi {
    padding-right: 5px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #EB3300;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
    font-size: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    font-family: Ubuntu-Bold;
}
#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: #9eccf4;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}
#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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #5295ce;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 0px;
}
#footer .credits a {
    color: #000;
    font-family: Ubuntu-Bold;
}



.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.th-hero-bg {
  position: absolute;
  inset: 0;
}

.th-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Hero 1 ---------------------------------- */
.number-dots .slick-dots {
  margin: 0;
}

.number-dots .slick-dots button {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: bold;
  color: var(--white-color);
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 0;
  background-color: transparent;
  padding-bottom: 18px;
  margin-bottom: 8px;
  position: relative;
}

.number-dots .slick-dots button:before {
  height: 7px;
  width: 7px;
  border: none;
  background-color: var(--white-color);
  position: absolute;
  top: unset;
  bottom: 0;
  left: 13px;
  visibility: visible;
  opacity: 1;
}

.number-dots .slick-dots .slick-active button {
  color: var(--theme-color);
}

.number-dots .slick-dots li {
  display: block;
  margin: 0;
}

.number-dots .slick-dots li:last-child button {
  padding-bottom: 0;
  margin-bottom: 0;
}

.number-dots .slick-dots li:last-child button:before {
  display: none;
}

.hero-subtitle {
  font-family: var(--body-font);
  color: var(--theme-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  display: block;
  margin-top: -5px;
  margin-bottom: 5px;
  text-transform: capitalize;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .hero-subtitle {
    font-size: 18px;
    line-height: 26px;
  }
}

.hero-title {
  font-weight: 800;
  font-size: 100px;
  line-height: 110px;
  color: var(--white-color);
  margin-top: 0px;
  margin-bottom: 50px;
  display: block;
  /* Extra large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1500px) {
  .hero-title {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (max-width: 1399px) {
  .hero-title {
    font-size: 64px;
    line-height: 74px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.hero-title:last-of-type {
  margin-bottom: 22px;
}

.hero-text {
  color: var(--white-color);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 50px;
  max-width: 611px;
}

.hero-style1 {
  position: relative;
  z-index: 6;
  padding: 240px 0;
  text-align: center;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style1 {
    padding: 180px 0;
  }
}

.hero-style1 .btn-group {
  margin-top: 40px;
}

.hero-big {
  position: absolute;
  top: 25%;
  left: 4%;
  z-index: -1;
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1399px) {
  .hero-big {
    top: 18%;
  }
}

@media (max-width: 1199px) {
  .hero-big {
    left: 0px;
  }
}

@media (max-width: 991px) {
  .hero-big {
    top: 10%;
  }
}

@media (max-width: 767px) {
  .hero-big {
    top: 0;
  }
}

.hero-big_text {
  font-weight: 800;
  font-size: 400px;
  line-height: 400px;
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
  /* Extra large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1500px) {
  .hero-big_text {
    font-size: 350px;
  }
}

@media (max-width: 1199px) {
  .hero-big_text {
    font-size: 280px;
  }
}

@media (max-width: 991px) {
  .hero-big_text {
    font-size: 230px;
  }
}

@media (max-width: 767px) {
  .hero-big_text {
    font-size: 150px;
  }
}

@media (max-width: 575px) {
  .hero-big_text {
    font-size: 120px;
  }
}

@media (max-width: 375px) {
  .hero-big_text {
    font-size: 100px;
  }
}

.hero-1 {
  position: relative;
}

.hero-1 .th-hero-bg:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.hero-1 .icon-box.hero-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  width: 100%;
}

.hero-1 .slick-arrow {
  position: relative;
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-1 .slick-arrow {
    display: none;
  }
}

.hero-1 .slick-arrow.default {
  --pos-x: 100px;
  /* Medium Large devices */
}

@media (max-width: 1599px) {
  .hero-1 .slick-arrow.default {
    --pos-x: 40px;
  }
}

@media (max-width: 1299px) {
  .hero-1 .slick-arrow.default {
    --pos-x: 20px;
  }
}

.hero-1 .slick-arrow.default .icon-text {
  margin-top: -50px;
}

.hero-1 .slick-arrow.default:hover .icon-text {
  background-color: var(--theme-color);
  color: var(--white-color);
  margin-left: -20px;
}

.hero-1 .slick-arrow.default i {
  margin: -50px 0 0 0;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .hero-1 .slick-arrow.default i {
    display: none;
  }
}

.hero-1 .slick-arrow.default1 {
  --pos-x: -100px;
  /* Medium Large devices */
}

@media (max-width: 1599px) {
  .hero-1 .slick-arrow.default1 {
    --pos-x: -40px;
  }
}

@media (max-width: 1299px) {
  .hero-1 .slick-arrow.default1 {
    --pos-x: -20px;
  }
}

.hero-1 .slick-arrow.default1:hover .icon-text {
  background-color: var(--theme-color);
  color: var(--white-color);
  margin-right: -20px;
}

.hero-1 .slick-arrow.default1 i {
  margin: -20px 0 0 0;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .hero-1 .slick-arrow.default1 i {
    display: none;
  }
}

.hero-1 .slick-arrow .icon-text {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  min-width: 50px;
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  font-size: var(--icon-font-size, 14px);
  margin-top: calc(var(--icon-size, 50px) / -2);
  z-index: 2;
  display: block;
  text-align: center;
  text-transform: capitalize;
  border: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hero-1 .slick-arrow:hover {
  background-color: transparent;
}

.hero-1 .hero-video-btn .video-play-btn {
  position: absolute;
  top: 50%;
  left: auto;
  right: 16%;
  width: 100px;
  height: 100px;
  line-height: 102px;
  background: var(--white-color);
  margin: 0 auto;
  font-size: 24px;
  text-align: center;
  color: var(--title-color);
  z-index: 9;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .hero-1 .hero-video-btn .video-play-btn {
    right: 0;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-video-btn .video-play-btn {
    display: none;
  }
}

.hero-1 .hero-video-btn .video-play-btn:hover {
  background-color: var(--theme-color);
}

.hero-1 .hero-video-btn .video-play-btn:hover:before, .hero-1 .hero-video-btn .video-play-btn:hover:after {
  border: 1px solid var(--theme-color);
}

.hero-1 .hero-video-btn .video-play-btn:hover i {
  color: var(--white-color);
}

.hero-1 .hero-video-btn .video-play-btn:before, .hero-1 .hero-video-btn .video-play-btn:after {
  border: 1px solid var(--white-color);
}

.hero-1 .hero-video-btn .video-play-btn i {
  color: var(--title-color);
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .hero-style1 {
    padding: 180px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-subtitle {
    margin-bottom: 10px;
  }
  .hero-subtitle img {
    max-width: 170px;
  }
  .hero-style1 {
    padding: 150px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style1 {
    padding: 100px 0 100px 0;
  }
  .hero-style1 .hero-text,
  .hero-style3 .hero-text {
    max-width: 420px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-title {
    font-size: 44px;
    line-height: 1.2;
  }
  .hero-text {
    margin-bottom: 28px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }
}

/* Hero 2 ---------------------------------- */
.hero-2 .th-hero-bg:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  opacity: 0.45;
  z-index: 2;
}

.hero-2 .slick-arrow {
  background-color: var(--white-color);
  color: var(--title-color);
  border: 1px solid var(--white-color);
  left: auto;
  right: 15%;
  top: 50%;
}

.hero-2 .slick-arrow.slick-next {
  top: 58%;
  right: auto;
  right: 15%;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-2 .slick-arrow.slick-next {
    top: 60%;
  }
}

.hero-2 .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}

.hero-2 .hero-shape {
  position: absolute;
  right: 0;
  bottom: 17px;
  z-index: 7;
  mix-blend-mode: screen;
  /* Extra small devices */
}

@media (min-width: 1922px) {
  .hero-2 .hero-shape {
    bottom: 18px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-shape {
    display: none;
  }
}

.hero-2 .hero-shape2 {
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: 2;
}

.hero-2 .hero-bg {
  position: absolute;
  bottom: 4%;
  right: 18%;
  mix-blend-mode: overlay;
  z-index: 1;
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-2 .hero-bg {
    display: none;
  }
}

.hero-style2 {
  position: relative;
  z-index: 9;
  padding: 325px 0px 188px;
  max-width: 630px;
}

.hero-style2 .hero-text {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.hero-style2 .hero-subtitle {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--theme-color);
  margin-bottom: 10px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .hero-style2 .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

.hero-style2 .hero-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
}

.hero-style2 .hero-title:last-of-type {
  margin-bottom: 15px;
}

.hero-style2 .shape-top {
  margin-bottom: 25px;
}

.hero-indicator {
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .hero-indicator {
    display: none;
  }
}

.hero-indicator .indicatior-btn {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  position: absolute;
  top: 50%;
  left: var(--pos-x, 100px);
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  font-size: var(--icon-font-size, 14px);
  margin-top: calc(var(--icon-size, 50px) / -2);
  z-index: 2;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
}

.hero-indicator .indicatior-btn.arrow1 {
  right: var(--pos-x, 100px);
  left: auto;
}

.hero-indicator .indicatior-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.hero-indicator .indicatior-btn.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.hero-indicator3 {
  position: absolute;
  left: 150px;
  top: 47%;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}

@media (max-width: 1899px) {
  .hero-indicator3 {
    left: 50px;
  }
}

@media (max-width: 1599px) {
  .hero-indicator3 {
    display: none;
  }
}

.hero-indicator3 .indicatior-btn {
  display: block;
  border: 2px solid transparent;
  border-radius: 50%;
  margin-bottom: 10px;
  cursor: pointer;
}

.hero-indicator3 .indicatior-btn:hover {
  border-color: var(--theme-color);
}

.hero-indicator3 .indicatior-btn img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hero-indicator3 .indicatior-btn.active {
  border-color: var(--theme-color);
}

.hero-slider-2 .hero-bg-color {
  background: var(--theme-color);
  mix-blend-mode: hue;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.hero-slider-2 .hero-thumb {
  position: relative;
  margin: -32px -420px 0 -59px;
}

.hero-slider-2 .hero-thumb .car-mask {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--theme-color);
  mix-blend-mode: hue;
  height: 100%;
  width: 100%;
  -webkit-mask-size: cover;
          mask-size: cover;
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-style2 {
    padding: 240px 0 120px 0;
  }
  .hero-style2 .shape-top img,
  .hero-style2 .shape-bottom img {
    max-width: 550px;
  }
  .hero-style2 .hero-text {
    margin-bottom: 35px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-style2 {
    padding: 250px 0 120px 0;
  }
  .hero-style2 .hero-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
  }
  .hero-style2 .hero-text {
    font-size: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style2 .hero-title {
    font-size: 50px;
    line-height: 60px;
  }
  .hero-style2 .shape-top img,
  .hero-style2 .shape-bottom img {
    max-width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-2 .th-hero-bg:before {
    opacity: 0.6;
  }
  .hero-style2 {
    padding: 215px 0 90px 0;
  }
  .hero-style2 .hero-title:last-of-type {
    margin-bottom: 12px;
  }
}

@media (max-width: 422px) {
  .hero-style2 .hero-title,
  .hero-style3 .hero-title {
    font-size: 30px;
    line-height: 40px;
  }
}

/* Hero 3 ---------------------------------- */
.hero-3 {
  background-color: #1E1E1E;
}

.hero-3 .shape-mockup {
  position: absolute;
  z-index: 1;
}

.hero-3 .th-hero-img {
  position: relative;
  width: 1035px;
  height: 745px;
  margin: 143px -50% 0 30px;
  border-left: 12px solid var(--theme-color);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 1.2% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 1.2% 100%);
  z-index: 9;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1899px) {
  .hero-3 .th-hero-img {
    margin: 143px 0% 0 30px;
  }
}

@media (max-width: 1299px) {
  .hero-3 .th-hero-img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .hero-3 .th-hero-img {
    margin: 0;
  }
}

.hero-3 .th-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-3 .th-hero-bg:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.8;
  z-index: 2;
}

.hero-3 .slick-arrow {
  background-color: var(--theme-color);
  --pos-x: 40px;
  top: 50%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .hero-3 .slick-arrow {
    display: none !important;
  }
}

.hero-3 .slick-arrow:hover {
  background-color: var(--theme-color);
}

.hero-style3 {
  position: relative;
  padding: 285px 0 200px 0;
  z-index: 9;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .hero-style3 {
    padding: 266px 0 120px 0;
  }
}

.hero-style3 .hero-subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .hero-style3 .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

.hero-style3 .hero-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 40px;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .hero-style3 .hero-title {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 1199px) {
  .hero-style3 .hero-title {
    font-size: 50px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .hero-style3 .hero-title {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 375px) {
  .hero-style3 .hero-title {
    font-size: 28px;
    line-height: 45px;
  }
}

/* Extra large devices */
/* Large devices */
@media (max-width: 1199px) {
  .hero-3 .th-hero-bg {
    background-size: 130% 100%;
  }
  .hero-style3 {
    padding: 260px 0 120px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-3 .th-hero-bg {
    background-size: 160% 100%;
  }
  .hero-style3 {
    padding: 220px 0 80px 0;
    text-align: center;
  }
  .hero-style3 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-style3 .hero-subtitle img {
    max-width: 100%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-3 .th-hero-bg {
    background-size: 180% 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-3 .th-hero-bg {
    background-size: 200% 100%;
  }
  .hero-style3 {
    padding: 230px 0 90px 0;
  }
}

.pagingInfo {
  position: absolute;
  bottom: 7%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pagingInfo1 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
}

.pagingInfo2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
}

.number-pagination {
  width: 5%;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
}

.total-pagination {
  width: 5%;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
}

.progress-wrapper {
  min-width: 150px;
  --space: 38%;
}

.progress {
  position: absolute;
  top: 60%;
  left: var(--space);
  width: calc(100% - var(--space)*2);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 190px;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--title-color);
  background-image: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to right, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s ease-in-out;
  transition: background-size .4s ease-in-out;
}

/*------------------- 4.9. Error  -------------------*/
.error-content {
  text-align: center;
}

.error-img {
  text-align: center;
  margin-bottom: 10px;
}

.error-title {
  margin-bottom: 20px;
}

.error-text {
  margin-bottom: 35px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Medium devices */
@media (max-width: 991px) {
  .error-img {
    margin-bottom: 10px;
  }
  .error-title {
    margin-bottom: 15px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .error-title {
    margin-bottom: 10px;
  }
}
.th-btn {
  font-family: var(--body-font);
  background-color: var(--theme-color);
  color: var(--white-color);
  position: relative;
  padding: 17px 36px;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-btn span {
  position: relative;
  z-index: 1;
}

.th-btn .icon i {
  position: relative;
  top: 0;
  right: 0;
  margin-left: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-btn.style2:before, .th-btn.style2:after {
  background-color: var(--white-color);
}

.th-btn.style2:after {
  background-color: var(--white-color);
}

.th-btn.style2:hover {
  color: var(--title-color);
}

.th-btn.style3 {
  background-color: var(--title-color);
}

.th-btn.style3:before, .th-btn.style3:after {
  background-color: var(--white-color);
}

.th-btn.style3:after {
  background-color: var(--white-color);
}

.th-btn.style3:hover {
  color: var(--title-color);
}

.th-btn.btn-radius {
  border-radius: 30px;
}

.th-btn.white-btn {
  background-color: var(--white-color);
  color: var(--title-color);
}

.th-btn.white-btn:before, .th-btn.white-btn:after {
  background-color: var(--title-color);
}

.th-btn.white-btn:after {
  background-color: var(--title-color);
}

.th-btn.white-btn:hover {
  color: var(--white-color);
}

.th-btn.black-btn {
  background-color: var(--title-color);
}

.th-btn.black-btn:before, .th-btn.black-btn:after {
  background-color: var(--theme-color);
}

.th-btn.black-btn:after {
  background-color: var(--theme-color);
}

.th-btn.black-btn:hover {
  color: var(--white-color);
}

.th-btn.btn-fw {
  width: 100%;
}

.th-btn:before, .th-btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 0;
  width: 150%;
  height: 100%;
  background-color: var(--title-color);
  color: var(--white-color);
  -webkit-transform: skew(30deg) translate3d(0, 0, 0);
          transform: skew(30deg) translate3d(0, 0, 0);
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.th-btn:before {
  left: auto;
  right: 100%;
  -webkit-transform: skew(-30deg) translate3d(0, 0, 0);
          transform: skew(-30deg) translate3d(0, 0, 0);
}

.th-btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 0;
  width: 150%;
  height: 100%;
  background-color: var(--title-color);
  -webkit-transform: skew(30deg) translate3d(0, 0, 0);
          transform: skew(30deg) translate3d(0, 0, 0);
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.th-btn:hover {
  color: var(--white-color);
}

.th-btn:hover:before {
  -webkit-transform: skew(-30deg) translate3d(70%, 0, 0);
          transform: skew(-30deg) translate3d(70%, 0, 0);
  opacity: 1;
}

.th-btn:hover:after {
  -webkit-transform: skew(30deg) translate3d(-70%, 0, 0);
          transform: skew(30deg) translate3d(-70%, 0, 0);
  opacity: 1;
}

.th-btn:hover .icon i {
  position: relative;
  top: -22px;
  right: -40px;
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 56px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--icon-bg, transparent);
  color: var(--title-color);
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--border-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 56px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--icon-bg, transparent);
  color: var(--title-color);
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--border-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  line-height: var(--icon-size, 60px);
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: var(--icon-font-size, 1.1em);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn > i.fa-play {
  padding-right: 0.18em;
}

.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.play-btn:hover:after, .play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn.style2:before, .play-btn.style2:after {
  background-color: transparent;
  border: 1px solid var(--white-color);
}

.play-btn.style3 > i {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 20px;
}

.play-btn.style3:before, .play-btn.style3:after {
  background-color: var(--white-color);
}

.play-btn.style3:hover > i {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.link-btn {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  line-height: 26px;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: uppercase;
  color: var(--title-color);
}

.link-btn i {
  margin-left: 5px;
  font-size: 0.9rem;
}

.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.link-btn:hover {
  color: var(--theme-color);
}

.link-btn:hover::before {
  width: 100%;
}

.line-btn {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  line-height: 26px;
  position: relative;
  padding-bottom: 0px;
  margin-bottom: -1px;
  text-transform: uppercase;
  color: var(--theme-color);
}

.line-btn i {
  margin-left: 10px;
  font-size: 0.9rem;
}

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-wrapper {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}

.sticky-wrapper.sticky {
  top: 0;
}

.sticky-wrapper.sticky .header-logo {
  padding-bottom: 0;
  margin-left: 0px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .sticky-wrapper.sticky .header-logo {
    margin-top: 0;
  }
}

.th-header .sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-header .sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;
  -webkit-animation: headerSticky .95s ease forwards;
          animation: headerSticky .95s ease forwards;
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  font-family: var(--body-font);
  text-transform: capitalize;
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu > ul > li {
  margin: 0 16px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .main-menu > ul > li {
    margin: 0 14px;
  }
}

@media (max-width: 1199px) {
  .main-menu > ul > li {
    margin: 0 10px;
  }
}

.main-menu > ul > li > a {
  padding: 38px 0;
  color: var(--title-color);
}

.main-menu > ul > li > a:hover {
  color: var(--theme-color);
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children > a:hover:after {
  content: "\f068";
}

.main-menu ul li.menu-item-has-children > a:after {
  content: "\2b";
  position: relative;

  margin-left: 4px;
  font-weight: 900;
  left: 0;
  top: 0;
  font-size: 12px;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  z-index: 9;
}

.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 260px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  border: 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  border-bottom: 2px solid var(--theme-color);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 1px;
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-menu ul.sub-menu li a:hover {
  padding-left: 30px;
}

.main-menu ul.sub-menu li a:hover:before {
  opacity: 1;
  left: 0;
  visibility: visible;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 1px;
}


.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .header-button {
    gap: 16px;
  }
}

.header-button .icon-btn {
  position: relative;
  color: var(--title-color);
  border-color: transparent;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: auto;
  padding: 0;
  font-size: var(--btn-font-size, 16px);
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-button .icon-btn {
    display: none;
  }
}

.header-button .icon-btn:hover {
  color: var(--theme-color);
}

.header-button .icon-btn:hover .badge {
  background-color: var(--title-color);
  color: var(--white-color);
}

.header-button .th-btn {
  margin-left: 15px;
}

@media (max-width: 1399px) {
  .header-button .th-btn {
    margin-left: 0;
  }
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid var(--body-color);
  padding-right: 20px;
  max-height: 16px;
  line-height: 16px;
}

.header-links li:last-child {
  border-right: 1px solid transparent;
  padding-right: 0;
}

.header-links li:not(:last-child) {
  margin: 0 15px 0 0;
}

.header-links li > i {
  font-size: 14px;
  margin-right: 6px;
  color: var(--theme-color);
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-links li > i {
    font-size: 16px;
    width: 15px;
    height: 15px;
  }
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  font-family: var(--body-font);
  color: var(--title-color);
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links i {
  color: var(--title-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
}

.header-social .social-title {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: #A5A5A5;
}

.header-social a {
  font-size: 16px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 10px 0 0;
}

.header-social a:last-child {
  margin-right: 0;
}

.header-social a:hover {
  color: var(--theme-color);
}

/* Header 1 ---------------------------------- */
.header-layout1 {
  position: relative;
}

.header-layout1 .header-top {
  position: relative;
  padding: 8px 0;
  background-color: var(--title-color);
  z-index: 1;
}

.header-layout1 .header-links {
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout1 .header-links {
    display: none;
  }
}

.header-layout1 .header-links li,
.header-layout1 .header-links span,
.header-layout1 .header-links p,
.header-layout1 .header-links a {
  font-family: var(--body-font);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
}

.header-layout1 .header-links a:hover {
  color: var(--theme-color);
}

.header-layout1 .header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-layout1 .header-right .header-links {
  margin-left: 0;
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-layout1 .header-right .header-links {
    display: none;
  }
}

.header-layout1 .header-right .header-links li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid var(--body-color);
  padding-right: 15px;
  margin-right: 0px;
  max-height: 16px;
  line-height: 16px;
}

.header-layout1 .header-right .header-social a {
  font-size: 14px;
  display: inline-block;
  color: var(--gray-color);
  margin: 0 0 0 16px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout1 .header-right .header-social a:hover {
  color: var(--theme-color);
}

.header-layout1 .header-button .th-btn {
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .header-layout1 .header-button .th-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-layout1 .header-button .th-btn {
    display: none;
  }
}

.header-layout1 .header-button .icon-btn {
  position: relative;
  color: var(--title-color);
  font-size: 22px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .header-layout1 .header-button .icon-btn {
    display: none;
  }
}

.header-layout1 .header-button .icon-btn:hover {
  color: var(--theme-color);
}

.header-layout1 .header-button .icon-btn i {
  color: var(--title-color);
  font-weight: 500;
}

.header-layout1 .header-logo {
  position: relative;
}

.header-layout1 .header-logo .gear {
  position: absolute;
  content: "";
  left: -10px;
  top: -4px;
}

.header-layout1 .header-logo .logo-text {
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
  margin-left: 50px;
}

.header-layout1 .menu-area {
  position: relative;
  z-index: 3;
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout1 .menu-area {
    padding: 15px 0;
  }
}

.header-layout1 .main-menu {
  margin-left: -120px;
  /* Medium Large devices */
}

@media (max-width: 1499px) {
  .header-layout1 .main-menu {
    margin-left: -60px;
  }
}

@media (max-width: 1299px) {
  .header-layout1 .main-menu {
    margin-left: 0;
  }
}

.header-layout1 .sticky-wrapper {
  position: relative;
}

.header-layout1 .sticky-wrapper.sticky .menu-area {
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout1 .sticky-wrapper.sticky .menu-area {
    padding: 14px 0;
  }
}

.header-layout1 .logo-bg {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 20%;
  height: 100px;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (min-width: 2399px) {
  .header-layout1 .logo-bg {
    width: 30%;
  }
}

@media (max-width: 2399px) {
  .header-layout1 .logo-bg {
    width: 25%;
  }
}

@media (max-width: 1999px) {
  .header-layout1 .logo-bg {
    width: 22%;
  }
}

@media (max-width: 1699px) {
  .header-layout1 .logo-bg {
    width: 20%;
  }
}

@media (max-width: 1599px) {
  .header-layout1 .logo-bg {
    width: 18%;
  }
}

@media (max-width: 1499px) {
  .header-layout1 .logo-bg {
    width: 18%;
  }
}

@media (max-width: 1199px) {
  .header-layout1 .logo-bg {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .header-layout1 .logo-bg {
    height: 86px;
  }
}

@media (max-width: 575px) {
  .header-layout1 .logo-bg {
    height: 86px;
  }
}

.header-layout1 .logo-bg:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.header-layout1 .logo-bg:before {
  background-color: var(--smoke-color2);
  width: 100%;
  z-index: 2;
  border-right: 2px solid var(--theme-color);
}

@media (min-width: 1420px) {
  .header-layout1 .header-top {
    --main-container: 1620px;
  }
  .header-layout1 .menu-area {
    --main-container: 1620px;
  }
}

@media (max-width: 1420px) {
  .header-layout1 .header-top {
    --main-container: 100%;
  }
  .header-layout1 .menu-area {
    --main-container: 100%;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .header-layout1 .container {
    max-width: 100%;
  }
  .header-layout1 .header-logo img {
    max-height: 80px;
    max-width: 160px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-layout1 .logo-bg {
    width: 25%;
  }
}

@media (max-width: 850px) {
  .header-layout1 .logo-bg {
    width: 34%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .header-layout1 .logo-bg {
    width: 34%;
  }
  .header-layout1 .menu-bg {
    width: 55%;
  }
  .header-layout1 .header-logo img {
    max-height: 50px;
    max-width: 160px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-layout1 .logo-bg {
    width: 50%;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .header-layout1 .logo-bg {
    width: 60%;
  }
}
.img-box1 {
  position: relative;
}

.img-box1 .img1 img {
  width: 690px;
  height: 585px;
  /* Small devices */
}

@media (max-width: 767px) {
  .img-box1 .img1 img {
    width: 100%;
    height: 100%;
  }
}

.img-box1 .about-counter-wrapper {
  position: relative;
  background-color: var(--theme-color);
  min-width: 210px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  padding: 10px;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 20%;
  top: 20%;
}

.img-box1 .about-counter-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  border-radius: 50%;
  -webkit-clip-path: path("M0.882406 101.83C1.00686 64.7002 25.2344 29.9768 59.0452 15.042C93.8101 -0.30767 135.296 6.78636 163.381 32.1755C176.947 44.4553 186.779 60.5517 191.675 78.1416C192.919 82.6635 193.832 87.3099 194.413 91.9563C194.703 94.4039 194.91 96.8516 195.035 99.2992C195.076 99.88 195.076 100.461 195.118 101.042C195.201 104.112 195.201 97.9302 195.118 101C195.076 102.369 194.993 103.697 194.91 105.066C194.247 114.566 192.131 123.983 188.729 132.861C175.412 167.75 142.099 192.144 104.97 194.882C102.647 195.048 100.323 195.131 98.0002 195.131C97.9587 195.131 97.9587 201.229 98.0002 201.229C116.752 201.188 135.13 195.753 150.894 185.589C166.161 175.716 178.399 161.486 186.116 145.058C194.081 128.049 196.321 109.048 194.869 90.4628C193.375 71.9187 186.655 54.1629 175.454 39.3111C152.637 9.06807 113.308 -4.99554 76.4277 3.26009C40.1278 11.3913 11.2123 40.8045 3.12262 76.98C1.42172 84.6548 0.840921 92.4126 0.799436 100.253C0.799436 101.498 0.757946 102.743 0.840918 104.029C0.840918 103.821 0.84092 102.286 0.882406 101.83Z");
          clip-path: path("M0.882406 101.83C1.00686 64.7002 25.2344 29.9768 59.0452 15.042C93.8101 -0.30767 135.296 6.78636 163.381 32.1755C176.947 44.4553 186.779 60.5517 191.675 78.1416C192.919 82.6635 193.832 87.3099 194.413 91.9563C194.703 94.4039 194.91 96.8516 195.035 99.2992C195.076 99.88 195.076 100.461 195.118 101.042C195.201 104.112 195.201 97.9302 195.118 101C195.076 102.369 194.993 103.697 194.91 105.066C194.247 114.566 192.131 123.983 188.729 132.861C175.412 167.75 142.099 192.144 104.97 194.882C102.647 195.048 100.323 195.131 98.0002 195.131C97.9587 195.131 97.9587 201.229 98.0002 201.229C116.752 201.188 135.13 195.753 150.894 185.589C166.161 175.716 178.399 161.486 186.116 145.058C194.081 128.049 196.321 109.048 194.869 90.4628C193.375 71.9187 186.655 54.1629 175.454 39.3111C152.637 9.06807 113.308 -4.99554 76.4277 3.26009C40.1278 11.3913 11.2123 40.8045 3.12262 76.98C1.42172 84.6548 0.840921 92.4126 0.799436 100.253C0.799436 101.498 0.757946 102.743 0.840918 104.029C0.840918 103.821 0.84092 102.286 0.882406 101.83Z");
}

.img-box1 .about-counter {
  text-align: center;
}

.img-box1 .about-counter .counter-number {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.img-box1 .about-counter .counter-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 0;
}

.img-box4 {
  position: relative;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .img-box4 {
    padding-right: 40px;
  }
}

.img-box4 .img4 {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .img-box4 .img4 {
    margin-bottom: 40px;
  }
}

.img-box4 .img5 {
  position: absolute;
  left: 15px;
  top: 50px;
}

.img-box4 .img5 .about3-dot {
  z-index: -1;
}

.img-box4 .about-counter {
  background-color: var(--theme-color);
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: absolute;
  left: 50px;
  top: 36%;
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  .img-box4 .about-counter {
    padding: 30px;
    left: 0;
  }
}

@media (max-width: 575px) {
  .img-box4 .about-counter {
    padding: 25px;
  }
}

.img-box4 .counter-card_number {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 0;
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  .img-box4 .counter-card_number {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .img-box4 .counter-card_number {
    font-size: 30px;
    line-height: 40px;
  }
}

.img-box4 .counter-card_text {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
  max-width: 142px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .img-box4 .counter-card_text {
    font-size: 16px;
    line-height: 26px;
  }
}

.achive-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  margin-top: 28px;
  margin-bottom: 20px;
  /* Small devices */
}

@media (max-width: 767px) {
  .achive-wrapper {
    display: block;
  }
}

.achive-wrapper .achive-about-wrap {
  margin-bottom: 20px;
}

.achive-wrapper .achive-about-wrap .achive-about {
  max-width: 336px;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.about-wrap .about-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-top: 27px;
}

.about-wrap .about-content .about_title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 14px;
}

.about-wrap .about-content .about_text {
  max-width: 410px;
  margin-bottom: 0;
}

.about-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.about-profile .title {
  margin-bottom: 5px;
  line-height: 30px;
}

.about-profile .desig {
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.about-profile.style2 {
  gap: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-profile.style2 {
    gap: 10px;
  }
}

.about-profile.style2 .avater {
  min-width: 70px;
}

.about-profile.style2 .avater img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.about-avater {
  min-width: 60px;
}

.about-avater img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.about-counter1 {
  background-color: var(--smoke-color2);
  padding: 80px 40px 40px 40px;
  max-width: 164px;
  min-height: 211px;
  position: absolute;
  bottom: 0;
  right: -20px;
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .about-counter1 {
    right: 0;
  }
}

@media (max-width: 767px) {
  .about-counter1 {
    position: relative;
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .about-counter1 {
    right: 0;
  }
}

@media (max-width: 575px) {
  .about-counter1 {
    padding: 40px;
    min-width: 100%;
    gap: 20px;
  }
}

.about-counter1 .counter-title {
  color: var(--white-color);
  font-size: 40px;
  line-height: 60px;
  margin-top: -10px;
}

.about-counter1 .counter-text {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--white-color);
}

.about-counter1 .counter-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.counter-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: var(--white-color);
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .counter-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.counter-text {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--white-color);
  max-width: 128px;
  text-align: center;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .counter-text {
    font-size: 16px;
    line-height: 26px;
  }
}

.img-box3 {
  position: relative;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box3 {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .img-box3 {
    text-align: center;
  }
}

.img-box3 .img1 {
  text-align: right;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box3 .img1 {
    text-align: center;
  }
}

.img-box3 .img3 {
  position: absolute;
  top: 17%;
  right: 6%;
 
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

.img-box3 .img3 img {
  border: 10px solid var(--white-color);
}

@media (max-width: 1199px) {
  .img-box3 .img3 {
    right: 25%;
  }
}

@media (max-width: 991px) {
  .img-box3 .img3 {
    right: 0;
  }
}

@media (max-width: 575px) {
  .img-box3 .img3 {
    display: none;
  }
}

.img-box3 .about-counter {
  background-color: var(--theme-color);
  padding: 45px;
  max-width: 250px;
  min-height: 283px;
  position: absolute;
  left: 0;
  bottom: 40px;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box3 .about-counter {
    left: 40px;
  }
}

@media (max-width: 767px) {
  .img-box3 .about-counter {
    left: -30px;
    padding: 35px;
  }
}

@media (max-width: 575px) {
  .img-box3 .about-counter {
    left: 0;
    max-width: 200px;
    min-height: 220px;
  }
}

@media (max-width: 375px) {
  .img-box3 .about-counter {
    display: none;
  }
}

.img-box3 .about-counter .counter-title {
  font-weight: 800;
  font-size: 80px;
  line-height: 70px;
  margin-bottom: 20px;
  /* Small devices */
}

@media (max-width: 767px) {
  .img-box3 .about-counter .counter-title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 0;
  }
}

.img-box3 .about-counter .counter-text {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  max-width: 152px;
  text-align: left;
  /* Small devices */
}

@media (max-width: 767px) {
  .img-box3 .about-counter .counter-text {
    font-size: 18px;
    line-height: 28px;
  }
}

.img-box3 .line-animation {
  position: absolute;
  left: 45px;
  top: auto;
  bottom: 40px;
}

.img-box3 .line-animation img {
  max-width: none;
}

.img-box3 .vehicle-repair {
  background-color: var(--white-color);
  padding: 20px;
  min-width: 270px;
  position: absolute;
  top: 70px;
  left: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  .img-box3 .vehicle-repair {
    left: -30px;
    top: 20px;
  }
}

@media (max-width: 575px) {
  .img-box3 .vehicle-repair {
    left: -20px;
    top: 20px;
  }
}

@media (max-width: 400px) {
  .img-box3 .vehicle-repair {
    display: none;
  }
}

.img-box3 .about-shape {
  position: absolute;
  right: 16%;
  top: 20px;
  z-index: -2;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .img-box3 .about-shape {
    right: 10%;
  }
}

@media (max-width: 1199px) {
  .img-box3 .about-shape {
    right: 25%;
  }
}

@media (max-width: 991px) {
  .img-box3 .about-shape {
    right: 0;
  }
}

@media (max-width: 575px) {
  .img-box3 .about-shape {
    display: none;
  }
}

.img-box3 .about-line {
  position: absolute;
  bottom: 0;
  right: 19%;
  z-index: -1;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box3 .about-line {
    right: 30%;
  }
}

@media (max-width: 991px) {
  .img-box3 .about-line {
    right: 0;
  }
}

@media (max-width: 575px) {
  .img-box3 .about-line {
    display: none;
  }
}

.img-box3.style2 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box3.style2 {
    margin-bottom: 30px;
  }
}

.about-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .about-content-wrapper {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .about-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .about-content-wrapper {
    gap: 20px;
  }
}

@media (max-width: 440px) {
  .about-content-wrapper {
    display: block;
    max-width: 220px;
  }
}

.about-content-wrapper .about-content {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-content-wrapper .about-content {
    margin-bottom: 30px;
  }
  .about-content-wrapper .about-content .th-btn {
    padding: 17px 28px;
  }
}

.about-content-wrapper .about-content .header-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  border-top: 1px solid var(--gray-color);
  padding-top: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.about-content-wrapper .about-content .header-info_label {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #787878;
}

.about-content-wrapper .about-content .header-info_link {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-content-wrapper .about-content .header-info_link {
    font-size: 16px;
    line-height: 26px;
  }
}

.about-content-wrapper .about-content .header-info_link:hover {
  color: var(--theme-color);
}

.about-content-wrapper .about-content .header-info_link a {
  color: inherit;
}

.about-content-wrapper .counter-wrapper {
  background-color: var(--smoke-color2);
  padding: 40px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-content-wrapper .counter-wrapper {
    min-width: 200px;
    padding: 30px 20px;
  }
}

.about-content-wrapper .counter-wrapper .th-counterup {
  border: none;
  border-bottom: 1px solid var(--gray-color);
  margin-bottom: 35px;
  margin-right: 0;
  padding: 0 0 40px 0;
}

.about-content-wrapper .counter-wrapper .th-counterup:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-content-wrapper .counter-wrapper .th-counterup .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  max-width: 255px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .about-content-wrapper .counter-wrapper .th-counterup .inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-content-wrapper .counter-wrapper .th-counterup .inner {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
}

.about-content-wrapper .counter-wrapper .th-counterup .inner .icon {
  min-width: 60px;
  /* Small devices */
}

@media (max-width: 767px) {
  .about-content-wrapper .counter-wrapper .th-counterup .inner .icon {
    min-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.about-content-wrapper .counter-wrapper .th-counterup .content .counter {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: var(--theme-color);
  margin-bottom: 0;
}

.about-content-wrapper .counter-wrapper .th-counterup .content .counter-card_text {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--body-color);
}

.about-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--gray-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-wrapper {
    display: block;
  }
}

.about-image {
  position: relative;
  max-width: 200px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-image {
    margin-bottom: 30px;
  }
}

.about-image:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.about-image .white-play-btn {
  position: absolute;
  left: 34%;
  top: 34%;
  width: 60px;
  height: 60px;
  line-height: 62px;
  font-size: 18px;
  z-index: 9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
}

.achive-about-wrap {
  position: relative;
  margin-bottom: 40px;
}

.achive-about-wrap .achive-about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
  max-width: 460px;
  border-bottom: 1px solid #D2D2D2;
  margin-bottom: 30px;
  padding-bottom: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .achive-about-wrap .achive-about {
    min-width: 100%;
    line-height: auto;
    height: auto;
  }
}

.achive-about-wrap .achive-about:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.achive-about-wrap .achive-about .media-body {
  margin-top: -6px;
}

.achive-about-wrap .achive-about:hover .achive-about_icon img {
  -webkit-transform: translateY(5px) translate3d(0, 5px, 0);
          transform: translateY(5px) translate3d(0, 5px, 0);
}

.achive-about-wrap .achive-about_icon {
  min-width: 60px;
}

.achive-about-wrap .achive-about_icon img {
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.achive-about-wrap .achive-about_title {
  font-family: var(--title-font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--title-color);
  margin-bottom: 4px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .achive-about-wrap .achive-about_title {
    font-size: 18px;
    line-height: 28px;
  }
}

.achive-about-wrap .achive-about_text {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 0;
  max-width: 340px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .achive-about-wrap .achive-about_text {
    font-size: 14px;
    line-height: 26px;
  }
}

.profile-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  margin-bottom: 40px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .profile-wrap {
    gap: 40px;
  }
}

@media (max-width: 440px) {
  .profile-wrap {
    display: block;
  }
}

.profile-wrap .title {
  margin-bottom: 2px;
}

.profile-wrap .desig {
  font-size: 14px;
}

.about-counter-wrap {
  background-color: var(--theme-color);
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 37px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .about-counter-wrap {
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .about-counter-wrap {
    max-width: 550px;
  }
}

@media (max-width: 450px) {
  .about-counter-wrap {
    display: block;
  }
}

.about-counter-wrap .about-counter {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .about-counter-wrap .about-counter {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .about-counter-wrap .about-counter {
    display: block;
    width: 50%;
  }
}

@media (max-width: 450px) {
  .about-counter-wrap .about-counter {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--white-color);
    padding-bottom: 20px;
  }
  .about-counter-wrap .about-counter:last-child {
    border-bottom: 1px dashed transparent;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.about-counter-wrap .about-counter .border-line {
  content: "";
  position: absolute;
  right: -50px;
  width: 1px;
  height: 100%;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .about-counter-wrap .about-counter .border-line {
    right: -25px;
  }
}

@media (max-width: 991px) {
  .about-counter-wrap .about-counter .border-line {
    right: 11px;
  }
}

@media (max-width: 450px) {
  .about-counter-wrap .about-counter .border-line {
    display: none;
  }
}

.about-counter-content .counter-card_number {
  /* Medium devices */
}

@media (max-width: 991px) {
  .about-counter-content .counter-card_number {
    margin-top: 15px;
  }
}

hr.style1 {
  margin-bottom: 20px;
}

/* Large devices */
@media (max-width: 1199px) {
  .img-box1 {
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.sec-text2 {
  max-width: 500px;
  color: #080808;
  font-size: 14px;
}
.space{
  padding-top: 100px;
  padding-bottom: 100px;
}
.process-sec {
  position: relative;
  overflow: hidden;
}

.process-sec .process-line {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 44%;
  left: 40%;
  -webkit-transform: translate(calc(-50% + 500px), calc(-50% + 25px));
      -ms-transform: translate(calc(-50% + 500px), calc(-50% + 25px));
          transform: translate(calc(-50% + 500px), calc(-50% + 25px));
  margin: 0 -500px;
  /* Large devices */
}

@media (min-width: 1922px) {
  .process-sec .process-line {
    left: 45%;
  }
}

@media (max-width: 1399px) {
  .process-sec .process-line {
    left: 45%;
    -webkit-transform: translate(calc(-20% + 200px), calc(-20% + 10px));
        -ms-transform: translate(calc(-20% + 200px), calc(-20% + 10px));
            transform: translate(calc(-20% + 200px), calc(-20% + 10px));
    max-width: 100%;
  }
  .process-sec .process-line img {
    width: 85%;
  }
}

@media (max-width: 1199px) {
  .process-sec .process-line {
    display: none;
  }
}

.process-card {
  max-width: 300px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.process-card_img {
  position: relative;
  border-radius: 50%;
  display: inline-block;
  border: 2px dashed transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.process-card_img img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.process-card_icon .number {
  position: absolute;
  height: 40px;
  width: 40px;
  line-height: 30px;
  border-radius: 50%;
  background: var(--theme-color);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white-color);
  font-family: var(--title-font);
  top: 0px;
  left: 10px;
  border: 4px solid var(--white-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.process-card_title {
  font-size: 22px;
  margin-top: 20px;
}

.process-card_text {
  margin-bottom: -0.3em;
  color: #080808;
  font-size: 14px;
}

.process-card:hover .process-card_img {
  border-color: var(--theme-color);
}

.process-card:hover .process-card_img img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  border-radius: 50%;
}

.process-card:hover .process-card_img:after {
  opacity: 1;
}

.process-card:hover .process-card_icon .number {
  left: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .process-area5 .process-line {
    -webkit-transform: translate(calc(-50% + 300px), calc(-50% + 25px));
        -ms-transform: translate(calc(-50% + 300px), calc(-50% + 25px));
            transform: translate(calc(-50% + 300px), calc(-50% + 25px));
    margin: 0 -300px;
  }
  .process-card .process-card_img .process-card_icon span.number1 {
    -webkit-transform: translate(-55%, -30px) rotate(-20deg);
        -ms-transform: translate(-55%, -30px) rotate(-20deg);
            transform: translate(-55%, -30px) rotate(-20deg);
  }
  .process-card .process-card_img .process-card_icon span.number2 {
    -webkit-transform: translate(-100%, -145px) rotate(15deg);
        -ms-transform: translate(-100%, -145px) rotate(15deg);
            transform: translate(-100%, -145px) rotate(15deg);
  }
  .process-card .process-card_img .process-card_icon span.number3 {
    -webkit-transform: translate(-100%, -98px) rotate(-13deg);
        -ms-transform: translate(-100%, -98px) rotate(-13deg);
            transform: translate(-100%, -98px) rotate(-13deg);
  }
  .process-card .process-card_img .process-card_icon span.number4 {
    -webkit-transform: translate(-100%, -120px) rotate(20deg);
        -ms-transform: translate(-100%, -120px) rotate(20deg);
            transform: translate(-100%, -120px) rotate(20deg);
  }
}

@media (max-width: 1200px) {
  .process-area5 .process-line {
    display: none;
  }
  .process-card .process-card_img .process-card_icon span {
    left: 0;
    top: 15px;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .process-card:hover .process-card_icon span {
    background: var(--title-color);
    color: var(--white-color);
    z-index: 2;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .process-sec-img {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
  }
  .process-sec-img img {
    max-height: 500px;
  }
  .process-bg-img {
    bottom: 0 !important;
    top: auto !important;
  }
}


.faq-sec {
  /* Extra large devices */
  /* Large devices */
}

@media (max-width: 1500px) {
  .faq-sec {
   
  }
}

@media (max-width: 1199px) {
  .faq-sec {
    padding: 80px 0;
  }
}

@media (min-width: 1199px) {
  .accordion-area .title-area {
    margin-right: 80px;
  }
}

.accordion-card {
  margin-bottom: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  overflow: hidden;
}

.accordion-card.style3 .accordion-button:after {
  color: var(--theme-color);
}

.accordion-card.style3 .accordion-button:not(.collapsed) {
  color: var(--title-color);
}

.accordion-card.style3 .accordion-button:not(.collapsed):after {
  color: var(--title-color);
}

.accordion-card .accordion-button {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--title-font);
  border: 0;
  color: var(--title-color);
  background-color: var(--smoke-color2);
  border-radius: 0;
  padding: 12px 45px 12px 30px;
  min-height: 70px;
  gap: 10px;
  margin-bottom: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.accordion-card .accordion-button:after {
  content: "\f106";
  height: 100%;
  width: auto;
  line-height: 1;
  background-color: transparent;
  font-family: 'Font Awesome 5 Free';
  color: #0A0A0A;
  font-weight: 700;
  font-size: 1em;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 30px;
  -webkit-clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
  padding-left: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .accordion-card .accordion-button:after {
    right: 24px;
  }
}

.accordion-card .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-card .accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--border-color);
  box-shadow: none;
  border-radius: 0;
  color: var(--theme-color);
}

.accordion-card .accordion-button:not(.collapsed):after {
  content: '\f107';
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  color: var(--theme-color);
}

.accordion-card .accordion-collapse {
  border: none;
}

.accordion-card .accordion-body {
  border-radius: 0;
  background-color: var(--smoke-color2);
  border: none;
  padding: 22px 30px 30px 30px;
}

.accordion-card .faq-text {
  font-size: 16px;
  margin-bottom: -0.48em;
  color: #080808;
  font-size: 14px;
}

.accordion-card .faq-img {
  height: 100%;
}

.accordion-card .faq-img img {
  height: 100%;
  object-fit: cover;
}

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

.accordion-card.style2 {
  box-shadow: none;
  background-color: var(--white-color);
}

.accordion-card.style2:not(:last-child) {
  margin-bottom: 10px;
}

.accordion-card.style2 .accordion-button {
  background-color: var(--white-color);
  box-shadow: none;
  min-height: 60px;
}


  .accordion-card.style2 .accordion-button::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; /* This ensures the icon is displayed as solid */
    color: var(--theme-color);
    margin-left: auto;
}
.accordion-card.style2 .accordion-button:not(.collapsed) {
  color: var(--title-color);
  border-bottom: none;
}

.accordion-card.style2 .accordion-button:not(.collapsed):after {
  -webkit-transform: rotate(180deg) translateX(-11px);
      -ms-transform: rotate(180deg) translateX(-11px);
          transform: rotate(180deg) translateX(-11px);
}

.accordion-card.style2 .accordion-body {
  background-color: var(--white-color);
  border-top: 1px solid var(--gray-color);
  margin: 0 130px 0 30px;
  padding: 20px 0 30px 0;
  /* Medium devices */
}

@media (max-width: 991px) {
  .accordion-card.style2 .accordion-body {
    margin: 0 30px 0 30px;
  }
}

.faq-img {
  padding-left: 25px;
  text-align: center;
}

.faq-img img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

/* Extra small devices */
@media (max-width: 575px) {
  .accordion-card .accordion-button {
    font-size: 16px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .faq-img {
    padding-left: 0;
  }
  .faq-img img {
    max-width: 100%;
  }
}

.faq-widget {
  background-color: var(--smoke-color);
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 5px;
  text-align: center;
}

.faq-widget .title {
  margin-top: -0.23em;
}

.faq-form-wrap {
  margin-top: 70px;
}

.faq-form-wrap .form-text {
  max-width: 500px;
  margin-bottom: 25px;
}

/* Medium devices */
@media (max-width: 991px) {
  .faq-form-wrap {
    margin-top: 45px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .faq-widget {
    padding: 40px 20px;
  }
}

/* Faq Tab --------------------------------*/
.faq-area {
  position: relative;
  overflow: hidden;
}

.faq-tabs {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding-bottom: 11px;
  gap: 50px;
  margin-bottom: 30px;
  /* Medium Large devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .faq-tabs {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .faq-tabs {
    gap: 20px;
  }
}

.faq-tabs .nav-link {
  background-color: transparent;
  color: var(--title-color);
  padding: 0;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  /* Small devices */
}

@media (max-width: 767px) {
  .faq-tabs .nav-link {
    font-size: 14px;
    line-height: 26px;
  }
}

.faq-tabs .nav-link:hover, .faq-tabs .nav-link.active {
  color: var(--theme-color);
  border-color: transparent;
}

.faq-tabs .nav-link:hover:after, .faq-tabs .nav-link.active:after {
  width: 100%;
}

.faq-tabs .nav-link:after {
  content: "";
  height: 2px;
  background: var(--theme-color);
  width: 0;
  left: 0;
  bottom: -12px;
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.faq-image {
  text-align: right;
  /* Large devices */
}

@media (max-width: 1199px) {
  .faq-image {
    display: none;
  }
}

.faq-image-two {
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .faq-image-two {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .faq-image-two {
    margin-bottom: 30px;
  }
}

.faq-area {
  /* Medium devices */
}

@media (max-width: 991px) {
  .faq-area {
    padding-top: 40px !important;
  }
}

.faq-area .title-area {
  /* Large devices */
}

@media (max-width: 1199px) {
  .faq-area .title-area {
    text-align: center;
  }
}
.gg{
  text-align: left;
}




footer{
  color: #fff;
  background: rgb(2,0,36);
 
  position: relative;
  width: 100%;
  height: 100%;
  top:30px;
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  font-size: 0.8rem;
}



@media (max-width:960px) {
  footer{
    width: 100%;
    top: 120px;
  }
  
  .main{
 
 display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
}
  
  .logo{
    grid-column: 1/3;
  }
  
  .office{
    grid-column: 3/5;
  }
  .link{
    grid-column: 1/3;
  }
  
	
}





@media (max-width:660px){
  .main{
    gap:10px;
    margin: 0;

  }
  
  .icons{
    display: flex;
  }
  
 
  
  .row{
    grid-column: 1/4;
  }
}




.office-des {
  display: flex;
  flex-wrap: wrap;
}

.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* Adjust margin as needed */
}

.info-box_icon {
  margin-right: 10px; /* Adjust margin between icon and content */
}

.info-box_content {
  flex: 1; /* Allow content to expand */
}

.info-box_text {
  margin: 0; /* Remove default margin */
}
.info-box_icon i{
  color:red;
  font-size: 16px;
}


.manik{
  width: 200px;
}
.main{
  margin: 50px;
  padding-top: 20px;
 
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(4, 1fr );
}
.row{
 margin-top: 50px;
}
.footer-header{
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.office-des{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office a{
  text-decoration: none;
  color: #98A8F8;
  
}
.office a:hover{
  color: #fff;
}
.num{
  font-size: 1rem;
  font-weight: 500;
}

.link-des{
  display: flex;
  flex-direction: column;
  gap:10px;
}
.link-des a{
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.link-des a:hover{
  color: #EB3300;
  transition: linear 0.3s;
}

.btn-know{
  text-decoration: none;
  background-color: #fff;
  padding: 10px;
  position: relative;
  top: 30px;
  background-color: transparent;
  border: 1px solid #98A8F8;
  color: #98A8F8;
  text-transform: uppercase;
  border-radius:10px;
  
}


.btn-know:hover{
  color: white; 
  background-color: #98A8F8;
  transition: linear 0.3s;
}
.subcribe{
  display: flex;
}
input[type=mail]{
  border: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  font-size: 0.8rem;
}
.sub-icon{
  margin: 7px;
  margin-right: 15px;
  margin-left: 0;
  font-size: 1.5rem;
}
.ri-arrow-right-line{
  margin-left: 0;
  
}

.icons a{
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  align-items: center;
  font-size: 1.1rem;
  margin: 2%;
}


.social-icon{
  position: relative;
  top:2px;
}
.icons a:hover{
  color: #fff;
  background-color: #FB2576;
  border-color: #FB2576;
}
.newsletter-des{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.copyright{
  text-align: center;
}

hr{
  width: 90%;
  margin: 2px auto;
  opacity: 40%;
  border: 0.01px solid white;
  
}

.copyright p{
  padding: 20px;
}






.breadcumb-menu-wrapper {
  position: relative;
}

.breadcumb-menu {
  position: relative;
  max-width: 100%;
  padding: 0;
  list-style-type: none;
  margin: 17px 0 -0.5em 0;
 
  
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 5px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  list-style: none;
  position: relative;
  color: var(--theme-color);
}

.breadcumb-menu li::after {
  content: "\f101";
  font-family: 'Font Awesome 5 Free';
  position: relative;
  margin-left: 10px;
  font-weight: 900; /* Font Awesome requires specific font weights for solid icons */
  font-size: 15px;
  color: var(--white-color);
  
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 700;
  font-size: 16px;
  color: var(--white-color);
}
.breadcumb-content{
  text-align: center;
}
.breadcumb-title {
  color: var(--white-color);
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
  margin: -0.21em 0 -0.14em 0;
  margin-bottom: 10px;
}

.breadcumb-wrapper {
  position: relative;
  padding: 159px 0 130px 0;
  z-index: 2;
}

.breadcumb-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: -1;
}

.breadcump-shape {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper {
    padding: 245px 0 120px 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding: 255px 0 120px 0;
  }
  .breadcumb-title {
    margin: -0.21em 0 -0.14em 0;
  }
}

@media (max-width: 640px) {
  .breadcumb-wrapper {
    padding: 200px 0 80px 0;
  }
  .breadcump-shape {
    display: none;
  }
  .breadcumb-title {
    margin: -0.3em 0 -0.14em 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-wrapper {
    padding: 200px 0 80px 0;
  }
  .breadcumb-title {
    font-size: 34px;
  }
}


.call-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .call-btn {
    gap: 20px;
  }
}

@media (max-width: 470px) {
  .call-btn {
    display: block;
  }
  .call-btn .th-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 204px;
    margin-bottom: 20px;
  }
}

.call-btn:has(.call-btn) {
  gap: 50px;
}

.call-btn .btn-title {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--white-color);
}

.call-btn .btn-title:hover {
  color: var(--theme-color);
}


.feature-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.feature-wrapper .feature-icon {
  min-width: 60px;
  min-height: 60px;
  background-color: rgba(235, 51, 0, 0.1);
  border-radius: 50%;
}

.feature-wrapper .feature-icon img {
  display: block;
  margin: 15px auto;
}

.feature-wrapper .media-body .header-info_label {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-color);
}

.feature-wrapper .media-body .header-info_link {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .feature-wrapper .media-body .header-info_link {
    font-size: 16px;
    line-height: 26px;
  }
}

.feature-wrapper .media-body .header-info_link:hover {
  color: var(--theme-color);
}

.feature-wrapper .media-body .header-info_link a {
  color: inherit;
}

.feature-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  /* Small devices */
}

@media (max-width: 767px) {
  .feature-title {
    font-size: 25px;
    line-height: 38px;
  }
}
.checklist.style1 {
  border-right: 2px solid var(--gray-color);
  /* Medium devices */
}

@media (max-width: 991px) {
  .checklist.style1 {
    border-right: 2px solid transparent;
    margin-bottom: 30px;
  }
}

.checklist.style3 {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  margin-top: 40px;
}

.checklist.style3 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 80px;
  /* Medium Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .checklist.style3 ul {
    gap: 0 15px;
  }
}

@media (max-width: 767px) {
  .checklist.style3 ul {
    gap: 0 40px;
  }
}

@media (max-width: 575px) {
  .checklist.style3 ul {
    display: block;
  }
}

.checklist.style3 ul li {
  margin-bottom: 0;
}

.checklist.style3 ul li:not(:last-child) {
  margin-bottom: 10px;
}

.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.checklist li {
  color: var(--title-color);
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.checklist li > i {
  font-size: 16px;
  color: var(--theme-color);
}

.checklist li:not(:last-child) {
  margin-bottom: 10px;
}

.checklist.style2 li:before {
  content: "\f00c";
}

.checklist.mb-40 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .checklist.mb-40 {
    margin-bottom: 32px;
  }
}

.checklist.mb-45 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .checklist.mb-45 {
    margin-bottom: 35px;
  }
}


@media (min-width: 1399px) and (max-width: 2000px) {
  .tilt-active {
    width:600px !important;
  }
}

.tilt-active{
  width: 500px;
}
.about-sec{
  padding-top: 100px;
}


.feature-sec {
  position: relative;
  z-index: 2;
}

@media (max-width: 1399px) {
  .feature-sec {
    margin-bottom: 40px;
  }
}

.feature-sec .title-area {
  /* Medium devices */
}

@media (min-width: 1399px) {
  .feature-sec .title-area {
    margin-right: 80px;
  }
}

@media (max-width: 991px) {
  .feature-sec .title-area {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .feature-sec .title-area .double-line {
    display: none;
  }
}

.feature-sec .btn-group {
  /* Medium devices */
}

@media (max-width: 991px) {
  .feature-sec .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.feature-sec:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.8);
}

.feature-content {
  background-color: var(--smoke-color2);
  padding: 80px;
  margin: 0 -315px -40px -120px;
  padding-right: 315px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1899px) {
  .feature-content {
    margin: 0 -215px -40px -120px;
  }
}

@media (max-width: 1740px) {
  .feature-content {
    margin: 0 -115px -40px -120px;
    padding-right: 115px;
  }
}

@media (max-width: 1599px) {
  .feature-content {
    margin: 0 -50px -40px -120px;
    padding-right: 50px;
  }
}

@media (max-width: 1399px) {
  .feature-content {
    margin: 0 0px -40px 0px;
    padding: 60px;
  }
}

@media (max-width: 1199px) {
  .feature-content {
    padding-right: 0;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .feature-content {
    padding-right: 0;
    padding: 30px;
  }
}

.feature-content .feature-item-content {
  background-color: var(--white-color);
  /* Medium Large devices */
  /* Small devices */
}

.feature-content .feature-item-content:before {
  background-color: var(--theme-color);
}

@media (max-width: 1399px) {
  .feature-content .feature-item-content {
    padding: 40px;
    text-align: center;
  }
}

@media (max-width: 1299px) {
  .feature-content .feature-item-content {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .feature-content .feature-item-content {
    margin-bottom: 0;
  }
}

@media (max-width: 1399px) {
  .feature-content .feature-item_icon {
    text-align: center;
  }
}

@media (max-width: 1399px) {
  .feature-content .feature-item_icon:before {
    left: 40%;
  }
}

.feature-content .feature-item_title {
  /* Medium devices */
}

@media (max-width: 991px) {
  .feature-content .feature-item_title {
    text-align: center;
  }
}

.feature-content .feature-item_text {
  /* Medium devices */
}

@media (max-width: 991px) {
  .feature-content .feature-item_text {
    text-align: center;
  }
}

.feature-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
  gap: 30px;
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 991px) {
  .feature-wrap {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .feature-wrap {
    display: block;
    margin-bottom: 0;
  }
}

.feature-wrap.style2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  gap: 30px;
  padding-bottom: 100px;
  margin-bottom: 0px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1399px) {
  .feature-wrap.style2 {
    padding-bottom: 70px;
  }
}

@media (max-width: 1299px) {
  .feature-wrap.style2 {
    gap: 15px;
  }
}

@media (max-width: 1199px) {
  .feature-wrap.style2 {
    padding-bottom: 120px;
  }
}

@media (max-width: 991px) {
  .feature-wrap.style2 {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .feature-wrap.style2 {
    display: block;
    margin-bottom: 0;
    padding-bottom: 60px;
  }
}

.feature-wrap.style2 .feature-item-content {
  background-color: var(--white-color);
  /* Large devices */
}

@media (max-width: 1199px) {
  .feature-wrap.style2 .feature-item-content {
    text-align: center;
  }
}

.feature-wrap.style2 .feature-item-content:before {
  background-color: var(--theme-color);
}

.feature-wrap.style2 .feature-item_icon:before {
  /* Large devices */
}

@media (max-width: 1199px) {
  .feature-wrap.style2 .feature-item_icon:before {
    left: 40%;
  }
}

.feature-wrap.style3 {
  /* Small devices */
  /* Extra small devices */
  /* Medium Large devices */
  /* Small devices */
}

@media (max-width: 1399px) {
  .feature-wrap.style3 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 1299px) {
  .feature-wrap.style3 {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .feature-wrap.style3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feature-wrap.style4 {
  gap: 30px;
  margin-right: 0;
  padding: 0;
  /* Small devices */
}

@media (max-width: 1499px) {
  .feature-wrap.style4 {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .feature-wrap.style4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feature-counter .counter-title {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #787878;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .feature-counter .counter-title {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 1399px) {
  .feature-counter .counter-title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 767px) {
  .feature-counter .counter-title {
    display: block;
    text-align: center;
  }
}

.feature-counter .counter-title .odometer {
  /* Small devices */
}

@media (max-width: 767px) {
  .feature-counter .counter-title .odometer {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.feature-counter .counter-title .star {
  color: var(--theme-color);
  margin-right: 5px;
  /* Small devices */
}

@media (max-width: 767px) {
  .feature-counter .counter-title .star {
    display: block;
  }
}

.feature-counter .counter-title .star i {
  font-size: 14px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .feature-counter .counter-title .star i {
    font-size: 12px;
  }
}

.feature-item {
  position: relative;
}

.feature-item-content {
  position: relative;
  background-color: var(--smoke-color2);
  padding: 30px;
  min-width: 220px;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Medium Large devices */
  /* Small devices */
}

@media (max-width: 1399px) {
  .feature-item-content {
    padding: 23px;
  }
}

@media (max-width: 1299px) {
  .feature-item-content {
    min-width: 180px;
  }
}

@media (max-width: 767px) {
  .feature-item-content {
    margin-bottom: 35px;
  }
}

.feature-item-content.style1 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .feature-item-content.style1 {
    text-align: center;
  }
}

.feature-item-content.style1 .feature-item_icon:before {
  display: none;
}

.feature-item-content.style1:hover .feature-item_icon img {
  -webkit-filter: none;
          filter: none;
}

.feature-item-content.style1:hover .feature-item_shape {
  opacity: 1;
}

.feature-item-content.style2 {
  padding: 30px;
  min-width: 270px;
  /* Small devices */
}

@media (max-width: 1399px) {
  .feature-item-content.style2 {
    min-width: 250px;
  }
}

@media (max-width: 767px) {
  .feature-item-content.style2 {
    margin-bottom: 0;
  }
}

.feature-item-content.style2 .feature-item_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .feature-item-content.style2 .feature-item_wrapper {
    gap: 15px;
  }
}

.feature-item-content.style2 .feature-item_icon {
  min-width: 60px;
  margin-bottom: 0px;
}

.feature-item-content.style2 .feature-item_icon:before {
  left: 0;
  width: 60px;
  height: 60px;
}

.feature-item-content.style2 .feature-item_icon img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 10px auto;
  display: block;
}

.feature-item-content.style2 .feature-item_title {
  font-size: 18px;
  line-height: 28px;
}

.feature-item-content:hover:before {
  top: 0;
  width: 100%;
  height: 100%;
}

.feature-item-content:hover .feature-item_icon:before {
  background-color: var(--white-color);
  opacity: 0.2;
}

.feature-item-content:hover .feature-item_icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.feature-item-content:hover .feature-item_title {
  color: var(--white-color);
}

.feature-item-content:hover .feature-item_text {
  color: var(--white-color);
}

.feature-item-content:hover .feature-item_shape {
  opacity: 1;
}

.feature-item-content:hover .feature-item_shape img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.feature-item-content:before {
  content: "";
  height: 0;
  width: 0;
  background-color: var(--title-color);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.feature-item_shape {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: center;
}

.feature-item_shape img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-item_icon {
  position: relative;
  min-width: 50px;
  margin-bottom: 15px;
}

.feature-item_icon:before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(235, 51, 0, 0.2);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.feature-item_icon img {
  -webkit-filter: none;
          filter: none;
  width: 50px;
  height: 50px;
}

.feature-item_title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
  margin-bottom: 5px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-item_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: -7px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-box {
  position: relative;
  text-align: right;
  margin-left: -130px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .feature-box {
    margin-left: 0px;
    text-align: left;
  }
}

@media (max-width: 1199px) {
  .feature-box {
    margin-left: 0;
    margin-top: 50px;
    text-align: center;
  }
}

.feature-counter-wrapp {
  position: absolute;
  right: 30px;
  bottom: 30px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .feature-counter-wrapp {
    display: none;
  }
}

.feature-counter-wrapp .feature-counter {
  position: relative;
  background-color: var(--white-color);
  padding: 50px;
  min-width: 295px;
  min-height: 203px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-align: left;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.feature-counter-wrapp .feature-counter .counter-card_number {
  color: var(--title-color);
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.feature-counter-wrapp .feature-counter .counter-card_text {
  max-width: 197px;
  color: var(--body-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.feature-counter-wrapp .feature-counter:hover .counter-card_number {
  color: var(--white-color);
}

.feature-counter-wrapp .feature-counter:hover .counter-card_text {
  color: var(--white-color);
}

.feature-counter-wrapp .feature-counter:hover:before {
  width: 100%;
}

.feature-counter-wrapp .feature-counter:before {
  content: "";
  height: 100%;
  width: 4px;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.feature-counter-wrapp .feature-counter .feature-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.feature-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.feature-wrapper .feature-icon {
  min-width: 60px;
  min-height: 60px;
  background-color: rgba(235, 51, 0, 0.1);
  border-radius: 50%;
}

.feature-wrapper .feature-icon img {
  display: block;
  margin: 15px auto;
}

.feature-wrapper .media-body .header-info_label {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-color);
}

.feature-wrapper .media-body .header-info_link {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--title-color);
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .feature-wrapper .media-body .header-info_link {
    font-size: 16px;
    line-height: 26px;
  }
}

.feature-wrapper .media-body .header-info_link:hover {
  color: var(--theme-color);
}

.feature-wrapper .media-body .header-info_link a {
  color: inherit;
}

.feature-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  /* Small devices */
}

@media (max-width: 767px) {
  .feature-title {
    font-size: 25px;
    line-height: 38px;
  }
}

.request-content {
  /* Large devices */
}

@media (max-width: 1199px) {
  .request-content {
    margin: 80px 0;
  }
}

.request-content .double-line {
  display: block;
}

@media (min-width: 1199px) {
  .request-content .double-line {
    display: none;
  }
}

.request-content .sec-desc {
  /* Large devices */
}

@media (max-width: 1199px) {
  .request-content .sec-desc {
    display: block;
    margin: auto;
  }
}

.feature-section {
  margin-bottom: 20px;
  /* Large devices */
}

@media (max-width: 1399px) {
  .feature-section {
    margin-bottom: 25px;
  }
}

@media (max-width: 1199px) {
  .feature-section {
    margin-bottom: 0;
  }
}
.space-top{
  padding-top: 80px;
}


.services-cards {
  padding: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
 
}

.services-cards p {
  font-family: 'Montserrat', sans-serif;
  color: #444;
  font-size: 14px;
  margin-left: 0px;
  line-height: 24px;
  margin-bottom: 0;
}

.groupofcards {
  width: fit-content;
  padding: 30px 20px 30px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.groupofcards .card {
  width: 380px;
  height: 168px;
  margin: 20px;
  padding: 10px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  display: flex;
  direction: column;
  overflow: hidden;
}

.groupofcards .card:hover {
  transform: translateY(-10px);
  transition: 0.20s;
}

.groupofcards .card .icono {
  height: 60px;
  width: auto;
}

.groupofcards .card .icono i {
  height: 70px;
  width: auto;
  margin-left: -40px;
}

.groupofcards .card .texto {
  padding-right: 10px;
  height: auto;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.groupofcards .card .texto h3 {
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.groupofcards .card .texto p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 14px;
  margin-left: 0px;
  line-height: 24px;
  margin-bottom: 0;
}

@media (min-width: 1100px) {
  .services {
      height: fit-content;
  }

  .groupofcards {
     
    
  }

  .groupofcards .card {
      width: 300px;
      height: auto;
      margin-right: 60px;
  }
}

@media (max-width: 1000px) {
  .services {
      height: fit-content;
  }

  .groupofcards {
      padding: 30px 0px 30px;
  }

  .groupofcards .card {
      width: 300px;
      height: auto;
  }
}

@media (max-width: 800px) {
  .services {
      height: fit-content;
  }

  .groupofcards {
      padding: 20px 0px 20px;
  }

  .groupofcards .card {
      width: 200px;
      height: auto;
  }
}

@media (max-width: 600px) {
  .services {
      height: fit-content;
  }

  .groupofcards {
      padding: 20px 0px 20px;
  }

  .groupofcards .card {
      width: 150px;
      height: auto;
  }
}


@media (max-width: 1199px) {
  .request-area {
    margin-top: 0;
  }
}

.request-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .request-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 575px) {
  .request-wrapper {
    display: block;
    margin: auto;
    text-align: center;
  }
  .request-wrapper .btn-group {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .request-wrapper .feature-wrapper {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
  }
}

.request-quote-form {
  background-color: var(--theme-color);
  padding: 50px;
  position: relative;
  z-index: 9;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .request-quote-form {
    padding: 30px 20px;
  }
}

.request-quote-form.style2 {
  background-color: var(--white-color);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
  margin: 0 40px -35px 0;
  /* Large devices */
}

@media (max-width: 1399px) {
  .request-quote-form.style2 {
    margin: 0 0px -40px 0;
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .request-quote-form.style2 {
    margin-bottom: 40px;
  }
}

.request-quote-form.style2 textarea.form-control {
  min-height: 120px;
  padding: 12px 20px;
  padding-left: 45px;
}

.request-quote-form.style2 .th-btn {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .request-quote-form.style2 .th-btn {
    padding: 14px 20px;
  }
}

.request-quote-form select,
.request-quote-form .form-control,
.request-quote-form .form-select,
.request-quote-form textarea,
.request-quote-form input {
  height: 56px;
  padding: 0 22px 0 22px;
  padding-left: 42px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--smoke-color2);
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.request-quote-form .nice-select .option {
  color: var(--title-color);
}

.request-quote-form .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.request-quote-form .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.request-quote-form .nice-select .option:hover, .request-quote-form .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.request-quote-form .nice-select.open .list {
  border-bottom: 3px solid var(--theme-color);
}

.request-quote-form .form-group {
  margin-bottom: 20px;
}

.request-quote-form .form-group i {
  left: 33px;
  top: 19px;
 
  max-width: 15px;
}

.request-quote-form textarea.form-control,
.request-quote-form textarea textarea {
  min-height: 96px;
  padding: 12px 20px;
  padding-left: 45px;
}

.request-quote-form .request-shape {
  position: absolute;
  left: -25%;
  bottom: 4%;
  /* Medium devices */
}

@media (max-width: 991px) {
  .request-quote-form .request-shape {
    display: none;
  }
}

.th-request-form {
  background-color: var(--theme-color);
  padding: 60px;
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .th-request-form {
    padding: 40px;
    margin-right: 7px;
  }
  .th-request-form .btn-group {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .th-request-form {
    margin-right: 5px;
  }
}

@media (max-width: 575px) {
  .th-request-form {
    padding: 30px;
    margin-right: 0px;
  }
}

.th-request-form.style2 {
  background-color: transparent;
  min-width: 880px;
  width: 100%;
  padding: 60px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .th-request-form.style2 {
    min-width: 700px;
  }
}

@media (max-width: 1199px) {
  .th-request-form.style2 {
    min-width: 550px;
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .th-request-form.style2 {
    min-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .th-request-form.style2 {
    padding: 30px;
  }
}

.th-request-form.style2 .request-wrapper {
  background-color: transparent;
}

.th-request-form.style2 .form-group select,
.th-request-form.style2 .form-group .form-control,
.th-request-form.style2 .form-group .form-select,
.th-request-form.style2 .form-group textarea,
.th-request-form.style2 .form-group input {
  background-color: var(--white-color);
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select:focus,
.th-request-form.style2 .form-group .form-control:focus,
.th-request-form.style2 .form-group .form-select:focus,
.th-request-form.style2 .form-group textarea:focus,
.th-request-form.style2 .form-group input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: var(--white-color);
}

.th-request-form.style2 .form-group select::-moz-placeholder,
.th-request-form.style2 .form-group .form-control::-moz-placeholder,
.th-request-form.style2 .form-group .form-select::-moz-placeholder,
.th-request-form.style2 .form-group textarea::-moz-placeholder,
.th-request-form.style2 .form-group input::-moz-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select::-webkit-input-placeholder,
.th-request-form.style2 .form-group .form-control::-webkit-input-placeholder,
.th-request-form.style2 .form-group .form-select::-webkit-input-placeholder,
.th-request-form.style2 .form-group textarea::-webkit-input-placeholder,
.th-request-form.style2 .form-group input::-webkit-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select:-ms-input-placeholder,
.th-request-form.style2 .form-group .form-control:-ms-input-placeholder,
.th-request-form.style2 .form-group .form-select:-ms-input-placeholder,
.th-request-form.style2 .form-group textarea:-ms-input-placeholder,
.th-request-form.style2 .form-group input:-ms-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select::-webkit-input-placeholder, .th-request-form.style2 .form-group .form-control::-webkit-input-placeholder, .th-request-form.style2 .form-group .form-select::-webkit-input-placeholder, .th-request-form.style2 .form-group textarea::-webkit-input-placeholder, .th-request-form.style2 .form-group input::-webkit-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select::-moz-placeholder, .th-request-form.style2 .form-group .form-control::-moz-placeholder, .th-request-form.style2 .form-group .form-select::-moz-placeholder, .th-request-form.style2 .form-group textarea::-moz-placeholder, .th-request-form.style2 .form-group input::-moz-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select:-ms-input-placeholder, .th-request-form.style2 .form-group .form-control:-ms-input-placeholder, .th-request-form.style2 .form-group .form-select:-ms-input-placeholder, .th-request-form.style2 .form-group textarea:-ms-input-placeholder, .th-request-form.style2 .form-group input:-ms-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select::-ms-input-placeholder, .th-request-form.style2 .form-group .form-control::-ms-input-placeholder, .th-request-form.style2 .form-group .form-select::-ms-input-placeholder, .th-request-form.style2 .form-group textarea::-ms-input-placeholder, .th-request-form.style2 .form-group input::-ms-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group select::placeholder,
.th-request-form.style2 .form-group .form-control::placeholder,
.th-request-form.style2 .form-group .form-select::placeholder,
.th-request-form.style2 .form-group textarea::placeholder,
.th-request-form.style2 .form-group input::placeholder {
  color: var(--black-color-2);
}

.th-request-form.style2 .form-group i {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 19px;
  font-size: 16px;
  color: var(--theme-color);
}

.th-request-form.style2 .form-group .nice-select:after {
  border-bottom: 1px solid var(--theme-color);
  border-right: 1px solid var(--theme-color);
}

.th-request-form.style3 {
  background-color: var(--smoke-color);
  max-width: 100%;
  padding: 60px;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .th-request-form.style3 {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .th-request-form.style3 {
    padding: 20px;
  }
}

.th-request-form.style3 .form-group select,
.th-request-form.style3 .form-group .form-control,
.th-request-form.style3 .form-group .form-select,
.th-request-form.style3 .form-group textarea,
.th-request-form.style3 .form-group input {
  background-color: var(--white-color);
  color: var(--body-color);
}

.th-request-form.style3 .form-group select:focus,
.th-request-form.style3 .form-group .form-control:focus,
.th-request-form.style3 .form-group .form-select:focus,
.th-request-form.style3 .form-group textarea:focus,
.th-request-form.style3 .form-group input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: var(--white-color);
}

.th-request-form.style3 .form-group select::-moz-placeholder,
.th-request-form.style3 .form-group .form-control::-moz-placeholder,
.th-request-form.style3 .form-group .form-select::-moz-placeholder,
.th-request-form.style3 .form-group textarea::-moz-placeholder,
.th-request-form.style3 .form-group input::-moz-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select::-webkit-input-placeholder,
.th-request-form.style3 .form-group .form-control::-webkit-input-placeholder,
.th-request-form.style3 .form-group .form-select::-webkit-input-placeholder,
.th-request-form.style3 .form-group textarea::-webkit-input-placeholder,
.th-request-form.style3 .form-group input::-webkit-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select:-ms-input-placeholder,
.th-request-form.style3 .form-group .form-control:-ms-input-placeholder,
.th-request-form.style3 .form-group .form-select:-ms-input-placeholder,
.th-request-form.style3 .form-group textarea:-ms-input-placeholder,
.th-request-form.style3 .form-group input:-ms-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select::-webkit-input-placeholder, .th-request-form.style3 .form-group .form-control::-webkit-input-placeholder, .th-request-form.style3 .form-group .form-select::-webkit-input-placeholder, .th-request-form.style3 .form-group textarea::-webkit-input-placeholder, .th-request-form.style3 .form-group input::-webkit-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select::-moz-placeholder, .th-request-form.style3 .form-group .form-control::-moz-placeholder, .th-request-form.style3 .form-group .form-select::-moz-placeholder, .th-request-form.style3 .form-group textarea::-moz-placeholder, .th-request-form.style3 .form-group input::-moz-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select:-ms-input-placeholder, .th-request-form.style3 .form-group .form-control:-ms-input-placeholder, .th-request-form.style3 .form-group .form-select:-ms-input-placeholder, .th-request-form.style3 .form-group textarea:-ms-input-placeholder, .th-request-form.style3 .form-group input:-ms-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select::-ms-input-placeholder, .th-request-form.style3 .form-group .form-control::-ms-input-placeholder, .th-request-form.style3 .form-group .form-select::-ms-input-placeholder, .th-request-form.style3 .form-group textarea::-ms-input-placeholder, .th-request-form.style3 .form-group input::-ms-input-placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group select::placeholder,
.th-request-form.style3 .form-group .form-control::placeholder,
.th-request-form.style3 .form-group .form-select::placeholder,
.th-request-form.style3 .form-group textarea::placeholder,
.th-request-form.style3 .form-group input::placeholder {
  color: var(--black-color-2);
}

.th-request-form.style3 .form-group i {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 19px;
  font-size: 16px;
  color: var(--theme-color);
}

.th-request-form.style3 .form-group .nice-select:after {
  border-bottom: 1px solid var(--theme-color);
  border-right: 1px solid var(--theme-color);
}

.th-request-form .form-group select,
.th-request-form .form-group .form-control,
.th-request-form .form-group .form-select,
.th-request-form .form-group textarea,
.th-request-form .form-group input {
  background-color: rgba(255, 255, 255, 0.1);
  height: 60px;
  color: var(--white-color);
}

.th-request-form .form-group select:focus,
.th-request-form .form-group .form-control:focus,
.th-request-form .form-group .form-select:focus,
.th-request-form .form-group textarea:focus,
.th-request-form .form-group input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.th-request-form .form-group select::-moz-placeholder,
.th-request-form .form-group .form-control::-moz-placeholder,
.th-request-form .form-group .form-select::-moz-placeholder,
.th-request-form .form-group textarea::-moz-placeholder,
.th-request-form .form-group input::-moz-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select::-webkit-input-placeholder,
.th-request-form .form-group .form-control::-webkit-input-placeholder,
.th-request-form .form-group .form-select::-webkit-input-placeholder,
.th-request-form .form-group textarea::-webkit-input-placeholder,
.th-request-form .form-group input::-webkit-input-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select:-ms-input-placeholder,
.th-request-form .form-group .form-control:-ms-input-placeholder,
.th-request-form .form-group .form-select:-ms-input-placeholder,
.th-request-form .form-group textarea:-ms-input-placeholder,
.th-request-form .form-group input:-ms-input-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select::-webkit-input-placeholder, .th-request-form .form-group .form-control::-webkit-input-placeholder, .th-request-form .form-group .form-select::-webkit-input-placeholder, .th-request-form .form-group textarea::-webkit-input-placeholder, .th-request-form .form-group input::-webkit-input-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select::-moz-placeholder, .th-request-form .form-group .form-control::-moz-placeholder, .th-request-form .form-group .form-select::-moz-placeholder, .th-request-form .form-group textarea::-moz-placeholder, .th-request-form .form-group input::-moz-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select:-ms-input-placeholder, .th-request-form .form-group .form-control:-ms-input-placeholder, .th-request-form .form-group .form-select:-ms-input-placeholder, .th-request-form .form-group textarea:-ms-input-placeholder, .th-request-form .form-group input:-ms-input-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select::-ms-input-placeholder, .th-request-form .form-group .form-control::-ms-input-placeholder, .th-request-form .form-group .form-select::-ms-input-placeholder, .th-request-form .form-group textarea::-ms-input-placeholder, .th-request-form .form-group input::-ms-input-placeholder {
  color: var(--white-color);
}

.th-request-form .form-group select::placeholder,
.th-request-form .form-group .form-control::placeholder,
.th-request-form .form-group .form-select::placeholder,
.th-request-form .form-group textarea::placeholder,
.th-request-form .form-group input::placeholder {
  color: var(--white-color);
}

.th-request-form .form-group i {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 19px;
  font-size: 16px;
  color: var(--white-color);
}

.th-request-form .form-group .nice-select:after {
  border-bottom: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
}

.th-request-form .form-group .nice-select .option {
  color: var(--title-color);
}

.th-request-form .form-group .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.th-request-form .form-group .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.th-request-form .form-group .nice-select .option:hover, .th-request-form .form-group .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.th-request-form .form-group .nice-select.open .list {
  border-radius: 0;
  border: 1px solid var(--white-color);
  border-bottom: 3px solid var(--theme-color);
}

.th-request-form textarea.form-control {
  min-height: 140px;
  padding: 25px 25px 0 25px;
  border: none;
}

/* Inquiry ---------------------------------- */
.inquiry-form {
  background-color: var(--white-color);
  padding: 50px;
  box-shadow: 0px 10px 30px rgba(1, 15, 28, 0.06);
}

/* Extra small devices */
@media (max-width: 575px) {
  .inquiry-form {
    padding: 40px 20px;
  }
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 12px);
  position: relative;
  z-index: 2;
  margin-top: -6px;
}

.title-area .sub-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--body-font);
  position: relative;
  margin-bottom: 24px;
  margin-left: 45px;
  text-transform: uppercase;
}

.title-area .sub-title .double-line:before, .title-area .sub-title:before,
.title-area .sub-title .double-line:after, .title-area .sub-title:after {
  position: absolute;
  content: '';
  background-color: var(--theme-color);
  height: 2px;
  top: 50%;
  right: auto;
  left: -10px;
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.title-area .sub-title .double-line:after, .title-area .sub-title:after {
  margin-top: -5px;
  width: 20px;
}

.title-area .sub-title .double-line:before, .title-area .sub-title:before {
  width: 30px;
  margin-top: 3px;
}

.title-area .sub-title .double-line:before, .title-area .sub-title .double-line:after {
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
  right: -10px;
  left: auto;
}

.title-area .sec-title {
  margin-bottom: 20px;
  font-size: 45px;
  color:black;
}

.title-area.mb-0 .sec-title {
  margin-bottom: -0.41em;
}

.title-area .th-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}

hr.title-line {
  margin-top: 0;
  background-color: var(--border-color);
  opacity: 1;
}

.sec-btn,
.title-line {
  margin-bottom: var(--section-title-space);
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .shadow-title {
    font-size: 120px;
    margin-bottom: -82px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 36px;
  }
  .title-area.mb-50,
  .sec-title.mb-50 {
    margin-bottom: 40px;
  }
  .sec-btn,
  .title-line {
    --section-title-space: 55px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .shadow-title {
    font-size: 100px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 35px;
  }
  .sec-btn,
  .title-line {
    --section-title-space: 50px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .sub-title img {
    max-width: 60px;
  }
}


select,
.form-control,
.form-select,
textarea,
input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--smoke-color);
  border-radius: 0;
  font-size: 16px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: var(--smoke-color);
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: var(--body-color);
}

select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder, .form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-select::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
  color: var(--body-color);
}

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

select.style2,
.form-control.style2,
.form-select.style2,
textarea.style2,
input.style2 {
  height: auto;
  border: none;
  color: #8B929C;
  border-bottom: 1px solid;
  padding: 0 0 10px 0;
  background-position: right 1px top 5px;
  background-size: 16px 16px;
  background-color: transparent;
}

select.style2 option,
.form-control.style2 option,
.form-select.style2 option,
textarea.style2 option,
input.style2 option {
  background-color: var(--title-color);
  color: #8B929C;
  padding: 2px 15px;
}

select.style2::-moz-placeholder,
.form-control.style2::-moz-placeholder,
.form-select.style2::-moz-placeholder,
textarea.style2::-moz-placeholder,
input.style2::-moz-placeholder {
  color: #8B929C;
}

select.style2::-webkit-input-placeholder,
.form-control.style2::-webkit-input-placeholder,
.form-select.style2::-webkit-input-placeholder,
textarea.style2::-webkit-input-placeholder,
input.style2::-webkit-input-placeholder {
  color: #8B929C;
}

select.style2:-ms-input-placeholder,
.form-control.style2:-ms-input-placeholder,
.form-select.style2:-ms-input-placeholder,
textarea.style2:-ms-input-placeholder,
input.style2:-ms-input-placeholder {
  color: #8B929C;
}

select.style2::-webkit-input-placeholder, .form-control.style2::-webkit-input-placeholder, .form-select.style2::-webkit-input-placeholder, textarea.style2::-webkit-input-placeholder, input.style2::-webkit-input-placeholder {
  color: #8B929C;
}

select.style2::-moz-placeholder, .form-control.style2::-moz-placeholder, .form-select.style2::-moz-placeholder, textarea.style2::-moz-placeholder, input.style2::-moz-placeholder {
  color: #8B929C;
}

select.style2:-ms-input-placeholder, .form-control.style2:-ms-input-placeholder, .form-select.style2:-ms-input-placeholder, textarea.style2:-ms-input-placeholder, input.style2:-ms-input-placeholder {
  color: #8B929C;
}

select.style2::-ms-input-placeholder, .form-control.style2::-ms-input-placeholder, .form-select.style2::-ms-input-placeholder, textarea.style2::-ms-input-placeholder, input.style2::-ms-input-placeholder {
  color: #8B929C;
}

select.style2::placeholder,
.form-control.style2::placeholder,
.form-select.style2::placeholder,
textarea.style2::placeholder,
input.style2::placeholder {
  color: #8B929C;
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select.style2,
select.style2 {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E");
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding: 25px 20px;
}

textarea.form-control.style2,
textarea.style2 {
  min-height: 100px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 16px;
  color: var(--theme-color);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

.form-group > i.fa-comment {
  margin-top: -2px;
}

.form-group > i.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color);
}

.form-group.has-label > i {
  top: 50px;
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

option:checked, option:focus, option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

input[type="checkbox"] ~ label:before {
  content: "";
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="checkbox"].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type="checkbox"].style2 ~ label:before {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #8B929C;
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}

input[type="checkbox"].style2:checked ~ label:before {
  color: var(--theme-color);
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}
.service-form {
  background: var(--theme-color);
  padding: 60px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  /* Medium Large devices */
  /* Extra small devices */
}

.service-form.style2 {
  padding: 40px;
  box-shadow: none;
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 991px) {
  .service-form.style2 {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-form.style2 {
    padding: 25px;
  }
}

.service-form.style2 .form-group {
  margin-bottom: 10px;
  position: relative;
}

.service-form.style2 .form-group select,
.service-form.style2 .form-group .form-control,
.service-form.style2 .form-group .form-select,
.service-form.style2 .form-group textarea,
.service-form.style2 .form-group input {
  height: 60px;
  padding: 25px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 0;
  font-size: 16px;
  width: 100%;
}

.service-form.style2 .form-group .nice-select {
  padding: 0 25px 0 25px;
}

@media (max-width: 1299px) {
  .service-form {
    padding: 50px;
  }
}

@media (max-width: 575px) {
  .service-form {
    padding: 30px;
  }
}

.service-form .nice-select .option {
  color: var(--title-color);
}

.service-form .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.service-form .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.service-form .nice-select .option:hover, .service-form .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.service-form .nice-select.open .list {
  border-bottom: 3px solid var(--theme-color);
}

.service-form .form-group i {
  color: var(--theme-color);
}

.nice-select .option {
  color: var(--title-color);
}

.nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.nice-select .option:hover, .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.nice-select.open .list {
  border-bottom: 3px solid var(--theme-color);
}

.contact-info-wrap .title-area {
  margin-bottom: 40px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .contact-info-wrap .title-area {
    margin-bottom: 20px;
    text-align: center;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .contact-info {
    margin-bottom: 0;
  }
  .contact-info-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .contact-info-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .contact-info-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .contact-info {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .contact-info_icon {
    display: block;
    margin-bottom: 20px;
  }
  .contact-info .media-body {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
  .th-social.author-social {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-sec {
  position: relative;
  margin-top: 50px;
}

.contact-form-wrapp {
  margin-top: -50px;
}

.contact-form-image {
  position: relative;
  -webkit-animation: left-right-img 4s ease-out infinite;
          animation: left-right-img 4s ease-out infinite;
  /* Medium devices */
}

@media (max-width: 991px) {
  .contact-form-image {
    margin-top: 80px;
  }
}.contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 332px;
}

.contact-info.style2 {
  margin-bottom: 20px;
}

.contact-info.style2 .media-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.contact-info.style2 .media-body i {
  color: var(--theme-color);
  font-size: 20px;
  line-height: 20px;
}

.contact-info.style2 .media-body .contact-info_text {
  margin-bottom: 0;
}

.contact-info.style2 .media-body .contact-info_text a {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .contact-info.style2 .media-body .contact-info_text a {
    text-align: left;
  }
}

.contact-info:last-of-type {
  margin-bottom: 0;
}

.contact-info_title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #787878;
  margin-bottom: 5px;
}

.contact-info_icon {
  color: var(--theme-color);
  text-align: center;
  font-size: 28px;
  position: relative;
  background-color: rgba(235, 51, 0, 0.1);
  width: 70px;
  height: 70px;
  line-height: 65px;
  display: block;
  margin: auto;
  border-radius: 50%;
}

.contact-info_text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--black-color);
  min-width: 242px;
  display: block;
  margin-bottom: -0.5em;
}

.contact-info_text a {
  color: inherit;
}

.contact-info_text span,
.contact-info_text a {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.contact-info_text a {
  color: var(--black-color);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .contact-info_text a {
    text-align: center;
    max-width: 100%;
  }
}

.contact-info_text a:hover {
  color: var(--theme-color);
}

.contact-info:hover .contact-info_icon:before {
  top: 0;
  left: 0;
}

.contact-wrapper {
  border-top: 1px solid rgba(210, 210, 210, 0.5);
  margin-top: 30px;
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  max-width: 450px;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .contact-wrapper {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-wrapper {
    display: block;
    text-align: center;
  }
}

.contact-wrapper .info-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
}

.contact-form-wrapper {
  position: relative;
  background-color: #F3F3F3;
  overflow: hidden;
  padding: 40px 60px 60px 60px;
  /* Small devices */
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 30px;
  }
}

.contact-form-wrapper .form-title {
  position: relative;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #0A0A0A;
  margin-bottom: 30px;
  /* Small devices */
}

@media (max-width: 767px) {
  .contact-form-wrapper .form-title {
    font-size: 20px;
    line-height: 30px;
  }
}

.form-title {
  position: relative;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: var(--title-color);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .form-title {
    font-size: 20px;
    line-height: 30px;
  }
}

.form-title .shape {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
}

.form-title .shape:after, .form-title .shape:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  margin-top: -1px;
}

.form-title .shape:before {
  -webkit-animation: sectionShape 8s linear infinite;
          animation: sectionShape 8s linear infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  background-color: var(--theme-color);
  z-index: 9;
  width: 160px;
  height: 1px;
}

.form-title .shape:after {
  width: 100%;
  height: 1px;
  margin: 0;
  margin-top: -1px;
  background-color: #121212;
  opacity: 0.1;
  left: 0;
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form select,
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea,
.contact-form input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-left: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 0;
  font-size: 16px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.contact-form select:hover, .contact-form select.focus,
.contact-form .form-control:hover,
.contact-form .form-control.focus,
.contact-form .form-select:hover,
.contact-form .form-select.focus,
.contact-form textarea:hover,
.contact-form textarea.focus,
.contact-form input:hover,
.contact-form input.focus {
  color: var(--body-color) !important;
  border-color: var(--theme-color) !important;
}

.contact-form .form-group i {
  display: inline-block;
  position: absolute;
  left: 35px;
  top: 19px;
  font-size: 16px;
  color: var(--theme-color);
  max-width: 30px;
  
}

.contact-form .form-group .nice-select .option {
  color: var(--title-color);
}

.contact-form .form-group .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.contact-form .form-group .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.contact-form .form-group .nice-select .option:hover, .contact-form .form-group .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.contact-form .form-group .nice-select.open .list {
  border-bottom: 3px solid var(--theme-color);
}

.contact-form textarea.form-control {
  min-height: 150px;
  padding: 12px 25px 0 25px;
  padding-left: 45px;
}
.gg1{
  padding-top: 100px;
}

.form-check{
  padding-left: 1px;
}
.color-e{
  color:black;
}
.color-e:hover{
  color: white;
}
.rsw{
  width:600px;
}
.iti{
  z-index: 10000;
  width: 100%;
}
.color-w{
  color:white;
}
.space-top{
  padding-top: 100px;
}
.color-r{
  color:#EB3300;
}
.list {
  margin-bottom: 15px;
}

.alert-success {
  color: #1d7d5f;
  background-color: #fff0ea;
 border-radius: 10px;
  margin-top: 15px;
  padding: 15px 15px 3px 15px;
  text-align: center;
}

.alert-success1 {
  color: #1d7d5f;
  background-color: #ffffff;
 border-radius: 10px;
  margin-top: 15px;
  padding: 15px 15px 3px 15px;
  text-align: center;
}
.alert-danger{
  color: #920101;
  background-color: #edc3b1;
 border-radius: 10px;
  margin-top: 15px;
  padding: 15px 15px 3px 15px;
  text-align: center;
}
.ggf{
  margin-left: 10px;
 color: rgb(255, 255, 255) !important;
 padding-right: 10px;
}
.ggf:hover{
  color:white !important;
}
.space-bottom{
  padding-bottom: 100px;
}
.logo1{
  width:150px;
}

.logo-des p{
  font-size: 16px;
}
.info-box_text a{
  font-size: 16px;
  color: white;
}
.info-box_text {
  font-size: 16px;
   color: white;
}
.info-box_text a{
  font-size: 16px;
  color: white;
}
.copyright{
  font-size: 16px;
}
.dd{
  background-color: #EB3300;
  margin-top: 10px;
  border: none;
}

.dd:hover{
  background-color:#EB3300;
  border: none;
}
.dd:visited{
  background-color:#EB3300;
  border: none;
}
.space-bottom{
  padding-bottom:100px;
}

@media (max-width: 768px) {
  .card {
      flex: 1 1 calc(50% - 40px);
      max-width: calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .card {
      flex: 1 1 100%;
      max-width: 100%;
  }

  .groupofcards {
      gap: 10px;
  }
}