@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  letter-spacing: 1.2px;
  box-sizing: border-box;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999;
  width: 100vw;
  height: 100vh;
  display: flex;
  place-items: center;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.loader.hidden {
  animation: fadeout 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeout {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
body {
  color: #171a20;
  font-family: "rubik", montserrat, sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  width: 100%;
  background: #ffffff;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  width: 100%;
  background: #ffffff;
  padding: 0 20px;
  box-shadow: 0 1px 3px rgba(23, 26, 32, 0.08);
  border-bottom: 1px solid rgba(23, 26, 32, 0.05);
  gap: 40px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 70px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  color: #171a20;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.brand-link:hover {
  opacity: 0.6;
}

.tesla-logo {
  width: 50px;
  height: 24px;
  color: inherit;
}

.nav-desktop {
  display: flex;
  flex: 1;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  margin-left: auto;
}
.nav-menu .nav-item {
  margin-right: 30px;
}

.nav-item {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #171a20;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link:hover {
  color: #3e6ae1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  min-width: 200px;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.nav-dropdown a {
  display: block;
  color: #171a20;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 13px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-dropdown a:hover {
  background-color: #f5f5f5;
  color: #3e6ae1;
}
.nav-dropdown a:first-child {
  border-top: 1px solid #e0e0e0;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.account-menu,
.language-menu {
  position: relative;
}

.account-toggle,
.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.account-toggle:hover,
.language-toggle:hover {
  opacity: 0.6;
}

.account-dropdown,
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  min-width: 180px;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.language-dropdown {
  min-width: 240px;
  padding: 0;
  overflow: visible !important;
}

.account-dropdown.active,
.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.account-link,
.language-link {
  display: block;
  color: #171a20;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 13px;
  transition: color 0.2s ease, background-color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.account-link:hover,
.language-link:hover {
  background-color: #f5f5f5;
  color: #3e6ae1;
}

#google_translate_element {
  position: relative !important;
  z-index: auto !important;
  bottom: auto !important;
  left: auto !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
}

.google-translate-container {
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

#google_translate_element .goog-te-gadget {
  font-family: Roboto, "Open Sans", sans-serif !important;
  font-size: 12px !important;
  display: block !important;
}

#google_translate_element .goog-te-gadget-simple {
  background-color: transparent !important;
  border-color: transparent !important;
  padding: 0 !important;
  line-height: 1.6 !important;
  display: inline-block !important;
  width: auto !important;
}

#google_translate_element .goog-te-menu-value {
  color: #171a20 !important;
  font-size: 13px !important;
  display: inline-block !important;
  cursor: pointer !important;
  padding: 8px 0 !important;
}

#google_translate_element .goog-te-menu-value span {
  color: #171a20 !important;
  display: inline !important;
}

#google_translate_element .goog-te-menu-value:before {
  font-family: "Material Icons" !important;
  content: "🌐" !important;
  margin-right: 8px !important;
  font-size: 13px !important;
}

#google_translate_element .goog-te-menu2 {
  box-shadow: 0 2px 8px rgba(23, 26, 32, 0.08) !important;
  border: 1px solid #f4f4f4 !important;
  background: #ffffff !important;
  position: absolute !important;
  z-index: 10001 !important;
}

#google_translate_element .goog-te-menu2 a {
  color: #171a20 !important;
  padding: 8px 20px !important;
  display: block !important;
  font-size: 13px !important;
  background: #ffffff !important;
}
#google_translate_element .goog-te-menu2 a:hover {
  background-color: #f4f4f4 !important;
  color: #3e6ae1 !important;
}

.account-link-primary {
  color: #3e6ae1;
  font-weight: 600;
  border-top: 1px solid #e0e0e0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  padding: 8px;
}
.hamburger span {
  height: 2px;
  width: 22px;
  background-color: #171a20;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.clicked span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.clicked span:nth-child(2) {
  opacity: 0;
}
.hamburger.clicked span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 899;
}
.nav-mobile.active {
  max-height: 90vh;
}

.mobile-menu-content {
  padding: 20px;
}

