*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
:root{
    --color-1 : #FFF7DD;
    --color-2 : #137186;
}



/* --------------------Banner------------------------------------- */
.banner{
    width: 100%;
    height: 100vh;
}
.banner img{
    width: 100%;
    height: 100%;
}
.banner-cover{
    object-fit: cover;
}
.background_top{
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    bottom: -2px;
    height: 200px;
}
.background_top img{
    width: 100%;
    height: 100%;
}
.boat{
    position: absolute;
    z-index: 2;
    width: 110px;
    right: 35%;
    bottom: -60px;
}
.img-title{
    position: absolute;
    width: 380px;
    bottom: -60px;
    z-index: 3;
    right: 2%;
  
}
/* ----------------main--------------------------------------------------------- */

.main_wrap{
    width: 100%;
    margin: 0px auto;
    position: relative;
    margin-top: -2px;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}
.animado{
    opacity: 0;
    transition: all 0.6s;
}

.mostrarArriba {
    animation: mostrarArriba 1.2s;
}



@keyframes mostrarArriba {
    0% {
        transform: translateY(350px);
        /* +60 mandamos hacia arriba (+); -60 mandamos hacia abajo (-) */
    }
    100% {
        transform: translateY(0);
    }
}
/* --------------------------------------------------------------------------- */

.wrap-container {
    position: relative;
    width: 80%;
    height: auto;
    margin: 0px auto;
    padding-top: 0px;
}
/* --------------BACKGROUND-main-------------------- */

.background_bot{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0px;
}
.background_bot img{
    display: block;
    width: 100%;
    height: 100%;
}
/* -----------------------presentation-------------------------------------------------------- */
.presentation-container{
    position: relative;
    text-align: center;
    padding-top: 150px;
    z-index: 2;
}
.title-section {
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--color-1);
}
.title-section::after{
    content: '';
    display: block;
    width: 22px;
    height: 4px;
    margin: 0px auto;
    margin-top: 40px;
    background-color: var(--color-1);
}
.presentation-text{
    font-size: 24px;
    font-weight: 900;
    line-height: 36px;
    max-width: 600px;
    margin: 0px auto;
    letter-spacing: 3px;
    color: var(--color-1);
}
.container-img-1{
    width: 180px;
    height: auto;
    position: absolute;
    top: 0px;
    left: -80px;
}
.container-img-1 img{
    width: 100%;
    height: 100%;
}

