body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

:root {
  --orange: #f0981b;
  --gris: #333333;
}

body {
  background: #f9f9f9;
}

gmp-map {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  font-size: clamp(2rem, 14vw, 80px);
}

p {
  font-size: 16px;
}

.message_send_form,
.message_error_form {
  position: absolute;
  top: 22px;
  color: white;
  padding: 10px 20px;
  z-index: 10;
  right: 40px;
  border-radius: 5px;
  display: none;
}

.message_send_form {
  background-color: #4caf50;
}

.message_error_form {
  background: #f00;
}

header {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.header_video_bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu_content {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 3;
  transition: all 300ms;
  background: rgba(0, 0, 0, 0.2);
}
.menu_logo {
}
.menu_logo > img {
  width: 250px;
}

.menu_content > div:not(:nth-child(even)) {
  padding: 8px 20px;
}

.menu {
  display: flex;
  justify-content: flex-start;
  flex: 1;
  align-items: center;
  gap: 40px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0 30px;
  transition: all 300ms;
}

.menu_scroll {
  border-left: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
}

.menu a,
.menu_mobile a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.menu_mobile a {
  color: #000;
  padding: 20px;
  border-bottom: 1px solid #ececec;
}
.menu_mobile a:last-child {
  border-bottom: none;
}

.menu a:hover,
.menu_mobile a:hover {
}

.menu_mobile a:hover {
  background: var(--gris);
  color: #fff;
}

.menu a::after,
.menu_mobile a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fe5a0e;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.item_nav_active {
  position: relative;
}
.item_nav_active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fe5a0e;
}

.menu a:hover:after,
.menu_mobile a:hover:after {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}

.menu_telefono {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.menu_mobile {
  position: absolute;
  right: 0;
  top: 95px;
  background: #fff;
  flex-direction: column;
  width: 100%;
  padding: 30px;
  border-top: 1px solid #ececec;
  display: none;
}

.content_icon_redes_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 20px;
  gap: 10px;
  font-size: 20px;
  color: #fff;
}

.content_icon_redes_nav a {
  color: #fff;
}

.content_icon_redes_nav a:hover {
  color: var(--orange);
}

