
/* TOP NAVBAR */
html, body {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  width: 100%;
  height: 160px;
}

main {
  flex: 1;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  display: none;
  transition: opacity 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 107px;
  box-shadow: unset;
  box-shadow: 0px 3px 20px #3f4b6614;
  z-index: 5;
  position: fixed;
  background-color: #ffffff;
}
.navbar__items {
  width: 100%;
  max-width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__anchor {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__image {
  width: 160px;
  height: 40px;
  cursor: pointer;
}
.navbar__links {
  text-decoration: none;
  text-transform: uppercase;
  color: #1B2634;
  padding-left: 15px;
  padding-right: 15px;
}
.navbar__button {
  background-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: #1B2634;
  border-radius: 24px;
  width: 15%;
  height: 41px;
  margin-right: 15px;
  margin-left: 15px;
  color: #1B2634;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.navbar__button:hover {
  color: #CBD42F;
  border-color: #CBD42F;
}
#navbar__menu-icon {
  font-size: 30px;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
}

/* TOP NAVBAR RESPONSIVE */

@media (max-width: 991px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    width: 100%;
    height: 107px;
    z-index: 5;
    position: fixed;
  }
  .navbar__items {
    width: 100%;
    max-width: 80%;
    display: flex;
    justify-content: space-evenly;
  }
  .navbar__image {
    width: 160px;
    height: 40px;
    padding-left: 28%;
    cursor: pointer;
  }
  .navbar__links {
    display: none;
  }
  .navbar__button {
    display: none;
  }
  .navbar__button:hover {
    display: none;
  }
  #navbar__menu-icon {
    font-size: 40px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
  }
}

/* SIDE NAVBAR */

.sidebar {
  background-color: #1B2634F0;
	position: fixed;
	transform: translateX(0);
	top: 0;
	right: 0;
	height: 100%;
	width: 0px;
	transition: 0.3s;
	z-index: 10;
	justify-content: normal;
	font-size: 16px;
	list-style-type: none;
}
.sidebar__btn {
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
	width: 81%;
	padding: 35px 45px;
	color: #FFFFFF;
  border-bottom: 1px solid #3F4B65;
}
.btn__content {
  display: flex;
  gap: 7px;
}
.sidebar__btn--mobile {
  display: none;
}
.sidebar__close-btn {
  text-decoration: none;
  color: #FFFFFF;
  width: 81%;
	padding: 35px 45px;
  display: flex;
  justify-content: flex-end;
}
#close-btn__icon{
  cursor: pointer;
}

/* SIDE NAVBAR RESPONSIVE */

@media (max-width: 991px) {
.sidebar {
  overflow-y: scroll;
}
.sidebar__btn--mobile {
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
	width: 81%;
	padding: 35px 45px;
	color: #FFFFFF;
  border-bottom: 1px solid #3F4B65;}
}

.screen {
  height: 100%;
}
/* FOOTER */

.footer {
  background-color: #ffffff;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__container {
  border-top: 2px solid #7390B6;
  width: 100%;
  max-width: 1160px;
  margin: 60px 35px 0 35px;
  padding: 50px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer__img {
  height: 55px;
  width: 220px;
  padding: 20px;
}

.footer__email {
  color: #1B2634;
  font-size: 16px;
  text-decoration: none;
}

.footer__link {
  font-weight: 500;
  color: #1B2634;
  letter-spacing: 0.5px;
  text-underline-offset: 3px;
}

.footer_icon-contaiter {
  width: 65px;
  display: flex;
  justify-content: space-between;
}

#footer__icon {
  font-size: 26px;
  color: #1B2634;
  cursor: pointer;
}