@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);
/*Colores */
/*Buttons*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header_button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header_button .button_text {
  background-color: #151515;
  color: #ffffff;
  padding: 25px 33px;
  font-size: 26px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.header_button .button_icon {
  background-color: #d5966c;
  padding: 24px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.header_button .button_icon img {
  width: 13px;
  height: auto;
  display: block;
}
.header_button:hover .button_text {
  background-color: rgb(224.3333333333, 178.3333333333, 147.6666666667);
}
.header_button:hover .button_icon {
  background-color: rgb(46.5, 46.5, 46.5);
}

.back_button {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.3s ease;
  line-height: 1;
}
.back_button .button_icon {
  background-color: #d5966c;
  padding: 25px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  line-height: 1;
}
.back_button .button_icon img {
  width: 13px;
  height: auto;
  display: block;
}
.back_button .button_text {
  background-color: #151515;
  color: #ffffff;
  padding: 25px 33px;
  font-size: 26px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  line-height: 1;
  white-space: nowrap;
}
.back_button:hover .button_icon {
  background-color: rgb(46.5, 46.5, 46.5);
}
.back_button:hover .button_text {
  background-color: rgb(224.3333333333, 178.3333333333, 147.6666666667);
}

.footer {
  background-color: #151515;
  padding-top: 48px;
  padding-bottom: 38px;
}
.footer_logo {
  width: 110px;
  padding-left: 32px;
}
.footer_description {
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  line-height: 26px;
  font-weight: 200;
  font-size: 18px;
  padding: 38px 32px;
}
.footer_social_media {
  display: flex;
  gap: 20px;
  padding-left: 32px;
}
.footer_social_media .img_social {
  width: 25px;
  transition: all 0.5 ease;
}
.footer_social_media .img_social:hover {
  transform: scale(1.3);
}

.footer_location {
  background-color: #d5966c;
}

/*Tablet*/
@media (min-width: 768px) {
  .footer {
    display: flex;
    padding: 56px 40px;
    align-items: start;
  }
  .footer_logo {
    padding: 0;
    width: 110;
  }
  .footer_description {
    padding: 0;
    padding-left: 65px;
    padding-right: 120px;
    font-size: 16px;
  }
  .footer_social_media {
    padding: 0;
  }
}
/*Desktop*/
@media (min-width: 1439px) {
  .footer {
    padding: 80px 165px;
  }
  .footer_description {
    font-size: 18px;
    padding-left: 140px;
    padding-right: 280px;
  }
}
body {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  background-color: #fcfaf9;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

.header {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.header figure {
  order: 1;
}
.header_img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}
.header .header_title_container {
  order: 2;
}
.header_title {
  padding: 0 16px;
  font-family: "Big Shoulders", sans-serif;
  font-size: 67px;
  line-height: 60px;
  color: #151515;
  font-weight: 900;
  margin-bottom: 32px;
}
.header_title span {
  display: block;
}
.header .header_subtitle_container {
  padding: 0 16px;
  order: 3;
}
.header_subtitle {
  font-family: "Outfit", sans-serif;
  color: #444444;
  line-height: 28px;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 32px;
}
.header_button {
  margin-bottom: 130px;
}

/*Tablet*/
@media (min-width: 768px) {
  .header {
    padding-right: 40px;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 35% 65%;
    grid-template-areas: "image title" "image text";
  }
  .header_title {
    margin-bottom: 0px;
    padding: 0;
    line-height: 65px;
    font-size: 68px;
  }
  .header_subtitle {
    margin-bottom: 48px;
    font-size: 18px;
  }
  .header figure {
    grid-area: image;
    margin-bottom: 120px;
  }
  .header .header_title_container {
    grid-area: title;
    padding-top: 150px;
    min-width: 340px;
    position: relative;
    right: 50px;
    align-self: end;
    margin-bottom: 32px;
  }
  .header .header_subtitle_container {
    grid-area: text;
    padding: 0;
    max-width: 340px;
    position: relative;
    right: 50px;
  }
}
/*Desktop*/
@media (min-width: 1439px) {
  .header {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    grid-template-areas: "title image info";
    grid-template-rows: auto;
    margin-bottom: 180px;
    padding: 0;
  }
  .header .header_title_container {
    grid-area: title;
    position: static;
    background-color: #151515;
    padding: 0;
    margin: 0;
    height: 100%;
  }
  .header .header_title_container .header_title {
    color: #ffffff;
    margin: 0;
    position: relative;
    top: 189px;
    left: 190px;
    font-size: 90px;
    line-height: 100px;
  }
  .header figure {
    grid-area: image;
    margin: 0;
  }
  .header figure .header_img {
    margin: 0;
    width: 100%;
  }
  .header .header_subtitle_container {
    grid-area: info;
    height: 100%;
    position: relative;
    width: 300px;
    top: 250px;
    right: 70px;
    min-width: 320px;
  }
  .header .header_subtitle_container .header_subtitle {
    font-size: 20px;
  }
}
.main {
  width: 100%;
  padding: 0 16px;
  max-width: 100%;
  overflow: hidden;
}
.main_image {
  width: 100%;
  margin-bottom: 25px;
}
.main .image2 {
  margin-bottom: 16px;
}
.main .image3 {
  margin-bottom: 16px;
}
.main_title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 55px;
  line-height: 50px;
  color: #151515;
  font-weight: 900;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.main_title span {
  display: block;
}
.main_subtitle {
  font-family: "Outfit", sans-serif;
  color: #444444;
  line-height: 28px;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 32px;
}
.main_footer {
  background-color: #151515;
  margin-bottom: 120px;
}
.main_footer_title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 50px;
  line-height: 50px;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  padding-top: 48px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
}
.main_footer_title span {
  display: block;
}
.main_footer_subtitle {
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  line-height: 28px;
  font-weight: 300;
  font-size: 18px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 47px;
}

