@charset "UTF-8";

/* CSS Document */
:root {
    --fuente-documento: "Gotham-Light";
    --color-primario: #009eb0;
    --color-secundario: #83d0f2;
    --titulo-grande: 4rem;
    --titulo-seccion: 3.2rem;
    --subtitulos: 2rem;
    --p-font-size: 1.6rem;
    --gris-fuerte: #878787;
    --gris-claro: #f1f1f1;
    --texto-campana: 3rem;
    --lineado-campana: 3rem;
}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--fuente-documento);
    color: var(--gris-fuerte);
}

main {
    padding-top: 10px;
}

.border_infe {
    padding-bottom: 10px;
}

/* ==========================================================================
   header 
   ========================================================================== */

.circulo {
    background: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.circulo-act {
    background: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #fff;
}

.circulo2 {
    background: var(--color-primario);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.circulo-act2 {
    background: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;

    margin-bottom: 2rem;
    border: 1px solid var(--color-primario);
}

.c-navega {
    position: absolute;
    z-index: 1;
}

body {
    overflow-x: hidden !important;
}

header {
    position: relative;
    overflow: hidden;
}

.section-wave {
    position: absolute;
    z-index: 9;
    height: 100%;
    top: 0;
    width: 13%;
    right: 0;
}

.campana {
    /* background:url("../../imagenes/campana.webp") no-repeat center; */
    background-size: cover;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.campana::before {
    content: "";
    background: rgb(1, 47, 83);
    background: linear-gradient(6deg, rgba(1, 47, 83, 0) 0%, rgb(1 47 83 / 45%) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 100px;
    top: 0;
    height: 300%;
    right: -50px;
    background: url("../../imagenes/olas-amalfi.svg") repeat-y;
    background-position: bottom;
}

.w1 {
    animation: w1 7s linear infinite;
}

@keyframes w1 {
    0% {
        margin-top: 0;
    }

    100% {
        margin-top: -1080px;
    }
}

.w2 {
    animation: w2 7s linear -0.125s infinite, desplazamiento 7s ease infinite;
    opacity: 0.2;
}

@keyframes w2 {
    0% {
        margin-top: 0;
    }

    100% {
        margin-top: -1080px;
    }
}

@keyframes desplazamiento {
    0%,
    100% {
        transform: translateX(-25px);
    }

    50% {
        transform: translateX(-10px);
    }
}

.cambiar_idioma {
    width: 40px;
    height: 30px;
    position: fixed;
    top: 3.2em;
    right: 4em;
    cursor: pointer;
    font-size: 25px;
    z-index: 12;
    text-align: right;
    font-size: 25px;
    border: 1px solid white;
    align-items: center;
    display: flex;
    justify-content: center;
}

.menu-toggle {
    width: 40px;
    height: 30px;
    position: fixed;
    top: 5.2em;
    right: 2em;
    cursor: pointer;
    z-index: 12;
    text-align: right;
}

.menu-section nav {
    position: fixed;
    width: 100%;
}

.menu-toggle.on .one {
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.on .two {
    opacity: 0;
}

.menu-toggle.on .three {
    -moz-transform: rotate(-45deg) translate(8px, -10px);
    -ms-transform: rotate(-45deg) translate(8px, -10px);
    -webkit-transform: rotate(-45deg) translate(8px, -10px);
    transform: rotate(-45deg) translate(8px, -10px);
}

.top-menu {
    top: 6em !important;
    transition: 0.5s ease-in-out;
}

.top-cambiar-idioma{
    top: 3.7em !important;
    transition: 0.5s ease-in-out;
}

.one,
.two,
.three {
    width: 100%;
    height: 5px;
    background: white;
    padding: 0;
    margin: 6px auto;
    backface-visibility: hidden;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 5px;
}

nav ul {
    margin: 0;
    padding: 0;
    font-family: Open Sans;
    list-style: none;
    margin: 4em auto;
    text-align: center;
}

nav ul.hidden {
    display: none;
}

nav ul a {
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    text-decoration: none;
    color: white;
    font-size: 3em;
    line-height: 1.5;
    width: 80%;
    display: block;
    font-size: 3em;
    line-height: 3;
    font-family: "Big Caslon";
}

nav ul a:hover {
    text-decoration: none;
}

.menu-section.on {
    z-index: 12;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #009eb0;
    position: fixed;
    transition: 0.8s;
    /* transform: translateX(98%) !important; */
}

.pt-20 {
    padding-top: 30px;
}

.owl-nav {
    display: none;
}

/* .menu-section{
	
}
.menu-section-ani{
	transform: translateX(0) !important;
	transition: 0.8s;
} */
.flex-container {
    display: flex;
    flex-wrap: nowrap;
}

.campanainter {
    background: var(--color-primario);
    height: 500px;
}
 
.campanainter::before {
    content: "";
    background: rgb(1, 47, 83);
    background: linear-gradient(6deg, rgba(1, 47, 83, 0) 0%, rgb(1 47 83 / 23%) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.owl_campana .owl-dots {
    display: none;
}

.owl-un-item .owl-dots {
    position: absolute;
    bottom: 1em;
    right: 1em;
}

.txt-campana {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
    font-family: "Big Caslon";
    text-transform: uppercase;
    animation: txt-campana 2s ease-in-out;
}

.trasnparencia {
    background: rgb(1, 47, 83);
    background: linear-gradient(6deg, rgba(1, 47, 83, 0) 0%, rgba(1, 47, 83, 1) 100%);
    min-height: 100vh;
    width: 100%;
}

@keyframes txt-campana {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }

    100% {
        opacity: 1;
    }
}

.txt-campana h2 {
    font-size: var(--texto-campana);
    line-height: var(--lineado-campana);
    font-family: san serif !important;
}

.boton-borde {
    background: #009eb0;
    border: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 1.8rem;
    font-family: var(--fuente-documento);
    padding: 0.2rem 2rem;
    transition: 0.5s ease-in-out;
    border-radius: 2rem;
}

.boton-amalfi {
    background: linear-gradient(180deg, rgba(0, 158, 176, 1) 0%, rgba(149, 207, 238, 1) 100%);
    color: #ffffff;
    font-size: 1.8rem;
    font-family: var(--fuente-documento);
    padding: 0.2rem 2rem;
    transition: 0.5s ease-in-out;
    border-radius: 2rem;
    border: none;
}

.boton-amalfi:hover {
    background: linear-gradient(180deg, rgba(149, 207, 238, 1) 0%, rgba(0, 158, 176, 1) 100%);
}

.boton-borde:hover {
    background: #fff;
    color: var(--color-primario);
}
.link-rs {
    transition: none !important;
}
.link-rs:hover {
    background: none !important;
    transition: none !important;
    padding: 0 !important;
}

.super-contenedor {
    max-width: 1600px;
    margin: 0 auto;
}

#indicativo {
    text-indent: 25px;
}

.contenedor-mediano {
    max-width: 1380px;

    margin: 0 auto;
}

.zoom-plano {
    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    display: none;

    z-index: 3;
}

.zoom-plano img {
    width: 120px;

    height: 120px;
}

.plano:hover .img-plano {
    filter: brightness(0.7);
}

.plano:hover .zoom-plano {
    display: block;
    cursor: pointer;
}

.plano h4 {
    padding: 0 2rem;
    background: #fff;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    z-index: 2;
}

.miga {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.miga h6 {
    position: absolute;
    left: 0;
    text-orientation: mixed;
    z-index: 9;
    top: -30px;
    color: #fff;
}

.galeria-cartagena {
    background: url(../../imagenes/cartagena-amalfi-tower.webp) no-repeat center;
    background-size: cover;
}

#comentarios::placeholder {
    color: #fff !important;
}

input:focus {
    outline: none;
}

#comentarios:focus {
    outline: none;
}

button:focus {
    outline: none;
}

.campos-coti select {
    border: none;
    background: none;
    width: 100%;
    font-size: 1.8rem;
    color: var(--color-primario) !important;
    border: 1px solid var(--color-primario);
    padding: 1rem;
    border-radius: 1.8rem;
}

.campos-coti input[type="text"] {
    border: none;
    background: none;
    width: 100%;
    font-size: 1.8rem;
    border: 1px solid var(--color-primario);
    padding: 1rem;
    border-radius: 1.8rem;
}

.campos-coti input::placeholder {
    color: var(--color-primario) !important;
}

.campos-contac input[type="text"] {
    border: none;
    background: none;
    width: 100%;
    font-size: 1.8rem;
    border: 1px solid #fff;
    padding: 1rem;
    border-radius: 1.8rem;
}

.campos-contac input::placeholder {
    color: #fff !important;
}

.campos-contac textarea {
    border: none;
    background: none;
    width: 100%;
    font-size: 1.8rem;
    border: 1px solid #fff;
    padding: 1rem;
    border-radius: 1.8rem;
    color: #fff;
}

h6 a {
    color: var(--color-primario);
}

h6 a:hover {
    color: var(--color-secundario);

    text-decoration: none;
}

.grid-galeria {
    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));

    grid-auto-rows: minmax(300px, auto);

    grid-auto-flow: dense;

    gap: 1rem;
}

.galeri-item {
    background-size: cover !important;

    background-position: center !important;

    background-repeat: no-repeat !important;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    position: relative;
}

.galeri-item img {
    width: 60px;

    position: absolute;

    z-index: 10;

    display: none;
}

.galeri-item:hover {
    transform: scale(1.04);
}

.galeri-item:hover::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: #00000090;
}

.galeri-item:hover img {
    display: block;
}

.wide {
    grid-column: span 2;
}

.tall {
    grid-row: span 2;
}

/* ==========================================================================

   Nuevas clases y cambios de clases

   ========================================================================== */

/* ==========================================================================
   footer 
   ========================================================================== */
.fondo-pie {
    background: url("../../imagenes/amalfi-fondo-pie.webp") no-repeat center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.lista-pie ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.lista-pie ul li {
    font-size: 1.8rem;
    padding-right: 2rem;
    list-style: none;
}

.lista-pie ul li a {
    color: var(--color-primario);
    text-decoration: none;
}

.lista-pie ul li a:hover {
    color: #026671;
    text-decoration: none;
}

.fondo-pie::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -150px;
    background: url("../../imagenes/boceto-amalfi1.png") no-repeat;
    width: 35%;
    height: 50%;
    opacity: 0.2;
}

.fondo-pie::before {
    content: "";
    position: absolute;
    background: url("../../imagenes/boceto-amalfi2.png") no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    bottom: 0;
    right: -80%;
}

footer span:hover {
    cursor: pointer;
}

.grid-cards {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

figure {
    margin: 0;
    padding: 0;
}

.video-amalfi {
    display: flex;
    justify-content: center;
    width: 100%;
}

.video {
    width: 55%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.video video {
    width: 100%;
    object-fit: cover;
    height: 100%;
    min-height: 549px;
}

.t-video {
    position: absolute;
    right: -10px;
    top: 0;
}

.t-video img {
    width: 100%;
}

.torre {
    /*background: url("../../imagenes/amalfi-tower_02.webp") no-repeat center left;*/
    background: var(--color-primario);
    color: white;
    background-size: cover;
    width: 55%;
    padding: 3rem;
    border-bottom: 4px solid white;
}

.text-torre {
    text-align: center;
}

.amenidades {
    background: url("../../imagenes/fondo-ameni.webp") no-repeat;
    background-size: cover;
}

.galeria-ameni {
    background-size: cover;
    height: 75vh !important;
}

.galeria-ameni::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5970763305322129) 100%);
}

