@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: rgb(7, 52, 110);
}

header{
    background-image: url(imagenes/bg.png);     
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



.container {
    max-width: 1320px;
    margin: 0 auto;

}

.menu {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    width: 100px;
}

.menu .navbar ul {
    list-style: none;
}

.menu .navbar ul li {
    position: relative;
    float: left;
    
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 10px;
    color: #ffffff;
    display: block;
    text-transform: uppercase;

}

.menu .navbar ul li a:hover {
    color: #e70B25;

}

#menu {
    display: none;

}

.menu-icono {
    width: 35px;
}

.menu label {
    cursor: pointer;
    display: none;

}

.header-content {
    display: flex;
    align-items: center;
    padding: 100px 0 50px 0;

}

.header-txt {
    width: 40%;
    padding-right: 10px;

}

.header-txt h1 {
    font-size: 55px;
    line-height: 70px;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 5px;

}

.header-txt p {
    font-size: 20px;
    line-height: 25px;
    font-family: Elegant Lux Mager;
    color: #ffffff;

}

.header-txt p-1 {
    font-size: 25px;
    line-height: 25px;
    font-family: Elegant Lux Mager;
    color: #fc8f3b;

}
.header-img {
    width: 40%;


}

.programa {
    width: 100%;
    margin-top: 60px;
    margin-left: 250px;
    margin-right: 50px;
    border-radius: 14px;
    box-shadow: 0 5px 10px rgb(0, 0, 0, 0.2);
}

.botones {
    display: flex;
    margin-top: 30px;
    margin-left: 10px;

}

