/**
 *kimerkia derechos reservados
 *DescripciÃ¯Â¿Â½n del desarrollo: Hojas de estilo para todo el sitio de index
 *Desarrollado por: Leonardo LÃ¯Â¿Â½pez	
 *Fecha del desarrollo: 21 de Mayo del 2018
 *Modificado por: {nombre de la Ã¯Â¿Â½ltima persona que modifica el cÃ¯Â¿Â½digo}
 *Fecha de modificaciÃ¯Â¿Â½n: {fecha de la Ã¯Â¿Â½ltima modificaciÃ¯Â¿Â½n realizada Formato DD de MM del AAAA }
 *DescripciÃ¯Â¿Â½n de la modificaciÃ¯Â¿Â½n:{breve y clara descripciÃ¯Â¿Â½n de la modificaciÃ¯Â¿Â½n}
 */

 :root{
    --main-rgb-color: 150, 224, 0;
    --main-hex-color: #96E000;
    --main-rgb-color-alt: 127, 194, 0;
    --main-hex-color-alt: #7fc200;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

@keyframes animate-border {
    0% {
    transform:scaleX(0);
    transform-origin: left;
    }
    50%
    {
      transform:scaleX(1);
    transform-origin: left;
    }
    50.1%
    {
      transform:scaleX(1);
    transform-origin: right;
      
    }    
    100%
    {
      transform:scaleX(0);
    transform-origin: right;
      
    }
} 
@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 3000px, 0);
      transform: translate3d(0, 3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -5px, 0);
      transform: translate3d(0, -5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 3000px, 0);
      transform: translate3d(0, 3000px, 0);
    }
  
    60% {
      opacity: 1;
      -webkit-transform: translate3d(0, -20px, 0);
      transform: translate3d(0, -20px, 0);
    }
  
    75% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -5px, 0);
      transform: translate3d(0, -5px, 0);
    }
  
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }  

    .anim-ini-alert{
            animation: bounceInUp 0.5s ease-out;
            -webkit-animation: bounceInUp 0.5s ease-out;
    }

  @-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    40%,
    43% {
      -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      -webkit-transform: translate3d(0, -30px, 0);
      transform: translate3d(0, -30px, 0);
    }
  
    70% {
      -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      -webkit-transform: translate3d(0, -15px, 0);
      transform: translate3d(0, -15px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -4px, 0);
      transform: translate3d(0, -4px, 0);
    }
  }
  
  @keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
      -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    40%,
    43% {
      -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      -webkit-transform: translate3d(0, -30px, 0);
      transform: translate3d(0, -30px, 0);
    }
  
    70% {
      -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
      -webkit-transform: translate3d(0, -15px, 0);
      transform: translate3d(0, -15px, 0);
    }
  
    90% {
      -webkit-transform: translate3d(0, -4px, 0);
      transform: translate3d(0, -4px, 0);
    }
  }

  .anim-show-alert{
        animation: bounce 1s ease-out;
        -webkit-animation: bounce 1s ease-out;
}


.overflow-hidden{
    overflow: hidden;
}

.SccAvviare{
    min-height: 75vh;
    position: relative;
    width: calc(100% - 4rem);
}

.carousel{
    box-shadow: 0 0 0.3rem 0.2rem #000;
}

.h-carousel{
    height: 60vh!important;
}

.h-carousel-50{
    height: 45vh!important;
}

.last-carousel {
    position: relative;
    top: -30vh;
}

.first-column{
    order: 1;
}
.second-column{
    order: 2;
}

#AvviareHome {
    height: 120vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0.4), #000), url('../IMAGENES/Avviare/IMG_9121.jpg');
}

#AvviareHome .square-sccn {
    left: calc( 50% - 88px);
    bottom: -88px;
    background-color: rgba(96, 125, 139, 0.9);
    color: #fff;
    text-shadow: 0px 2px 0.15rem #000, 0px 2px 0.15rem #000, 0px 2px 0.15rem #000;
    box-shadow: 0 0 0.5rem 0.15rem black;
    z-index: 1;
}

