#header {
  background-color: var(--basic-dark);
  font-size: 48px;
  height: 100vh;
}

#hero {
  background-image: url("../../assets/img/hero-bg-mobile.svg"); /* Make this img url relevant to the css folder */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  min-height: 700px;
  color: var(--basic-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin-top: -30px;
}

#main-header {
  position: absolute;
  top: 0px;
  width: 100%;
}

#main-header-content {
  display: flex;
  justify-content: space-between;
}

#main-header-content a {
  color: var(--basic-dark);
  text-decoration: none;
}

#main-header.sticky {
  background: var(--basic-dark);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0px;
  padding-bottom: 0px;
}

#main-header.sticky #main-header-content {
  height: 65px;
}

#main-header.sticky #main-header-content a {
  color: var(--basic-light-whitevar);
  white-space: nowrap;
}

#main-header.sticky #main-header-content a.get-in-touch {
  color: var(--basic-dark);
}

#main-header .burger-menu-sticky,
#main-header .logo-sticky {
  display: none;
}

#main-header.sticky img.burger-menu-non-sticky,
#main-header.sticky img.logo-non-sticky {
  display: none;
}

#main-header.sticky img.burger-menu-sticky,
#main-header.sticky img.logo-sticky {
  display: inline-block;
}

.logo {
  font-size: 0px;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary);
}

.desktop-navitems {
  display: none;
}

.get-in-touch {
  display: flex;
  justify-content: center;
  border: 2px solid var(--basic-dark);
  border-radius: 12px;
  padding: 8px 24px 8px 24px;
  border-width: 2px;
  font-size: 18px;
  text-decoration: none;
  color: var(--basic-dark);
}

.get-in-touch:hover {
  background-color: #06ba9e;
  cursor: pointer;
}

.get-in-touch:active {
  background-color: var(--basic-dark);
  color: var(--basic-light) !important;
}

.get-in-touch-arrow {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-top: 7px;
  margin-left: 10px;
  -webkit-mask: url("../../assets/img/get-in-touch-arrow.svg") no-repeat center /
    contain;
  mask: url("../../assets/img/get-in-touch-arrow.svg") no-repeat center /
    contain;
  background-color: currentColor;
}

.get-in-touch-mobile {
  position: absolute;
  bottom: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.get-in-touch-mobile .get-in-touch-arrow {
  margin-top: 5px;
}

.get-in-touch-mobile .get-in-touch {
  width: 100%;
  margin-left: var(--container-pl);
  margin-right: var(--container-pr);
}

#hero-text-container {
  width: 100%;
}

.hero-text {
  font-weight: 500;
  max-width: 320px;
  line-height: 120%;
  background-color: var(--basic-light);
}

.hero-text strong {
  font-weight: 800;
}

.main-navigation-mobile a.active,
.main-navigation-desktop a.active {
  font-weight: 600;
}

.burger-menu {
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}

.burger-menu:hover {
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(2px);
  background: #00000066;
  height: 100vh;
}

.mobile-menu-container {
  position: fixed;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: #010e1b;
  box-shadow: -4px 10px 15px 0px #00000026;
  width: 100%;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-bottom: 15px;
}

#main-header.sticky .mobile-menu {
  margin-top: 0;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--paragraph-light-typical);
  text-decoration: none;
  font-size: 20px;
  margin: 1rem 0;
  padding: 5px 34px;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--basic-light-whitevar);
  font-weight: 600;
}

.mobile-logo {
  position: absolute;
  bottom: 70px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.mobile-logo span {
  color: var(--secondary);
}

.close-menu {
  padding-right: var(--container-pr);
  cursor: pointer;
  transition: transform 0.3s;
}

.close-menu:hover {
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  #header {
    font-size: 72px;
  }

  #hero {
    background-image: url("../../assets/img/hero-bg-desktop.svg");
    height: 100vh;
    margin-top: 0px;
  }

  .desktop-navitems {
    display: flex;
    font-size: 20px;
    align-items: center;
    font-weight: 600;
  }

  .desktop-menu {
    padding: 0.3rem 20px 0.3rem 0px;
    display: flex;
    gap: 20px;
    background-color: var(--basic-light);
  }

  .desktop-menu a {
    padding: 0.5rem 0;
  }

  .get-in-touch {
    font-size: 20px;
    width: auto;
    background-color: var(--basic-light);
  }

  #main-header.sticky .get-in-touch {
    background-color: var(--basic-light);
    color: var(--basic-dark) !important;
    border-style: none;
  }

  #main-header.sticky .get-in-touch:hover {
    background-color: #06ba9e;
  }

  #main-header.sticky .get-in-touch:active {
    background-color: var(--basic-dark);
    color: var(--basic-light) !important;
  }

  .get-in-touch-mobile {
    display: none;
  }

  .burger-menu {
    display: none;
  }

  #main-header {
    padding-top: 43px;
    padding-bottom: 136px;
  }

  #main-header.sticky {
    background: var(--basic-dark-sthead);
  }

  #main-header.sticky #main-header-content {
    height: 80px;
  }

  #main-header.sticky .desktop-menu {
    background-color: transparent;
    backdrop-filter: unset;
    border-style: none;
  }

  #main-header.sticky .desktop-menu a {
    color: #141d52;
  }

  #main-header.sticky .desktop-menu a:hover {
    font-weight: 600;
  }

  .desktop-menu a:hover {
    color: #cdd1d6;
  }

  .desktop-menu a:hover:after {
    width: 100%;
  }

  .logo img {
    width: 146px;
    height: auto;
  }

  .hero-text {
    max-width: 580px;
  }
}

@media (min-width: 992px) {
  .desktop-menu {
    gap: 48px;
    padding-right: 48px;
  }
}
