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

.main-menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0px;
}


.menu-list {
  display: flex;
  margin-right: 90px;
  align-items: start;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .menu-list {
    margin-right: 10px;
    white-space: initial;
  }
}


.menu-link {
  display: flex;
  align-items: center;
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .menu-link span {
  font-size: 1.5vw;
  transform: rotate(90deg);transform: scale(0.5) rotate(90deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #105583;
  box-shadow: 0px 6px 16px 0px rgba(13,86,128,60);
  border-bottom-left-radius: 1vw;
  border-bottom-right-radius: 1vw;
  right: -2.3vw;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0 3vw;
}

.dropdown-content span {
  display: none;
  padding: 0 0.5vw;
  transform: scale(0.5);
  color: #A0D3CE;
  align-items: center;
}

.dropdown-content a:hover span {
  display: inline-block;
  color: #A0D3CE;
}

.dropdown:hover .dropdown-content {
  display: grid; /* Use grid layout */
  grid-template-columns: repeat(3, auto); /* Create two columns */
}


@keyframes parallax-background {
  from {
    top: 0;
    filter: blur(0px);
  }
  to {
    top: calc(var(--hero-height) * var(--parallax-background-speed) * -1);
    filter: blur(10px) brightness(33%);
  }
}

@keyframes parallax-foreground {
  from {
    top: 0;
  }
  to {
    top: calc(var(--hero-height) * var(--parallax-foreground-speed) * -1);
    filter: blur(2px) brightness(75%);
  }
}

main {
  background: white;
  position: relative;
  top: -1rem;
  border-radius: 1rem;
  padding-block: 3rem;
  font-size: 1.5rem;
  width: 100%;
}

p,
li,
ul {
  margin: 0 auto;
  line-height: 2;
  list-style-type: none;
}

hr {
  max-width: 800px;
  margin: 0 auto;
  margin-block: 4rem;
}

img {
  object-fit: cover;
}
  
  kbd {
    background: #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0.5rem;
    font-size: 1.25rem;
    border-radius: 4px;
  }

  @import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 62.5%;
    font-size: 0.8vw;
    scroll-behavior: smooth;
    width: 100%;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    position: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: center;
}

.navlinks {
  margin: 0;
}

.nav div.main_list {
    width: 100vw;
    float: right;
    background-color: #0D5680;
}

.nav div.main_list ul {
  float: right;
  display: flex;
  list-style: none;
  gap: 2vw;
  margin: 0 4vw;
}

.nav div.main_list ul li {
    padding-right: 2.5vw;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 4vw;
    font-size: 1.1vw;
}

.nav div.main_list ul li a:hover {
    color: #A0D3CE;
}


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-position: center top;
	  background-size:cover;
}

.navTrigger {
    display: none;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111; /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}

/** Middle **/

.middle{
  padding: 3.1vw 0;
  width: 100%;
  height: 43.5vw;
  background-image: url(media/Vector-contact.svg);
  background-repeat: no-repeat;
  background-position: right;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.middle-left{
  display: grid;
  justify-items: center;
  margin: 2vw;
  color: #000;
}

#logo-ml {
  width: 28.2vw;
  height: 13vw;
  max-width: 100vw;
  margin: 1vw 2vw;
  object-fit: fill;
}

.ml-p{
  width: 28.2vw;
  font-size: 0.85vw;
  line-height: 1.5vw;
  font-weight: normal;
}

.mlb-it-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10vw;
}

.mlb-it{
  display: flex;
  gap: 0.5vw;
  align-items: center;
}

.mlb-it i{
  width: 1vw;
}

.mlb-t{
  font-size: 0.85vw;
  font-weight: bold;
}