.avviare-info {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 50%, transparent);
    color: #000;
}

.avviare-info img{
    width: 75%;
    filter: drop-shadow(2px 4px 8px black);
}

.avviare-info h1 {
    text-align: end;
    font-weight: lighter;
    padding: 0.75rem;
    margin: 0;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.85);
}

strong{
    text-transform: uppercase;
    color: #96E000;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

.avviare-info h2 {
    font-size: 1rem;
    font-weight: lighter;
    padding: 0.5rem;
    text-align: end;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.85);
}

.text-info-form{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-info-form h1 {
    text-align: end;
    font-weight: lighter;
    padding: 0.75rem;
    margin: 0;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) { 
    #AvviareHome {
        height: auto;
    }

    .h-carousel {
        height: 30vh!important;
    }

    .last-carousel {
        position: relative;
        top: -20vh;
    }

    .h-carousel-50 {
        height: 25vh!important;
    }

    .avviare-info{
        width: 100%;
        background-image: linear-gradient(90deg, rgba(96, 125, 139, 0.8) 50%, rgba(96, 125, 139, 0.8) 50%);
    }

    .avviare-info img {
       margin: 0 auto;
    }

    .avviare-info h1 {
        font-size: 200%;
    }

    .avviare-info h2 {
        font-size: 95%;
    }
    
    
    #AvviareHome .square-sccn {
        left: calc( 50% - 48px);
        bottom: -48px;
    }


    .first-column{
        order: 2;
    }
    .second-column{
        order: 1;
    }

    .text-info-form {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .text-info-form h1 {
        margin-top: 48px;
        color: #000;
    }

 }

 .alert-avv{
    width: 75%;
    margin: 0 auto;
    background-color: rgba(255, 0, 0, 0.75);
    color: #fff;
    border-radius: 0;
    border: 0;
    border-bottom: 0.1rem #f00 solid;
    text-align: center;
}

.alert-hide{
    opacity: 0;
}

.alert-avv-success{
    position: relative;
    background-color: rgba(0, 255, 0, 0.5);
    border: 0;
    border-bottom: 0.1rem rgba(150, 224, 0, 1) solid;
    width: 75%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    border-radius: 0;
    text-shadow: 1px 1px 0.1rem #000, 1px 1px 0.1rem #000;
}

.alert-avv-success svg{
    filter: drop-shadow(1px 1px 1px black);
    -webkit-filter: drop-shadow(1px 1px 1px black);
}

.alert-avv-success::before{
    content: '';
    width: 0%;
    height: 0.15rem;
    background-color: rgba(0, 255, 0, 1);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 5s ease;
    -webkit-transition: width 5s ease;
    -moz-transition: width 5s ease;
    -ms-transition: width 5s ease;
    -o-transition: width 5s ease;
}

.alert-avv-success-transition::before{
    width: 100%;
}

.avv_input_error{
    background-color: rgba(255, 0, 0, 0.1)!important;
    border-bottom: 0.1rem #f00 solid!important;
    border-top: 0.05rem #f00 solid!important;
    border-left: 0.05rem #f00 solid!important;
    border-right: 0.05rem #f00 solid!important;
}

.avv_input_error:focus{
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25)!important;
}

.nav-link{
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    transition: color 0.15s ease;
    -webkit-transition: color 0.15s ease;
    -moz-transition: color 0.15s ease;
    -ms-transition: color 0.15s ease;
    -o-transition: color 0.15s ease;
}

.nav-link:hover{
    color: rgba(255, 255, 255, 1);
}

.avviare-nav {
    width: 50%;
    height: 100%;
    right: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1020;
    justify-content: center;
    transition: width 0.25s ease-out;
    -webkit-transition: width 0.25s ease-out;
    -moz-transition: width 0.25s ease-out;
    -ms-transition: width 0.25s ease-out;
    -o-transition: width 0.25s ease-out;
}