/*--------HEXAGONS----------------------*/
.container-sectors{
    --s: 200px;  /* size*/
    --m: 5px;    /* margin*/
    --f:calc(var(--s) * 1.732 + 4 * var(--m) - 1px);
    display: flex;
    max-width: 1055px;
    margin: 0px auto;
    padding: 160px 0px;
}
.sectors{
    font-size: 0; /* deshabilitar el espacio en blanco entre el elemento de bloque en línea */
}
.card{
    width: var(--s);
    margin: var(--m);
    height: calc(var(--s) * 1.1547);
    display: inline-block;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    font-size:initial ;
    margin-bottom: calc( var(--m) - (var(--s) * 1.1547 * 0.25));
    position: relative;
    z-index: 3;
    background-size: cover;
    background-position: center;
}
.card:hover{
    background-size: 120%;
}
.card-ghost{
    width: var(--s);
    margin: var(--m);
    height: calc(var(--s) * 1.1547);
    display: inline-block;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    font-size:initial ;
    margin-bottom: calc( var(--m) - (var(--s) * 1.1547 * 0.25));
    position: relative;
    background: transparent;
}
.wrap-hexagon{
    display: inline-block;
    position: relative;
    filter: drop-shadow( -1px 4px 8px rgba(50,50,0,0.4));
}
.wrap-hexagon-ghost{
    display: inline-block;
    position: relative;
}
.sectors::before{
    content: '';
    width: calc( var(--s)/2 + var(--m) );
    height: 100%;
    float: left;
    shape-outside: repeating-linear-gradient(#0000 0 calc(var(--f) - 3px), #000 0 var(--f));
} 
.list-specific{
    clip-path: polygon(0 0, 100% 0, 100% 81%, 50% 100%, 0 80%) !important;
    width: var(--s);
    height: 0px;
    position: absolute ;
    top:calc( var(--s)*1.1547 - var(--s)*1.1547*0.25);
    left: var(--m);
    background: linear-gradient(160deg, rgba(134,182,165,1) 0%, rgba(179,231,213,1) 100%);
    z-index: 2;
    transition: all 0.5s;
   
}


.title-list{
    font-size: 16px;
    padding-top: 70px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    color: var(--color-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.ul-1{
    width: 100%;
    height: 204px;
    list-style: none;
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: scroll;

}

.ul-1 li{
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 0px;
    color: var(--color-2);
    font-weight: 700;


}
.btn-list{
    position: absolute;
    width: 150px;
    top: 50%;
    left: calc(50% - 75px);
    background: none;
    border: 1px solid #fff;
    cursor: pointer;
    color: white;
    font-size: 12px;
    padding: 7px 8px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s;

}
.btn-list:hover{
   font-size: 14px;
}
.show{
    height: 380px;
}
.card-1{
    background-image: url('../img/img_how_we_can_help/hotel.png');
}
.card-2{
    background-image: url('../img/img_how_we_can_help/industrial.png');
}
.card-3{
    background-image: url('../img/img_how_we_can_help/commercial.png');
}
.card-4{
    background-image: url('../img/img_how_we_can_help/corporate.png');
}
.card-5{
    background-image: url('../img/img_how_we_can_help/heal.png');
}
.card-6{
    background-image: url('../img/img_how_we_can_help/restaurants.png');
}
.card-7{
    background-image: url('../img/img_how_we_can_help/educational.png');
}
.card-8{
    background-image: url('../img/img_how_we_can_help/sports.png');
}
.card-9{
    background-image: url('../img/img_how_we_can_help/wellness.png');
}
.card-10{
    background-image: url('../img/img_how_we_can_help/food.png');
}
.card-11{
    background-image: url('../img/img_how_we_can_help/greenhauses.png');
}
.card-12{
    background-image: url('../img/img_how_we_can_help/wastewater.png');
}
/* ---------modal------------------------- */
.modal-container{
    background-color: rgba(147, 145, 142, 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-content: center;
    filter: drop-shadow( 2px 4px 8px rgba(0,0,0,0.4));

}
.modal{
    clip-path: polygon(50% 0, 100% 30%, 100% 70%, 50% 100%, 0 70%, 0 30%);
    width: 50%;
    height: 90vh;
    align-self: center;
    position: relative;
    background: rgb(134,182,165);
    background: linear-gradient(160deg, rgba(134,182,165,1) 0%, rgba(179,231,213,1) 100%);
    display: flex;
    justify-content: center;
    align-content: center;
}
.modal-info{
    width: 80%;
    height: 65%;
    align-self: center;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}
.title-modal{
    width: min-content;
    margin: 0px auto;
    border: 1px solid #FFF7DD;
    color: #FFF7DD;
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    padding: 10px 10px;
    /* margin-bottom: 50px; */
}

.text-modal{
    width: 100%;
    color: #137186;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    max-height: 315px;
    padding-right: 15px !important;
}
.list-specific-modal{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: none;
}
.list-specific-modal .title-list{
    padding-top: 20px;
}
.ul-modal{
    width: 100%;
    height: auto;
    list-style: none;
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
}
.ul-modal li{
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 0px;
    color: var(--color-2);
    font-weight: 700;
}

.btn-x{
    width: 40px;
    height: 40px;
    align-self: center;
    justify-self: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
}
.btn-x:hover{
    transform: scale(1.2);
}
.btn-x img{
    width: 100%;
    height: 100%;
}

.rotate{
    animation-name: rotate;
    animation-duration: 3s;
}
@keyframes rotate {
    from{transform: rotateY(180deg);}
    to{transform: rotateY(0deg);}
}
/* --------------videos----------------- */
.container-videos{
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0px auto;
    padding: 160px 0px;
}
.item{
    /* width: 280px; */
    height: 400px;
    border-radius: 40px 40px 0px 0px;
    position: relative;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
}
.item video{
    width: 100%;
    height: 80%;
}
.item .title-video{
    color: #fff;
    position: relative;
    top: 6px;
    left: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    width: 90%;
}
.item .title-video::before{
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 12px;
}
.owl-nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 40px);
}

.owl-nav .owl-prev{
    margin-top: 0px !important;
    margin-left: -20px;
}
.owl-nav .owl-next{
    margin-top: 0px !important;
    margin-right: -20px;
}
.owl-nav .owl-prev img{
    width: 40px;
    height: 40px;
}

.owl-nav .owl-next img{
    width: 40px;
    height: 40px;
}
/* ---------------molecules------------ */
.molecule-left{
    width: 400px;
    height: auto;
    position: absolute;
    top: 230px;
    left: -350px;
    z-index: 0;
}
.molecule-right{
    width: 400px;
    height: auto;
    position: absolute;
    top: 230px;
    right: -350px;
    z-index: 0;
}
/* -------message---------------- */
.message-fix{
    position: fixed;
    bottom: 56px;
    right: 40px;
    width: 60px;
    height: 50px;
    z-index: 200;
    cursor: pointer;
}

.message-fix img {
    width: 100%;
    height: 100%;
}
/* -----Footer----------------- */
.logo-footer{
    width: 120px;
    height: 70px;
}
.logo-footer img{
    width: 100%;
    height: 100%;
}
.container-footer{
    width: 100%;
    padding-bottom: 40px;
    z-index: 1;
    position: relative;
    margin-top: 160px;
}
.menu-footer{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 900;
    z-index: 2;
}
.flex-footer{
    display: flex;
    width: 80%;
    margin: 0px auto;
    justify-content: space-evenly;
}