@font-face {
  font-family: 'mplus';
  src: url('../fonts/mplus-2m-regular.ttf') format('truetype');
}
@font-face {
  font-family:'m_2mregular';
  src: url('../fonts/mplus-2m-regular-webfont.woff');
}
body {
  font-family: 'Trebuchet MS', Verdana, 'sans-serif';
}

/* DEBUT NAVBAR */

a {
  text-decoration: none;
  color: black;
  font-family: 'Trebuchet MS', Verdana, 'sans-serif';
}
a:hover {
  color: currentColor;
}
header {
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25); /* Simple shadow */
  align-items: center;
}

header .container-fluid {
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container-fluid {
  position: relative;
  background-color: #fefefe;
}

@media only screen and (min-width: 1200px) {
  .container-fluid {
    position: fixed; /* Changed from fixed to sticky */
    background-color: #fefefe;
    z-index: 999;
  }
}

@media (max-width: 992px) {
  header .container-fluid {
    padding: 0 5%;
  }
}

header .navb-logo img {
  width: 140px;
  height: 70px;
}

header .navb-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 3px;
  list-style: none;
}

.dropdown {
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 3px;
  border-bottom: 0;
  border-top: 0;
  transition: border-color 0.1s ease; /* Only transition border-color */
  margin-inline: 15%;
  font-size: 20px;
  color: currentColor;
}

.dropdown:hover {
  border-bottom: 3px solid #0f1e30;
  border-top: 3px solid #0f1e30;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

.item-lang {
  padding-left: 15px;
}

header .item {
  text-align: center;
  margin-inline: 15%;
  font-size: 20px;
  white-space: nowrap;
  letter-spacing: 3px;
  color: #0e4d82;
  padding: 5px 0;
  transition: border-color 0.1s ease; /* Only transition border-color */
  border-bottom: 0;
  border-top: 0;
  cursor: pointer;
}
header .item:hover {
  border-bottom: 3px solid #0f1e30;
  border-top: 3px solid #0f1e30;
}

header .item-button a
{
  padding: 12px;
  height: 44px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin:8px;
  text-align: center;
  cursor: pointer;
  background: #20558A;
  color: #F7F9FA;
  border: none;
  font-family: 'Trebuchet MS', Verdana, 'sans-serif';
}
header .item-button a:hover{
  background-color:#4579AE;
}

.modal-dialog {
  margin: 0;
  width: 430px;
}
.itemlang {
  display: none;
}

@media (max-width: 450px) {
  .modal-dialog {
    width: 300px;
  }
  .item-lang {
    display: none;
  }
  .itemlang {
    display: flex;
  }
}

.modal-content {
  border-radius: 0;
  height: 100vh;
  overflow-y: scroll;
  background-color: #0f1e30;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88%;
  margin: 0 auto;
  padding-bottom: 16px;
  border-bottom: 2px solid #fefefe;
}

.modal-header img {
  width: 140px;
  height: 66px;
  margin-top: 17.5px;
}

.modal-header .btn-close {
  background: transparent;
  opacity: 1;
}

.modal-header i {
  color: #fefefe;
  font-size: 30px;
}

.modal-body {
  width: 88%;
  margin: 0 auto;
  padding: 75px 0 0 0;
  flex: unset;
}

.modal-body .modal-line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 0;
  margin-bottom: 50px;
  cursor: pointer;
  transition: color 0.5s ease, border-color 0.5s ease;
  color: #0e4d82;
  border-bottom: 1px solid #0f1e30;
}

.modal-body .modal-line:hover {
  color: #fefefe;
  border-bottom: 1px solid #fefefe;
}

.modal-line a {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #fefefe;
}

.modal-line i {
  color: currentColor;
  font-size: 30px;
  width: 35px;
  margin-right: 15px;
  padding: 0 0 3px 3px;
}

.modal-body .modal-line2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 0;
  margin-bottom: 30px;
  margin-top: -50px;
  transition: color 0.5s ease, border-color 0.5s ease;
  color: #0e4d82;
  border-bottom: 1px solid #0f1e30;
}

.modal-body .modal-line2 a {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 2.5px;
  color: #fefefe;
  white-space: nowrap;
}

.navb-button {
  width: 100%;
  height: 47px;
  background-color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #0e4d82;
  letter-spacing: 2px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.navb-button:hover {
  background-color: #0e4d82;
  color: #fefefe;
}

.mobile-modal-footer {
  width: 87%;
  margin: 0 auto;
  padding: 12% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #0f1e30;
}

.mobile-modal-footer .fab.fa-youtube::before,
.mobile-modal-footer .fab.fa-linkedin::before {
  color: #fefefe;
}

.fab.fa-linkedin {
  margin-right: 15px;
}

.mobile-modal-footer i:hover {
  color: #fefefe;
}

@media screen and (max-width: 1510px) {
  .navb-items .item, .nav-link.dropdown-toggle {
    font-size: 16px;
    letter-spacing: 0px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .navb-items .item-button a{
    font-size: 12px;
    width: 120px;
    height: 40px;
    font-weight: 300;
  }
  header .navb-logo img {
    width: 170px;
    height: 66px;
  }
}

@media screen and (max-width: 1000px) {
  header {
    max-width: 100%;
  }

  .container-fluid {
    position: fixed;
    z-index: 999;
  }

  .modal-backdrop.fade.show {
    z-index: 100;
  }

  .item, .dropdown, .item-button {
    display: none;
  }

  header .navb-logo img {
    width: 170px;
    height: 66px;
  }

  .mobbile-toggler {
    display: flex;
    font-size: 42px;
    height: 100%;
  }
}

.separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.fab.fa-linkedin, .fab.fa-facebook {
  color: #fefefe;
}
/* FIN NAVBAR */