.avviare-nav::before {
    content: '';
    position: absolute;
    right: 0;
    width: 4rem;
    height: 100%;
    background-color: #000;
    z-index: -1;
}

.nav-label {
    position: relative;
    width: max-content;
    padding: 0.2rem 1.15rem;
}

.nav-icon svg {
    width: 2.25rem!important;
    height: 2.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -ms-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
}

.active .nav-link{
    color: rgba(255, 255, 255, 1);
}

.active .nav-icon svg{
    background-color: rgba(var(--main-rgb-color), 1);
    color: rgba(0, 0, 0, 0.85);
}

.nav-min{
    width: 4rem!important;
    background-color: rgba(0, 0, 0, 1);
}

.nav-min .nav-label {
    position: absolute;
    left: 100%;
    opacity: 0;
}

.boton-nav{
    position: absolute;
    width: 100%;
    top: 0.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-bottom: 0.05rem rgba(255, 255, 255, 0.15) solid;
}

@media (max-width: 768px){
    .avviare-nav{
        width: 100%;
    }
}

.alert-hide{
    opacity: 0!important;
}

.alert-avv {
    text-align: center;
    background-color: rgba(255, 0, 0, 0.25);
    color: #fff;
    border-radius: 0;
    border: 0;
    border-bottom: 0.1rem #f00 solid;
    position: relative;
}

#avviare_contacto_inicio{
    height: 100vh;
    background-image: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0.4), #000), url('../IMAGENES/Avviare/IMG_9121.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.avviare-form-ini{
    width: 100%;
    height: 100%;
    position: relative;
}

.avviare-form-ini form {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: rgba(96, 125, 139, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px){
    #avviare_contacto_inicio{
        height: auto;
    }

    .avviare-form-ini form{
        background-color: rgba(255, 255, 255, 0.7);
    }

    .avviare-form-ini .avv_label{
        color: #000;
    }

    .avviare-form-ini .botton-border-input::before, 
    .avviare-form-ini .botton-border-input::after {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .avviare-form-ini .btn-avviare{
        color: rgba(0, 0, 0, 0.8);
        text-shadow: unset;
    }

    .avviare-form-ini .btn-avviare svg{
        color: rgba(0, 0, 0, 0.8);
        filter: unset;
        -webkit-filter: unset;
    }

}

#avviare_nosotros {
    height: 100vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 50%, transparent), url('../IMAGENES/Avviare/IMG_9209.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.info-nosotros {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(96, 125, 139, 0.9);
    transition: right 0.25s ease-out;
    -webkit-transition: right 0.25s ease-out;
    -moz-transition: right 0.25s ease-out;
    -ms-transition: right 0.25s ease-out;
    -o-transition: right 0.25s ease-out;
}

#informacionEmpresa{
    background-image: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('../IMAGENES/Avviare/3.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.info-misvisval {
    width: 100%;
    height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-info-empresa {
    text-align: center;
}

.icon-info-empresa svg{
    color: #96e000;
    font-size: 6rem;
    padding: 1rem;
    width: 6rem!important;
    height: 6rem;
    border: 0.5rem #96e000 solid;
    filter: drop-shadow(2px 2px 2px #000);
}

.icon-info-empresa h2{
    font-size: 250%;
    font-weight: lighter;
    margin: 1rem 0;
    color: #fff;
    text-shadow: 2px 2px 0.1rem #000;
}

.desc-info-empresa p{
    padding: 1rem 2.5rem;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 0.1rem #000;
}

.square-sccn {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    width: 176px;
    height: 176px;
    bottom: 40px;
    left: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100%;
    text-transform: uppercase;
}

.square-sccn span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

.square-sccn span:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--main-hex-color);
    animation: animate-border 4s linear infinite;
    -webkit-animation: animate-border 4s linear infinite;
}

