@font-face {
  font-family: "Humane Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Humane Regular"), url("/fonts/humane/Humane-Regular.woff") format("woff");
}
@font-face {
  font-family: "Humane Light";
  font-style: normal;
  font-weight: normal;
  src: local("Humane Light"), url("/fonts/humane/Humane-Light.woff") format("woff");
}
@font-face {
  font-family: "Humane Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Humane Medium"), url("/fonts/humane/Humane-Medium.woff") format("woff");
}
@font-face {
  font-family: "Satoshi Light";
  font-style: normal;
  font-weight: normal;
  src: local("Satoshi Light"), url("/fonts/satoshi/Satoshi-Light.woff") format("woff");
}
@font-face {
  font-family: "Satoshi Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Satoshi Regular"), url("/fonts/satoshi/Satoshi-Regular.woff") format("woff");
}
@font-face {
  font-family: "Satoshi Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Satoshi Medium"), url("/fonts/satoshi/Satoshi-Medium.woff") format("woff");
}
@font-face {
  font-family: "Satoshi Bold";
  font-style: normal;
  font-weight: 700;
  src: local("Satoshi Bold"), url("/fonts/satoshi/Satoshi-Bold.woff") format("woff");
}
@font-face {
  font-family: "Satoshi Black";
  font-style: normal;
  font-weight: 900;
  src: local("Satoshi Black"), url("/fonts/satoshi/Satoshi-Black.woff") format("woff");
}
@font-face {
  font-family: "Morganite medium";
  font-style: normal;
  font-weight: normal;
  src: local("Morganite Light"), url("/fonts/morganite/Morganite-SemiBold.ttf") format("woff");
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-item {
  list-style-type: none;
}

.navbar {
  font-family: "Montserrat";
  margin-top: 0px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .navbar {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1800px) {
  .navbar {
    margin-top: 40px;
  }
}

.nav-link {
  color: white !important;
}
.nav-link:hover {
  background-color: #36e2c8 !important;
  color: #275485 !important;
}

.navbar-logo {
  width: 50px;
}

.navbar-nav {
  gap: 50px;
}

.dropdown-menu {
  background-color: transparent;
  border: none;
}

.dropdown-item {
  font-size: 12px;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: white;
}
.dropdown-item:hover {
  color: #36e2c8 !important;
  background-color: transparent !important;
}

.navbar-wrapper {
  flex-direction: row-reverse;
  padding: 0px 20px 0px 20px;
}
@media screen and (min-width: 992px) {
  .navbar-wrapper {
    flex-direction: row-reverse;
    padding: 0px 80px 0px 80px;
  }
}

.navbar-light .navbar-toggler {
  border-color: transparent;
}

.navbar-expand-lg .navbar-toggler {
  display: block;
}

.navbar-collapse {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .navbar-collapse {
    display: unset;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOutToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
  }
}
.slide-out-left {
  animation: slideOutToLeft 0.5s ease-out forwards !important;
}

#overlay {
  animation: slideInFromLeft 0.5s ease-out forwards;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.overlay-content a {
  padding: 8px;
  font-size: 24px;
  display: block;
  transition: 0.3s;
}

.overlay-content a:hover, .overlay-content a:focus {
  color: #f1f1f1;
}

.dropdown-menu {
  visibility: hidden;
  text-align: center;
  padding-top: 20px;
  background-color: rgba(17, 56, 120, 0.4);
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: transparent !important;
  color: #36e2c8;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 100%; /* Align the dropdown below the main link */
  left: 50%; /* Position the dropdown's left edge in the center */
  transform: translateX(-50%); /* Center the dropdown */
}

.navbar-toggler:focus {
  box-shadow: none;
}

.menu_nav_icons {
  font-size: unset;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.menu_nav_icons img {
  height: 40px;
  width: 40px;
}
@media (min-width: 768px) {
  .menu_nav_icons {
    justify-content: flex-end;
  }
  .menu_nav_icons div:not(:last-child) {
    margin-right: 10px;
  }
}
.menu_nav_icons div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  background-color: #efeee9;
}
.menu_nav_icons i {
  color: #354555;
}

.nav h6 {
  color: #36e2c8;
  margin-bottom: 20px;
}

ul {
  list-style: none !important;
}

.overlay li {
  cursor: pointer;
  font-size: 40px;
  font-weight: bold;
}

.parent-nav {
  color: #275485;
  padding-left: 0rem;
  font-weight: bold;
  font-size: 40px;
}

.parent-link {
  padding-left: 10px;
}
@media screen and (min-width: 992px) {
  .parent-link {
    padding-left: 70px;
  }
}
.parent-link a {
  color: #275485;
  text-decoration: none;
}
.parent-link:hover {
  color: #36e2c8;
  text-decoration: none;
}

.content {
  font-family: "Montserrat";
}

.parent-link-wrapper {
  padding: 0px 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .parent-link-wrapper {
    padding: unset;
  }
}

.selected {
  color: #36e2c8 !important;
}

.child-nav.active-child {
  max-height: 400px !important;
  padding: 10px 10px 10px 70px;
  margin: 10px 0px 10px 0px;
}

.active-child {
  padding: 10px 10px;
  max-height: 100vh !important;
}

.child-nav {
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, margin 0.5s ease-in-out;
  margin: 0px 0px 0px 0px;
  width: 100vw;
  background-color: #36e2c8;
  padding: 0px 10px 0px 70px;
  max-height: 0px;
  gap: 20px;
  overflow-y: auto;
  flex-direction: column;
  box-shadow: inset 200px 0px 253px -113px rgba(0, 0, 0, 0.13);
}
.child-nav li {
  margin: 15px 0px 15px 0px;
  font-size: 14px;
}
.child-nav a {
  font-weight: 500;
  text-decoration: none;
  color: white !important;
}
.child-nav a:hover {
  color: #275485 !important;
}
.child-nav:hover {
  color: #275485;
}

#close-nav {
  font-size: 70px;
  font-weight: bold;
  padding: 0px 25px 0px 0px;
  color: #36e2c8;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #close-nav {
    padding: 20px 80px 0px 0px;
  }
}