.mobile-section {
  margin-bottom: 20px;
}
.mobile-section:last-of-type {
  margin-bottom: 0;
}
.mobile-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #171a20;
  margin: 0 0 12px 0;
  padding: 0;
  letter-spacing: 0.5px;
}
.mobile-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-section ul li {
  margin: 0;
}
.mobile-section ul li a {
  display: block;
  color: #171a20;
  text-decoration: none;
  padding: 10px 0;
  font-size: 13px;
  transition: color 0.2s ease;
}
.mobile-section ul li a:hover {
  color: #3e6ae1;
}

.mobile-divider {
  height: 1px;
  background: #f4f4f4;
  margin: 16px 0;
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-signin,
.mobile-signup {
  display: block;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-signin {
  color: #3e6ae1;
  border: 2px solid #3e6ae1;
  background: transparent;
}
.mobile-signin:active {
  background-color: rgba(62, 106, 225, 0.1);
}

.mobile-signup {
  color: #ffffff;
  background-color: #3e6ae1;
  border: 2px solid #3e6ae1;
}
.mobile-signup:active {
  background-color: rgb(39.9304932735, 88.9618834081, 221.5695067265);
}

@media (max-width: 1024px) {
  .navbar-nav {
    gap: 20px;
  }
  .nav-link {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .navbar-nav {
    padding: 0 16px;
    gap: 16px;
  }
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-right {
    gap: 4px;
  }
  .account-toggle,
  .language-toggle {
    padding: 8px;
  }
  .account-dropdown,
  .language-dropdown {
    right: -8px;
    min-width: 160px;
  }
}
@media (max-width: 480px) {
  .navbar-nav {
    padding: 0 12px;
    gap: 12px;
  }
  .nav-right {
    gap: 2px;
    margin-left: auto;
  }
}
.bgg3 {
  background-position: center !important;
  background-size: cover !important;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6862745098), rgba(0, 0, 0, 0.6862745098));
  display: flex;
  align-items: center;
}

.video-slide {
  position: relative;
  overflow: hidden;
  background: #000;
}
.video-slide .slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.video-slide .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 2;
}
.video-slide .ss-cnt {
  position: relative;
  z-index: 3;
}

.since75 {
  width: 13vw;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .ss-cnt {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .ss-cnt {
    width: 51.507%;
  }
}
.outter75 {
  justify-content: center;
  margin-left: 100px;
}

.inner75 {
  display: flex;
  justify-content: center;
}

.invest75 {
  margin-left: 0px;
  padding-left: 0px;
}

@media screen and (min-width: 800px) {
  .swiper-slide {
    background-position: top center;
  }
}
.landing {
  margin-top: 0;
  height: 100vh;
  min-height: 600px;
}

.landing-content {
  padding: 0 24px;
  max-width: 600px;
}

.landing-sub {
  color: #fff;
  font-size: 12pt;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  font-weight: 300;
}

.lst {
  font-size: 10pt;
  font-weight: 300;
}

.landing-title {
  color: #fff;
  letter-spacing: 1.1px;
  font-size: 19pt;
  margin-bottom: 20px;
  font-weight: 400;
}

.landing-content2 {
  margin-top: -20px;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.62)), url(../image/moneyProb.jpg);
  background-size: cover;
  background-position: center;
}

.mag {
  width: 600px;
  font-size: 25pt;
}

.magin {
  font-size: 12pt;
}

.lcta-btn {
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: #171a20;
  color: #ffffff;
  font-size: 11pt;
  font-weight: 400px;
}
.lcta-btn:hover {
  background-color: #171a20;
  color: #ffffff;
}

.lbft {
  background-color: #171a20;
  color: #ffffff;
}
.lbft:hover {
  background-color: #171a20;
}

.cta-btn {
  text-decoration: none;
  padding: 9px 20px;
  background: #3e6ae1;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11pt;
  font-weight: 500;
}

.container {
  padding: 0 30px;
}

.landing-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f4f4f4 !important;
}

.lbc {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
}
.lbc:not(:first-child) {
  margin-top: 30px;
}