.square-sccn span:nth-child(1) {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.square-sccn span:nth-child(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.square-sccn span:nth-child(3) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.square-sccn span:nth-child(4) {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}

@media (max-width: 992px) { 
    .info-nosotros{
        width: 100%;
    }

    .square-sccn{
        width: 96px;
        height: 96px;
        font-size: 75%;
        z-index: 1;
    }
}


.avv-titulo {
    position: relative;
    width: 100%;
    font-size: 550%;
    text-align: end;
    font-weight: lighter;
    color: #fff;
    padding: 1.75%;
}

.right-out{
    right: 100%!important;
}

.right-out-minus{
    right: -100%!important;
}

@media (max-width: 992px){
    .avv-titulo{
        font-size: 350%;
    }
}

#avv_titulo_nosotros, 
#avv_desc_nosotros{
    position: relative;
    right: 0;
    transition: right 0.3s ease-in-out;
    -webkit-transition: right 0.3s ease-in-out;
    -moz-transition: right 0.3s ease-in-out;
    -ms-transition: right 0.3s ease-in-out;
    -o-transition: right 0.3s ease-in-out;
}

.avv-desc {
    position: relative;
    font-size: 1rem;
    color: #fff;
    text-align: end;
    font-weight: lighter;
    padding: 1.75%;
    width: 100%;
}

#avviare_desarrollos{
    height: 100vh;
    overflow: hidden;
}

.cont-img-res {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cont-img-res .square-sccn{
    background-color: rgba(96, 125, 139, 0.7);
    color: #fff;
    text-shadow: 0px 2px 0.15rem #000, 0px 2px 0.15rem #000, 0px 2px 0.15rem #000;
    box-shadow: 0 0 0.5rem 0.15rem black;
}

.cont-img-res img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desarrollo-info{
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('../IMAGENES/residential_scaled.png');
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(-6px 6px 6px #000);
}

#avviare_desarrollos .square-sccn{
    color: #000;
}

#avviare_desarrollos .info-nosotros{
    background-color: transparent;
}

#avviare_chapultepec{
    height: 100vh;
}

#avviare_habittat{
    height: 100vh;
}

#avviare_lienzos {
    height: 100vh;
}

.info-residencial{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10%;
    cursor: pointer;
    overflow: hidden;
}

.info-residencial h6 {
    font-size: 1000%;
    text-align: end;
    color: rgba(0, 0, 0, 0.85);
}

.info-residencial h3 {
    font-size: 200%;
    font-weight: lighter;
    text-align: end;
    color: rgba(0, 0, 0, 0.85);
    text-transform: uppercase;
    padding: 2.5%;
}

.info-residencial p {
    font-size: 100%;
    font-weight: lighter;
    text-align: end;
    color: rgba(0, 0, 0, 0.85);
    text-transform: uppercase;
    padding: 2.5%;
}


#avv_titulo_desarrollos{
    color: #000;
    right: 0;
    transition:right 0.35s ease-out;
    -webkit-transition:right 0.35s ease-out;
    -moz-transition:right 0.35s ease-out;
    -ms-transition:right 0.35s ease-out;
    -o-transition:right 0.35s ease-out;
}

#avv_desc_desarrollos{
    color: #000;
    right: 0;
    transition:right 0.35s ease-out;
    -webkit-transition:right 0.35s ease-out;
    -moz-transition:right 0.35s ease-out;
    -ms-transition:right 0.35s ease-out;
    -o-transition:right 0.35s ease-out;
}

@media (max-width: 992px){
    #avviare_chapultepec{
        height: auto;
    }

    #avviare_habittat {
        height: auto;
    }

    #avviare_lienzos {
        height: auto;
    }

    .cont-img-res {
        height: 75vh;
    }
}