.spaceman {
  background-image: url(/images/spaceman.jpg?3fad13ca6a72fc36f1a4252feee15cf9);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.menu_contact_section {
  height: 50vh;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 80px;
  padding-bottom: 50px;
}

.menu_contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.menu_contact h6 {
  color: #36e2c8 !important;
}
.menu_contact ul {
  padding-left: 0rem;
  font-size: 12px;
}
.menu_contact .list a {
  color: white;
  text-decoration: none;
}

.menu-logo {
  width: 50px;
  margin: 45px 0px 0px 76px;
}

.show-more {
  width: 25px;
  text-align: center;
}
.show-more:hover {
  color: #36e2c8 !important;
  cursor: pointer;
}

.container {
  max-width: 100vw !important;
}

.footer {
  text-align: center;
  font-size: 0.8rem;
  padding: 40px 0px 10px 0px;
  color: #efeee9;
  font-family: "Satoshi Regular", sans-serif;
}
@media (min-width: 768px) {
  .footer {
    font-size: 0.4rem;
  }
}
@media (min-width: 992px) {
  .footer {
    font-size: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .footer {
    font-size: 0.6rem;
  }
}
@media (min-width: 1400px) {
  .footer {
    font-size: 0.8rem;
  }
}
.footer .tel {
  display: block;
  text-wrap: nowrap;
}
.footer .tel:before {
  display: none;
}
.footer .tel a {
  text-decoration: none;
  color: #efeee9;
}
@media (min-width: 768px) {
  .footer .tel {
    padding-left: 10px;
    padding-right: 30px;
    display: block;
    position: relative;
  }
  .footer .tel:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: white;
    left: -10px;
    top: 0%;
    position: absolute;
  }
  .footer .tel a {
    text-decoration: none;
    color: #efeee9;
  }
}
.footer .email {
  display: block;
  text-wrap: nowrap;
}
.footer .email:before {
  display: none;
}
.footer .email a {
  text-decoration: none;
  color: #efeee9;
}
@media (min-width: 768px) {
  .footer .email {
    padding-left: 10px;
    display: block;
    position: relative;
  }
  .footer .email:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: white;
    left: -10px;
    top: 0%;
    position: absolute;
  }
}
.footer .footer_links {
  display: flex;
  gap: 20px;
  flex-direction: column;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer .footer_links {
    flex-direction: row;
    align-items: center;
    padding-right: 20px;
  }
}
.footer .footer_links a {
  text-decoration: none;
  color: #efeee9;
  padding-left: 10px;
  padding-right: 10px;
}
.footer .footer_icons {
  font-size: unset;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer .footer_icons img {
  height: 30px;
  width: 30px;
}
@media (min-width: 768px) {
  .footer .footer_icons {
    justify-content: flex-end;
  }
  .footer .footer_icons div:not(:last-child) {
    margin-right: 10px;
  }
}
.footer .footer_icons div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  background-color: #efeee9;
}
.footer .footer_icons i {
  color: #354555;
}
.footer .footer-logo {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer .footer-logo {
    display: unset;
    justify-content: unset;
  }
}
.footer .footer_middle_section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  margin: 10px 0px 10px 0px;
}
@media (min-width: 768px) {
  .footer .footer_middle_section {
    flex-direction: row;
    margin: 0px;
  }
}

.footer_section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer_section {
    flex-direction: row;
  }
}

a:hover {
  color: #36e2c8;
}

html {
  scroll-behavior: smooth;
}

.main-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 0px 20px 0px 20px;
}
@media screen and (min-width: 768px) {
  .main-wrapper {
    padding: 50px;
  }
}
@media screen and (min-width: 992px) {
  .main-wrapper {
    padding: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .main-wrapper {
    padding: 0px 50px 0px 50px;
  }
}

main {
  font-family: "Montserrat";
  color: white;
}

.main-title {
  white-space: wrap !important;
}

#pureFullPage .nav {
  padding-right: 0px;
  z-index: 20;
}
@media screen and (min-width: 1800px) {
  #pureFullPage .nav {
    padding-right: 80px;
  }
}
#pureFullPage .nav p span {
  border-radius: 0px !important;
  width: 10px !important;
  height: 10px !important;
}
#pureFullPage .nav p.active span {
  background-color: #36e2c8 !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  pointer-events: unset !important;
}