@media (min-width: 768px) {
  .main {
    padding: 0 40px;
  }
  .main_hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 68px;
    margin-bottom: 11px;
  }
  .main_hero figure {
    order: 1;
    min-width: 398px;
  }
  .main_hero figure img {
    margin: 0;
  }
  .main_subtitle {
    font-size: 18px;
    margin: 0;
  }
  .hero_down {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 11px;
    margin-bottom: 120px;
  }
  .hero_down figure {
    margin: 0;
  }
  .hero_down picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero_down img {
    width: 100%;
  }
  .hero_down .main_image {
    display: block;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
  }
  .hero_down .hero_down_main_image2 {
    grid-row: 1/3;
  }
  .hero_down .hero_down_main_image3 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .hero_down .main_footer {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 0;
    padding: 85px 28px;
  }
  .hero_down .main_footer_title {
    padding: 0;
    padding-bottom: 24px;
  }
  .hero_down .main_footer_subtitle {
    padding: 0;
  }
}
/*Desktop*/
@media (min-width: 1439px) {
  .main {
    padding: 0 165px;
  }
  .main_hero {
    gap: 125px;
  }
  .main .hero_info {
    width: 350px;
  }
  .main .hero_info .main_title {
    font-size: 60px;
    line-height: 60px;
  }
  .main .hero_info .main_subtitle {
    font-size: 20px;
  }
  .main .main_footer {
    padding: 65px 48px;
  }
  .main .main_footer_title {
    font-size: 60px;
  }
  .main .main_footer_subtitle {
    font-size: 20px;
  }
}
.location_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.location_main {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.map_section {
  width: 100%;
}
.map_section .map_image {
  width: 100%;
  height: auto;
  display: block;
}

.address_section {
  background-color: #151515;
}
.address_section h1 {
  color: #ffffff;
  font-family: "Big Shoulders", sans-serif;
  font-size: 50px;
  padding: 48px 16px;
  font-weight: 900;
}
.address_section h2 {
  color: #d5966c;
  font-family: "Big Shoulders", sans-serif;
  padding-left: 16px;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 900;
}
.address_section p {
  color: #ffffff;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 28px;
  font-weight: 200;
}
.address_section p:last-of-type {
  padding-top: 20px;
  padding-bottom: 56px;
}

/*Tablet*/
@media (min-width: 768px) {
  .location_header {
    padding-left: 39px;
  }
  .address_section {
    display: flex;
    padding: 88px 40px 80px;
    gap: 68px;
  }
  .address_section h1 {
    font-size: 55px;
    padding: 0;
  }
  .address_section h2 {
    padding: 0;
  }
  .address_section p {
    padding: 0;
  }
  .address_section p:last-of-type {
    padding-bottom: 0px;
  }
}
/*Desktop*/
@media (min-width: 1439px) {
  .location_header {
    padding-left: 156px;
  }
  .address_section {
    gap: 220px;
    padding: 104px 165px 128px;
  }
  .address_section h1 {
    font-size: 70px;
    line-height: 70px;
  }
  .address_section h2 {
    padding-bottom: 24px;
  }
  .address_section p {
    font-size: 20px;
  }
  .address_section p:last-of-type {
    padding-top: 32px;
  }
}/*# sourceMappingURL=style.css.map */