#avviare_servicios {
    height: 100vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 50%, transparent), url('../IMAGENES/Avviare/IMG_9246.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* margin-top: 25vh; */
}

#avviare_servicios .square-sccn{
    left: unset;
    right: 40px;
}

#avviare_servicios .info-nosotros{
    left: 0;
    right: unset;
}

#avv_titulo_servicios, 
#avv_desc_servicios{
    position: relative;
    top: 0;
    transition: top 0.3s ease;
    -webkit-transition: top 0.3s ease;
    -moz-transition: top 0.3s ease;
    -ms-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
}

.top-out{
    top: 100%!important;
}

.top-out-minus{
    top: -100%!important;
}

@media (max-width: 992px){
    .desarrollo-info{
        width: 100%;
        opacity: 0.15;
        z-index: -1;
    }
}

#avviare_contacto {
    height: 100vh;
}

.map-info{
    background-image: url('../IMAGENES/map02.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    filter: drop-shadow(8px 8px 10px black);
    z-index: 0;
}

#avviare_contacto .square-sccn {
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0.5rem 0.15rem black;
    z-index: 1;
}

#avviare_contacto .square-sccn span:before  {
   height: 4px;
}

#avviare_contacto .info-nosotros{
    background-color: transparent;
}

#avv_titulo_contacto, 
#avv_desc_contacto,
#avv_desc_contacto_01{
    text-align: center;
    position: relative;
    color: rgba(15, 15, 15, 0.85);
    right: 0;
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#avviare_contacto .right-out-minus{
    opacity: 0;
}

#avviare_contacto .right-out{
    opacity: 0;
}

#avviare_mapa iframe{
    width: 100%;
    height: 75vh;
}

@media (max-width: 992px){
    .map-info{
        background-size: cover;
        opacity: 0.1;
        z-index: -1;
    }
}

#avviare_mensaje {
    height: 100vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 50%, transparent 50%), url('../IMAGENES/Avviare/IMG_9185.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.info-solicita {
    right: unset;
    left: 0;
    background-color: transparent;
}

#avv_titulo_formulario{
    position: absolute;
    text-transform: uppercase;
} 

.form-group{
    position: relative;
}

.avv_label{
    color: #fff;
    background-color: transparent;

}

.avv_input{
    color: #fff;
    background-color: transparent;
    border: 0;
    outline: 0;
    border-bottom: 0.05rem rgba(0, 0, 0, 0.25) solid;
    border-radius: 0;
}

.avv_area{
    color: #fff;
    background-color: transparent;
    border: 0;
    outline: 0;
    border-bottom: 0.05rem rgba(0, 0, 0, 0.25) solid;
    border-radius: 0;
    resize: none;
}


.avv_input:focus,
.avv_area:focus {
    color: #fff;
    background-color: transparent;
    border-bottom: 0.05rem rgba(0, 0, 0, 0.25) solid;
    outline: 0;
    box-shadow: unset;
}

.botton-border-input{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.1rem;
}