.scroll_down_nav {
  background: #fff;
  color: #000;
  text-shadow: none;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.scroll_down_nav a {
  color: var(--gris);
}

.header_info_content {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.header_info_content h1 {
  color: #fff;
}
.header_info_content p {
  color: #fff;
  font-weight: 700;
  max-width: 500px;
  font-size: 20px;
}

.header_info_btns {
  display: flex;
  gap: 20px;
}

.btn_primary_header {
  background: var(--orange);
  color: var(--gris);
}
.btn_secondary_header {
  background: var(--gris);
  color: #fff;
}

.btn_primary_header:hover,
.btn_secondary_header:hover {
  -webkit-filter: brightness(1.3);
  filter: brightness(1.3);
}

/* DIVS CONTACT HEADER INDEX ========================================================================================================================================= */
.contact_minis_content {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 15vh;
  z-index: 1;
  background: #fff;
  position: absolute;
  bottom: 0;
}
.contact_minis {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.contact_mini {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 280px;
  padding: 20px;
}
.contact_mini i {
  background: var(--orange);
  color: #fff;
  padding: 10px 12px;
  border-radius: 30px;
  font-size: 15px;
}
.contact_mini > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact_mini > div > h4 {
}
.contact_mini > div > p {
  color: var(--gris);
  font-size: 15px;
}

main {
}

section {
  scroll-behavior: smooth;
  transition: transform 0.3s ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arrow_to_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  display: none;
  transition: all 1s;
  color: var(--orange);
  font-size: 30px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  height: 35px;
  width: 35px;
  text-align: center;
  -webkit-filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.header_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 50px;
}

.header_section > h3 {
  color: var(--orange);
}

.header_section > h2 {
  max-width: 500px;
  text-align: center;
}

/* SERVICES INDEX ==========================================================================================================*/
.section_services_index {
  /*padding: 60px 0;*/
  background: #f4f4f4;
}
.services_content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}
.services {
  height: 450px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  position: relative;
  gap: 30px;
  transition: all 500ms;
  background-position: center;
  flex: 1;
}

.services_title {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  z-index: 1;
}

.bg_service_orange {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: none;
}
.icon_service {
  font-size: 40px;
  color: var(--orange);
}
.services h4 {
  text-transform: uppercase;
  width: 70%;
  z-index: 1;
}
.service_separator {
  height: 1px;
  background: #ececec;
  width: 100%;
  z-index: 1;
}
.services p {
  z-index: 1;
  min-height: 100px;
}

.services a {
  color: var(--orange);
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.services a > i {
  transition: all 500ms;
}

.services a:hover {
  color: #000;
}

.services:hover {
  margin-top: -5px;
  background: url("../imgs/banner_04.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services:hover a {
  color: #fff;
}

.services:hover .icon_service {
  color: #fff;
}

.services:hover .bg_service_orange {
  background: rgba(240, 152, 27, 0.9);
}

.services:hover a > i {
  font-size: 20px;
}

/* INFO INDEX ========================================================================================================================== */
.section_info_index {
  background: var(--gris);
}
.info_content {
  display: flex;
  flex: 1;
}
.info_index {
  width: 35%;
  padding: 50px 5% 50px 10%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  color: #fff;
}
.info_index_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info_index p {
  font-size: 14px;
}

.info_index_top h3 {
  font-size: clamp(1.5rem, 6vw, 2rem);
}
.info_index_top h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--orange);
  line-height: 56px;
}
.info_index_top p {
}

.info_index_bottom {
  display: flex;
  gap: 30px;
}
.info_index_bottom_div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.icon_info_index {
  color: var(--orange);
  font-size: 35px;
}
.info_index_bottom_div h3 {
}
.info_index_bottom_div p {
}
.info_index_img {
  width: 50%;
  overflow: hidden;
}
.info_index_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* CONTACT INDEX =============================================================================================================== */
.section_contact_index {
  /*padding: 100px 0;*/
}

.contact_index_content {
  width: 980px;
  margin: 0 auto;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  border-radius: 5px;
  padding: 80px;
  display: flex;
  gap: 40px;
  position: relative;
}

.contact_index_datos {
  flex: 0 0 34%;
  max-width: 34%;
  background: var(--orange);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

.contact_index_datos > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 50px;
}

.contact_index_datos h4 {
}
.contact_index_datos p {
}
.contact_index_datos i {
}
.number_phone_contact_index {
}

.contact_index_form {
  flex: 0 0 66%;
  max-width: 66%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact_index_form input[type="text"] {
  height: 55px;
  border: 1px solid #f4f4f4;
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 0 0 0 20px;
  border-radius: 3px;
  outline: none;
}

.contact_index_form textarea {
  outline: none;
}

.contact_index_form input[type="text"]:focus,
textarea:focus {
  background-color: #fff;
  border: 1px solid var(--orange);
}

.button {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  min-width: 170px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.contact_index_form h3 {
}
.contact_index_form p {
}

.contact_index_form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact_index_form_inputs {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.section_contact_index input[type="text"] {
  flex: auto;
}

.section_contact_index input[type="submit"] {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  min-width: 170px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  padding: 0 15px;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s linear;
  background: var(--gris);
  color: #fff;
  cursor: pointer;
}

.section_contact_index textarea {
  border: 1px solid #f4f4f4;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
}

.section_contact_index textarea:focus {
  border: 1px solid var(--orange);
}

/* FOOTER =================================================================================================================================== */
footer {
  background: var(--gris);
  margin-top: 200px;
  color: #fff;
  font-size: 14px;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer p {
  font-size: 14px !important;
}

footer a {
  color: #fff;
}
footer a:hover {
  color: var(--orange);
}

.footer_content {
  width: 1130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map {
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
  margin-top: -190px;
}

.footer_blocks_content {
  display: flex;
  justify-content: space-between;
}
.footer_block {
  padding: 40px 0;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_info_bottom {
  padding: 20px 0;
  color: #fff;
  width: 1130px;
  margin: 0 auto;
}

.footer_info_bottom > div {
}

.footer_map_content {
  position: relative;
}

.map_info_content {
  position: absolute;
  z-index: 1;
  right: 30px;
  background: #fff;
  height: 250px;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px solid #ececec;
  color: var(--gris);
  align-items: center;
  text-align: center;
  justify-content: center;
  bottom: 135px;
}

.map_info_content h3 {
  color: var(--orange);
}

.redes_footer {
  display: flex;
  gap: 10px;
  font-size: 17px;
}
.redes_footer a {
  color: #fff;
  background: #222222;
  border-radius: 30px;
  padding: 8px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redes_footer a:hover {
}

.footer_info_bottom_content {
  background: #272727;
}

.input_footer {
  display: flex;
  background: #fff;
  border-radius: 5px;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  padding: 6px;
  height: 35px;
  border: 2px solid #fff;
}

.input_footer input[type="text"] {
  flex: 1;
  border-radius: 0;
  border: none;
  outline: none;
}
.input_footer button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.input_footer button:hover {
}

.input_footer button:hover i {
  color: var(--orange);
}

.input_footer button > i {
  color: var(--gris);
}

.input_footer:focus-within {
  border: 2px solid var(--orange);
}
.menu_icon_list {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  padding-right: 15px;
}

#icon_x {
  display: none;
}

.shadow {
  display: none;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

#shadow_galery {
  z-index: 4;
}

.message_susc {
  display: none;
  color: aqua;
}

.message_susc_error {
  color: #ff4e4e;
}

/* GALERIA =============================================================================================================================*/
.galeria {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  /* justify-content: center; */
}

.galeria > div {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 20%;
  height: 20vw;
}

.title_gallery {
  padding: 30px;
  background: var(--gris);
  display: flex;
  gap: 10px;
  flex-direction: column;
  color: #fff;
}
.title_gallery h2 {
  color: var(--orange);
}
.title_gallery i {
}
.title_gallery p {
  border-top: 1px solid #616161;
  padding-top: 5px;
  font-size: 14px;
}

.galeria > div > img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: 300ms;
  height: 100%;
}

.galeria > div::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  transition: 300ms;
  opacity: 0;
  z-index: 1;
}

#menu_content_galery {
}

.galeria > div::before {
  display: none;
  content: "\F403";
  position: absolute;
  padding: 10px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  z-index: 2;
  font-family: bootstrap-icons, "arial";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
}

.galeria > div:hover::before {
  display: block;
}

.galeria > div:hover > img {
  transform: scale(1.1);
  z-index: 1;
  position: absolute;
}

.galeria > div:hover::after {
  opacity: 1;
}

.content_spinner {
  height: 100%;
  width: 100%;
  background: #000;
  position: absolute;
  display: none;
}

.content_spinner > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  width: 40px;
}

.img_big_content {
  position: relative;
  display: none;
  width: 1000px;
  position: fixed;
  z-index: 4;
  background: #fff;
  filter: drop-shadow(2px 4px 6px black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 580px;
}

.img_big {
  width: 600px;
  height: 100%;
  position: relative;
  background: #252525;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img_big > img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
}

#img_galeria,
#video_galeria {
  display: none;
  width: 100%;
  height: 85%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

#img_project {
  display: flex;
  flex: 1;
}

#img_galery_minis {
  display: flex;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  gap: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#img_galery_minis::-webkit-scrollbar {
  width: 0;
  height: 10px;
}

#img_galery_minis::-webkit-scrollbar-thumb {
  border: 3px solid rgba(0, 0, 0, 0);
  border-radius: 1024px;
  box-shadow: inset 0 0 10px 10px var(--orange);
}

#img_galery_minis div {
	flex-shrink: 0;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 5px;
	overflow: hidden;
	width: 60px;
}

#img_galery_minis div > img,
#img_galery_minis div > video {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


#img_galery_minis div:hover {
  cursor: pointer;
  filter: brightness(1.3);
  background: var(--orange);
}