.btn-1 {
    display: inline-block;
    background: linear-gradient(90deg, #e70B25 0%, #900314 100%);
    padding: 1px 15px;
    margin-right: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #ffd000;
    border-radius: 10px;
    align-content: center;

}
.btn-2 {
    display: inline-block;
    border: 1px solid #fdfdfd; 
    padding: 1px 15px;
    margin-right: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #fdfdfd;
    border-radius: 10px;
    align-content: center;
    background-color: #155c9f;
    
    
}
.btn-1:hover {
    background: linear-gradient(90deg, #f3031f 0%, #bc0217 100%);
    
}

.btn-2:hover {
    border: 1px solid #fa0d29; 
}
.icon {
    width: 20px;
}

.icone {
    width: 120px;
}

.product-menu {
    padding: 50px 0 80px 0;

}
.title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 45px;
}

.product {
    display: flex;
    position: relative;

}
.hoja {
    right: 0;
    position: absolute;
    bottom: -50px;
    width: 150px;
}

.menu-nav {
    display: flex;
    margin-bottom: 40px;

}

.tab {
    margin-right: 15px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    background-color: #ff6e14;
    cursor: pointer;
    box-shadow: 0 5px 10px rgb(0, 0, 0, 0.2);
}

.tab:hover {
    background: linear-gradient(90deg, #0b03f3 0%, #6502bc 100%);
    
}

.tab.active {
    background: linear-gradient(90deg, #0b8fe7 0%, #036f90 100%);
    color: #fdfdfd;
}
.tab.active::after {
    content: "";
    position: absolute;
    width: 100%;
}

.tab-content {
    display: none;

}

.tab-content.visible {
    display: initial;
}

.box-container-1,
.box-container-2,
.box-container-3,
.box-container-4,
.box-container-5,
.box-container-6,
.box-container-7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.box-1,
.box-2,
.box-3,
.box-4,
.box-5,
.box-6,
.box-7 {
    background-image: url(imagenes/tar.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 5px 10px rgb(0, 0, 0, 0.2);
    display: none;
}

.box-1:nth-child(1),
.box-1:nth-child(2),
.box-1:nth-child(3),
.box-1:nth-child(4) {
    display: inline-block;

}

.box-2:nth-child(1),
.box-2:nth-child(2),
.box-2:nth-child(3),
.box-2:nth-child(4) {
    display: inline-block;
    
}

.box-3:nth-child(1),
.box-3:nth-child(2),
.box-3:nth-child(3),
.box-3:nth-child(4) {
    display: inline-block;
    
}

.box-4:nth-child(1),
.box-4:nth-child(2),
.box-4:nth-child(3),
.box-4:nth-child(4) {
    display: inline-block;
    
}

.box-5:nth-child(1),
.box-5:nth-child(2),
.box-5:nth-child(3),
.box-5:nth-child(4) {
    display: inline-block;
    
}

.box-6:nth-child(1),
.box-6:nth-child(2),
.box-6:nth-child(3),
.box-6:nth-child(4) {
    display: inline-block;
    
}

.box-7:nth-child(1),
.box-7:nth-child(2),
.box-7:nth-child(3),
.box-7:nth-child(4) {
    display: inline-block;
    
}

.image {
    margin-bottom: 15px;
    text-align: center;

}

.image img {
    width: 150px;
}

.content h3 {
    font-size: 15px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 1px 5px #4747e4;
}

.content p {
    color: #fbfbfb;
    line-height: 1.5;
    font-size: 14px;
    padding: 15px 0;
    text-align: center;

}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #334;
    color: #334;
    font-size: 16px;

}

.btn:hover {
    background-color: rgb(220, 20, 60);
    border-color: rgb(220, 20, 60);
    color: #fdfdfd;

}

.icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #334;

}

.price {
    font-size: 16px;
    font-weight: 500;
    color: #d5c80b;

}

.buy {
    border-radius: 10px;
    margin-right: 1px;
    color: #fdfdfd;
    transition: all 400ms ease;
}

.buy:hover {
    box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
    transform:scale(1.1)
}

.buy img {
    width: 110px;
}

.download {
    transition: all 400ms ease;

}
.download:hover {
    
    transform:scale(1.1)
}

.load-more {
    margin-top: 50px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid #01ffe1;
    color: #fffdfd;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.load-more:hover {
    background: linear-gradient(90deg, #125976 0%, #660390 100%);
    border-color: rgb(12, 10, 124);
    color: #fdfdfd;
}

.info {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(imagenes/bg.fw.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}
.info-content {
    display: flex;
    position: relative;

}

.info-txt {
    width: 60%;
    margin-top: 85px;

}

.info-txt h2 {
    color: #fdfdfd;
    font-size: 55px;
    margin-bottom: 25px;
}

.info-txt p {
    font-size: 30px;
    font-family: Elegant Lux Mager;
    color: #ffee00;
    margin-bottom: 25px;

}
.info-sec {
    display: flex;

}
.info-1 {
    display: flex;
}
.info-1 img {
    width: 80px;
    height: 80px;
}
.info-2 {
    margin-left: 25px;

}

.info-2 h3 {
    color: #fdfdfd;
    font-size: 25px;

}
.info-2 p {
    color: #a0a0a0;
    font-size: 16px;
}

.info-img {
    position: absolute;
    right: -10px;
    top: 100px;

}
.info-img img {
    width: 250px;
    

}

.footer {
    padding: 40px 0 40px 0;
    display: flex;
    justify-content: space-between;

}
.logo-2 {
    width: 150px;
    height: 150px;


}
.links h4 {
    color: #fdfdfd;
    font-weight: 100;
    margin-bottom: 5px;
    display: flex;
    font-size: 25px;
}
.links ul li a {
    color: #fdfdfd;
    font-size: 16px;
    margin-bottom: 5px;
    
    
}
.socials {
    display: flex;

}
.social {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    
    border-radius: 50%;

}


.social img {
    margin: 8px 0 0 10px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;
	
}

.social img:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-25%);
}



@media(max-width: 991px ) {
    .menu {
        padding: 10px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #eca90c;
        display: none;

    }

    .menu .navbar ul li {
        width: 100%;
    }
    .menu .navbar ul li a:hover {
        color: #180c0c;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header-content {
        flex-direction: column;
        padding: 100px 30px 30px 30px;
    }

    .header-txt {
        width: 100%;
        padding: 0;
        text-align: center;

    }

    .header-txt h1 {
        font-size: 35px;

    }

    .botones {
        flex-direction: column;
        align-items: center;

    }

    .btn-1 {
        margin: 0 30px 15px 0;

    }
    .btn-2 {
        margin: 0 30px 15px 0;

    }
    

    .header-img {
        width: 100%;
        margin-top: 10px;
    }

    .programa {
        width: 100%;
        margin-top: 1px;
        margin-left: 1px;
        margin-right: 50px;
    }

    .product-menu {
        padding: 25px;
    }

    .title {
        color: #fdfdfd;
        font-size: 25px;
        font-weight: 200;
        margin: 2px 25px 15px 25px;
    }
    .hoja {
        display: none;
    }
    .menu-nav {
        flex-direction: column;
        align-items: center;

    }
    .tab {
        margin-bottom: 10px;

    }

    .box-container {
        grid-template-columns: 1fr;

    }
    .box .image {
        height: 200px;

    }
    .content h3 {
        font-size: 20px;
        text-align: center;
        color: #ffffff;
        line-height: 1;
        text-shadow: 0 1px 5px #4747e4;
    }
    
    .content p {
        color: #ffffff;
        line-height: 1.2;
        font-size: 14px;
        padding: 11px 0;
        text-align: center;
    
    }
 
    .info {
        padding: 30px;
        height: 80vh;

    }
    .info-txt h2 {
        font-size: 45px;
    }
    .info-content {
        flex-direction: column;
        align-items: center;
        text-align: center;

    }
    .info-txt {
        width: 100%;
        margin-top: 0;
    }
    .info-txt p {
        margin-bottom: 5px;

    }
    .info-sec {
        flex-direction: column;
        padding: 0px 35px ;
    }
    .info-1 {
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
    }
    .info-2 {
        margin-top: 10px;
        margin-left: 0px;
    }
    .info-img img {
        display: none;
    }
    .socials {
        justify-content: center;
    }
    .social img {
        margin: 8px 0 0 0;
    }
    .footer {
        padding: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .links h4 {
        margin: 25px 0 10px 0;
    }

    .links ul li {
        color: #fdfdfd;
        font-size: 16px;
        margin-bottom: 5px;
        text-align: left;
        
        
    }




}