* {
  backface-visibility: hidden;
  transition: all .2s linear;
  list-style: none;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

html,
body {
  overflow-x: hidden;

}

a {
  text-decoration: none;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999999999;
  opacity: 1;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.logo-wrapper img {
  display: block;
  width: 200px;
}

.nav-links-1 {

  background-color: #000000;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row-reverse;
  display: none;
}

.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* NAVIGATION */
.nav {
  width: 100%;
  min-height: 80px;
  position: fixed;
  background-color: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
}

.nav img {
  height: 80px;
  margin: 0px 0px 0px 20PX;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: #ffffff5f;
  border-radius: 5px;
}

.shadow_base {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
}

.nav_shadow {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.nav_unactive {
  background-color: #0000000c;
  top: 0px;
}

.nav_active {
  background-color: #fff;
  top: 0px;
}

/* Links inside nav (both states) */
.nav_unactive a:not(.main-button),
.nav_active a:not(.main-button) {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 300 !important;
  font-size: 1.1rem;
  margin: 0 15px 0 20px;
  padding: 15px 0;
  border-radius: 20px;
  transition: all .5s linear;
  cursor: pointer;
  text-decoration: none;
}

.nav_unactive a:not(.main-button) {
  color: #001737;
}

.nav_active a:not(.main-button) {
  color: #000;
}

/* Underline animation */
.nav_unactive a:not(.main-button)::before,
.nav_active a:not(.main-button)::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 4px;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .5s ease-in-out;
}

.nav_unactive a:not(.main-button)::before {
  background-color: #ffc800;
}

.nav_active a:not(.main-button)::before {
  background-color: #002952;
}

.nav_unactive a:hover::before,
.nav_active a:hover::before {
  transform: scaleX(1);
}

.nav_unactive a.active::before,
.nav_active a.active::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* MAIN BUTTON */
.main-button,
.nav_active .main-button,
.nav_unactive .main-button {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  padding: 10px 15px;
  background-color: #f8b600;
  color: #fff;
  border-radius: 100px;
  transition: all .2s linear;
  cursor: pointer;
  text-decoration: none;
}

.main-button:hover {
  background-color: rgb(0, 27, 65);
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.6);
}

#applybtn {
  margin-right: 30px;
}

/* NAV LINKS LARGE */
.nav-links-large {
  display: flex;
  height: 80px;
  margin: 0 10px 0 30px;
  align-items: center;
}

/* DROPDOWN */
#servicesdropdown {
  position: fixed;
  width: 100%;
  top: 86px;
  left: 0;
  display: flex;
  justify-content: center;
  min-height: 300px;
  z-index: 3;
}

.dropdown-content {
  background-color: #f9f9f9;
  min-width: 88%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 0 30px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-active {
  animation: dropdownactive .5s forwards;
}

.dropdown-unactive {
  animation: dropdownunactive .5s forwards;
}

.active {
  position: relative;
}

.active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 4px;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform .5s ease-in-out;
  background-color: currentColor;
}

@keyframes dropdownactive {
  0% {
    opacity: 0;
    min-height: 0;
  }

  100% {
    opacity: 1;
    min-height: 300px;
  }
}

@keyframes dropdownunactive {
  0% {
    opacity: 1;
    height: 300px;
  }

  100% {
    opacity: 0;
    height: 0;
    display: none;
  }
}

/* MOBILE MENU */
.mobile_menu {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 300 !important;
  font-size: 2.1rem;
  padding: 5px 15px;
  border: 0;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  transition: all .5s linear;
}

#mobile_menu {
  margin-right: 10px;
}

/* RESPONSIVE */
@media screen and (max-width: 1095px) {
  .nav-links-large {
    display: none;
  }

  .mobile_menu {
    display: block;
  }
}

@media screen and (max-width: 580px) {
  #applybtn {
    display: none;
  }
}

.permanent-underline {
  position: relative;
  display: inline-block;
}

.permanent-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 4px;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform .5s ease-in-out;
  background-color: currentColor;
  /* Matches the text color */
}

.parallax {
  width: 100%;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.dropdown {
  position: relative;
  display: inline-block;
}

#servicesdropdown {
  position: fixed;
  width: 100%;
  top: 86px;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  min-height: 300px;
}

