/*
STYLES GUIDE
1.  LAYOUT
2.  GENERIC ITEMS
3.  PARTS OF THE WEB
4.  LIST
5.  FORM
6.  ANIMATIONS
-------------

COLORS: 
color 1 = #07316A
color 2 = #4D8BDF
color 3 = #8EC7D2
color 4 = #BFE9F1

 */

/*-------------------------
            LAYOUT
--------------------------*/



body {
    text-align: center;
    font: 300 20px/1.7;
    font-family: "Roboto Condensed", sans-serif;
}

/* header  normal que irá en todas las paginas excepto la del landing
.header{
    --display: flex;
    justify-content: left;
    align-items: center;
    background: url(../img/mujerhorizontal.jpg) no-repeat center top;
    background-size: cover;
    --
    --min-height: 480px!important; 
}*/

/* 2. GENERIC ITEMS */

/*-------------------------
            LOGO
--------------------------*/
.logo {
    width: 175px;
    height: 60px;
}

.logo:hover {
    transform: scale(1.2);
    transition: all 800ms ease-in-out;
}

.text-logo {
    position: absolute;
    color: white;
    font-size: 9px;
    bottom: 3px;
    margin: auto;
}
/*-------------------
        NAVBAR
--------------------*/

.header {
    background: #fff;
    position: relative;
    max-width: 100vw;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1;
}

.header a {
    text-decoration: none;
    color: #09131b;
}

.logo img {
    width: 100%;
    height: 60px;
}

.header ul {
    list-style: none;
}

.menu-items {
    display: flex;
    align-items: center;
}

.menu-items li {
    padding: 0.5rem 1rem;
}

/*------- MEGA MENU-------*/
.mega-menu {
    position: absolute;
    width: 700px;
    top: 150px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
}

.producto {/*chequear*/
    right: 200px;
    width: 800px;
}

.mega-menu .content {
    background: #fff;
    border-radius: 0 0 20px 20px;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.soluciones .content {/*chequear*/
    grid-template-columns: repeat(4, 1fr);
}

.producto .content {/*chequear*/
    grid-template-columns: repeat(5, 1fr);
}

.content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
}

.content .col .img-wrapper {
    display: block;
    position: relative;
    height: 100px;
    overflow: hidden;
}

.content .col img {
    right: 26px;
    position: absolute;
    width: 100px;
    height: 100px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
    transform: scale(1.1);
}

.content .col h2 {
    color: #212529;
    padding-top: 10px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

.menu-items li:hover .mega-menu {
    top: 90px;
    opacity: 1;
    visibility: visible;
}
/*-------END  MEGA MENU-------*/

/*------- START ICONO TOGGLE -------*/
.header #icon {
    color: #212529;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 5px;
    display: none;
}

/*------- END ICONO TOGGLE -------*/

/*------- START RESPONSIVE -------*/
@media (max-width: 1024px) {
    .header {
        position: fixed;
        right: 0;
        width: 100%;
    }
    .header #icon {
        display: block;
        
    color: #212529;
    }

    .header .icon,
    .header .logo {
        margin: 0 30px;
    }

    .soluciones {
        display: none;
    }

    .producto {
        display: none;
    }

    .menu-items {
        position: fixed;
        background-color: #fff;
        top: 95px;
        width: 100%;
        height: 100vh;
        left: -100%;
        flex-direction: column;
        text-align: right;
        transition: all 0.5s ease-in-out;
    }

    .menu-items li a {
        display: inline-block;
        margin: 20px 0;
        line-height: 30px;
    }

    .navegacion li a {
        font-size: 20px;
        border: none;
        transition: all 0.5s ease-in-out;
        margin: 20px 0;

    }

    .navegacion a.activo,
    .navegacion a:hover {
        border: none;
        color: #3498db;
        padding: 5px;
        border: 1px solid #3498db;
    }

    .header .navegacion .show {
        left: 0;
    }
}

/*-------------------------
        NAVBAR
--------------------------*/
/*ACOMODANDO EN EL MEDIO*/
.body {
    background: #eee;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/*INSERTANDO IMAGEN*/
#carousel .carousel-item.boat {
    background-image: url("/img/promo1.jpg");
}
#carousel .carousel-item.sea {
    background-image: url("/img/promo2.jpg");
}
#carousel .carousel-item.river {
    background-image: url("/img/promo3.jpg");
}

