
/* INDEX */

@import url("https:/fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

html {
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

#particles-js {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: -1;
    background: #060708;
}


.carousel_slide {
    justify-content: space-between;
    display: flex;
    overflow-y: auto;
    position: relative;
}



.d-block_w-100 {
    width: 100%;
    height: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
        
}

@media screen and (max-width:400px) {
    .d-block_w-100 {
        width: 300px;
        height: 400px;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px);
        -ms-flex-align: center;
            
    }
}



@media screen and (min-width:400px) and (max-width:480px) {
    .d-block_w-100 {
        width: 470px;
        height: 630px;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px);
        -ms-flex-align: center;
            
    }
}



@media screen and (min-width:480px) and (max-width:720px)  {
    .d-block_w-100 {
        width: 511px;
        height: 680px;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px);
        -ms-flex-align: center;
            
    }
}

@media screen and (min-width:720px)  and (max-width:1000px) {
    .d-block_w-100 {
        width: 676px;
        height: 900px;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px);
        -ms-flex-align: center;
            
    }
}

@media screen and (min-width:1000px) {
    .d-block_w-100 {
        width: 720px;
        height: 958px;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px);
        -ms-flex-align: center;
            
    }
}




.w3-bar_w3-black {
    font-size: 14px;
    color: whitesmoke;
    font-family: 'calibri', serif;

}

@media screen and (min-width:720px){
    .w3-bar_w3-black {
        background-position: center;
        justify-content: center;
        display: flex;
        
        
    }
}


@media screen and (min-width:1280px){
    .w3-bar_w3-black {
        background-position: center;
        justify-content: center;
        display: flex;
        font-size: 12px;
        
    }
}

.z3-container .w3-bar_w3-black {
    font-size: 20px;
    color: whitesmoke;
    font-family: 'calibri', serif;

}


@media screen and (min-width:720px){
    .z3-container .w3-bar_w3-black {
        background-position: center;
        justify-content: center;
        display: flex;
        
        
    }
}


@media screen and (min-width:1280px){
    .z3-bar_z3-black .w3-bar_w3-black {
        background-position: center;
        justify-content: center;
        display: flex;
        font-size: 25px;
        
    }
}




.a {
    transition: all 5s ease-in-out;
}


.a:hover {
    color: red;
}



.w3-bar_w3-black .a {
    transition: all 5s ease-in-out;
}


.w3-bar_w3-black .a:hover {
    color: red;
}



body {
    
    color:whitesmoke;
}






.primer_img {
    display: flex;
    position: relative;
    justify-content:center;
}



.prueba {
    width: 100%;
    height: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
        
}

@media screen and (min-width:720px){
    .prueba {
        width: 1280px;
        height: 777px;
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px);
        
            
    }
}



.container {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}



@media screen and (max-width:400px) {
    .container {
        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}



@media screen and (min-width:400px) and (max-width:480px) {
    .container {
        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}



@media screen and (min-width:480px) and (max-width:720px)  {
    .container {
        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}


@media screen and (min-width:720px) and (max-width:1000px)  {
    .container {
        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media screen and (min-width:1000px)  {
    .container {
        
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center;
    }
}



 
.container .box{
    position: relative;
    width: 320px;
    background-color: white;
    padding: 100px 40px 60px;
    box-shadow: 0 15px 45px rgba(0,0,0,.1);
    opacity: 0.8;
}

.container .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: aqua;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 2s;
}

.container .box:hover:before {
    transform: scale(1);
    transform-origin: bottom;
    transition: transform 2s;

}

.container .box h2 {
    position: absolute;
    left: 40px;
    top: 60px;
    font-size: 4em;
    font-weight: 800;
    z-index: 1;
    opacity: 0.5;
    transition: 2s;
}

.container .box:hover h2 {
    opacity: 1;
    color: #fff;
    transform: translate(-30px);
}

.container .box h3 {
    position: relative;
    font-size: 1.5em;
    z-index: 2;
    color: #333;
    transition: 1s;
}

.container .box p {
    position: relative;
    font-size: 1.5em;
    z-index: 2;
    color: #555;
    transition: 1s;
}

.container .box:hover h3
.container .box:hover p {
    color: #fff;
}



@media screen and (max-width:640px) {
    .container {
        color: black;
        width: 100%;
        
    }
}

@media screen and (max-width:1024px) and (min-width:640px) {
    .container {
        color:black;
        width: 100%;
        
    }
}

@media screen and (min-width:1024px) {
    .container {
        color:black;
        width: 100%;
        
        /* transform: scle(1, 1);
        transform: rotate(90deg);
        */
    }    
}


.footer {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    background: black;
    width: 100%;
    height: 10%;
    color:whitesmoke;
}

.container-footer-all {
    width: 100%;
    max-width: 1600px;
    margin: auto;
}

.container-body {
    display:flex;
    padding: 25px;
    justify-content:left;
}


@media screen and (max-width:400px) {
    .container-body {
        display:inline;
        padding: 25px;
        justify-content:left;
    }
}



@media screen and (min-width:400px) and (max-width:480px) {
    .container-body {
        display:inline;
        padding: 25px;
        justify-content:left;
    }
}



.colum3 {
    max-width: 400px;
    color: whitesmoke;
}

.colum3 h1 {
    font-size: 27px;
    color: whitesmoke;
    font-family: 'calibri', serif;
    margin-left: 5px;
}



.row2 {
    margin-top: 20px;
    color: white;

}



.row2 label {
    margin-top: 10px;
    margin-left: 20px;
    max-width: 200px;
}

.container-footer{
    width: 100%;
    background: black;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.copyright {
    color: #c7c7c7;
}

.copyright a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
}

.information {
    text-decoration: none;
    color: white;
}


/* social bar */


.social-bar {
    position: fixed;
    right: 0;
    top: 30%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
}


.icon {
    color: white;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
}


.icon-instagram {
    height: 30px;
    background: rgb(248, 12, 170);
}

.icon-whatsapp {
    height: 30px;
    background: rgb(20, 248, 12);
}

.icon-telegram {
    height: 30px;
    background: rgb(13, 227, 255);
}


.icon:first-child {
    border-radius: 1rem 0 0 0;
}

.icon:last-child {
    border-radius: 0 0 0 1rem;
}

.icon:hover {
    padding-right: 3rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
}