.title {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .title {
    font-size: 60px;
  }
}

.main_subtitle {
  font-size: 12px;
  max-width: 900px;
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .main_subtitle {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .main_subtitle {
    font-size: 14px;
  }
}

.subtitle {
  font-size: 12px;
}
@media screen and (min-width: 960px) {
  .subtitle {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .subtitle {
    font-size: 14px;
  }
}

#backgoundVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #backgoundVideo {
    width: 100vw;
    height: 100vh;
  }
}

.item {
  text-align: center;
  border: 1px solid white;
  width: 165px;
  height: 300px;
  padding: 20px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .item {
    width: 175px;
    height: 320px;
  }
}
.item .icon {
  width: 60px;
  height: 60px;
}
.item .title {
  white-space: wrap;
  text-transform: uppercase;
  flex: 1;
  font-size: 12px;
  font-weight: 300;
}

.services {
  width: 100%;
  justify-content: space-between !important;
}

.custom-button {
  font-size: 14px;
  padding: 8px 8px;
  text-transform: uppercase;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 0px;
}
.custom-button:hover {
  text-transform: uppercase;
  border: 1px solid #36e2c8;
  background-color: #36e2c8;
  color: #275485;
  border-radius: 0px;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: unset !important;
  bottom: 40px !important;
  height: 1px !important;
  background: white;
}
@media screen and (min-width: 1400px) {
  .swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 60px !important;
  }
}
@media screen and (min-width: 1800px) {
  .swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 20px !important;
  }
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #36e2c8 !important;
  top: -2px !important;
  height: 5px !important;
}

.swiper-mb {
  margin-bottom: 40px;
}

.clients-swiper {
  max-height: 300px;
}
.clients-swiper a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}
.clients-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-button-next, .swiper-button-prev {
  color: white !important;
  font-size: 10px !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px !important;
}

footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  footer {
    flex-direction: unset;
    align-content: unset;
    flex-wrap: unset;
  }
}
footer a {
  text-decoration: none;
  color: white;
}
footer .navbar-logo {
  width: 100px;
  height: auto;
}
footer .footer_icons {
  font-size: unset;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
footer .footer_icons img {
  height: 40px;
  width: 40px;
}
footer h6 {
  color: #36e2c8;
  margin-bottom: 20px;
}
footer .list {
  padding-left: 0px;
  list-style: none;
  font-size: 14px;
}

.title-footer {
  font-size: 160px !important;
}

.text-below-title-footer {
  font-size: 30px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-hr {
  margin: 100px 0px 100px 0px;
  width: 100vw;
  color: white;
  opacity: 1;
  overflow: visible;
}
@media screen and (min-width: 1200px) {
  .footer-hr {
    margin: 20px 0px 20px 0px;
  }
}
@media screen and (min-width: 1800px) {
  .footer-hr {
    margin: 100px 0px 100px 0px;
  }
}

.page-flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-flex-column.footer-page {
  justify-content: flex-end;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .page-flex-column.footer-page {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1800px) {
  .page-flex-column.footer-page {
    padding-bottom: 80px;
  }
}

.page-header-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-header-row {
    flex-direction: row;
  }
}

.page-header-row-left {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.page-header-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper {
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  max-width: fill-available;
}
.swiper p {
  line-height: 1.2;
  font-weight: 300;
  font-size: 12px;
}

.what-we-do .swiper-wrapper {
  margin-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .what-we-do .swiper-wrapper {
    margin-bottom: 120px;
  }
}

.copyright {
  font-size: 12px;
  margin-top: 30px;
}

.page-height {
  height: 100vh !important;
}
@media screen and (min-width: 992px) {
  .page-height {
    height: unset;
  }
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(100px);
  }
}
svg #wheel {
  animation: scroll ease 1.5s infinite;
}

.item {
  position: relative;
}

.subtitle-container {
  color: #275485;
  display: none;
  padding: 10px;
  font-size: 12px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .subtitle-container {
    font-size: 12px;
    padding: 0px 20px 0px 20px;
  }
}

.item:hover {
  background-color: #36e2c8;
  color: #275485;
  opacity: 1;
  /* visibility: visible; */
}

.item:hover .subtitle-container {
  display: block;
  opacity: 1;
  visibility: visible;
}

.item:hover .icon {
  visibility: hidden;
  display: none;
}

.link {
  text-decoration: none;
  color: white;
}

.icon {
  width: 100%;
  height: auto;
  display: block;
}

a.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.page-content {
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
@media screen and (min-width: 992px) {
  .page-content {
    height: 100vh;
    margin-top: 0px;
  }
}