.dropdown-content {
  overflow: hidden;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 88%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin: 30px;
  margin-top: 0px;

}

.startup {
  height: 0px;
}

.dropdown-active {
  animation: dropdownactive .5s ease 0s 1 normal forwards;
}

@keyframes dropdownactive {
  0% {
    opacity: 0;
    min-height: 0px;

  }

  100% {
    opacity: 1;
    min-height: 300px;
  }
}

.dropdown-unactive {
  animation: dropdownunactive .5s ease 0s 1 normal forwards;
}

@keyframes dropdownunactive {
  0% {
    opacity: 1;
    height: 300px;

  }

  100% {
    opacity: 0;
    height: 00px;
    display: none;
  }
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1
}

.main-button {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  padding: 10px 20px;

  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #0084f8;
  color: #fff;
  border-radius: 20px;

  transition: all .2s linear;

  cursor: pointer;
}

#applybtn {
  margin-right: 30px;
}



.mobile_menu {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 300 !important;
  font-size: 2.1rem;
  margin: 5px;
  margin-left: 5px;
  margin-right: 15px;
  border-radius: 5px;
  transition: all .5s linear;
  z-index: 100;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 0px;
  padding-top: 5px;
  padding: 5px 15px;
  margin-top: 0px;
  border: 0;
  background-color: #ffff;
}

.side-menu {
  right: 0;
  height: 110vh;
  z-index: 99;
  background-attachment: fixed;
  background-image: url(../media/side-menu-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  transition: all .3s linear;
}

.side-menu-active {
  width: 101%;
  transition: all .3s linear;
}

.side-menu-unactive {
  width: 0%;
  transition: all .3s linear;
}

.side-menu-links {
  width: 90%;
  margin: auto;
  height: 530px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
}

.side-menu-links a:not(.side-main-button) {
  min-width: 250px;
  color: black;
  font-family: 'Poppins', sans-serif;
  font-weight: 300 !important;
  font-size: 1.1rem;
  margin: 5px;
  margin-left: 20px;
  margin-right: 15px;
  border-radius: 20px;
  transition: all .5s linear;
  z-index: 100;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 0px;
  padding-top: 5px;
  padding: 15px 0px;
  margin-top: 0px;
}

.side-main-button {
  min-width: 250px;
  WIDTH: 85%;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #0084f8;
  color: #fff;
  border-radius: 10px;
  transition: all .2s linear;
  cursor: pointer;
  MARGIN-TOP: 10PX;
}

.side-menu-social-links {
  min-width: 250px;
  margin-top: 20px;
}

.side-menu-social-links a {
  color: black;
  font-family: 'Poppins', sans-serif;
  font-weight: 300 !important;
  font-size: 1.1rem;
  transition: all .5s linear;
  cursor: pointer;
}

.side-menu-links a:not(.side-main-button):hover {
  color: #0080ff;
}

.footer-logo-holder {
  width: 100%;
  max-width: 165px;
  height: 200px;
  background-image: url(../media/logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-logo-holder h1 {
  margin: 0px;
  margin-top: 20px;
  color: #ffffff5b;
  border: 0PX;
  font-family: 'Poppins', sans-serif;
  font-weight: 100 !important;
  line-height: 20px;
  font-size: .9rem;
  text-align: left;
  margin-bottom: 0;
  max-width: 197px;
  margin-left: 3px;
}

footer {
  width: 100%;
  min-height: 600px;
  background-image: url(../media/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 5px solid #002952;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;

  position: relative;
  /* important for overlay */
  z-index: 0;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
  z-index: 1;
}

footer * {
  position: relative;
  /* ensures footer content stays above overlay */
  z-index: 2;
}

@media screen and (min-width: 1095px) {
  .side-menu {
    right: 0;
    height: 110vh;
    z-index: 99;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: all .3s linear;
  }

  .side-menu-active {
    width: 500px;
    transition: all .3s linear;
  }
}

@media screen and (max-width: 1095px) {
  .nav-links-large {
    display: none;
  }

  .nav_unactive {
    background-color: #0000000c;
    top: 0px;
  }

  .nav-links-1 {
    display: none;
  }

  .mobile_menu {
    display: block;
  }

  .nav img {
    height: 80px;
    margin: 0px 0px 0px 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    background-color: #ffffff5f;
    border-radius: 5px;
  }
}

@media screen and (max-width: 580px) {
  #applybtn {
    display: none;
  }

  .nav_unactive {
    background-color: #ffffff00;
    box-shadow: none;
  }
}

@media screen and (max-height: 470px) {
  .side-menu-links {
    width: 90%;
    margin: auto;
    height: 500px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
  }

  .side-menu-links a:not(.side-main-button) {
    min-width: 70px;
  }
}

.footer-section {
  width: 95%;
  margin: 20px;
  min-height: 350px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  z-index: 1;
}

.footer-fields {
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 40px;
  width: 100%;
  max-width: 200px;
  max-height: 300px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.footer-fields p {
  color: #ffff;
}

.footer-fields hr {
  border: 1px solid #01487e;
  width: 100%;
}

.footer-fields h1 {
  margin: 0px;
  color: #000000;
  border-bottom: 4px solid rgba(0, 247, 255, 0.423);
  font-family: 'Poppins', sans-serif;
  font-weight: 100 !important;
  line-height: 30px;
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 20px;
  margin-top: 30px;
  width: 100%;
  text-align: left;
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-fields a {
  font-family: 'Poppins', sans-serif;
  font-weight: 100 !important;
  line-height: 20px;
  font-size: .9rem;
  color: #ffffff;
  text-decoration: none;
  margin: 10px;
  margin-top: 10px;
  transition: all .3s linear;
}

.footer-fields a:hover {
  color: rgb(0, 162, 255);
  transition: all .3s linear;
}

#infofooter {
  max-width: 480px;
}

#infofooter b {
  font-family: 'Poppins', sans-serif;
  font-weight: 100 !important;
  line-height: 20px;
  font-size: .9rem;
  color: #ffffff;
  text-decoration: none;
}

#copyrights {
  max-width: 1025px;
  text-align: left;
  margin-top: 50px;
}

#copyrights {
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 100 !important;
  line-height: 20px;
  font-size: .9rem;
  color: #ffffff;
  text-decoration: none;
}

#sociallinksfooter {
  justify-content: flex-start;
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: center;
  min-height: 65px;
}

