.add-line {
  position: relative;
  display: inline-block;
}
.add-line::after {
  position: absolute;
  content: "";
  bottom: -10px;
  right: 0%;
  left: 0%;
  /* R */
  height: 5px;
  border-radius: var(--border-radius);
  width: 100%;
  background: var(--main-color);
}

.add-main-shadow {
  position: relative;
  z-index: 3;
  margin-right: 10px;
  /*R*/
}
.add-main-shadow svg {
  fill: var(--btn-second-color);
  width: 15px;
}
.add-main-shadow::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background-color: var(--btn-bg);
  opacity: 0.5;
  border-radius: var(--border-radius);
  z-index: -1;
  left: 8px;
  /*R*/
  bottom: -9px;
}

body {
  overflow-x: hidden !important;
}

#home-header {
  width: 100%;
  position: relative;
  height: 100vh;
}
#home-header img,
#home-header video {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#home-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
#home-header .header-content {
  position: absolute;
  inset: 0px !important;
  height: 100%;
  width: 100%;
  z-index: 10;
}
#home-header .header-content .content {
  display: none;
}
#home-header .header-content .content .title {
  margin-bottom: 20px;
  font-weight: bold;
}
#home-header .header-content .content .title,
#home-header .header-content .content p {
  text-align: center;
  color: #fff;
}
#home-header .header-content .content p {
  font-size: 26px;
  color: #e3e3e3 !important;
}
#home-header .header-content .active {
  display: block;
}
#home-header .header-content .animation-up {
  animation: slideInUp 1s ease-in-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#home-header .header-content .animation-left {
  animation: slideLeft 1s ease-in-out;
}
@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#home-header .header-content .animation-right {
  animation: slideRight 1s ease-in-out;
}
@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#home-header .title-two {
  font-size: 46px;
}
#home-header .title-three {
  font-size: 46px;
}

#services {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #f3f4f6;
}
#services h2 {
  margin-bottom: 40px;
}
#services .service-box {
  background-color: #ffffff;
  padding: 15px 10px;
  border-radius: var(--border-radius);
  height: 155px;
}
#services .service-box .image {
  height: 90px;
  width: 90px;
  padding: 15px;
  transition: all 0.1s linear;
}
#services .service-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#partners {
  padding: 90px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#partners .owl-nav {
  top: 80px;
}
#partners h2 {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-bottom: 8px;
}
#partners .partner-box {
  background-color: #fff;
  width: 100%;
  height: 180px;
  padding: 15px;
}
#partners .partner-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#industries {
  padding: 60px 0px;
  background-color: #07c;
}
#industries .section-title {
  margin-bottom: 40px;
  color: #fff;
}
#industries .section-title::after {
  border-radius: 0px;
  background: #fff;
}
#industries .industries-box {
  background-color: #fff;
  padding: 25px;
  border-radius: var(--border-radius);
  height: 340px;
}
#industries .industries-box img {
  width: 65px;
}

@media (max-width: 991px) {
  header {
    height: 90vh;
  }
  header .header-content {
    text-align: center;
  }
  header .header-content h1,
  header .header-content .sub-title {
    text-align: center;
  }
  header h1 {
    font-size: 36px;
  }
  header .sub-title {
    margin-top: 0px;
  }
  header .image {
    display: none;
  }
}
@media (max-width: 500px) {
  header h1 {
    margin-bottom: 5px !important;
  }
  header .title-one {
    font-size: 36px !important;
  }
  header .title-two {
    font-size: 26px !important;
  }
  header .title-three {
    font-size: 32px !important;
  }
  header p {
    font-size: 16px !important;
  }
  #partners {
    padding: 40px 0px;
  }
  #partners h2 {
    font-size: 28px;
  }
  #services {
    padding: 40px 0px !important;
  }
  #services h2 {
    margin-top: 0px !important;
    margin-bottom: 30px;
  }
  #services .service-box {
    margin: 15px 0px !important;
    height: auto !important;
  }
  #services .service-box .title {
    font-size: 15px !important;
  }
  #services .service-box .image {
    height: 110px;
    width: 110px;
    padding: 25px;
  }
  #services .service-box .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}/*# sourceMappingURL=home-v2.css.map */