.lbc-content {
  padding-left: 100px;
}

.lbc-step {
  position: absolute;
  left: 0;
  top: 10px;
  font-family: "Comic Neue", cursive;
  color: #999999;
  font-size: 52px;
  line-height: 29px;
}

.lbc-sub {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 13px;
}

.lbc-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 17px;
}

.lbc-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 15px;
}

.pp {
  padding: 40px 0;
  position: relative;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/background/2.jpg);
  background-size: cover;
}
.pp::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 150px;
  width: 100%;
  content: "";
  background: #f4f4f4;
}

.pp-desc {
  color: #fff;
}

.sub {
  text-align: center;
  color: #3e6ae1;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.title {
  text-align: center;
  font-size: 16pt;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 17px;
}

.title-desc {
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
}

.pp-cards {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ppc-desc {
  width: 100%;
  padding: 30px;
}

.pp-img {
  width: 100%;
  height: auto;
  position: relative;
}
.pp-img:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.pp-img img {
  width: inherit;
  opacity: 0.4;
}

.pp-img-smt {
  background-color: #3e6ae1;
  color: #fff;
  position: absolute;
  padding: 9px 20px;
  top: 50px;
  font-size: 10pt;
  left: -10px;
}
.pp-img-smt p {
  font-weight: 500;
  letter-spacing: 1.5px;
  margin: 0;
}

.pp-card {
  flex: 0 1 300px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1490196078);
  transition: all 0.5s;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  margin: 10px;
  margin-bottom: 30px;
}

.pp-btn {
  width: 100%;
  border: 1px solid #3e6ae1;
}

.ppc-title {
  font-weight: 600;
  font-size: 13pt;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.caption {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  padding: 15px 0;
}
.caption div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid rgb(196, 201, 202);
}
.caption div span:first-child {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 10pt;
  line-height: 14px;
}
.caption div span:last-child {
  font-size: 9pt;
  font-weight: 300;
  line-height: 13px;
  margin-top: 7px;
}
.caption div:last-child {
  border: none;
}

.video {
  padding: 40px 0;
  padding-bottom: 50px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(../assets/images/background/3.jpg);
  background-size: cover;
  position: relative;
}
.video::after {
  content: "";
  position: absolute;
  height: 120px;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #115732 -10%, #7aaf3e 110%);
}

.video-desc {
  color: #fff;
  max-width: 650px;
  margin: 40px auto;
}
.video-desc h1 {
  font-size: 18pt;
  font-weight: 400;
}

.bg-section {
  position: relative;
  background-image: url("../assets/images/background/1.jpg");
  overflow: hidden;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.video-sect {
  position: relative;
  display: flex;
  justify-content: center;
}

.video-card {
  max-width: 400px;
  background-color: #171a20;
  color: #fff;
  position: relative;
  margin-bottom: 10px;
  z-index: 100;
}

.vcias {
  min-width: 100% !important;
}

.vid-card-img img {
  width: 100%;
}

.vid-card-desc {
  padding: 30px 20px;
}
.vid-card-desc h2 {
  font-weight: 500;
  font-size: 16pt;
}
.vid-card-desc p {
  font-size: 11pt;
  font-weight: 300;
}

.abu {
  background-color: #f4f4f4 !important;
  padding-top: 50px;
}

.abu-title .title {
  color: #555555;
}

.ab-desc {
  font-size: 16px;
  line-height: 2;
  color: #797979;
  margin-bottom: 14px;
}
.ab-desc ul {
  margin-left: -10px;
}

.counter {
  margin-top: 50px;
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.counter-video-overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(17, 51, 34, 0.4);
  z-index: 2;
}

.counter-video {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
}

.count-items {
  position: relative;
  z-index: 9;
}

.counting {
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}

.count {
  color: #ffffff;
}

.count-percent {
  font-weight: 300;
  font-size: 20pt;
}

.count-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .count {
    margin-bottom: 30px;
  }
}
.ourVision {
  padding-top: 30px;
  background: linear-gradient(135deg, #0a0e27 0%, #1a3a52 50%, #2d5a7b 100%);
  position: relative;
}
.ourVision::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  opacity: 15%;
  background-image: url("../assets/images/symbol.svg");
  background-size: cover;
  top: 0;
  left: 0;
}