.contact-social-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.contact-social-list li {
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.contact-social-list a {
  color: #ffffffbc;
  font-size: 13px;
  transition: color 0.3s;
  text-decoration: none;
}

.contact-social-list a:hover {
  color: #ffd900;
}

.contact-social-list strong {
  margin-right: 10px;
}

.contact-social-list strong,
.contact-social-list b {
  color: rgb(255, 255, 255);
  font-size: 13px;
}

.contact-social-list b {
  margin-left: 5px;
  margin-right: 5px;
}

.circle {
  font-size: 5px;
  color: rgb(38, 38, 38);
  margin: 0 5px;
}

/* ---------- RESPONSIVE ---------- */
@media screen and (max-width: 900px) {
  #language-dropdown {
    font-size: 10px;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 600px) {
  .contact-social-list li a {
    font-size: 11px;
  }
}

@media screen and (max-width: 1179px) {
  #copyrights {
    max-width: 760px;
  }
}

@media screen and (max-width: 885px) {
  #copyrights {
    max-width: 480px;
  }
}

@media screen and (max-width: 589px) {
  #infofooter {
    max-width: 200px;
  }

  #copyrights {
    max-width: 325px;
    text-align: center;
  }

  #sociallinksfooter {
    justify-content: center;
    width: 100%;
  }
}

.side-menu-links h4 div {
    /* min-width: 200px; */
    width: fit-content;
    min-width: 300px;
    padding: 14px;
    /* background-color: azure; */
    border-radius: 20px;
    /* box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.6); */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
.side-menu-links h4 {
    width: 100%;
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    min-width: 300px;
}
.side-menu-links h4 div img{
  width: 100%;
  max-width: 35vh;
}
.side-menu-links h4 div b{
  margin-top: 10px;
  background-color: #ffffff;
  width: 100%;
  color: #000;
  padding: 10px;
}
.side-menu-links h4 b{
  margin-top: 10px;
  background-color: #f8b600;
  width: 80%;
  color: #000;
  padding: 10px;
}