.text-galeria {
    position: absolute;
    z-index: 1;
    width: 98%;
    padding: 30px;
}

.plano {
    text-align: center;
    border: 1px solid var(--color-primario);
    position: relative;
    border-radius: 4rem;
    height: 400px;
}

.plano img {
    padding: 2rem;
}

.plano h4 {
    padding: 2rem;
    background: #fff;
    position: absolute;
    top: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}

.plano button {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.bg-primario {
    background: var(--color-primario);
}

.color-primario {
    color: var(--color-primario);
}

.ctg1 img {
    position: absolute;
    top: 0;
    right: -60px;
    width: 100%;
    height: 100%;
    display: flex;

    justify-content: flex-end;
}

.ctg1 img {
    width: 16%;
}

.txt-ctg {
    max-width: 450px;
}

.raya {
    width: 30%;
    height: 1px;
    background: #fff;
}

.esp-gale {
    max-width: 450px;
}

.img-cartagena img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* ==========================================================================
   Textos
   ========================================================================== */
.titulo-grande {
    font-size: var(--titulo-grande);
}
.titulo-grande-2 {
    font-size: var(--titulo-grande);
}

.btn-flip-toggle {
    top: 78%;
    height: 30px;
    background: none;
    color: rgba(0, 158, 176, 1);
    font-size: 1.8rem;
    font-family: var(--fuente-documento);
    padding: 0.2rem 2rem;
    transition: 0.5s ease-in-out;
    border-radius: 2rem;
    border: 1px solid rgba(0, 158, 176, 1);
}

.flip-container {
    perspective: 1000px;
    width: 100%;
    position: relative;
}

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.flip-container.flipped .flipper {
    transform: rotateY(180deg);
}

.front,
.back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
}