.video_galery_mini_item {
  position: relative;
  background: #626262;
}
.video_galery_mini_item::before {
  content: "";
  display: block;
  position: absolute;
  content: "\F4F3";
  font-family: bootstrap-icons, "arial";
  color: #fff;
  font-size: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info_img_big {
  flex: 1;
  color: #000 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  gap: 15px;
}
.info_img_big h2 {
  font-family: "futura medium", arial !important;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--orange);
  text-transform: uppercase;
}
.info_img_big p {
  font-size: 16px;
  line-height: normal;
  color: #000;
}
.hashtags_links {
  color: aqua !important;
}

.parrafo_redes {
  display: flex;
  gap: 10px;
  font-size: 26px !important;
}

.p_red_ins {
  color: #c13584;
}

.p_red_fac {
  color: #4267b2;
}

.link_info_img_big {
  color: #ffeb3b !important;
}

.close_img_big {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #848484;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}
.close_img_big:hover {
  color: var(--orange);
}

.footer_galery {
  margin-top: 0;
}

.section_galery {
  min-height: auto;
  margin-top: 95px;
  padding: 0;
}

.title_img_galery {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  text-shadow: 2px 2px 2px #000;
  padding: 20px;
  right: 0;
}

.img_galery:hover .title_img_galery {
  opacity: 1;
}

.logo_footer {
  width: 200px;
}

@media (max-width: 1250px) {
  .galeria {
    grid-template-columns: repeat(4, 1fr);
  }

  .img_big_content {
    flex-direction: column;
    width: 600px;
    height: 760px;
  }

  #img_galeria,
  #video_galeria {
    height: 400px;
  }

  .img_big {
    height: auto;
  }

  .info_img_big {
    justify-content: flex-start;
  }
  #img_project {
    flex-direction: column;
}
}

