@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  font-family: "Lato", sans-serif;
}

footer svg {
  width: 25px;
}

footer svg:hover {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

html {
  font-size: 62.5%;
}

main {
  margin-top: 60px;
  z-index: 2;
  width: 100%;
  position: relative;
}

.search_container button {
  background: transparent;
  border: none;
}

.search_container {
  display: flex;
  justify-content: center;
}

.search_container input {
  margin-right: 10px;
  border: none;
  border-radius: 5px;
  padding: 0px 5px;
  width: 80%;
  max-width: 400px;
}

.nav_bar_social_media svg {
  width: 25px;
}

.search_icon {
  width: 25px;
}

.sm_facebook:hover path {
  fill: #3b5998;
  transition: all 0.3s ease-in-out;
}

.sm_whatsapp:hover path {
  fill: #25d366;
  transition: all 0.3s ease-in-out;
}

.sm_linkedin:hover path {
  fill: #0e76a8;
  transition: all 0.3s ease-in-out;
}

.sm_instagram:hover path {
  fill: #e1306c;
  transition: all 0.3s ease-in-out;
}

.burguer_menu_container {
  margin: 0px 20px 10px 10px;
  cursor: pointer;
  z-index: 2;
}

.menu_line {
  width: 30px;
  height: 1px;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 8px;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.menu_logo_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #011114;
}

.phone_icon {
  width: 35px;
  margin-right: 10px;
}

.phones_container {
  color: #fff;
  display: flex;
}

.phones_numbers span {
  display: block;
}

.brand_logo {
  margin: 10px;
}

.nav_bar {
  width: 100%;
  height: 100vh;
  display: flex;
  margin-top: -260%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000;
  position: absolute;
  font-family: "Lato", sans-serif;
  top: 0;
  left: 0;
  transition: 1s all ease;
}

.nav_bar_logo {
  margin: 10px;
}

nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

nav a {
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  width: 100%;
  transition: 1s all ease-in-out;
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

.nav_bar_bottom {
  border-top: 1px solid #fff;
}

/* ul style */
nav li {
  display: inline-block;
  width: 100%;
}

.nav_bar_social_media {
  display: flex;
  padding: 40px;
  justify-content: space-evenly;
  width: 100%;
}

.nav_bar_social_media_icon {
  width: 25px;
}

.nav_item {
  overflow: hidden;
}

.nav_item a {
  color: #000;
  transition: 0.5s all ease;
  transform: translate(0px, 80%);
}

.show_menu {
  margin-top: 0%;
  transition: 0.5s all ease;
}

.show_menu a {
  margin-top: 0%;
  transition: 0.5s ease-in-out;
}

.show_menu_item a {
  color: #fff;
  transition: 2s ease-in-out;
  transform: translate(0px, 0%);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 5px;
  border-top: 1px solid #fff;
}

.brand_footer {
  display: inline-block;
  color: #fff;
  font-family: "Lato", sans-serif;
}

.burguer_menu_container.active {
  position: absolute;
  top: 30px;
  right: 20px;
  transition: 0.8s all ease;
}

.burguer_menu_container.active .menu_line_1 {
  transform: translateY(8px) rotate(45deg);
  transition: 0.8s all ease;
  width: 50px;
}

.burguer_menu_container.active .menu_line_2 {
  opacity: 0;
  transition: 0.8s all ease;
}

.burguer_menu_container.active .menu_line_3 {
  transform: translateY(-10px) rotate(-45deg);
  transition: 0.8s all ease;
  width: 50px;
}

.nav_bar_social_media_icon:hover {
  color: aqua;
}

@media (min-width: 1024px) {
  header {
    background-color: #011114;
  }

  .brand_logo {
    width: 120px;
  }

  .burguer_menu_container {
    display: none;
  }

  .menu_logo_container {
    max-width: 1024px;
    margin: 0 auto;
  }

  .nav_bar {
    margin-top: 75px;
    height: auto;
    background-color: transparent;
  }

  .phones_numbers {
    font-size: 1.8rem;
  }

  .nav_bar_logo {
    display: none;
  }

  .nav_bar_list {
    display: flex;
    background-color: #000;
    text-align: center;
  }

  .nav_bar a {
    color: #fff;
    transition: 0s all ease;
    transform: translate(0px, 0px);
    font-size: 2rem;
  }

  .nav_bar_bottom {
    display: none;
  }
}