.titulo-index2 {
    font-family: "Gotham-Medium";
    color: var(--color-primario);
}

.titulo-seccion {
    font-size: var(--titulo-seccion);
    font-family: "Big Caslon";
}

.subtitulo-seccion {
    font-size: var(--subtitulos);
}

.btn-whatsapp {
    position: fixed;
    z-index: 401;
    right: 1%;
    bottom: 6%;
    width: 7em;
    height: 5em;
}

p {
    font-size: var(--p-font-size);
    text-align: justify;
}

h3 {
    font-size: 2.2rem;
    font-family: "Big Caslon";
}

h4 {
    font-size: 2rem;
}

h6 {
    font-size: 1.4rem;
}

b {
    font-family: "Gotham-Bold";
}

/* ==========================================================================
   font-face
   ========================================================================== */

@font-face {
    font-family: "Gotham-Thin";
    src: url("../fuentes/Gotham-Thin.woff2") format("woff2"), url("../fuentes/Gotham-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Gotham-Light";
    src: url("../fuentes/Gotham-Light.woff2") format("woff2"), url("../fuentes/Gotham-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Gotham-Black";
    src: url("../fuentes/Gotham-Black.woff2") format("woff2"), url("../fuentes/Gotham-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Gotham-Bold";
    src: url("../fuentes/Gotham-Bold.woff2") format("woff2"), url("../fuentes/Gotham-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Gotham-Medium";
    src: url("../fuentes/Gotham-Medium.woff2") format("woff2"), url("../fuentes/Gotham-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gotham Extra";
    src: url("../fuentes/Gotham-ExtraLight.woff2") format("woff2"), url("../fuentes/Gotham-ExtraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Big Caslon";
    src: url("../fuentes/BigCaslon-Medium.woff2") format("woff2"), url("../fuentes/BigCaslon-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
  font-face
   ========================================================================== */

/* ==========================================================================
  inputs
   ========================================================================== */

.contact input[type="text"] {
    border: none;
    background: none;
}

.contact input::placeholder {
    color: #fff !important;
}

.form_contactenos {
    color: white !important;
}

.match-height {
    display: flex;
    align-items: stretch;
  }
  
  .match-height > div {
    display: flex;
    flex-direction: column;
  }
  

@media (max-width: 1440px) {
    .galeria-ameni {
        height: 85vh !important;
    }
}
@media (max-width: 1200px) {
    .ctg1 img {
        right: -20px;
    }
}

@media (max-width: 992px) {
    .txt_construccion {
        font-size: 20px !important;
    }
    .text-galeria {
        position: absolute;
        z-index: 1;
        width: 90%;
    }

    /* .galeria-ameni {

		height: 500px;
		padding-right: 2.0rem;
	} */

    .plano {
        margin-bottom: 5rem;
    }

    .torre {
        width: 100%;
        padding: 1rem;
    }
}

/* ==========================================================================
  menu nuevo
   ========================================================================== */
.menu {
    min-height: 100vh;
    background: var(--color-primario);
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-activ {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #000;
    z-index: 10;
    left: 10%;
    top: 50%;
    color: #fff;
}

.menu article {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-menu {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    filter: brightness(0.3);
}

.menu ul li {
    font-size: 2.3rem;
    font-family: "Big Caslon";
    list-style: none;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.menu ul li a {
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 1500ms ease;
}

.menu ul li a:hover {
    background: #fff;
    color: var(--color-primario);
    text-decoration: none;
    padding: 0 2rem;
}

figure {
    margin: 0;
    padding: 0;
}

.wave-menu {
    position: absolute;
    width: 120px;
    top: 0;
    right: 0;
    background: url("../../imagenes/olas2.svg") repeat-y;
    height: 100%;
    z-index: 100;
}

.color-cerrar {
    background: #ffffff !important;
}

.wrapper {
    position: relative;
}

.slide {
    position: absolute;
    left: -100%;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    filter: brightness(0.3);
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 0.5s;
}

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}

/* ==========================================================================
   MODAL !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   ========================================================================== */
.modal-amalfi {
    max-width: 600px;
    margin: 0 auto;
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 2rem;
}

.modal-amalfi input[type="text"] {
    border: none;
    background: none;
    background: #ffffff;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-family: "Gotham-Light";
    color: #888888;
    border: 1px solid #cacbcc;
}

.modal-amalfi textarea {
    border: none;
    background: none;
    background: #ffffff;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;

    font-size: 1.4rem;
    font-family: "Gotham-Light";
    color: #888888;
    border: 1px solid #cacbcc;
    height: 9rem;
}

.modal-amalfi label {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: "Gotham-Light";
    color: #888888;
}

.modal-amalfi button {
    background: none;
    border: none;
    border: 1px solid var(--color-primario);
    color: var(--color-primario);
    font-size: 1.5rem;
    padding: 0.4rem 3rem;
    transition: 0.5s ease-in-out;
    text-transform: uppercase;
    border-radius: 20px;
}

#contenedor {
    background: rgba(0, 0, 0, 0.34);
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
}

.row-modal {
    width: auto;
    border-radius: 10px;
    position: fixed;
    top: 0%;
}

.btn-cerrar:hover {
    color: #0e3156;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    padding: 0rem 0rem 0rem 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    width: 100%;
    height: 28%;
}

.error-input {
    background: #ff110052 !important;
    color: #ffff;
}

@media (min-width: 2560px) {
	img.logo-principal {
		width: 500px !important;
	}
    .galeria-ameni {
        height: 55vh;
    }
    .plano {
        height: 700px !important;
    }
    .btn-flip-toggle {
        top: 90% !important;
    }
    .altos_cartagena {
        height: 60vh !important;
    }
    .txt_construccion {
        padding-left: 100px !important;
    }
    .txt-campana h2 {
        font-size: 70px;
        line-height: 75px;
    }
    .boton-borde {
        font-size: 35px !important;
    }
    main {
        padding-top: 45px;

    }
    .border_infe {
        padding-bottom: 45px;
    }
	.boton_main{
		font-size: 1.4rem !important;
	}
	.iframeMapa{
		height: 700px !important;
	}
}

@media (max-width: 1200px) {
    .campana {
        min-height: 700px;
        height: 700px;
    }
}

@media (max-width: 992px) {

	.galeria-ameni {
        height: 70vh !important;
    }
    .fondo-pie::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -330px;
        background: url("../../imagenes/boceto-amalfi1.png") no-repeat;
        width: 100%;
        height: 50%;
        opacity: 0.2;
    }

    .fondo-pie::before {
        content: "";
        position: absolute;
        background: url("../../imagenes/boceto-amalfi2.png") no-repeat;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        bottom: 0;
        right: -80%;
    }

    .campanainter {
        background-size: cover !important;
        background-position: 0px !important;
    }

    .galeria_avance_obra {
        height: 25vh !important;
    }
    :root {
        --texto-campana: 3rem;
        --lineado-campana: 3.5rem;
    }

    .txt-campana {
        position: absolute;
        color: #fff;
        text-align: center;
    }

    .campana {
        min-height: 320px;
        height: 300px;
    }

    .boton-borde {
        font-size: 1.8rem;
    }

    .logo img {
        max-width: 185px;
        width: 100%;
    }

    .wave {
        position: absolute;
        width: 100px;
        top: 0;
        height: 300%;
        right: -120px;
        background: url("../../imagenes/olas-amalfi.svg") repeat-y;
        background-position: bottom;
    }
    .txt-campana h2 {
        font-size: 16px;
        font-weight: bold;
    }
    .top-menu {
        top: 8em !important;
    }
    .galeria-ameni {
        height: 40vh !important;
    }
	main{
		padding: 0px !important;
	}
}

@media (max-width: 768px) {
    html {
        font-size: 52.5%;
    }
}

@media (max-width: 480px) {
    .wave {
        width: 156px;
    }

    .owl-nav {
        display: block;
    }

    .owl-tres-items .owl-dots {
        display: none;
    }

    .owl-tres-items .owl-nav {
        position: relative;
    }

    .owl-tres-items .owl-nav .owl-prev span {
        font-size: 62px;
        position: absolute;
        left: 0.5em;
        top: -0.5em;
        color: #23aabf;
    }

    .owl-tres-items .owl-nav .owl-next span {
        font-size: 62px;
        position: absolute;
        right: 0.5em;
        top: -0.5em;
        color: #23aabf;
    }
}

@media (max-width: 414px) {
    .row-modal {
        right: 1em;
        height: 36%;
        width: 58%;
    }
}
