@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none;
  color: #ffffff;
}
::selection {
  color: #ffffff;
  background-color: #038ff4;
}
a,
li {
  text-decoration: none;
  list-style-type: none;
}
a:hover,
li:hover {
  text-decoration: none;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  outline: none;
}

button {
  border: none;
  outline: 0;
  box-shadow: none;
}

h1 {
  font-size: 64px;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 22px;
}

p {
  font-size: 16px;
  font-weight: 300;
}

/* Common Classes */
.text-blue {
  color: #038ff4;
}
.text-lt-white {
  color: rgba(255, 255, 255, 0.898);
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.sub-text {
  font-size: 16px;
  margin: 0 auto;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.pl-40 {
  padding-left: 1rem;
}
.pr-40 {
  padding-right: 1rem;
}
.w85 {
  width: 85%;
}

@media (min-width: 767px) {
  .pl-40 {
    padding-left: 20px;
  }
  .pr-40 {
    padding-right: 20px;
  }
}
@media (min-width: 991px) {
  .pl-40 {
    padding-left: 50px;
  }
  .pr-40 {
    padding-right: 50px;
  }
}

.menu-show {
  position: relative;
  overflow: hidden;
}

/* Navbar */

.header {
  padding: 7px 0;
  border: 1px solid #04a5fb33;
  background: #05151C;
  backdrop-filter: blur(15.300000190734863px);
}

/* .header.sticky {
  position: fixed;
  top: 20px;
  z-index: 1025;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: top 0.5s ease;
  left: 50%;
  transform: translate(-50%, 0);
} */

.navbar .nav-item {
  text-align: center;
}

.navbar .nav-item .nav-link {
  font-family: "Rubik", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: min-width 0.3s ease-in-out;
  min-width: 150px;
  padding: 18px 25px;
}

.navbar .nav-item .nav-link::before {
  content: "";
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #a85aa3;
  margin-right: 5px;
}
.navbar .nav-item .nav-link.active::before {
  display: inline-block;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
  color: rgb(255, 255, 255) !important;
  font-weight: 400;
}

.header-btn .btn {
  min-width: 158px;
  padding: 14px 20px;
}

.header-btn .btn.btn-login {
  min-width: 120px;
}
.articles {
  padding: 100px 0 100px 0;
}
.articles ol li {
  list-style-type: decimal;
}
.articles ol li::marker {
  color: #038FF4;
  font-size: 20px;
  font-weight: 600;
}
.articles ol ul li {
  list-style-type: disc;
}
.articles ol ul li::marker {
  color: #038FF4;
}
@media screen and (max-width: 991px) {
  .articles {
    padding: 70px 0 70px 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    flex-basis: 100%;
    flex-grow: unset;
    justify-content: center;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

/* DropDown */
.dropdown .nav-link::after {
  content: "\f078";
  border: none;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  vertical-align: middle;
  margin-left: 5px;
}

.dropdown .nav-link:hover::after,
.dropdown .nav-link.show::after {
  content: "\f077";
}

/* .dropdown-menu[data-bs-popper] {
  margin-top: 1rem;
} */

.dropdown-menu {
  padding: 15px 20px;
  border-radius: 16px;
  background: #ffffff;
  border-color: #ffffff;
}

.dropdown-menu::before {
  content: "";
  border-top: 0;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
}

.dropdown-item {
  padding: 0.25rem 0.25rem;
  color: #111b29;
  line-height: normal;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: #038ff4;
  background: transparent;
}

.dropdown-item:focus {
  color: #038ff4;
  background: rgba(0, 0, 0, 0.031);
}

.dropdown-item p {
  font-size: 14px;
  margin-bottom: 3px;
}

.dropdown-text {
  color: #677489;
  font-size: 12px;
}
.dropdown-menu[data-bs-popper],
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0rem;
  left: -50%;
  width: 295px;
}

/* Main */
main {
  background: #06161d;
}

.hero {
  padding: 150px 0 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 19, 29, 0) 0%, #11131d 100%);
  /* height: 100vh; */
}

.hero h1 {
  letter-spacing: 0.01em;
}

.hero p {
  font-size: 20px;
}

.dscr-btm {
  background: linear-gradient(
    180deg,
    rgba(4, 165, 251, 0) 0%,
    rgba(0, 62, 220, 0.3) 100%
  );

  padding-bottom: 43px;
}

/* DSCR Video */
.dscr-video {
  /* backdrop-filter: blur(23.200000762939453px); */
  position: relative;
  margin-top: -15px;
  background: radial-gradient(
    71.48% 41.87% at 50% 41.87%,
    rgba(7, 103, 128, 0.3) 0%,
    rgba(7, 103, 128, 0) 100%
  );
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: auto;
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

.masked-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-clip-path: url(#video-clip);
  clip-path: url(#video-clip);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: url(#video-clip);
  -webkit-clip-path: url(#video-clip);
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none; /* Allows clicks to go through */
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff45;
  backdrop-filter: blur(6.800000190734863px);
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0px 0px 30.2px 0px #ffffff6b;
}

.play-button::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #000000;
  margin-left: 5px;
  position: absolute;
}

.play-text {
  animation: sphere-rotate 2s infinite;
}
@keyframes rotate-text {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* .play-button.pause::before {
  content: "";
  display: flex;
  gap: 4px;
  background: white;
  width: 16px;
  height: 16px;
  clip-path: polygon(
    0 0,
    40% 0,
    40% 100%,
    0 100%,
    0 0,
    60% 0,
    60% 100%,
    100% 100%,
    100% 0,
    60% 0
  );
} */

.mobile-video-wrapper {
  position: relative;
}

.mob-video {
  width: 100%;
  border-radius: 12px;
}

.mobile-video-wrapper .video-overlay {
  clip-path: none;
  -webkit-clip-path: none;
  border-radius: 12px;
}

.dscr-video svg {
  position: absolute;
  width: 0;
  height: 0;
}

/* Features */
.features {
  padding: 200px 0 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.features::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    113.61deg,
    rgba(6, 113, 136, 0) 89.34%,
    #000000 124.55%
  );
  width: 200px;
  height: 300px;
}

.capsules-wrapper {
  position: relative;
  bottom: 60%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 400px;
  /* gap: 10px; */
}

.capsule {
  padding: 7px 16px;
  border-radius: 23px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  height: fit-content;
  /* position: absolute; */
  white-space: nowrap;
}
.capsule:nth-child(1) {
  background-color: #ccfffc;
  color: #124441;
  transform: rotate(-7.29deg);
  min-width: 170px;
  top: 40%;
  left: 0;
  position: absolute;
}

.capsule:nth-child(2) {
  background-color: #f6dbd4;
  color: #000000;
  transform: rotate(-7.29deg);
  min-width: 164px;
  top: 50%;
  position: absolute;
  left: 16%;
}

.capsule:nth-child(3) {
  background-color: #d4ccff;
  color: #0b0626;
  transform: rotate(3.78deg);
  min-width: 120px;
  top: 40%;
  position: absolute;
  left: 40%;
}

.capsule:nth-child(4) {
  background-color: #feeacd;
  color: #0b0626;
  transform: rotate(-13.78deg);
  min-width: 120px;
  top: 80%;
  position: absolute;
  left: 40%;
}

.capsule:nth-child(5) {
  background-color: #feeacd;
  color: #0b0626;
  transform: rotate(-6deg);
  min-width: 140px;
  top: 45%;
  position: absolute;
  left: 55%;
}
.capsule:nth-child(6) {
  background-color: #f6dbd4;
  color: #0b0626;
  transform: rotate(7.81deg);
  min-width: 205px;
  top: 76%;
  position: absolute;
  left: 59%;
}

.capsule:nth-child(7) {
  background-color: #d4ccff;
  color: #0b0626;
  transform: rotate(-6deg);
  min-width: 212px;
  top: 30%;
  position: absolute;
  left: 75%;
}

.capsule:nth-child(8) {
  background-color: #ccfffc;
  color: #0b0626;
  transform: rotate(-9.68deg);
  min-width: 138px;
  top: 85%;
  position: absolute;
  left: 82%;
}

/* Benefits */
.card.card-benefits {
  /* border: 2px solid #00d4ff1a;
  border-radius: 20px; */
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 50px 50px;
  margin-bottom: 30px;
}

.benefits {
  padding: 100px 0 50px;
}

.card-benefits h2 {
  font-size: 36px;
}
.card-benefits .card-img {
  position: relative;
  z-index: 1;
}
.card.card-performance .card-img {
  width: 55px;
  height: 55px;
  line-height: 53px;
  border-radius: 50%;
  background: radial-gradient(
    59.26% 59.26% at 50% 50%,
    rgba(6, 113, 136, 0.4) 25.02%,
    rgba(6, 22, 29, 0) 100%
  );
  margin-right: auto;
  text-align: center;
}

.card-benefits .card-img::after {
  content: "";
  background-image: url("../image/benefits/benefits-bg.png");
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.02;
  border-radius: 20px;
  z-index: -1;
}

.card-benefits .card-img {
  transition: transform 0.4s ease;
}
.card-benefits .card-img .screen {
  max-width: 50%;
}
.card-benefits .card-img .benefits-carousel .screen {
  max-width: 50%;
  margin: 0 auto;
}

.card-benefits .card-img:hover .screen {
  transform: scale(1.05);
  transition: transform 0.4s ease-in-out;
}
.bg-radius {
  border-radius: 20px;
}

.bg-img {
  position: absolute;
  z-index: -1;
}

.bg1 {
  top: 15px;
  left: 20px;
  width: 90%;
}

.bg2 {
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.bg3 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bg4,
.bg5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Connect */
.cta-section {
  padding: 100px 0 100px;
  text-align: center;
  color: #ffffff;
}

.cta-section p {
  font-size: 20px;
}

/* Footer */
.footer {
  padding: 30px 20px 50px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 29, 0) 0%,
    rgba(6, 113, 136, 0.3) 100%
  );
  border-radius: 30px;
  max-width: 1170px;
  margin: 0 auto;
  border: 1px solid #04a5fb33;
}

@media(max-width:1199px) {
.footer { margin: 0 15px; }
} 

.footer h6 {
  font-size: 15px;
  font-weight: 400;
}

.footer p,
.footer ul li a {
  font-size: 13px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.3s ease-in-out;
}

.footer ul {
  padding-left: 0;
}

.footer ul li a:hover,
.footer ul li a.active {
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.social-links li a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  display: block;
  border-radius: 50px;
  background: transparent;
}

.social-links li a:hover {
  background: #003edc;
}

/* .social-links .img1,
.social-links a:hover .img2 {
  display: block;
}

.social-links .img2,
.social-links a:hover .img1 {
  display: none;
} */

.member-img img {
  max-width: 158px;
}

.products-imgs a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 300;
}

.seperator-v {
  color: rgba(255, 255, 255, 0.231);
}

@keyframes zoom-in-out {
  0%,
  100% {
    width: 71.9%;
  }

  50%,
  75% {
    width: 55.9%;
  }
}

/* Animated Button */
.btn {
  padding: 14px 28px;
  border-radius: 50px;
  border: 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: 0.3s all ease;
  min-width: 200px;
}
.btn.btn-main {
  color: #ffffff;
  background: linear-gradient(90deg, #04a5fb 0%, #003edc 100%);
  position: relative;
  z-index: 2;
}

.btn.btn-main:hover {
  background: linear-gradient(
    0deg,
    rgba(23, 25, 38, 0.2),
    rgba(23, 25, 38, 0.2)
  );

  color: #ffffff;
  box-shadow: 0px 0px 12px 0px #04a5fb6b;
  background: linear-gradient(90deg, #077ad2 0%, #053eba 100%);
}
.btn.btn-main.btn-submit {
  background: #003edc;
}
.btn.btn-cta {
  background: #010b0f;
  color: #ffffff99;
}
.btn.btn-cta:hover {
  background: #010b0f;
  color: #ffffff;
  box-shadow: none;
}
/* .btn-animation {
  -webkit-animation: glow-btn 2s infinite;
  -moz-animation: glow-btn 2s infinite;
  -o-animation: glow-btn 2s infinite;
  animation: glow-btn 2s infinite;
} */

/* @property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}

.btn-main::after,
.btn-main::before {
  content: " ";
  position: absolute;
  z-index: -1;
  inset: -0.08rem;
  background: conic-gradient(
    from var(--gradient-angle),
    #171926,
    #f38ab0,
    #171926,
    #171926
  );
  border-radius: inherit;
  animation: rotate 2.5s linear infinite;
}

.btn-main::after {
  filter: blur(0rem);
} */

/* @keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
} */

@keyframes glow-btn {
  0%,
  100% {
    box-shadow: 0px 0px 6px 0px #04a5fb6b;
  }

  50% {
  }
}

/* Inner Pages */

.hero.inner h1 {
  font-size: 45px;
}

.heading-wrap h2 {
  font-size: 42px;
}

.solution-features .nav-tabs .nav-item {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.solution-features .nav-tabs .nav-link {
  text-align: left;
  padding: 0 1rem;
  color: rgb(255, 255, 255, 0.3);
  border: 0;
}

.solution-features .nav-tabs .nav-link h3,
.widgets-mob h3 {
  font-size: 28px;
}

.solution-features .nav-tabs .nav-item.show .nav-link,
.solution-features .nav-tabs .nav-link.active {
  background-color: transparent;
  color: #ffffff;
  border: 0;
  outline: 0;
}
.solution-features .nav-tabs .nav-link:hover {
  border: 0;
  outline: 0;
}
.widgets-desk .tab-content .tab-pane img {
  max-width: 50%;
}

.widgets-mob .owl-carousel .owl-item img {
  max-width: 100%;
  height: auto;
  width: inherit;
  margin: 0 auto 20px;
}

/* owl carousel */
.owl-theme .owl-dots .owl-dot span {
  background: #0a93da8c;
  width: 7px;
  height: 7px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0a93da;
}

.oem-operator .cta-section p {
  width: 70%;
  margin: 0 auto;
}
.solution-features,
.monetization {
  padding: 100px 0 50px;
}

.solution-features .row {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.widgets-desk {
  display: flex;
}
.widgets-mob {
  display: none;
}
.performance {
  padding: 70px 0 0;
}

.card {
  border: 1px solid #04a5fb33;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 29, 0) 0%,
    rgba(6, 113, 136, 0.3) 100%
  );
  padding: 40px 20px;
  border-radius: 20px;
  transition: transform 0.3s ease, padding-bottom 0.3s ease;
  margin-bottom: 40px;
}

.card.card-performance h4 {
  font-size: 18px;
  line-height: 1.5;
  min-height: 60px;
  margin: 20px 0 15px 0;
}

.card.card-performance:hover {
  padding-bottom: 50px;
  transform: translateY(-20px);
}
/* About Us */
.hero.inner.about-us {
  padding-bottom: 400px;
}
.about-img {
  position: absolute;
  top: -10%;
}
.what-drives {
  padding: 100px 0;
}
.image-group {
  display: flex;
  justify-content: space-between;
}

.image-group img {
  border-radius: 12px;
  max-width: 170px;
}

.our-results {
  padding: 100px 0 50px;
}

.our-results .card.card-performance h4,
.our-results .card.card-performance span {
  font-size: 40px;
  font-weight: 400;
  min-height: auto;
  margin-bottom: 15px;
}
.our-results .card.card-performance span {
  margin: 20px 0 15px 0;
}
.our-results .card.card-performance p {
  min-height: auto;
}

.flash-side {
  position: absolute;
  top: 10%;
  width: 50%;
  border-radius: 0px 0px 100% 0px;
  height: 100%;
  background: linear-gradient(
    287.91deg,
    rgba(6, 113, 136, 0) 62.84%,
    #000000 137.69%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.flash-left {
  left: 0;
  clip-path: polygon(3 30, 50% 0, 0 85%);
  /* Left side triangle */
}
.flash-right {
  right: 0;
  clip-path: polygon(3 10, 50% 0, 0 5%);
  /* Right side triangle */
}
@keyframes flashTriangle {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.container:hover .flash-left {
  animation: flashTriangle 1.5s infinite;
}
.container:hover .flash-right {
  animation: flashTriangle 1.5s infinite 0.75s;
  /* Staggered for alternate effect */
}

/* Contact form */
.contact-us {
  padding: 130px 0 50px;
}

.contact-us .row:first-child {
  padding: 30px 25px;
  border-radius: 36px;
}

.contact-us-img img {
  border-radius: 34px;
}

.contact-form {
  padding: 0 50px;
}
.contact-form .form-control {
  border: 0;
  background: transparent;
  border-bottom: 1.5px solid #ffffff;
  border-radius: 0;
  padding: 0.75rem 0.75rem 0.375rem 0;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.contact-form .form-floating > .form-control:focus,
.contact-form .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 2.025rem;
  padding-bottom: 0.625rem;
}
.contact-form h6 {
  font-size: 16px;
  font-weight: 400;
}

.contact-form .form-label,
.contact-form .form-check label {
  font-size: 14px;
  color: #ffffff;
}

.contact-form .form-control:focus,
.contact-form h6,
.contact-form .form-control:focus + label,
.contact-form .form-check label {
  color: #ffffff;
}
.contact-form .form-label,
.contact-form .form-check label,
.contact-form .form-control:focus {
  font-weight: 400;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-bottom-color: #ffffff;
}

.contact-form .form-check {
  margin-right: 15px;
}

.contact-form .form-check-input[type="checkbox"] {
  border-radius: 50px;
}

.contact-form .form-check-input {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.contact-form .form-check-input:checked {
  background-color: #383737;
  border-color: #ffffff;
}
.contact-form .form-check-input:focus {
  box-shadow: 0px 0px 14px 0px #0000001f;
  border-color: #ffffff;
}

.contact-form .form-floating > .form-control:focus, .contact-form .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 2.025rem;
    padding-bottom: 0.625rem;
    color: #fff!important;
}
.contact-form .form-check-input:checked[type="checkbox"] {
  background-image: url("../image/icons/checked.svg");
  background-size: 11px;
}

.contact-form textarea {
  overflow: hidden;
  /* scrollbar-width: 0; */
  /* width: 200px; */
  resize: none;
}

/* Content Page */
.content-page {
  padding: 150px 0 70px;
}

.content-page p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.list-alpha li {
  list-style: upper-alpha;
}
.content-page h5,
.content-page .list-alpha li::marker {
  font-size: 20px;
}
.list-num li {
  list-style: decimal;
}
.content-page .list-num li::marker {
  font-size: 16px;
}
.content-page a {
  color: #04a5fb;
}

.list-square li {
  list-style: square;
}

/* Navbar Toggler */
.navbar-toggler.collapsed .menu-line,
.navbar-toggler .menu-line {
  background: #ffffff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.3s ease-out;
  width: 30px;
  margin-bottom: 2px;
}

.navbar-toggler .menu-line {
  display: block;
  position: relative;
  width: 30px;
  height: 3px;
}

.navbar-toggler.collapsed .menu-line::before,
.navbar-toggler.collapsed .menu-line::after,
.navbar-toggler .menu-line::before,
.navbar-toggler .menu-line::after {
  background: #ffffff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
}

.navbar-toggler.collapsed .menu-line::before {
  top: 7px;
  transform: rotate(0);
}

.navbar-toggler.collapsed .menu-line::after {
  top: -7px;
  transform: rotate(0);
}

.navbar-toggler .menu-line {
  background: transparent;
}

.navbar-toggler .menu-line::before {
  top: 0;
  transform: rotate(-45deg);
}

.navbar-toggler .menu-line::after {
  top: 0;
  transform: rotate(45deg);
}

@media only screen and (max-width: 991px) {
  .header-container .navbar-collapse {
    display: block;
    position: absolute;
    left: -100%;
    top: 62px;
    width: 100%;
    height: 100vh;
    padding: 15px 15px 0 15px;
    background: #05151c;
    z-index: 2;
    opacity: 0;
    transition: 0.5s ease;
  }

  .header-container .navbar-collapse.show {
    left: 0;
    opacity: 1;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 1399px) {
  .what-drives {
    padding: 250px 0 70px;
  }
  .image-group img {
    max-width: 190px;
  }
}

@media
 (min-width: 1400px) {
  .footer {
    max-width: 1320px;
  }
}