/*FONDO DE LA IMAGEN*/
#carousel .carousel-item {
    height: 100vh;
    width: 100%;
    min-height: 350px;
    background: no-repeat;
    background-size: cover;
}
/*ANIMACION DE CUADRO DE TEXTO*/
#carousel .carousel-inner .carousel-item {
    transition: -webkit-transform 2s ease;
    transition: transform 2s ease;
    transition: transform 2s ease, -webkit-transform 2s ease;
}
#carousel .carousel-item .caption {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    color: white;
    animation-duration: 1s;
    animation-delay: 2s;
}
/*ANIMACION DE LETRAS*/
#carousel .caption h2 {
    animation-duration: 1s;
    animation-delay: 2s;
}
#carousel .caption p {
    animation-duration: 1s;
    animation-delay: 2.2s;
}
#carousel .caption a {
    animation-duration: 1s;
    animation-delay: 2.4s;
}
.delicious-btn {
    display: inline-block;
    min-width: 160px;
    height: 60px;
    color: #fff;
    border: none;
    border-left:3px solid #1c8314;
    border-radius: 0;
    padding: 0 30px;
    font-size: 16px;
    line-height: 58px;
    font-weight: 600;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-transform: capitalize;
    background: #40ba37;
}
.delicious-btn:hover,
.delicius-btn:active,
.delicius-btn:focus {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #1c8314;
    border-color: #40ba37;
}
/*-------------------------
            FOOTER
--------------------------*/
footer {
    /* border-top: 10px solid #646464; */
    background-color: #07316a;
}

.footerRedes .col i {
    color: #e0e0e0;
    font-size: 20px;
    /* margin-right: 13px; */
}

.footerRedes .col a {
    text-decoration: none;
}

.bloquefinfo {
    /* background: #3b3b3b; */
    padding: 5px 0 20px 0;
    display: inline-flex;
}

.bloquefinfo .list-group-item {
    border: 0px solid #07316a;
    background: #07316a;
}

.bloquefinfo .card {
    background: transparent;
    border: 0px solid white;
    text-align: justify !important;
    min-width: 18rem;
    /* z-index: 100!important; */
}

.bloquefinfo .card-title {
    font-size: 20px;
    color: #ffffff;
}

.bloquefinfo .list-group a {
    color: #cfcfcf;
    /* color: #7F7F7F; */
    text-decoration: none;
    font-size: 16px;
}

.bloquefinfo .list-group a:hover {
    color: #ffffff;
}

/* 3.PARTS OF THE WEB */




/*-------------------------
    PREGUNTAS FRECUENTES
--------------------------*/
.preguntasFrecuentes {
    background: #ee122c;
    color: #747474;
    /* padding-top: 20px;
    padding-bottom: 20px; */
}

.preguntasFrecuentes .accordion-button:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 #8d8d8d00 !important;
}

.preguntasFrecuentes .title {
    color: white;
}

/* .accordion-button:not(.collapsed)::after {
    color: #0c63e4;
    background-color: #FEB7EE;
    background-image: url("../img/gamer.png");
    background-image: unset;
}

.accordion-button.collapsed::after {
  background-image: url("../img/gamer.png");
}
   */
#accordionExample .accordion-button {
    background-color: #ffffff;
}

#accordionExample .accordion-button {
    /* background-color: #ca2929; */
    color: #747474;
}

/*-------------------------
        NOTICIAS
--------------------------*/
.noticias {
    background: white;
    color: #747474;
    padding: 60px 0;
}

.noticias p {
    max-width: 1055px;
    margin: 0 auto;
    font-size: 15px;
}

.noticias .title {
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 35px;
    color: #747474;
}

.item {
    z-index: -10 !important;
}



/*-------------------------
        NUESTROS SERVICIOS
--------------------------*/
.services {
    background: white;
    color: #747474;
    padding: 60px 0;
    /* height:max-content; */
}

.services-title {
    color: #07316a;
    font-size: 50px;
    font-weight: 700;
}

.border {
    width: 300px;
    height: 3px;
    background: #07316a;
    margin: 35px auto;
}

.services-descripcion {
    max-width: 1000px;
    margin: 40px auto;
    font-size: 20px;
    text-align: justify;
}

.services-container {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    max-width: 25%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid #07316a;
    color: #07316a;
    transform: rotate(45deg);
    margin-bottom: 30px;
    margin-top: 16px;
    transition: 0.5s linear;
}

.service-icon i {
    line-height: 70px;
    transform: rotate(-45deg);
    font-size: 27px;
}

.service-box:hover .service-icon {
    background: #07316a;
    color: #fff;
}

.service-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-desc {
    font-size: 20px;
}

