.nav-bar-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 3px;
  border-color: transparent;
  text-decoration: none;
}

.menu-item:hover {
  border-bottom: 3px solid #69c3e8;
}

.text-block {
  font-family: Raleway, sans-serif;
  color: #626970;
  font-weight: 700;
}

.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 80vh;
  margin-top: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.picture {
  width: 50%;
  height: 100%;
  background-image: url('../images/Renace1.jpg');
  background-position: 10% 50%;
  background-size: cover;
}

.text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 100%;
  padding-right: 100px;
  padding-left: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.paragraph {
  margin-top: 40px;
  font-family: Raleway, sans-serif;
  color: #626970;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
}

.footer {
  height: 225px;
  background-color: #263140;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.paragraph-2 {
  font-family: Raleway, sans-serif;
  color: #abafb4;
  font-size: 10px;
  font-weight: 400;
}

.lower-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #242c36;
}

.text-block-2 {
  font-family: Raleway, sans-serif;
  color: #abafb4;
  font-size: 12px;
  font-weight: 500;
}

.heading {
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 14px;
}

.email {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-3 {
  margin-left: 15px;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 12px;
}

.phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.redes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-wrapper.middle {
  margin-right: 40px;
  margin-left: 40px;
}

.navbar {
  display: none;
}

@media screen and (max-width: 991px) {
  .nav-bar-desktop {
    display: none;
  }

  .picture {
    background-position: 25% 50%;
    background-size: cover;
    background-attachment: scroll;
  }

  .text {
    padding-right: 40px;
    padding-left: 40px;
  }

  .paragraph {
    font-size: 18px;
    line-height: 32px;
  }

  .column {
    padding-right: 40px;
  }

  .column.third {
    display: none;
  }

  .navbar {
    display: block;
    background-color: #fff;
  }

  .nav-menu {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ececec;
  }

  .navlink-mobile {
    margin-right: auto;
    margin-left: auto;
    color: #263140;
  }

  .menu-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .menu-button {
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .paragraph {
    font-size: 16px;
    line-height: 28px;
  }

  .column {
    padding-left: 20px;
  }

  .menu-button {
    background-color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .picture {
    width: 100%;
    background-position: 10% 50%;
  }

  .text {
    width: 100%;
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .paragraph {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .footer {
    height: auto;
  }

  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .lower-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

