@font-face {
  font-family: mont-extrabold;
  src: url(../fonts/montserrat_extrabold.ttf);
}
@font-face {
  font-family: mont-elight;
  src: url(../fonts/montserrat_extralight.ttf);
}
.f-bold {
  font-family: mont-extrabold;
}

.f-elight {
  font-family: mont-elight;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

a {
  text-decoration: none;
}

.welcome {
  display: grid;
  grid-template-columns: 1fr 330px;
  height: 100vh;
  width: 100%;
}
.welcome-bg {
  background-image: url("../images/wall.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.welcome-menu {
  background-color: #f4f4f4;
}
.welcome-menu_header {
  padding: 25px;
  height: auto;
  display: grid;
  justify-items: center;
}
.welcome-menu_header_logo {
  width: 60%;
  margin-bottom: 20px;
}
.welcome-menu_header_logo2 {
  width: 70%;
  margin-bottom: 20px;
}
.welcome-menu_header_title {
  display: grid;
  justify-items: center;
}
.welcome-menu_header_title_l1 {
  color: #ffb22c;
  font-size: 23px;
  font-weight: 600;
}
.welcome-menu_header_title_l2 {
  color: #31482d;
  font-size: 28px;
}
.welcome-menu_body_item {
  color: #31482d;
  font-size: 17px;
  display: block;
  padding: 15px;
  border-top: 1px solid rgba(222, 222, 222, 0.3568627451);
  border-bottom: 1px solid rgba(222, 222, 222, 0.3568627451);
  background-color: white;
}
.welcome-menu_body_item span {
  font-weight: 600 !important;
}
.welcome-menu_body_item.item1 {
  border-left: solid 5px #ffb22c;
}
.welcome-menu_body_item.item2 {
  border-left: solid 5px #31482d;
}
.welcome-menu_body_item:hover {
  background-color: rgba(215, 215, 215, 0.2196078431);
}
.welcome-menu_redes {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
.welcome-menu_redes_item {
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 15px;
  height: 30px;
  width: 30px;
  background-color: white;
  border-radius: 5px;
  border: solid 1px rgba(204, 204, 204, 0.4549019608);
  color: #31482d;
}
.welcome-menu_redes_item:hover {
  background-color: rgba(215, 215, 215, 0.2196078431);
}

@media (max-width: 400px) {
  .welcome {
    display: grid;
    grid-template-columns: 0px 100%;
    height: 100vh;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */