@charset "utf-8";

/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

:root {
  --primary: #e8703c !important;
  --secondary: #1b447a !important;
  --white: #ffffff !important;
  --black: #666666 !important;
  --font-title: "Exo", sans-serif !important;
  --fonts: "Roboto", sans-serif !important;
}

.main-banner-div {
  width: 100%;
  background-color: #1b447a;
  padding: 25px 0 30px 0;
}

.main-banner {
  width: 100%;
  overflow: visible;
  margin-bottom: 40px;
}

/* For older Swiper versions (v6 and below) */
.main-banner .swiper-container {
  overflow: visible !important;
}

.main-banner .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(27, 68, 122, 1);
  padding: 5px 10px;
  border-radius: 50px;
  margin: 0;
  bottom: 25px;
  width: auto;
}

.main-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  opacity: 1;
}

.main-banner .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #fff;
  opacity: 1;
}

.banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100% !important;
}

.banner-content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 50px;
}

.banner-content h2 {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-title) !important;
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 25px;
}

.banner-content p {
  color: var(--white);
  font-weight: 500;
  font-family: var(--fonts) !important;
  font-size: 18px;
  margin-bottom: 25px;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

.discovered-product {
  padding-bottom: 50px;
  margin-bottom: 25px;
}

.discover-products {
  background-color: #113460;
  padding: 15px 15px 15px 210px;
  border-radius: 20px;
  position: relative;
  min-height: 168px;
}

.discover-products h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 26px;
  margin-bottom: 15px;
}

.discover-products p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.discover-products h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s;
}

.discover-products:hover h6 {
  color: var(--white);
  transition: all 0.3s;
}

.discover-products-img {
  width: 172px;
  height: 137px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.discover-products-img div {
  width: 100%;
  height: 100%;
  background-color: #fff !important;
  position: relative;
  border-radius: 15px;
}

.discover-products-img div .overlay {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4) !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 100;
  transition: all 0.3s;
}

.discover-products-img:hover div .overlay {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  transition: all 0.3s;
}

.discover-products-img div img {
  width: auto;
  height: auto;
  max-width: 162px;
  max-height: 127px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* trusted logo */
.trust {
  width: 100%;
  overflow: hidden !important;
}

.trusted {
  width: 100%;
  overflow: visible !important;
}

/* blogs */
.blogs {
  width: 100%;
  background-color: #030130;
  overflow: hidden;
}

.blog {
  padding-bottom: 50px;
  /* margin-bottom: 25px; */
  width: 100%;
  overflow: visible;
}

.blog-title-div {
  width: 100%;
  border-radius: 20px 20px 0 0;
  background-color: var(--white);
  padding: 20px 15px;
}

.blog-type {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--black);
  height: 84px;
  overflow: hidden;
  margin: 0;
  transition: all 0.4s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Standard property */
  -webkit-box-orient: vertical;
}

.blog-div:hover .blog-title {
  color: var(--primary);
  transition: all 0.4s;
}

.blog-img-div {
  position: relative;
}

.blog-img-div img {
  width: 100%;
  border-radius: 0 0 20px 20px;
}

.blog-div .blog-img-div .overlay {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4) !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 100;
  transition: all 0.3s;
  border-radius: 0 0 20px 20px;
}

.blog-div:hover .blog-img-div .overlay {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

/* Industry */

.desktop-ind {
  display: block;
}

.mobile-ind {
  display: none;
}

.ind-list {
  list-style-type: none;
  margin: 0;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 20px;
}

.ind-list a {
  width: 100%;
  border-radius: 15px;
  display: block;
  padding: 10px 15px;
  margin-bottom: 5px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s;
}

.ind-list a:hover,
.ind-list a.active {
  background-color: #fff;
  color: var(--primary);
  transition: all 0.4s;
}

.industry-description {
  width: 100%;
  background-image: url(../images/ind-description.png);
  padding: 36px;
  border-radius: 20px;
  position: relative;
  height: 100%;
}

.inq-desp-title {
  color: var(--white);
  font-size: 28px;
  font-weight: 600;
}

.inq-desp-text {
  font-size: 16px;
  color: var(--white);
  line-height: 24px;
  font-weight: 500;
}

.inq-know-more {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 125px;
  display: inline-block;
  transition: all 0.3s;
}

.inq-know-more:hover {
  color: var(--white);
  transition: all 0.3s;
}

.ind-rel-pro {
  position: absolute;
  bottom: 36px;
  left: 36px;
}

.ind-img {
  width: 100%;
  border-radius: 20px;
}

.industries {
  padding-bottom: 50px;
}

.mobile-ind-div {
  width: 100%;
  height: 310px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 22px;
}

.mobile-ind-div p {
  font-size: 26px;
  color: var(--white);
  z-index: 1;
  position: absolute;
  top: 30px;
  left: 22px;
}

.mobile-ind-div .inq-know-more {
  position: absolute;
  bottom: 85px;
}

.mobile-ind-div .ind-rel-pro {
  position: absolute;
  bottom: 30px;
  left: 22px;
}

.mobile-ind-div .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 20px;
}

/* Counters */
.counts {
  background-color: #f5f5f5;
}