@media (max-width: 1000px) {
  .galeria > div {
    width: 33.3%;
    height: 33.3vw;
  }
}

@media (max-width: 700px) {
  .galeria {
    grid-template-columns: repeat(3, 1fr);
  }
  .img_big_content {
    width: 100%;
    height: 100%;
  }
}

/* RESPONSIVES =========================================================================================================================== */
@media (max-width: 1200px) {
  .services_content {
    width: 96%;
    margin: 0 2%;
    gap: 15px;
  }

  .info_index_bottom {
    flex-direction: column;
  }

  .header_info_content {
    width: 96%;
    margin: 0 2%;
  }

  .contact_minis {
    width: 100%;
  }

  .footer_info_bottom {
    width: 90%;
  }

  .footer_content {
    width: 90%;
  }

  .contact_index_content {
    width: 90%;
    padding: 5%;
  }

  .contact_index_form {
    flex: auto;
    max-width: none;
  }

  .contact_index_datos {
    flex: auto;
    max-width: none;
  }

  .contact_index_form_inputs {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .menu_telefono,
  .content_icon_redes_nav {
    display: none;
  }
}

@media (max-width: 900px) {

  #img_galery_minis {
    height: 15%;
}

  .menu {
    display: none;
  }
  .menu_mobile {
    padding: 0 !important;
  }

  .footer_blocks_content {
    flex-direction: column;
    gap: 10px;
  }

  #img_galeria, #video_galeria {
    height: 85%;
}

  .img_big {
    flex: none;
    height: 60%;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

  .logo_footer {
    width: 40%;
    margin-top: 20px;
  }

  .footer_block {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #595959;
  }

  .footer_block:last-child {
    border-bottom: none;
  }

  footer ul {
    flex-direction: row;
  }

  .arrow_to_top {
    bottom: 20px;
    right: 20px;
  }

  .menu_icon_list {
    display: flex;
  }

  .services {
    height: auto;
    gap: 15pxs;
  }

  .services_content {
    flex-direction: column;
  }

  .icon_service {
    font-size: 35px;
    top: 20px;
  }

  .services:hover {
    margin-top: 0;
  }

  .services:hover a > i {
    font-size: inherit;
  }

  .services_title {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .contact_index_datos > div {
    padding: 15px 30px;
  }

  .services h4 {
    width: auto;
  }

  .contact_index_content {
    flex-direction: column-reverse;
  }

  .contact_index_form_inputs {
    gap: 15px;
  }
  .contact_index_form form {
    gap: 15px;
  }

  .map_info_content {
    display: none;
  }

  .info_content {
    flex-direction: column;
    flex: none;
  }

  .info_index {
    width: auto;
  }

  .galeria > div {
    width: 50%;
    height: 50vw;
  }

  section {
    min-height: auto;
    padding: 120px 0 60px 0;
  }

  .section_info_index {
    padding: 0;
  }

  .info_index_img {
    width: auto;
    height: 450px;
  }

  .message_send_form,
  .message_error_form {
    top: 335px;
    right: 30px;
  }

  .contact_minis_content {
    display: none;
  }

  .message_send_form,
  .message_error_form {
    top: 25px;
    right: 33px;
  }
}