.middle-right{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

form{
  width: 30vw;
  border-radius: 2vw;
  display: grid;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 1vw 1vw rgba(0, 0, 0, 0.1);
  padding: 2vw 2vw;
  gap: 0.5vw;
}

.form{
  display: grid;
  justify-items: center;
  justify-content: center;
}

label{
  display: block;
  font-family: roboto;
  font-size: 0.7vw;
  font-weight: 400;
  color: #292D34;
}

input {
  border: 0.1vw solid #D6D9DE;
  border-radius: 0.5vw;
  margin: 0.5vw 0;
  width: 16vw;
  height: 1.7vw;
  align-content: center;
}

input:focus{
  border: 0.1vw solid #D6D9DE;
}

.input_container {
  width: 30vw;
  height: fit-content;
  position: relative;
  display: inline-flex;
  justify-items: start;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.input_label {
  display: block;
  font-family: inter;
  font-size: 0.85vw;
  font-weight: Bold;
  color: #292D34;
}

.input_label b{
  font-weight: Bold;
  color: #D41B69;
}

.input_field {
  width: 18vw;
  height: 2.5vw;
  padding: 0 0 0 0.5vw;
  border-radius: 0.5vw;
  outline: none;
  border: 0.1vw solid #e5e5e5;
  filter: drop-shadow(0 0.1vw 0 #efefef)
    drop-shadow(0 0.1vw 0.05vw rgba(239, 239, 239, 0.5));
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
  font-size: 1vw;
}

.input_field:focus {
  border: 0.1vw solid transparent;
  box-shadow: 0 0 0 0.1vw #caccd1;
  background-color: transparent;
}

.mr-p{
  font-size: 0.74vw;
  line-height: 1.3vw;
  font-weight: normal;
}

.mr-p2{
  color: #7C828D;
  font-size: 0.65vw;
  line-height: 1.3vw;
  font-weight: normal;
  width: 25vw;
  margin: 0;
}

.mr-p2 a{
  color: #A0D3CE;
  text-decoration: underline;
}

.form-btn-contact{
  background-color: #A0D3CE;
  border-radius: 0.8vw;
  border: none;
  color: white;
  padding: 1vw 1.7vw;
  margin-top: 0.9vw;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9vw;
  box-shadow: 0vw 1vw 2vw #79b1ab68;
  transition: background-color 1000ms;
}

.form-btn-contact:hover {
  cursor: pointer;
  background-color: #79b1ab;
}

.form-btn-contact:active {
  cursor: pointer;
  background-color: #2d7f77;
}

.input-error {
  border: 0.1vw solid red;
  font-size: 1vw;
}

.error-message {
  display: none;
  font-size: 0.7vw;
}

.form-error-message{
  text-align: center;
}


/**Sent**/

.form-sent{
  position: fixed;
  top: 26%;
  left: 20%;
  width: 50vw;
  padding: 5vw 5vw 3vw 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #fff;
  border-radius: 3vw;
  box-shadow: 2vw 2vw 1vw rgba(0, 0, 0, 0.1);
}

.form-sent span {
  font-size: 2vw;
  color: #105583;
}

.sent-h1 {
  font-weight: bold;
  font-size: 2vw;
}

.sent-infos{
  display: flex;
  gap: 11vw;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 2vw 0;
}

.sent-info{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5vw;
  font-family: normal;
  font-size: 1vw;
}

.sent-info h2{
  font-size: 1vw;
  margin: 0;
}

.sent-info h3 {
  font-size: 1vw;
  margin: 0;
}

.sent-p{
  font-size: 0.9vw;
  margin: 1vw 0;
}

.sent-btn{
  width: 100%;
  background-color: #105583;
  border-radius: 0.8vw;
  border: none;
  color: white;
  padding: 1vw 1.7vw;
  margin-top: 0.9vw;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9vw;
}

/** Footer **/

.footer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2vw;
    color: white;
    background-color: #0D5680;

  }
  
  .footer-up{
    display: flex;
    flex-direction: row;
    gap: 8vw;
  }
  
  .footer-upl{
    display: grid;
    margin-bottom: 3vw;
  }
  
  .footer-upl img{
    object-fit: fill;
    width: 11vw;
    margin: 1vw;
  }
  
  .footer-upl p{
    width: 17vw;
    font-size: 0.8vw;
    font-weight: normal;
    font-family: inter;
  }
  
  .footer-upr{
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .footer-upr ul{
    margin: 0 3vw;
    padding: 0 1vw;
    font-size: 0.7vw;
  }
  
  .footer-upr-h4{
    font-family: inter;
    font-weight: normal;
    font-size: 0.75vw;
    color: #A0D3CE;
  }
  
  .footer-upr ul li{
    margin: 1.3vw 0;
  }
  
  .footer-upr ul li:hover{
    cursor: pointer;
    color: #A0D3CE;
  }
  
  .footer-hr{
    margin: 1vw;
    padding: 0.03vw 43vw;
    background-color: #fff;
    border: none;
  }
  
  .footer-down{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 53vw;
    margin: 0;
  }
  
  .footer-dl{
    font-size: 1vw;
    font-family: inter;
    font-weight: normal;
    font-size: 0.7vw;
  }
  
  
  .wrapper {
    display: inline-flex;
    list-style: none;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    color: #160042;
  }
  
  a{
    font-style: normal;
    text-decoration: none;
    color: unset;
  }
  
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50vw;
    margin: 0.6vw;
    width: 2.5vw;
    height: 2.5vw;
    font-size: 1.1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 1vw 1vw rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    width: max-content;
    font-size: 0.8vw;
    background: #fff;
    color: #fff;
    padding: 0.5vw 0.8vw;
    border-radius: 0.5vw;
    box-shadow: 0 1vw 1vw rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 0.8vw;
    width: 0.8vw;
    background: #fff;
    bottom: -0.3vw;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -3.2vw;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .scrollTop span.material-symbols-outlined{
    font-size: 1.5vw;
    font-weight: bold;
  }
  
  .wrapper .scrollTop:hover,
  .wrapper .scrollTop:hover .tooltip,
  .wrapper .scrollTop:hover .tooltip::before {
    background: #160042;
    color: #fff;
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: linear-gradient(to bottom right, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
  }

