/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap');


/* Global */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

html {
    text-rendering: optimizelegibility;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

.App {
    position: relative;
    overflow: hidden;
}

:root {
    --darkTromarco: #19191C;
    --goldTromarco: #EDB40D;
    --blueTromarco: #1C2944;
    --lightTromarco: #ECEDF0;
}

#root {
    width: 100%;
    height: 100%;
}

::selection {
    background: #EDB40D;
    color: #19191C;
}

* {
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}


input[type="submit"],
button {
    cursor: pointer;
    background: none;
}

input[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input,
button {
    margin: 0;
    padding: 0;
    border: 0;
}

div,
input,
textarea,
select,
button,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
a:focus {
    outline: none;
}

h2 {
    line-height: 40px;
}

ul,
ol {
    list-style-type: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-zoom: none;
}

body {
    background-color: #19191C;
    position: relative;
    color: #ECEDF0;
    min-width: 375px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.77778;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;

}

p {
    color: #ECEDF0;
    font-size: 16px;
}


a:hover {
    text-decoration: none;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

a,
button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button:focus {
    outline: none;
}

.container {
    padding: 0 40px;
    position: relative;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#EDB40D;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
  z-index:10;
  box-shadow: 0px 0px 13px #edb40d70!important;
}
.my-float{
	margin-top:16px;
}

/* Header CSS */

.navTromarco {
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #19191c8a;
    z-index: 99999;
    opacity: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

.headerTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navMenu {
    display: flex;
    font-size: 15px;
    font-style: italic;
    font-feature-settings: "salt";
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 0;
    margin: .5rem 1rem;
}
.storeLink {
    background: #edb40d;
    padding: 5px 15px;
    font-weight: 500;
}

.nav-link:before {
    width: 0%;
    height: 3px;
    position: absolute;
    background-color: #EDB40D;
    content: '';
    top: -3px;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}
.storeLink::before {
    content: none;
}
.nav-link:hover:before {
    width: 100%;
}

.nav-link.active:before {
    width: 100%;
}

.nav-link:last-child {
    margin-right: 0;
}

.navButton {
    height: 15px;
    width: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navButton span {
    height: 1px;
    width: 100%;
    background-color: #EDB40D;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

.activeHeader .navButton span:nth-child(2) {
    opacity: 0;
}

.activeHeader .navButton span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 6px);
    transform-origin: bottom;
}

.activeHeader .navButton span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, 0px);
    transform-origin: bottom;
}

/* Styles Global */

h5 {
    color: #EDB40D;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 16px;
}

h1 {
    font-size: 60px;
    margin-bottom: 35px;
    line-height: 57px;
}
.entrega {
    padding: 11px 18px;
    border: solid 1px #edb40d;
    color: #edb40d;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;

}

.boton {
    padding: 11px 18px;
    border: solid 1px;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    width: fit-content;
    cursor: pointer;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    pointer-events: all;
}

.botonCorto {
    width: 140px;
}

.lightbtn {
    border-color: #fff;
    color: #fff;
}

.lightbtn:hover {
    background-color: #fff;
    color: #19191C;
}

.drkbtn {
    border-color: #19191C;
    color: #19191C;
}

.drkbtn:hover {
    background-color: #19191C;
    color: #ECEDF0;
}

.fullDrk {
    background-color: #19191C;
    color: #19191C;
}

.fullDrk:hover {
    border-color: #19191C;
    background-color: #EDB40D;
    color: #19191C;
}

.fullDrk:hover p {
    color: #19191C;
}

.containerflex {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

hr {
    background-color: #EDB40D;
    height: 2px;
    width: 30px;
    margin: 27px auto;
}

.desactivado {
    visibility: hidden;
    opacity: 0;
}

.desactivadoNone {
    display: none;
}

/* Mark */

.markLine {
    position: relative;
}

.markSvg {
    position: absolute;
    left: -40px;
    width: 130%;
    top: -7px;
}
.svgDesa {
    position: absolute;
    bottom: 5%;
    right: 7%;
}

.pathMark,
.flechaPath,
.puntaFlechaPath {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation-name: dash;
    fill: none;
    animation-fill-mode: both;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: ease-in-out;

}

.redondoLine,
.masRedondo {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    fill: none;
    animation-fill-mode: both;
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
}

.completeLine .redondoLine,
.completeLine .masRedondo {
    stroke-dashoffset: 0;

}

.flechaPath {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.puntaFlechaPath {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

@keyframes dash {
    from {
        stroke-dashoffset: 1500;
    }

    to {
        stroke-dashoffset: 0;
    }
}


@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 1500;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.flechaSvg {
    position: absolute;
}

.redonHover {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50%;
    right: 0;
    top: 27%;
}

/* Hero Home */

.heroHome {
    height: 100%;
    width: 100%;
    min-height: 800px;
    position: relative;
}

.slideTrom {
    height: 100%;
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.slidePlaza {
    background-image: url(../src/plaza/plaza2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slidePlaza2 {
    background-image: url(../src/plaza/plaza3.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.slidePlazab:before {
    background-color: #191a1d75!important;

}

.slideLoft {
    background-image: url(../src/loft/loft1.jpg);
    background-size: cover;
    background-position: center;
}
.slideLoft2 {
    background-image: url(../src/loft/loft2.jpg);
    background-size: cover;
    background-position: center;
}
.slideLoft3 {
    background-image: url(../src/loft/loft3.jpg);
    background-size: cover;
    background-position: center;
}
.slideSaav {
    background-image: url(../src/saavedra/saavedraexterior1.jpg);
    background-size: cover;
    background-position: center;
}
.slideSaav2 {
    background-image: url(../src/saavedra/saavedra2.jpg);
    background-size: cover;
    background-position: center;
}
.slideSaav3 {
    background-image: url(../src/saavedra/saavedraexterior2.jpg);
    background-size: cover;
    background-position: center;
}
.slidesDes:before {
    background-color: #191a1d75!important;

}

.slideDiez {
    background-image: url(../src/homemdp.jpg);
    background-size: cover;
    background-position: center;
}
.videoHome {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
.videoHome::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    background-image: radial-gradient(60% 60%, rgba(37, 26, 26, 0.28) 50%, #0c0c0c7d 85%);
    transition: all 1s;
    transition-delay: .5s;
}
.slidePlaza h1 {
    color: #19191C;
    font-weight: 500;
    font-size: 90px;
    line-height: 80px;
}
.slidePlaza em {
    color: #edb40d;
}
.logoPlazaHero {
    width: 290px!important;
    margin-bottom: 50px;
}

.slideDiez h3 {
    font-size: 36px;
    font-weight: 300;
    line-height: 36px;
    font-style: inherit;
}
.diezA {
    fill: #edb40d;
    height: 200px;
    width: auto;

}
.active .diezA {
    clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0);
    -webkit-animation: svgDiez 2s 1s both ease-in-out;
    animation: svgDiez 2s 1s both ease-in-out;
}


@keyframes svgDiez {
    0% {
        clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0);
    }

    100% {
        clip-path: polygon(100% 0%, 100% 100%, 0 100%, 0 0);
    }
}

@-webkit-keyframes svgDiez {
    0% {
        clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0);
    }

    100% {
        clip-path: polygon(100% 0%, 100% 100%, 0 100%, 0 0);
    }
}

.trom-carousel,
.trom-carousel .owl-stage-outer,
.trom-carousel .owl-stage,
.trom-carousel .owl-item {
    height: 100%;
    min-height: 700px;
}
.owl-dots {
    transition: all .5s;
}

.trom-carousel .owl-dots {
    position: absolute;
    top: 48%;
    transform: rotate(90deg);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid #ffffff8c;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}
.owl-item div {
    position: relative;
    z-index: 1;
}


.comunidadHero h1 {
    font-size: 80px;
    line-height: 80px;
    font-weight: 500;
}
.comunidadHero p {
    font-size: 16px;
    margin-bottom: 30px;
}

.slideTrom:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all 1s;
    transition-delay: .5s;
}
.slideSomos {
    background-image: url(../src/saavedra/saavedraBib.jpg);
    background-size: cover;
    background-position: 0 30%;
}

.slideTrom:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-transition: all 1s;
    transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    transition-delay: .5s;
}

.active .slideTrom:after {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

/* Fin Hero Home */

/* Modulos */
.modulo {
    min-height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.moduText {
    width: 60%;
}

.moduNum {
    min-height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fondNum {
    background-image: url(../src/fondnum.png);
    background-size: cover;
    background-position: center;
}

.fondNum:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #191a1ea8;
    height: 100%;
    width: 100%;
}

.colTrom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}

.colTrom div {
    position: relative;
}

.colTrom div:before {
    content: '';
    position: absolute;
    background-color: #EDB40D;
    height: 30%;
    width: 3px;
    top: 35%;
    left: -20px;
}

h3 {
    font-size: 31px;
    font-weight: 500;
    font-style: italic;
    line-height: 30px;
}

.lightModu {
    background-color: #ECEDF0;
}

.text-darkTrom {
    color: #19191C!important;
}

/* Comunidad Modulo */

.comuModulo {
    background-image: url(../src/fondoPlaza.png);
    background-size: cover;
    background-position: center;
}

.comuModulo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #1C2944;
    opacity: .8;
}

.text-gray {
    color: #949494;
}

/* Brands */
.brandCar {
    width: 160px;
    height: 65px;
}

.brandCar img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.brands-carousel {
    margin-top: 40px;
}

.brandMod .owl-stage-outer:before {
    background: linear-gradient(to right, #19191c, rgba(25, 25, 27, 0) 10.92%, rgba(25, 25, 27, 0) 90%, #19191c);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 1;
}

/* Fin Modulos */

/* Form */

.contacts__form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.contacts__field {
    width: 50%;
    display: flex;
}

.field__textarea,
.field__input {
    width: 100%;
}

.colorBack {

    background-color: #EDB40D;
}

.contactFlex {
    display: flex;
    margin-top: 40px;
}

.col30 {
    width: 30%;
    display: flex;
    margin-right: 10px;
}

.col30 img {
    width: 100%;
    margin-top: -40px;
    max-width: 280px;
}

.col70 {
    width: 70%;
    display: flex;
    justify-content: center;
}





.alert-warning {
    color: #ffffff !important;
    background-color: #4caf50;
    border: none !important;
    border-radius: 0;
    position: fixed;
    width: -webkit-fill-available;
    display: flex;
    left: 0;
    bottom: 0;
    z-index: 999;
    height: 80px;
    justify-content: center;
    align-items: center;
    transform: translateY(400px);
    transition: .8s ease-in-out all;
    padding: 0 !important;
    font-weight: 300;
    margin: 10px 90px;
}

.contacts__form .boton {
    width: 140px;
    height: 55px;
}
.closeAlert span {
    font-size: 45px;
    font-weight: 200;
}
.alert-red {
    background-color: #e64e4e;
}

.alertani {
    transform: translateY(0px);
}

.alert-dismissible .closeAlert {
    position: absolute !important;
    top: inherit !important;
    right: 0;
    padding: .75rem 1.25rem;
    color: #fff;
}
.alertani {
    transform: translateY(0px);
}

.closeAlert {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: none !important;
    opacity: 1 !important;
    transition: .5s all;
}




.loader-2 {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 25%;
    display: none;
}

.loader-2 span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #fff;
    margin: 0 3px;
}

.loader-2 span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

.loader-2 span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.loader-2 span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {

    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* End Form  */

/* Desarrollos Modulos */

.individualTromarco .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
}

.noTopPad {
    padding-top: 0 !important;

}

.cartaDesarrollo {
    min-height: 350px;
    width: 100%;
    height: 450px;
    max-height: 500px;
    padding: 25px;
    position: relative;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}


.cartaDesarrollo div {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.desa-carousel .owl-stage-outer {
    overflow: visible;
}

.cartaDesarrollo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #0000000f;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

.titleCard {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: normal;
}
.titlenew {
    font-weight: 400;
}
.titlenew span {
    color: #edb40d;
}
.uniteDiv span {
    color: #edb40d;
}
.divTitle {
    margin: 40px 0 40px;
}
.margTitle {
    margin-bottom: 40px;
}
.subTitleCard {
    font-size: 14px!important;
    color: #EDB40D!important;
    font-weight: 400;
}

.mrgBtn {
    margin-top: 50px;
}

.centerFlex {
    align-items: center;
}

.cartaDesarrollo:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
}

.cartaDesarrollo:hover:after {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #191a1e9e;
}

/* Fin Desarrollos Modulos */

/* Map */

.tromarcoMap {
    min-height: 430px;
}

.tromarcoMapContacto {
    min-height: 430px;
}

.individualTromarco .tromarcoMap {
    min-height: 600px;
}

.textMap {
    font-size: 15px;
    margin: 0;
    color: #19191C;
    font-style: italic;
}

.midModImg {
    height: 550px;
}

/* Footer */
.moduFooter {
    padding: 30px 0 0;
    min-height: 150px;
}

.moduFooter .colTrom {
    margin-bottom: 20px;
    align-items: baseline;
    padding: 0;
}

.moduFooter .colTrom div:before {
    content: none;
}

.moduFooter h5 {
    margin-bottom: 10px;
    color: #3b3b3b;
    font-size: 13px;
}

.itemCol {
    color: #19191C;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    font-size: 11px;
}

.itemCol p {
    color: #19191C;
    font-size: 11px;
}

.itemCol p:first-of-type {
    margin-bottom: 5px !important;
}

.copyRight {
    color: #19191C;
    font-size: 11px;
    border-top: 1px solid #19191C;
    padding: 15px 0;
    font-weight: 400;
}
.contacts__field {
    width: 80%;
    display: flex;
}

/* Fin Footer */


/* Pagina desarrollos */

.extraMargen {
    margin-top: 60px;
    padding-bottom: 80px !important;
}

.desarrollosFlex .cartaDesarrollo {
    margin-bottom: 30px;
    min-height: 450px;
    height: 550px;
    max-height: 550px;
    text-align: left;
}

.goldbtn {
    background: #EDB40D;
    color: #fbfbfb;
    border: none;
}
.goldbtn:hover {
    background: #56430b;
    color: #EDB40D;
    border: none;
}
.loftHero h1, .saavHero h1 {
    margin-bottom: 15px;
}

.margBoton {
    margin-top: 10px;
}

.fullCard {
    width: 100%;
}

.midCard {
    width: 48.8%;
}

.cardPlus {
    min-height: 650px !important;
    height: 650px !important;
    max-height: 700px !important;
}

.desarrollosFlex {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.desarrollosFlex a {
    width: inherit;
    position: relative;
    display: contents;
}

.minMargen {
    margin-top: -100px;
}

.lightGrayBck {
    background-color: #27272A;
}


/* Galeria */

.galeria-carousel,
.galeria-carousel .owl-stage,
.galeria-carousel .owl-stage-outer, .galeria-carousel .owl-item img {
    min-height: 600px;
    max-height: 650px;
}

.galeria-carousel {
    margin: 40px 0;
}


.galeria-carousel .owl-item img {
    object-position: center;
    object-fit: cover;
    height: -webkit-fill-available;
}

.galeria-carousel .owl-nav {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 650px;
    max-height: 650px;
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 130px;
    color: #EDB40D;
    font-weight: 100;
    pointer-events: none;
}

.galeria-carousel .owl-nav span {
    line-height: 0.60;
    display: inherit;
    height: 100px;
    width: 100px;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 100%;
}

.galeria-carousel .owl-nav button {
    margin: 0 !important;
    border-radius: 0 !important;
    transition: .5s all;
    pointer-events: all;
}



.galeria-carousel .owl-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.fslightbox-container {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.galeria-carousel .owl-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-transition: all 1s;
    transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    transition-delay: .5s;
    pointer-events: none;
}
.fslightbox-source {
    min-height: 800px;
    min-width: 800px;
    object-fit: contain;
}

.galeria-carousel .active.owl-item:after {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

/* Planos */

.planos-carousel,
.planos-carousel .owl-stage,
.planos-carousel .owl-stage-outer, .planos-carousel .owl-item img {
    min-height: 600px;
    max-height: 650px;
}

.planos-carousel {
    margin: 20px 0 30px;
}


.planos-carousel .owl-item img {
    object-position: center;
    object-fit: contain;
    height: -webkit-fill-available;
}

.planos-carousel .owl-nav {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 600px;
    max-height: 650px;
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size: 130px;
    color: #EDB40D;
    font-weight: 100;
    pointer-events: none;
}

.planos-carousel .owl-nav span {
    line-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.planos-carousel .owl-nav button {
    margin: 0 !important;
    border-radius: 0 !important;
    transition: .5s all;
    pointer-events: all;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    text-decoration: none;
    color: #edb40d;
}
.owl-prev:hover {
    transform: translateX(10px)!important;
}
.owl-next:hover {
    transform: translateX(-10px)!important;
}
.owl-prev {
    position: relative;
    right: 50px;
}
.owl-next {
    position: relative;
    left: 50px;
}
.planos-carousel .owl-dots {
    margin-top: 20px;
}

.planos::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #191a1ec9;
}

.loftPlanos {
    background-image: url(../src/loft/loft1.jpg);
}

.saavedraPlanos {
    background-image: url(../src/saavedra/saavedra2.jpg);
}

.estudioPlanos {
    background-image: url(../src/estudio/estudio2.jpg);
}

.nortePlanos {
    background-image: url(../src/norte/norte2.jpg);
}

.faluchoPlanos {
    background-image: url(../src/falucho/falucho4.jpg);
}

.siciliaPlanos {
    background-image: url(../src/sicilia/sicilia6.jpg);
}

.planos-carousel .owl-nav [class*=owl-]:hover {
    background: none;
    text-decoration: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.planos {
    background-size: auto;
    background-position: center;
}

.midText {
    width: 50%;
    margin-left: auto;
    padding: 0 40px;
}

.loftMapImg {
    background-image: url(../src/loft/loftMap.png);
}

.saavedraMapImg {
    background-image: url(../src/saavedra/saavedraMap.jpg);
}

.estudioMapImg {
    background-image: url(../src/estudio/estudiomap.jpg);
}

.norteMapImg {
    background-image: url(../src/norte/norteMap.jpg);
}

.imgMap {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    background-size: cover;
    background-position: center;
}

.imgMap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(60% 60%, rgba(37, 26, 26, 0.34) 50%, #0c0c0c3b 85%);
}
/* Loader */

.loadTrom {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000000;
    -webkit-transition: all .5s;
    transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.l1 {
    background-color: #19191C;
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
.l2 {
    background-color: #edb40d;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    z-index: 2;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}

.loadLogo {
    width: 190px;
    height: auto;
    position: absolute;
    z-index: 4;
    top: 47%;
    -webkit-transition: all .1s;
    transition: all .1s;
    -o-transition: all .1s;
    animation: zoomIso 2s infinite;
    -webkit-animation: zoomIso 2s infinite;
}

@keyframes zoomIso {
    0% {
        transform: scale(.9);
        opacity: 1;
    }
    80% {
        transform: scale(1);
        opacity: .5;
    }
    100% {
        transform: scale(.9);
        opacity: 1;
    }
}
@-webkit-keyframes zoomIso {
    0% {
        transform: scale(.9);
        opacity: 1;
    }
    80% {
        transform: scale(1);
        opacity: .5;
    }
    100% {
        transform: scale(.9);
        opacity: 1;
    }
}

/* Cartas */
.loftHero {
    background-image: url(../src/loft/loftexterior2.jpg);
    background-size: cover;
}
.saavHero {
    background-image: url(../src/saavedra/saav1.jpg);
    background-size: cover;
}
.heroHome::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(
        45deg
        , #19191cc2, transparent);
}
.heroHome {
    justify-content: center;
}
.heroHome span {
    color: #edb40d;
}
.heroHome h5 {
    color: #fbfbfb;
}
.galeriaAvances a {
    width: 30%;
    height: 200px;
    display: flex;
    margin: 0;
    flex-direction: column;
}
.galeriaAvances a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galeriaAvances {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    width: 100%;
    width: 100%;
    justify-content: space-between;
}
.loftCard {
    background-image: url(../src/loftCard.png);
    background-size: cover;
    background-position: center;
}

.plazaCard {
    background-image: url(../src/plaza/plaza2.jpg);
    background-size: cover;
    background-position: 50% 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plazaCard .redonHover {
    display: none;
}
.plazaCard .subTitleCard {
    text-align: center;
}

.plazaCard img {
    margin-bottom: 30px;
    width: 350px;
}


.inverLogo img {
    filter: invert(1);
}
.cartaDesarrollo.plazaCard::before {
    background-image: none;
    background-color: #0000004f;
}

.saavedraCard {
    background-image: url(../src/saavedra/saavedraexterior1.jpg);
    background-size: cover;
    background-position: top;
}

.estudioCard {
    background-image: url(../src/estudioCard.png);
    background-size: cover;
    background-position: center;
}

.norteCard {
    background-image: url(../src/norteCard.png);
    background-size: cover;
    background-position: center;
}

.faluchoCard {
    background-image: url(../src/faluchoCard.png);
    background-size: cover;
    background-position: center;
}

.siciliaCard {
    background-image: url(../src/siciliaCard.png);
    background-size: cover;
    background-position: center;
}

.bulnesCard {
    background-image: url(../src/bulnesCard.jpg);
    background-size: cover;
    background-position: center;
}

.quintanaCard {
    background-image: url(../src/quintanaCard.jpg);
    background-size: auto 145%;
    background-position: 40% 100%;
}

/* Fin Pagina desarrollos */


/* Desarrollo Individual */

.logoDesa {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 30px;
}

.logoDesa img {
    height: 100px;
}

.margenTituloDesa {
    padding: 170px 0 60px!important;
    min-height: auto !important;
}

.desarrolloImg {
    min-height: 800px;
    background-size: cover;
    position: relative;
}

.botPad {
    padding-bottom: 60px!important;
}
.cartaDesarrollo.plazaCard div {
    align-items: center;
}

.loftDes {
    background-image: url(../src/loft/loftexterior1.jpg);
    background-position: center;
}

.saavedraDes {
    background-image: url(../src/saavedra/saavedraexterior1.jpg);
    background-position-y: 25%;
}

.estudioDes {
    background-image: url(../src/estudio/estudioexterior1.jpg);
    background-position: center;
}

.norteDes {
    background-image: url(../src/norte/norte1.jpg);
    background-position: top;
}

.faluchoDes {
    background-image: url(../src/falucho/faluchoexterior1.jpg);
    background-position: center;
}

.siciliaDes {
    background-image: url(../src/sicilia/sicilia1.jpg);
    background-position: center;
}

.bulnesDes {
    background-image: url(../src/bulnes/bulnes1.jpg);
    background-position: center;
}

.quintanaDes {
    background-image: url(../src/quintanaCard.jpg);
    background-position: center;
}

.footerDes {
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    bottom: 0;
    width: 100%;
}
.linksFoot {
    width: 100%;
    display: flex;
}

.bottomFlex {
    display: flex;
    align-items: flex-end;
}

.linksFoot a {
    margin-right: 40px;
}

.linksFoot a {
    font-weight: 500;
    text-decoration: underline;
    font-style: italic;
    font-size: 16px;
}


.svgClip {
    clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 44%);
    animation: svgAni 2s 1s both ease-in-out;
    -webkit-animation: svgAni 2s 1s both ease-in-out;
    fill: #fbfbfb;
}
img.mapaimg {
    width: 100%;
}

/* Accordion */

.wrapper {
	color: #fff;
}
.toggle {
	width: 100%;
	background-color: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 17px;
	font-weight: 600;
	color: white;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 25px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    text-align: left;
}
.content {
	background: rgba(255, 255, 255, 0.2);
	font-size: 1rem;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	border-radius: 0 0 5px 5px;
}
.content p {
	padding: 15px 30px;
}
.fab {
	color: #fff;
}
.alignself {
    align-self: center;
}
.box {
    padding: 30px 0 0px;
}

/* End Accordion */

/* Form  */

.moduForm {
    position: fixed;
    display: none;
    z-index: 99;
    width: 100%;
    height: 100%;
    align-items: center;
    background: #fcfdff4a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -webkit-transition: all .5s;
    transition: all .5s;
}
.formActive {
    display: flex!important;
}
button.closeForm {
    width: 40px;
    top: 5px;
    font-size: 40px;
    position: absolute;
    right: 20px;
}
.moduForm h2 {
    font-size: 40px;
}
.moduForm > div {
    padding: 60px 40px 40px 40px!important;
    max-width: 720px;
}
.contacts__form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
.field__textarea, .field__input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #fbfbfb;
    margin: 0 0 10px 10px;
    padding: 7px 15px;
    color: #fbfbfb;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
}

.moduForm > div {
    background: #19191c;
}
.closeForm {
    color: #fbfbfb;
}
@keyframes svgAni {
    0% {
        clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 44%);
    }

    100% {
        clip-path: polygon(100% 0%, 100% 100%, 0 100%, 0 0);
    }
}

@-webkit-keyframes svgAni {
    0% {
        clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 44%);
    }

    100% {
        clip-path: polygon(100% 0%, 100% 100%, 0 100%, 0 0);
    }
}

.imgMaqueta img {
    width: 100%;
    filter: drop-shadow(0px 0px 1px #00000001);
}

.noHidden {
    overflow: visible;
}

.imgMaqueta {
    margin-top: -200px;
    position: relative;
    z-index: 0;
    width: 60%;
}

.descripcionDesa {
    width: 100%;
    position: relative;
    background: #27282a;
    padding: 60px;
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marginZero {
    margin: 0;
}

.colDescripcion ul {
    list-style-type: inherit;
    list-style: '·  ';
    list-style-position: outside;
    padding-left: 15px;
    font-size: 14px;
    font-style: italic;

}

.colDescripcion {
    width: 30%;
}

.descFlex {
    display: flex;
    justify-content: space-between;
}

.margTop {
    margin-top: 40px;
}

.twoImg {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    min-height: 550px;
    height: 700px;
}


.twoImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twoImg div {
    width: 50%;
    position: relative;
}

.twoImg div:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(60% 60%, rgba(37, 26, 26, 0.34) 50%, #0c0c0c3b 85%);
}

.navDesarrollo {
    min-height: 140px;
    display: flex;
    align-items: center;
}

.navDesa {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.navDesa a {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 500;
    width: 33.3%;
}

.navDesa a:first-child {
    align-items: baseline;
    text-align: left;
}

.navDesa a:nth-child(2) {
    align-items: center;
    text-align: center;
}

.navDesa a:last-child {
    align-items: flex-end;
    text-align: right;
}

.navDesa a svg {
    height: 16px;
    width: auto;
    margin-bottom: 5px;
}

.rotaSVG {
    transform: rotate(180deg);
}

.navDesa a:hover {
    color: #EDB40D;
}
img.axoIcon {
    max-width: 800px;
}

.axoMob {
    width: 100%;
}
.iconsAxo {
    max-width: 270px;
    padding-top: 50px;
}
.notalink {
    background-color: #e64e4e;
    border-color: #963434;
}
/* Fin Desarrollos Individual */

/* Nosotros */

.h1Somos {
    font-size: 170px;
    line-height: 150px;
    text-transform: uppercase;
    font-weight: 500;
    color: #ECEDF0;
    animation: changeSomos 1s infinite;
    -webkit-animation: changeSomos 1s infinite;
}
.h2Somos {
    padding-left: 10px;
}
.nosotrosTromarco hr {
    margin: 27px 0;
}
.changeSomos {
    margin-top: -50px;
    margin-bottom: 40px;
    content: '';
    height: 100px;
    background-repeat: no-repeat;
    width: inherit;
    position: absolute;
    animation: hideshow 2s steps(1) infinite;
    -webkit-animation: hideshow 2s steps(1) infinite;
}
.nosotrosSomos p {
    margin-top: 120px;
    width: 70%;
}


.nosotrosTromarco .flechaSvg {
    right: 0%;
    height: 50%;
    bottom: 0%;
    width: 55%;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

@keyframes changeSomos {
    0% {
        font-style: italic;
    }

    100% {
        font-style: normal;
    }
}

@-webkit-keyframes changeSomos {
    0% {
        font-style: italic;
    }

    100% {
        font-style: normal;
    }
}

@keyframes hideshow {
    0% {
        background: url(../src/lideres.svg);
        background-repeat: no-repeat;
    }

    33% {
        background: url(../src/planificadores.svg);
        background-repeat: no-repeat;
    }
    66% {
        background: url(../src/estrategas.svg);
        background-repeat: no-repeat;
    }
}
@-webkit-keyframes hideshow {
    0% {
        background: url(../src/lideres.svg);
        background-repeat: no-repeat;
    }

    33% {
        background: url(../src/planificadores.svg);
        background-repeat: no-repeat;
    }
    66% {
        background: url(../src/estrategas.svg);
        background-repeat: no-repeat;
    }
}

/* Contacto */

.contactoDiv {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items:center;
}
.contactoDiv p {
    align-items: center;
    text-align: -webkit-center;
    color: #19191C;
    font-weight: 500;
    opacity: .7;
}

.contactoModu {
    display: flex;
    justify-content: space-between;
}
.contactoTromarco h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Media */

/* New Web */
.heroPos {
    position: absolute;
    z-index: 10;
    height: 100%;
    width: 100%;
    justify-content: center;
}
.mrgBtnn {
    margin-bottom: 40px!important;
}
.align-center {
    align-items: center;
}
#trp-floater-ls.trp-color-dark {
    background: #22476d!important;
    left: 0%!important;
    bottom: 4%;
    box-shadow: 0 0 5px #2a577d!important;
    border: none!important;
    border-radius: 0 15px 15px 0!important;
    font-size: 14.4px;
}
.heroPos h1 {
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 70px;
    line-height: 65px;
}
.heroPos h5 {
    color: #fbfbfb;
}
.heroPos h1 span {
    color: #edb40d;
}
.moduNew h1 {
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 70px;
    line-height: 65px;
    color: #19191C;
}

.moduNew h1 span {
    color: #edb40d;
}

img.heroLogo {
    width: 320px;
    margin-bottom: 40px;
}

.moduNew {
    background-color: #fbfbfb;
}

.offTitle {
    color: #edb40d;
    font-weight: 700;
    font-size: 75px;
    margin-bottom: 30px;
}
.reserv {
    color: #19191c;
    font-style: inherit;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 50px;
}
.moduNew h4 {
    color: #19191C;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 7px;
}
.paraNew {
    color: #19191C;
    font-weight: 500;
    opacity: .7;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 36px;
    width: 60%;
}
.paraNewBajo {
    color: #19191C;
    font-weight: 500;
    opacity: .7;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 31px;
}
.midWidth {
    width: 60%;
}
.noPad {
    padding: 0!important;
}
.upPara {
    color: #fbfbfb;
    font-weight: 600;
    font-size: 24px;
}
.text-right {
    text-align: right;
}
.individualTromarco .modulo {
    padding: 80px 0;
}
.noPadTop {
    padding-top: 0!important;
}
.noPadBot {
    padding-bottom: 0!important;
}
.desarrollosTromarco, .contactoTromarco {
    background-color: #fbfbfb;
}

/* Desarrollos */
.footerLogo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
}
.footerLogo img {
    height: 80px;
}
.desarrolloHero {
    min-height: 850px;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}
.moduNew .galeria-carousel {
    margin: 0;
}
.moduNew .planos-carousel {
    margin: 0;
}
.formModulo {
    background: #19191c;
    padding: 70px!important;
}
.formModulo .container {
    padding: 0;
}
/* End Desarrollos */

/* Unite */

/* Unite sec */

.joinSec {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}
.uniteh5 {
    background-color: #edb40d;
    color: #000;
    width: fit-content;
    padding: 3px 5px;
    margin-top: 5px;
}
.cardJoin {
    border: 2px solid #edb40d;
    padding: 20px;
    transition: all .6s;
    margin-bottom: 20px;
    width: 100%;
}
.cardJoin:hover {
    box-shadow: 0px 0px 0px 3px #edb40d;
}
.headCard {
    font-size: 20px;
    text-transform: uppercase;
    color: #edb40d;
    font-weight: 600;
}
.cardJoin span, .cardJoin p {
    font-size: 12px;
    color: #ECEDF0;
}
.cardJoin p {
    margin-bottom: 14px!important;
}
.joinButton {
    border: none;
    padding: 5px 15px!important;
    color: #edb40d;
    float: right;
    color: #fff;
    margin-top: 20px;
}

/* End unite sec */
/* End Unite */
@media (max-width:850px) {
    img.heroLogo {
        width: 190px;
        margin-bottom: 30px;
    }
    .heroPos h1 {
        font-size: 35px;
        line-height: 35px;
    }
    .moduNew {
        min-height: 280px!important;
    }
    .moduNew h1 {
        font-size: 35px;
        line-height: 35px;
    }
    .reserv {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .moduNew h4 {
        font-size: 16px;
        margin-top: 0;
    }
    .paraNew {
        font-size: 17px;
        line-height: 20px;
        width: 100%;
    }
    .footerLogo img {
        height: 40px;
    }
    .desarrolloHero {
        min-height: 750px;
    }
    .paraNewBajo {
        font-size: 13px;
        line-height: 20px;
    }

}

/* End New Web */


@media (min-width: 850px) {
    .navButton {
        display: none;
    }
    

    .trom-carousel .owl-dots {
        left: calc(100% - 30%);
        right: 0;
    }

    .flechaSvg {
        right: 12%;
        height: 59%;
        bottom: 0;
        width: 35%;
        clip-path: polygon(50% 10%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }

    .desarrollosTromarco .flechaSvg {
        right: 12%;
        height: 50%;
        bottom: 3%;
        width: 35%;
        clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }
    .pcOnly {
        display: block;
    }
    .mobOnly {
        display: none;
    }
}
@media (max-width: 1000px) {
    .h1Somos {
        font-size: 140px;
    line-height: 140px;
    }
    .nosotrosTromarco .flechaSvg {
        right: 0%;
        height: 50%;
        bottom: 0%;
        width: 55%;
        clip-path: polygon(70% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }
    .desarrollosTromarco .flechaSvg {
        clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }
}



@media (min-width: 1000px) {
    .trom-carousel .owl-dots {
        left: calc(100% - 15%);
        right: 0;
    }

    .nosotrosTromarco .flechaSvg {
        right: 0%;
        height: 50%;
        bottom: 0%;
        width: 55%;
        clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }


}


@media (min-width: 1100px) {
    .trom-carousel .owl-dots {
        left: calc(100% - 25%);
        right: 0;
    }
    .nosotrosTromarco .flechaSvg {
        right: 0%;
        height: 50%;
        bottom: 0%;
        width: 55%;
        clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }
}


@media (min-width: 1200px) {
    .trom-carousel .owl-dots {
        left: calc(100% - 18%);
        right: 0;
    }
    .nosotrosTromarco .flechaSvg {
        right: 0%;
        height: 50%;
        bottom: 0%;
        width: 55%;
        clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }

    .trom-carousel .owl-dots {
        left: calc(100% - 370px);
        right: 0;
    }

    .flechaSvg {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
        right: 12%;
    }

    .desarrollosTromarco .flechaSvg {
        height: 50%;
        clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
        right: 14%;
    }

    .nosotrosTromarco .flechaSvg {
        right: 0%;
        height: 50%;
        bottom: 0%;
        width: 55%;
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }

}

@media (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }

    .trom-carousel .owl-dots {
        left: calc(100% - 400px);
        right: 0;
    }

    .flechaSvg {
        right: 14%;
    }
}




@media (max-width: 850px) {

    body {
        font-size: 15px;
        line-height: 1.75;
    }

    p {
        font-size: 13px;
    }

    .navTromarco {
        height: 60px;
    }

    .brandTromarco img {
        width: 145px;
    }

    .modulo {
        min-height: 200px;
    }

    .navButton {
        display: flex;
    }
    .fslightbox-source {
        min-height: 400px;
        min-width: 400px;
        object-fit: contain;
    }
    .offTitle {
        font-size: 53px;
        margin-bottom: 10px;
    }
    .midWidth {
        width: 100%;
    }
    .navMenu {
        position: fixed;
        height: 100%;
        top: 0;
        left: 0;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-transform: uppercase;
        font-style: normal;
        letter-spacing: 4px;
        color: #EDB40D !important;
        justify-content: center;
        background: #19191cc7;
        min-height: 700px;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all .4s;
        transition: all .4s;
        -o-transition: all .4s;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    } 
    .storeLink {
        color: #fff;
        padding: 10px 20px;
    }
    .loadLogo {
        width: 150px;
    }

    .trom-carousel, .trom-carousel .owl-stage-outer, .trom-carousel .owl-stage, .trom-carousel .owl-item {
        height: 100%;
    }
    .galeriaAvances a {
        height: 120px;
    }
    .moduNew h2 {
        font-size: 29px!important;
        line-height: 32px;
    }
    .heroHome {
        min-height: inherit;
    }

    .navActive {
        opacity: 1;
        visibility: visible;
    }

    .navTromarco.navActive {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navActive .navMenu {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .activeHeader .navButton {
        position: absolute;
        z-index: 1;
        right: 40px;
        transform: translate(-3px, -3px);
        transition: all .5s;
    }

    .nav-link:before,
    .nav-link.active:before {
        display: none;
    }

    .nav-link {
        margin: 1rem 1rem;
    }

    .nav-link:last-child {
        margin-right: 1rem;
    }

    /* Global Mobile */

    h5 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    h1 {
        font-size: 34px;
        margin-bottom: 20px;
        line-height: 34px;
    }

    h2 {
        font-size: 26px;
    }

    hr {
        margin: 20px auto;
    }

    .boton {
        padding: 10px 13px;
        font-size: 12px;
    }

    .owl-theme .owl-dots .owl-dot span {
        margin: 3px 7px;
        height: 8px;
        width: 8px;
    }

    .trom-carousel .owl-dots {
        right: 20px;
    }

    .slideSaav {
        background-size: 150%;
        background-position: 0px 20%;
    }



    .moduText {
        width: 100%;
    }

    .moduNum {
        min-height: 500px;
    }

    .colTrom {
        flex-direction: column;
        align-items: baseline;
        height: 100%;
        min-height: 300px;
    }

    .colTrom br {
        display: none;
    }

    .colTrom div:before {
        height: 40%;
        top: 25%;
    }

    .cartaDesarrollo {
        width: 95%;
    }

    .brandCar {
        width: 130px;
        height: 60px;
    }

    .midMod {
        padding: 100px 0;
        min-height: 300px;
    }

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

    .col30,
    .col70 {
        width: 100%;
    }

    .contacts__field {
        width: 100%;
    }

    .field__textarea,
    .field__input {
        margin-left: 0;
    }

    .col30 img {
        width: 180px;
        margin-top: -80px;
    }

    .brands-carousel {
        margin-top: 20px;
    }

    .contacts__btn {
        padding-top: 20px;
    }

    .field__textarea,
    .field__input {
        font-size: 12px;
    }

    .moduFooter .colTrom,
    .copyRight {
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .itemCol {
        margin-bottom: 20px;
    }

    .moduFooter {
        min-height: 200px;
    }

    .itemCol:first-child,
    .itemCol:nth-child(2) {
        display: none;
    }

    .itemCol:nth-child(3) {
        margin: 0;
    }

    .moduFooter .colTrom {
        flex-direction: column-reverse;
    }

    .desarrollosTromarco .moduText br {
        display: none;
    }

    .desarrollosFlex .cartaDesarrollo {
        width: 100%;
        min-height: 350px;
        height: 350px;
    }

    .cardPlus {
        height: 350px !important;
        min-height: 350px !important;
    }

    .minMargen {
        margin-top: inherit;
    }
    .loftHero {
        background-position: 30%;
    }

    /* Mark Mobile */

    .markSvg {
        position: absolute;
        left: 100px;
        width: 64%;
        height: auto;
        top: -21px;
        transform: rotateY(55deg) rotateX(58deg);
    }

    .flechaSvg {
        position: absolute;
        right: -60px;
        height: 37%;
        bottom: 40px;
        width: 70%;
        clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    }


    .markLine {
        margin: 0 15px;
        display: block;
    }

    /* Mark End */

    .logoDesa img {
        height: 50px;
    }

    .desarrolloImg {
        min-height: 630px;
    }

    .margenTituloDesa {
        padding: 130px 0 60px;
    }

    .loftDes {
        background-position: bottom;
    }

    .linksFoot a {
        font-size: 12px;
    }

    .linksFoot a:first-child {
        margin-right: 10px;
    }

    .footerDes {
        padding-bottom: 15px;
    }

    .svgClip {
        width: 160px;
        margin-bottom: -10px;
    }

    .quintanaCard {
        background-position: 44% 100%;
    }

    /* Galeria */

    .moduGaleria .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .galeria-carousel,
    .galeria-carousel .owl-stage,
    .galeria-carousel .owl-nav,
    .galeria-carousel .owl-stage-outer, .galeria-carousel .owl-item img {
        min-height: 400px;
        max-height: 500px;
        height: 400px;
    }

    .planos-carousel,
    .planos-carousel .owl-nav,
    .planos-carousel .owl-stage,
    .planos-carousel .owl-stage-outer, .planos-carousel .owl-item img{
        min-height: 350px;
        max-height: 450px;
    }

    .descFlex {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .colDescripcion {
        width: 100%;
        padding-bottom: 40px;
    }

    .imgMaqueta {
        margin-top: -170px;
        width: 100%;

    }

    .imgMaqueta img {
        width: 100%;
    }

    .descripcionDesa {
        margin: -30px;
        padding: 50px 40px;
    }

    .colDescripcion ul {
        font-size: 13px;
    }

    .twoImg {
        min-height: 400px;
        height: 450px;
    }

    .midText {
        width: 100%;
        padding: 0;
    }

    .imgMap {
        display: none;
    }

    .midModImg {
        height: 450px;
    }

    .navDesa a {
        font-size: 13px;
        width: 25%;
    }

    .individualTromarco .tromarcoMap {
        min-height: 400px;
    }

    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 0px;
    }
    .h1Somos {
        font-size: 70px;
        line-height: 70px;
    }
    .changeSomos {
        margin-top: -20px;
        height: 50px;
    }
    .h2Somos {
        padding-left: 5px;
    }
    .nosotrosSomos p {
        width: 80%;
        margin-top: 70px;
    }

    .nosotrosTromarco .flechaSvg {
        right: 2%;
        height: 50%;
        bottom: 7px;
        width: 110%;
        clip-path: polygon(100% 0%, 100% 0%, 110% 100%, 0% 100%, 0% 30%);
        
    }

    .contactoDiv {
        width: 45%;
    }

    .alert-warning {
        margin: 10px 20px;
        height: 65px;
    }

    .plazaCard img {
        width: 190px;
    }
    .diezA {
        height: 80px;
    }
    .slideDiez h3 {
        font-size: 23px;
        line-height: 25px;
    }
    .slidePlaza h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .slidePlaza{
        justify-content: flex-end;
        padding-bottom: 50px;
    }
    
    .slidePlaza {
        background-position: 50% 160%;
        background-size: auto 110%;
    }
    .comunidadHero h1 {
        font-size: 35px;
        line-height: 35px;
    }
    .comunidadHero p {
        font-size: 14px;
        margin-bottom: 13px;
    }
    .svgDesa {
        position: initial;
        margin-bottom: -40px;
        margin-top: 20px;
        width: 50%;
    }
    .pcOnly {
        display: none;
    }
    .mobOnly {
        display: block;
    }
    .entrega {
        font-size: 12px;
    }
}

@media (max-width: 769px) {
    .markSvg {
        position: absolute;
        left: 0;
        width: 100%;
        height: 170%;
        top: -10px;
        transform: rotateY(35deg) rotateX(45deg);
    }
    .desarrollosTromarco .flechaSvg {
        clip-path: polygon(65% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
        right: 2%;
    }
    .flechaSvg {
        position: absolute;
        right: 5%;
        height: 40%;
        bottom: 50px;
        width: 70%;
        clip-path: polygon(70% 0%, 100% 0%, 110% 100%, 0% 100%, 0% 30%);
    }
}

@media (max-width: 500px) {
    .flechaSvg {
        clip-path: polygon(100% 0%, 100% 0%, 110% 100%, 0% 100%, 0% 30%);
    }

    .margenTituloDesa {
        padding: 110px 0 50px;
    }

    .logoDesa {
        padding: 20px 0 20px;
    }

    .linksFoot {
        visibility: hidden;
    }

    .svgClip {
        width: 100%;
    }

    .desarrolloImg {
        min-height: 550px;
    }
    .desarrollosTromarco .flechaSvg {
        clip-path: polygon(95% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
        right: 2%;
    }
}