.header .logo img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.header .logo span {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1em;
}

.header .nav-header {
  display: none;
}

.header .content-header {
  max-width: 1051px;
  margin: auto;
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  z-index: 2;
}

.header .content-header {
  padding: 0 16px;
  margin-top: 13px;
}

.header .nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1b2f5f59;
  z-index: 20;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.header #nav-bar-check {
  z-index: 30;
}

.header #nav-bar-check:checked ~ .nav {
  opacity: 1;
  visibility: visible;
}

.header #nav-bar-check:checked ~ .btn-mb {
  position: fixed !important;
}

.header .btn-mb .close,
.header .btn-mb .open {
  position: absolute !important;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}

.header .btn-mb svg,
.header .btn-mb svg path {
  fill: #011d55 !important;
}

.header #nav-bar-check:checked ~ .btn-mb .open {
  opacity: 0;
  visibility: hidden;
}

.header .btn-mb .close {
  opacity: 0 !important;
  visibility: hidden !important;
}

.header #nav-bar-check:checked ~ .btn-mb .close {
  opacity: 1 !important;
  visibility: visible !important;
}

.header .nav nav {
  display: flex;
  margin: auto;
  flex: 2;
}

.header .nav div {
  flex: 1;
}

.header .nav nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
  margin: 0;
  gap: 25px !important;
}

.header .nav nav ul li a {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 16px;
  background: transparent;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  transition: all 0.3s ease;
}

.header .nav nav ul li a:hover {
  color: #6a9738;
}

.header .nav .button-nav a {
  border: 1px solid #8bc44b;
  font-weight: 800 !important;
  padding: 3px 21px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.header .nav .button-nav a:hover {
  background: #011d4f;
  border-color: white;
  color: white;
}

.header .nav {
  margin: auto;
}

.header .logo span {
  font-size: 1.4em;
  font-weight: 600;
  font-weight: 700;
}

.header .btn-mb {
  position: absolute;
  right: 45px;
  font-size: 14px;
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
}

.header .btn-mb {
  position: relative;
  right: 0px;
  z-index: 30;
}

.header #nav-bar-check:checked ~ .btn-mb {
  right: 30px;
}

.header .content-header {
  max-width: unset;
  padding: 0 30px;
}

@media (max-width: 992px) {
  .header .container-nav {
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0px 40px;
    padding-top: 11px;
    max-height: 261px;
    height: 100%;
    border-radius: 30px;
    max-width: 280px;
  }
}

/*Break point 992px*/

@media (min-width: 992px) {
  .header {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .header .btn-mb {
    display: none;
  }
  .header .nav {
    position: relative;
    display: flex;
    height: max-content;
    opacity: 1;
    visibility: visible;
    background: transparent;
    backdrop-filter: none;
    width: max-content;
  }
  .header .nav-header {
    display: flex;
  }
  .header .nav nav ul {
    display: flex;
    flex-direction: row;
    margin-left: -20px;
    gap: 0px;
  }
  .header .nav nav ul li:first-child a {
    font-weight: 400;
  }
}

@media (min-width: 992px) {
  .header .content-header {
    max-width: 871px;
    margin: auto;
  }
}

@media (min-width: 1200px) {
  .header .content-header {
    max-width: 1051px;
    margin: auto;
  }
}

@media (min-width: 1400px) {
  .header .content-header {
    padding: 0px 0px;
    max-width: 1220px;
    margin-top: 13px;
  }
}

@media (max-width: 767px) {
  .header .logo img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
  }
  .section-contact-us .hero-title {
    padding: 0 0px;
    margin: auto;
    margin-top: 5px;
    font-size: 1.75em !important;
    max-width: 548px;
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
  }
}