.ov-title {
  font-size: 18pt;
  font-weight: 400;
}

.ov-top {
  padding: 50px 0;
}

.ov-sub {
  text-align: left;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 500;
}

.ov-ts {
  text-align: left;
  font-size: 18pt;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.ov-divide {
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.ov-btm {
  margin: 30px 0;
}

.ov-btm-order {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  max-width: 300px;
  margin-right: 50px;
}

.ov-img {
  background-image: url("../assets/images/hexagon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  height: 9.375rem;
  width: 8.125rem;
  margin-right: 10px;
}

.ov-txt {
  color: #fff;
}

.icon {
  width: 5.25rem;
  height: 5.25rem;
  flex: 0 0 5.25rem;
  color: #4a9eff;
  fill: currentColor;
}

@media (min-width: 999px) {
  .ov-wrap {
    display: flex;
  }
  .ov-btm-order:nth-child(2) {
    flex-direction: row-reverse;
    margin-top: 100px;
  }
  .ov-btm-order:nth-child(2) .ov-img {
    margin-left: 10px;
  }
  .ov-btm {
    margin: 30px 0;
  }
  .ov-btm .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.farms {
  margin: 30px 0;
  background-image: url("../assets/images/map.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.farms h4 {
  font-size: 18pt;
  font-weight: 400;
}

.farmLinks {
  list-style: none;
  padding: 0;
}
.farmLinks li {
  font-size: 18pt;
  font-weight: 300;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  color: #fff;
}
.farmLinks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 30px;
  background-image: url("../assets/images/li-arr.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.modal-full {
  min-width: 100%;
  margin: 0;
}

.modal-full .modal-content {
  min-height: 90vh;
}

.mod-img {
  width: 100%;
}

.mod-specs {
  padding: 20px 0;
}
.mod-specs h2 {
  font-size: 15pt;
  font-weight: 500;
}
.mod-specs p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 300;
}

.ms-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-top: 1px solid #dfdfdf;
  font-family: "Rubik", sans-serif;
}

.ov-location {
  padding: 30px 0;
  background: linear-gradient(to bottom, rgba(62, 106, 225, 0) 0%, #171a20 100%);
}

.wtf-maps {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.wtf-map-item {
  display: flex;
  flex: 1 0 50%;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

@media (min-width: 999px) {
  .wtf-map-item {
    flex: 25%;
  }
}
.mi-txt {
  margin-top: 10px;
}
.mi-txt h6 {
  text-transform: uppercase;
  color: #fff;
}

.mi-img {
  background-image: url("../assets/images/hexagon-alt.svg");
}
.mi-img img {
  width: 100%;
}

.services {
  padding: 40px 0;
  background-color: #fefefe;
}
.services .col-sm-12 {
  position: relative;
}
.services .col-sm-12::before {
  content: "";
  position: absolute;
  opacity: 10%;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background-image: url("../assets/images/blob.svg");
  background-repeat: no-repeat;
}

.bene {
  font-weight: 400;
}

.s-card {
  margin-bottom: 47px;
  background-color: #f4f4f4;
  padding: 30px 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sc-img {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-title {
  color: #222;
  font-size: 14pt;
  font-weight: 500;
  margin-bottom: 14px;
}

.sc-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

.sc-content {
  text-align: center;
}

.rep {
  padding: 40px 0;
  background-color: #17222e;
}

.rep-desc {
  margin-bottom: 40px;
}
.rep-desc h1 {
  color: #fff;
}

.rep-card {
  margin-bottom: 47px;
  position: relative;
}

.rc-icon {
  position: absolute;
  top: 0;
  left: 0;
}
.rc-icon img {
  max-width: 64px;
  height: auto;
  position: relative;
}

.rc-title {
  color: #fff;
  font-size: 14pt;
  line-height: 29px;
  font-weight: 500;
  margin-bottom: 14px;
}

.rc-content {
  font-size: 18px;
  color: #e7f4ee;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  padding-left: 80px;
}

.rc-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
}

.ra {
  margin-bottom: 40px;
  padding: 40px 0;
}

.table-container {
  overflow-x: scroll;
}

#investors {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 0;
  margin-bottom: 0;
}

#investors th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #3e6ae1;
  color: white;
  font-size: 11pt;
}

#investors td,
#investors th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 8pt;
}

table tbody tr td,
table tbody tr td {
  font-size: 13px;
  font-weight: 600;
  line-height: 26px;
  color: #797979;
}

td img {
  height: 20px;
}

.ltc {
  padding: 40px 0;
  background-color: #171a20;
}

.ltc-desc h1 {
  color: #fff;
}

.mq {
  padding: 40px 15px 50px;
  color: rgb(237, 237, 237);
  background-color: #171a20;
  z-index: 1;
}
.mq h2 {
  font-size: 16pt;
  font-weight: 400;
}

.mq-spe {
  color: #fff;
  background-color: #171a20;
}

.mq-quote {
  position: relative;
}
.mq-quote h2 {
  font-size: 14pt;
  font-weight: 400;
}

.mq-quote::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  top: 10px;
  left: 10px;
  z-index: -1;
  opacity: 0.1;
  background-image: url("../assets/images/quote-svgrepo-com.svg");
}

.quote {
  font-size: 11pt;
  font-weight: 300;
}

@media screen and (max-width: 550px) {
  .outter75 {
    margin-left: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
  .inner75 {
    justify-content: flex-start;
  }
  .since75 {
    margin-right: 20px;
    width: 90px;
  }
  .bgg3 {
    background-position: center !important;
    background-size: cover !important;
  }
}
@media (min-width: 500px) {
  .quote {
    font-size: 16pt;
  }
}
.ltc-cnt {
  margin: 0 auto;
}

.contact {
  display: block;
  position: relative;
}

.contact-desc {
  padding: 90px 0;
  position: relative;
}
.contact-desc .sub {
  margin-bottom: 15px;
  font-size: 11pt;
  font-weight: 500;
  color: #3e6ae1;
}
.contact-desc .contact-title {
  margin-bottom: 50px;
  font-size: 20pt;
  color: #171a20;
  font-family: "rubik", sans-serif;
  letter-spacing: -0.015em;
  font-weight: 400;
  line-height: 1.3em;
}
.contact-desc .cta-btn {
  letter-spacing: 0.1em;
  background-color: transparent;
  color: #3e6ae1;
  border: 1px solid #3e6ae1;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 11pt;
  transition: background-color 0.5s ease;
}
.contact-desc .cta-btn:hover {
  background-color: #3e6ae1;
  color: #fff;
  text-decoration: none;
}
.contact-desc::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 230px;
  width: 230px;
  background-image: url("../assets/images/contact.svg");
  background-position: center;
  background-size: cover;
  opacity: 80%;
  z-index: -1;
}

.contact-cnt {
  display: flex;
}

@media (min-width: 999px) {
  .contact-desc {
    flex: 0 1 50%;
  }
  .contact-illus {
    height: auto;
    flex: 0 1 50%;
    width: 50%;
    background-image: url("../images/Homepage-Social-Image-Day-Hero-Cybertruck-NA-EMEA.jpeg");
    background-size: cover;
  }
}
footer {
  padding-top: 60px;
  background-color: #171a20;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 140px;
  padding: 10px;
  background-color: #fff;
  border-radius: 2px;
}

.widget-title h5 {
  font-size: 13pt;
  font-weight: 400;
}

.widget-content p {
  line-height: 2;
  font-size: 9pt;
  letter-spacing: 1.5px;
}

.widget-content a {
  color: #3e6ae1;
  font-size: 9pt;
  text-decoration: none;
}
.widget-content a:hover {
  color: #fff;
  text-decoration: underline;
}

.widget-content ul {
  list-style-type: none;
  margin-left: -30px;
}
.widget-content ul li {
  margin-bottom: 10px;
}

.widget-title {
  font-size: 15pt;
  margin-bottom: 2rem;
}

@media (max-height: 778px) {
  .footer--widget {
    margin-bottom: 30px;
  }
}
.footer-bottom {
  border-top: 1px solid #ffffff;
}

@media (min-width: 764px) {
  .landing-sub {
    font-size: 20px;
  }
  .lst {
    font-size: 17px;
  }
  .landing-title {
    font-size: 30pt;
  }
  .sub {
    font-size: 18px;
  }
  .title {
    font-size: 36px;
  }
  .title-desc {
    font-size: 13pt;
  }
  .sc-title {
    font-size: 24px;
  }
  .sc-desc {
    font-size: 15px;
  }
  .rc-desc {
    font-size: 15px;
  }
  .rc-title {
    font-size: 22px;
  }
  .mq h2 {
    font-size: 28pt;
    margin-bottom: 2.5rem !important;
  }
}
@media (min-width: 1000px) {
  .landing-title {
    font-size: 50px;
  }
}
.mapembed {
  display: flex;
  width: 100%;
  justify-content: center;
}

.team {
  padding: 40px 0;
  background: #f4f4f4;
}

.team-header {
  margin-bottom: 2rem;
  color: rgb(37, 37, 37);
}

.team-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  flex: 1 0 1fr;
  max-width: 320px;
  margin: 1rem 10px;
  background-color: #171a20;
}

.team-card-img img {
  width: 100%;
}

.team-card-desc {
  padding: 15px 20px;
  color: #fefefe;
}
.team-card-desc h2 {
  font-size: 15pt;
  font-weight: 400;
}
.team-card-desc p {
  font-size: 9pt;
  font-weight: 300;
}

iframe {
  width: 100%;
  height: 315px;
}

@media (min-width: 999px) {
  .s-row > * {
    padding: 20px;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  height: 5px;
}

.swiper-scrollbar-drag {
  background: #3e6ae1;
  border-radius: 10px;
  height: 100%;
}

.landing {
  height: calc(90vh - 64px);
}

.carousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 100%;
}

.carousel-item {
  position: relative;
}

.ci-screen {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
}

.carousel-item img {
  position: relative;
  background-color: rgba(23, 26, 32, 0.64);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: -1;
}

.ct {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  padding-right: 60px;
  padding-left: 40px;
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 92%;
}

.cta-btn {
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 450px) {
  .ct {
    min-width: 450px;
    max-width: 800px;
    width: 70%;
  }
}
@media (min-width: 550px) {
  .ct {
    margin: 0 15px;
  }
}
.landing-title {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
  margin-top: 20px;
}

.text-sub {
  font-size: 15px;
  letter-spacing: 1.3px;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .landing-title {
    font-size: 30px;
  }
  .text-sub {
    font-size: 18px;
  }
}
@media (min-width: 999px) {
  .landing-title {
    font-size: 50px;
  }
}
.services h1 {
  font-size: 20pt;
}
.services img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.services h4 {
  font-size: 15pt;
  font-weight: 400;
}
.services .intman {
  font-weight: 300;
}

@media (min-width: 799px) {
  .services h1 {
    font-size: 25pt;
  }
}
.s-text {
  margin-bottom: 30px;
}

.title-sub {
  text-align: center;
}

.icon-box {
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}

@media (min-width: 800px) {
  .icon-box {
    margin: 20px;
  }
}
.box-icon img {
  height: 40px;
  margin-bottom: 10px;
}

.box-header {
  margin-bottom: 20px;
}

.box-body {
  font-size: 14px;
}

.icon-box:before,
.icon-box:after {
  content: "";
  position: absolute;
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  border: 1px solid #f4f4f4;
  pointer-events: none;
  transition: 0.33s all ease;
}

.icon-box:before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.icon-box:after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

@media screen and (max-width: 960px) {
  .bgg3 {
    background-position: center !important;
    background-size: cover !important;
  }
}/*# sourceMappingURL=style.css.map */