@media screen and (max-width: 960px) {
    .service-box {
        max-width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .service-box {
        max-width: 50%;
    }

    .services-descripcion {
        padding: 0 30px;
    }
}

@media screen and (max-width: 480px) {
    .service-box {
        max-width: 100%;
    }
}

/*-------------------
    NUESTROS CLIENTES
--------------------*/
.clientes {
    background: #07316a;
    color: white;
    padding: 60px 0;
}

.clientes-titulo {
    color: white;
    font-size: 50px;
}

.border-titulo {
    width: 300px;
    height: 3px;
    background: #fff;
    margin: 35px auto;
}

.clientes-descripcion {
    max-width: 1000px;
    margin: 50px auto;
    font-size: 20px;
    text-align: justify;
}

@media screen and (max-width: 960px) {
    .clientes-descripcion {
        padding: 0 120px;
    }
}

@media screen and (max-width: 768px) {
    .clientes-descripcion {
        padding: 0 60px;
    }
}

@media screen and (max-width: 480px) {
    .clientes-descripcion {
        padding: 0 30px;
    }
}

/*-------------------
    SLIDER LOGOS
--------------------*/
.contenedor-logos {
    max-width: 1040px;
    margin: 0 auto;
}

.contenedor-logos img {
    width: 100%;
}

.logo-slider .item {
    background-color: #fff;
    box-shadow: 0 4px 5px #cacaca;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #111;
}

.logo-slider .slick-slide {
    margin: 15px;
}

.slick-dots li.slick-active button:before {
    color: #fff;
}

.slick-dots li button:before {
    font-size: 12px;
}

.slick-next:before,
.slick-prev:before {
    color: #fff;
    font-size: 24px;
}

.item:hover {
    display: block;
    transition: all ease 0.3s;
    transform: scale(1.1) translate(-5px);
}

/*-------------------
        NOSOTROS
--------------------*/
.nosotros {
    background: url(../img/nosotros.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: rgba(255, 255, 255, 0.815);
}

.contain {
    max-width: 1055px;
    margin: 0 auto;
}

.nosotros-titulo {
    font-size: 50px;
}

.nosotros-descripcion {
    max-width: 450px;
    text-align: justify;
    background: rgba(20, 20, 20, 0.7);
    padding: 20px;
}

.nosotros .btn-primary {
    background-color: #07316a;
}

/*-------------------
    CONTACTANOS
--------------------*/

.contactanos .title {
    text-transform: uppercase;
    margin-top: 35px;
    font-size: 35px;
}

.contactanos {
    align-items: center;
    background: url(../img/nosotros.jpg) no-repeat center top;
    background-size: cover;
    color: white;
}

.contactanos .btn-primary {
    background-color: #07316a;
}

.contactanos .card {
    color: #707070;
}

/* Localizacion */
.localizacion {
    /* background: url(../img/touchkey.png) no-repeat center top; */
    background-color: white;
    background-size: cover;
    color: red;
    padding-bottom: 50px;
    margin-top: 50px;
}

.localizacion .map img {
    filter: hue-rotate(335deg);
    width: 100%;
    height: 100%;
}

/* 4. LIST */
.list-services figure {
    position: relative;
    width: 150px;
    height: 190px;
}

.list-services i {
    width: 150px;
    height: 150px;
    font-size: 80px;
    position: relative;
    z-index: 1;
}

.list-services figure::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 0;
    background: #ffff;
    width: 150px;
    height: 150px;
}

.list-services li {
    padding: 0 30px;
}

.list-services figure {
    position: relative;
    left: 0;
    top: 0;
    top: 40px;
}

.list-services figcaption {
    position: relative;
    left: 0;
    right: 0;
    bottom: -40px;
}

.planes {
    background-color: #ffff;
    color: dimgrey;
}

.planes p {
    max-width: 1055px;
    margin: 0 auto;
}

.planes .card {
    max-width: 348px !important;
    min-width: 348px !important;
    margin: 0 auto;
}

/* js->div #nombre*/
/* Fondo para pantalla de llamada*/

#fontLlamar {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
    position: fixed !important;
    /* margin-top: -25px; */
    height: 100vh !important;
    width: 100% !important;
    background: transparent;
    margin: auto;
    /* left: 0 !important; */
    z-index: 100 !important;
    cursor: default !important;
    transition: all 0.5s ease-out;
}

#fontLlamar.active {
    background: #242424bb !important;
    visibility: visible;
    opacity: 1;
}

/* 5.FORM */
/* 6.ANIMATIONS */


#idHeaderIndex.fontShadow,
#idPlanes.fontShadow,
#idFooter.fontShadow {
    /* filter: brightness(0.5);     */
    opacity: 0.5;
    /* filter: invert(#242424bb);  */
}

.list-services {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-services figure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}