.botton-border-input::before{
    content: '';
    position: absolute;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    height: 100%;
    left: 0;
    transform-origin: right;
    transition: transform 0.25s ease-out;
    -webkit-transition: transform 0.25s ease-out;
    -moz-transition: transform 0.25s ease-out;
    -ms-transition: transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.botton-border-input::after{
    content: '';
    position: absolute;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    height: 100%;
    right: 0;
    transform-origin: left;
    transition: transform 0.25s ease-out;
    -webkit-transition: transform 0.25s ease-out;
    -moz-transition: transform 0.25s ease-out;
    -ms-transition: transform 0.25s ease-out;
    -o-transition: transform 0.25s ease-out;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.avv_input:focus ~ .botton-border-input::before,
.avv_input:focus ~ .botton-border-input::after, 
.avv_area:focus ~ .botton-border-input::before,
.avv_area:focus ~ .botton-border-input::after {
   transform: scale(1);
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -ms-transform: scale(1);
   -o-transform: scale(1);
}

.btn-avviare{
    position: relative;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: transparent;
    border: 0.05rem #96e000 solid;
    text-shadow: 0px 2px 0.15rem #000, 0px 2px 0.15rem #000, 0px 2px 0.15rem #000;
    z-index: 0;
    overflow: hidden;
    box-shadow: none;
}

.btn-avviare::before {
    content: '';
    width: 00%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(45deg, rgba(var(--main-rgb-color), 0.5) 50%, transparent 50%);
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: width 0.25s ease-out;
    -webkit-transition: width 0.25s ease-out;
    -moz-transition: width 0.25s ease-out;
    -ms-transition: width 0.25s ease-out;
    -o-transition: width 0.25s ease-out;
    border-radius: 0.25rem 0 0 0.25rem;
    -webkit-border-radius: 0.25rem 0 0 0.25rem;
    -moz-border-radius: 0.25rem 0 0 0.25rem;
    -ms-border-radius: 0.25rem 0 0 0.25rem;
    -o-border-radius: 0.25rem 0 0 0.25rem;
}

.btn-avviare svg{
    filter: drop-shadow(3px 3px 1px black);
    -webkit-filter: drop-shadow(3px 3px 1px black);
}

.btn-avviare:focus {
    outline: 0;
    box-shadow: none;
}

.btn-avviare:focus::before,
.btn-avviare:hover::before
{
    width: 100%;
}

@media (max-width: 992px){
    #avviare_mensaje{
        height: auto;
        background-image: url('../IMAGENES/condominium-690086_1920.jpg');
        background-size: auto;
    }

    #avviare_mensaje .square-sccn{
        top: 48px;
        bottom: unset;
    }

    .info-solicita{
        height: 50vh;
        position: relative;
        background-color: rgba(96, 125, 139, .8);
    }

    .info-form{
        height: auto;
        position: relative;
    }
}

.avviare-footer{
    width: calc(100% - 4rem);
    background-color: rgb(0, 0, 0);
    color:#fff;
    min-height: 35vh;
}

.avviare-img-footer{
   width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(96, 125, 139, 0.2);
}

.avviare-img-footer img{
    width: 65%;
    filter: drop-shadow(5px 5px 1px #000);
}

.nav-social-footer{
    justify-content: flex-end;
}

.nav-social-footer .nav-item{
    font-size: 1.5rem;
}

.nav-terms-footer .nav-item{
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.nav-social-footer .nav-item svg {
    color: rgba(150, 224, 0, 1);
}

.nav-social-kimerkia{
    justify-content: center;
}

.color-kimerkia{
    color: rgba(96, 125, 139, 0.9);
}

.nav-social-kimerkia .nav-item svg{
    color: rgba(96, 125, 139, 0.9);
}

.btn-avviare-res{
    position: relative;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    background-color: transparent;
    overflow: hidden;
    border: 0.05rem #96e000 solid;
    z-index: 0;
}

.btn-avviare-res::before{
    content: '';
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgba( var(--main-rgb-color), 0.7) 50%, transparent 50%);
    transition: width 0.25s ease-out;
    -webkit-transition: width 0.25s ease-out;
    -moz-transition: width 0.25s ease-out;
    -ms-transition: width 0.25s ease-out;
    -o-transition: width 0.25s ease-out;
    z-index: -1;
}

.btn-avviare-res:hover{
    color: #000;
}

.btn-avviare-res:hover::before,
.btn-avviare-res:focus::before
{
    width: 100%;
}

.btn-avviare-res:focus{
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(150, 224, 0, 0.5);
}

@media (max-width: 992px){
    .avviare-footer .align-content-center{
        align-items: center;
    }

    .nav-terms-footer{
        justify-content: space-between;
    }

    .nav-kimerkia-social{
        justify-content: center;
        padding-bottom: 1.5rem;
    }
}