.counter {
  width: 100%;
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.counter::before {
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  content: "";
}

.counter h3 {
  color: var(--black);
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  line-height: 60px;
}

.counter p {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color: var(--black);
}

/* parallex */
.parallex-div {
  background-attachment: fixed;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  position: sticky;
  top: 50px;
  z-index: 10;
  border-radius: 20px;
}

.parallex-div h2 {
  font-size: 58px;
  font-family: var(--fonts) !important;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 10px;
  margin-bottom: 70px;
  position: relative;
}

.parallex-text {
  font-size: 16px;
  font-family: var(--fonts) !important;
  color: var(--white);
  margin-bottom: 36px;
  font-weight: 600;
}

.parallex-div p {
  font-size: 16px;
  font-family: var(--fonts) !important;
  color: var(--white);
  margin-bottom: 36px;
}

.parallex-div h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.video-div {
  position: relative;
}

.video-img {
  border-radius: 20px;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* widgets */
.home-form {
  background: linear-gradient(
    135deg,
    rgba(46, 3, 74, 1) 21%,
    rgba(1, 85, 175, 1) 100%
  );
  padding: 30px;
  border-radius: 20px;
}

.home-form h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.home-form .form-control {
  background-color: #030130;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.home-form label {
  color: #fff;
  font-size: 14px;
}

.news-update {
  width: 100%;
  height: 100%;
  background-image: url(../images/news.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  position: relative;
}

.news {
  padding: 20px;
  position: absolute;
  bottom: 0;
}

.news h6 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--fonts) !important;
  margin-bottom: 15px;
}

.news h5 {
  color: var(--white);
  font-weight: 700;
  font-family: var(--fonts) !important;
  font-size: 24px;
  line-height: 32px;
  height: 130px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4; /* Standard property */
  -webkit-box-orient: vertical;
}

.news a {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--fonts) !important;
  transition: all 0.4s;
}

.news a:hover {
  color: var(--white);
  transition: all 0.4s;
}

.tranding {
  width: 100%;
  background-image: url(../images/tranding.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  padding: 20px;
  margin-bottom: 30px;
}

.tranding h6 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--fonts) !important;
  margin-bottom: 15px;
}

.tranding h5 {
  color: var(--white);
  font-weight: 700;
  font-family: var(--fonts) !important;
  font-size: 24px;
  line-height: 32px;
  height: 130px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4; /* Standard property */
  -webkit-box-orient: vertical;
}

.tranding a {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--fonts) !important;
  transition: all 0.4s;
}

.tranding a:hover {
  color: var(--white);
  transition: all 0.4s;
}

.learning {
  width: 100%;
  background-image: url(../images/learning.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  padding: 20px;
}

.learning h6 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--fonts) !important;
  margin-bottom: 15px;
}

.learning h5 {
  color: var(--white);
  font-weight: 700;
  font-family: var(--fonts) !important;
  font-size: 24px;
  line-height: 32px;
  height: 130px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4; /* Standard property */
  -webkit-box-orient: vertical;
}

.learning a {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--fonts) !important;
  transition: all 0.4s;
}

.learning a:hover {
  color: var(--white);
  transition: all 0.4s;
}

.main-slider,
.blogs,
.trust,
.industry {
  width: 100%;
  overflow: hidden !important;
}

/* responsive */

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1100px) {
  .banner-content {
    padding: 0 25px;
  }
  .banner-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .banner-content p {
    display: none;
  }

  .discover-products {
    padding: 10px 10px 10px 135px;
  }

  .discover-products-img {
    width: 106px;
    height: 86px;
    position: absolute;
    top: 15px;
    left: 15px;
  }

  .discover-products-img div img {
    max-width: 102px;
    max-height: 86px;
  }

  .discover-products p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .discover-products h5 {
    font-size: 18px;
    height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4; /* Standard property */
    -webkit-box-orient: vertical;
  }

  .discover-products h6 {
    margin: 0;
    font-size: 14px;
  }

  .desktop-ind {
    display: none;
  }

  .mobile-ind {
    display: block;
    margin-top: 25px;
  }

  .counter {
    padding: 10px 20px;
    height: 100%;
  }

  .counter h3 {
    font-size: 36px;
    line-height: 48px;
  }

  .counter p {
    font-size: 14px;
    line-height: 18px;
  }

  .parallex-div .container {
    padding: 0 15px;
  }

  .parallex-div {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .parallex-div h2 {
    font-size: 28px;
    font-family: var(--fonts) !important;
    padding-left: 70px;
    margin-bottom: 40px;
    letter-spacing: 6px;
  }

  .parallex-div h2 img {
    width: 55px;
  }

  .parallex-text {
    font-size: 14px;
    font-family: var(--fonts) !important;
    color: var(--white);
    margin-bottom: 36px;
    font-weight: 600;
  }

  .parallex-div p {
    font-size: 14px;
    font-family: var(--fonts) !important;
    color: var(--white);
    margin-bottom: 36px;
  }

  .parallex-div h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
  }

  .news-update {
    min-height: 500px;
  }

  .blog-type {
    font-size: 14px;
  }
  .blog-title {
    font-size: 18px;
    line-height: 24px;
    height: 75px;
  }

  .home-form h4,
  .learning h5,
  .news-update h5,
  .tranding h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .news-update h6,
  .tranding h6,
  .learning h6 {
    font-size: 14px;
    line-height: 20px;
  }

  .news h5 {
    height: auto;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 640px) {
  .banner-content {
    padding: 0 25px;
    top: 50px;
    transform: none;
  }

  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .banner-content {
    padding: 0 25px;
    top: 50px;
    transform: none;
  }

  .banner-content h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .banner-content p {
    display: none;
  }

  .parallex-div h2 {
    font-size: 28px;
    font-family: var(--fonts) !important;
    text-align: left !important;
    padding-left: 70px;
    margin-bottom: 40px;
    letter-spacing: 6px;
  }

  .parallex-div h2 img {
    position: absolute;
    left: 0;
    top: 5px;
    width: 55px;
  }
}

@media only screen and (max-width: 600px) {
}

@media only screen and (max-width: 568px) {
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 360px) {
}
