@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

:root{
  --green: #0E723A;
  --light-green: #21A366;
  --white: #FFFFFF;
  --strong-gray: #242038;
  --header-color: #08024c;
  --header-height: 70px;
}

* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

.header {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  height: var(--header-height);
  width: 100%;
  z-index: 1000;
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
}

.header-wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
  margin: auto;
  max-width: 1400px;
}

.--margin-top{
  margin-top: var(--header-height);
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.header-logo-img{
  width: 9em;
  margin: 0 1em 0 3em;
}

.header-nav-list{
  display: flex;
  align-items: center;
  min-width: max-content;
  height: 100%;
  gap: 1.1em;
  margin-right: 1.5em;
}

.header-nav-list-item{
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
  transition: 75ms color ease-in;
  -webkit-transition: 75ms color ease-in;
  -moz-transition: 75ms color ease-in;
  -ms-transition: 75ms color ease-in;
  -o-transition: 75ms color ease-in;
}

.header-nav-list-item-drop-title:hover + .header-nav-list-item-drop-list, 
.header-nav-list-item-drop-list:hover{
  display: block;
}

.header-nav-list-item-drop-list{
  display: none;
  position: absolute;
  top: 21px;
  padding: .3rem;
  background-color: var(--white);
  border-radius: .3rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  -webkit-border-radius: .3rem;
  -moz-border-radius: .3rem;
  -ms-border-radius: .3rem;
  -o-border-radius: .3rem;
}

.header-nav-list-item-drop-list::-webkit-scrollbar {
  display: none;
}

.header-nav-list-item-drop-list::-webkit-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  
}

.chevron-up{
  position: absolute;
  right: 0;
  font-size: 0;
  color: var(--light-green);
}

.header-nav-list-item-drop-item{
  list-style: none;
  width: max-content;
  padding: .3rem;
}

.header-na-list-item-drop-item-a {
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  color: var(--white);
}

.header-na-list-item-drop-item-a:hover,.not-drop:hover {
  color: var(--light-green);
}

.header-nav-list-item-drop-item:not(.header-nav-list-item-drop-item:first-child) {
  margin-top: .5rem;
}

.header-va-list-item-img {
  width: 15px;
  margin-right: .5rem;
}

.header-nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  right: 1.5rem;
  top: calc( 50% - 2rem );
  background-color: transparent;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: scale(.7);
  -webkit-transform: scale(.7);
  -moz-transform: scale(.7);
  -ms-transform: scale(.7);
  -o-transform: scale(.7);
}

/* Classes for header.js */
.header-effect {
  background-color: var(--header-color);
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 29%);
}


.disappear {
  opacity: 0;
}

/* Classes for headerVariant.js */
.headerVariant-effect {
  background-color: var(--header-color);
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 29%);
}

.header-logo-container {
  position: relative;
  width: 4rem;
  height: 1rem;
}

.header-logo {
  object-fit: contain;
}

.header-logo-img {
  position: absolute;
  top: -115%;
  transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -ms-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
}

/* To prevent this items to disappear when hamburger menu takes place*/
@media screen and (min-width: 768px) {
  .header-effect .header-na-list-item-drop-item-a {
    color: var(--white);
  }
}

@media screen and (max-width: 768px){
  .header-logo-img{
    width: 1.7em;
  }
  .header-nav-list{
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100vh;
    min-width: 300px;
    margin-right: 0;
    background-color: var(--white);
    box-shadow: 0px 0px 15px 0 rgb(0 0 0 / 29%);
    transition: transform 150ms ease-in;
    -webkit-transition: transform 150ms ease-in;
    -moz-transition: transform 150ms ease-in;
    -ms-transition: transform 150ms ease-in;
    -o-transition: transform 150ms ease-in;
    transform: translateX(110%);
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    overflow-y: auto;
  }
  .--show{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  
  .header-nav-list{
    justify-content: flex-start;
    align-items: stretch;
    padding: 85px 35px;
  }

  .header-nav-list-item:not(.login){
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav-list-item-drop-list{
    top: 1px;
    margin-left: 1rem;
    position: relative;
    display: block;
    box-shadow: none;
    background-color: transparent;
    overflow-x: hidden;
    height: 0;
    padding: 0;
    transition: height 150ms ease-out;
    -webkit-transition: height 150ms ease-out;
    -moz-transition: height 150ms ease-out;
    -ms-transition: height 150ms ease-out;
    -o-transition: height 150ms ease-out;
  }

  .header-nav-list-item-drop-title{
    width: 100%;
  }
  
  .header-na-list-item-drop-item-a,.not-drop:hover{
    color: #000000;
  }
  .chevron-up{
    font-size: 1.2rem;
    color: var(--green);
    transition: transform 150ms ease-out;
    -webkit-transition: transform 150ms ease-out;
    -moz-transition: transform 150ms ease-out;
    -ms-transition: transform 150ms ease-out;
    -o-transition: transform 150ms ease-out;
  }
  .chevron-down{
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
  }
  .header{
    height: 75px;
  }
  .--margin-top{
    margin-top: 75px;
  }
  .header-nav-hamburger{
    display: flex;
  }
  .hamburger-bars{
    pointer-events: none;
  }
}

@media screen and (max-width: 480px){
  .header-logo-img{
    width: 1.5em;
    top: -15%;
  }
  .header{
    height: 60px;
  }
  .--margin-top{
    margin-top: 60px;
  }
  .header-nav-list{
    width: 100%;
    justify-content: flex-start;
    padding-top: 85px;
  }
}