@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color_head: #adb5bd;
    --color_primary: #eb5e28;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
    background-image: url('img/fondos.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--color_head);
    color: white;
    position: fixed;
    width: 100%;
    height: 90px;
    z-index: 100;
}

.logo {

    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn_registe {
    padding: 15px;
    background: var(--color_primary);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1000000;
}

.btn_registe:hover {
    background: #3b0fda;

}

.btn_contacto {
    margin-top: 50px;
}

.tab {
    position: relative;
    padding: 5px 0;
    background: transparent;
    display: flex;
    border-radius: 10px;
    /* background: #fff; 
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.199);*/
    z-index: 10000;

}

.tab li {
    list-style: none;
    text-align: center;
    display: block;

}

.tab li:not(:last-child) {
    border-right: 1px solid rgba(201, 31, 31, 0.2);
}

.tab li a {
    text-decoration: none;
    padding: 0 40px;
    display: block;
}

.tab li a .icon {
    min-width: 60px;
    height: 40px;
    text-align: center;
    margin: 0 auto 10px;
    overflow: hidden;
}

.tab li a .icon i {
    width: 100%;
    height: 100%;
    line-height: 40px;
    font-size: 2em;
    transition: 0.5s;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.tab li a .icon i:last-child {
    color: #282828;
    -webkit-text-stroke: 0px #222222;
    transform: translateY(-200%);
}

.tab li a:hover i {
    transform: translateY(100%);
}

.tab li a:hover i:last-child {
    transform: translateY(-100%);
}

.tab li a .text {
    position: relative;
    height: 20px;
    width: 100%;
    display: block;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 400;
}

.tab li a .text span {
    display: block;
    position: relative;
    color: #fff;
    font-size: 0.8em;
    line-height: 20px;
    transition: 0.5s;
}

.tab li a .text span::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    color: #282828;
}

.tab li a:hover .text span {
    transform: translateY(-20px);
}


/******* menu 2 *****/
.men2 {
    display: none;
    margin-top: 20px;

    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 80px;
    z-index: 10000;
}

.men2 li {
    gap: 20px;
    background: #ffffff;
    width: 90px;
    padding: 5px;
    border-radius: 12px;
    list-style: none;
}

.men2 li a {
    text-decoration: none;
}

.men2 .icon2 {
    display: flex;
    font-size: 2em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.men2 .icon2 i {
    display: flex;
    color: #666568;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    transition: 0.3s;
}

.men2 .icon2 i:hover {
    color: #000;
}

.men2 .icon2 i span {
    font-size: 0.2em;
    color: red;
    text-transform: uppercase;
}

.men2 .btn_r i {
    font-size: 2em;
    color: red;
}



@media (max-width:991px){
    body{
        width: 100%;
        height: 100vh;
    }
    header{
        height: 110px;
    }
   header .tab{
        display: none
    }
    .men2{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 10px;
    }
    .btn_registe{
        display: none;
    }
}


@media (max-width:768px){

    .men2{
        display: flex;
        width: 50%;
    }
    .men2 li{
        gap: 10px;
        background: #ffffff;
        width: 60px;
        padding: 5px;
        border-radius: 12px;
        list-style: none;
    }
    .men2 .icon2 i{
        display: flex;
        color: #666568;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 1em;
        transition: 0.3s;
    }
    
    .men2 .icon2 i:hover{
        color: #000;
    }
    
    .men2 .icon2 i span{
        font-size: 0.2em;
        color: red;
        text-transform: uppercase;
    }


    .carousel .list .item .contenido{
        padding-right: 0;
    }

    .carousel .list .item .contenido .title{
        font-size: 30px;
    }




    }
    
    
    @media (max-width: 450px   ){

        body{
            width: 100%;
            height: 100vh;
        }
       
        header{
            display: flex;
            position: relative;
            flex-direction: column;
            align-items: center;
            width: 100%;
            z-index: 10000;
            background: #111222;
            height: 120px;
            text-align: center;
         }
         header .logo{
            width: 150px;
            gap: 5px;
         }
    
         .overlay{
            height: 100vh;
            margin-top: -250px;
            overflow: hidden;
         }

         .men2{
            width: 100%;
            margin-top: 1px;
            margin-left: 20px;
            gap: 2px;        
            display: flex;
            justify-content: space-around;
         }
    
         .men2 li{
            width: 40px;
            gap: 5px;
         }
    
         section .content{
            width: 550px;
            height: 100%;
         }
         .container .card{
            display: none;
         }
    }