html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body{
    margin: 0;
    max-height: 200vh;
}

.display_visible{
    display:contents;
}

.display_none{
    display: none;
}

.main{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
}
main{
    height: 95vh;

    /*background: linear-gradient(-45deg, #30E8BF, #e73c7e, #23a6d5, #FF8235);
    background: linear-gradient(-45deg, #30E8BF, #FF8235);*/
    background: linear-gradient(-45deg, #27c583, #0f3443);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
    color: white;
    box-shadow: inset 0px 0px 26px -11px #000000;
}
nav{
    text-transform: uppercase;
}

nav .container-fluid .navbar-brand{
    font-weight: 700;
    color: #ffbb00;
}

main .more{
    grid-column-start: 2;
    grid-row-start: 3;
}
main .tittle{
    grid-column-start: 2;
    grid-row-start: 2;
    display: grid;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.name{
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 8rem;
    letter-spacing: 1.7rem;
}
.lastName{
    text-align: center;
    text-transform: uppercase;
    font-size: 5rem;
    letter-spacing: 2.2rem;
}
.navbar{
    min-height: 5vh;
}

.more .more_btn{
    font-family: 'Oswald', sans-serif;
    position: relative;
    text-transform: uppercase;
    color: rgb(54, 54, 54);
    background-color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    outline: 5px double white;
}
.more .more_btn:hover{
    background-color: rgb(240, 240, 240);
}

.more .line{
    margin: auto;
    height: 100%;
    margin-top: 1.2rem;
    background-color: white;
    width: 0.1rem;
    box-shadow: 0px 0px 16px 5px #004f621c;
    z-index: 0;
}

.information{
    height: 100vh;
    background-color: rgb(241, 243, 247);
    box-shadow: inset 0px 0px 26px -11px #000000;
    z-index: 2;
    position: relative;
    width: -webkit-fill-available;
}

.information .more_menu{
    display: grid;
    height: 80vh;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2vh;
    padding: 10vh 2rem;
}
.information .more_menu .more_menu__btn{
    display: flex;
    height: 39vh;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    padding: 1rem;
    color: #071920;
    border-radius: 0.2rem;
    text-align: center;
    text-decoration: none;
    font-size: 3vh;
    text-transform: uppercase;
    box-shadow: 0px 0px 16px 5px #004f621c;
}

@media (max-width: 1024px) {
    .information .more_menu{
        padding: 50% 0;
        gap: 1rem;
    }
    .information .more_menu .more_menu__btn{
        height: auto;
    }

    .tittle img{
        height: 6rem;
    }
    .information .more_menu .more_menu__btn img{
        max-height: 9rem;
    }

}
.information .more_menu .more_menu__btn img{
    margin: auto;
}

.information .more_menu .more_menu__btn:hover{
    background-color: rgb(250, 250, 250);
    box-shadow: 0px 0px 16px 5px #004e626c;
    color: #071920;
    outline: .2rem solid #00c9a1;
}
.information .more_menu .more_menu__img{
    height: 80%;
    max-width: 90%;
    margin: 1rem;
    display: block;
}

.information .more_menu .more_menu__btn:first-child{
    grid-column: 1 / 3;
}

.proyectos{
    padding: 1rem;
    border-radius: 1rem;
    background: rgb(250, 250, 250);
    box-shadow: 0px 0px 16px 5px #004f621c;
}


.card{
    color: #000000;
    margin: 1rem;
}



main .form{
    display: grid;
    color: #071920;
    justify-content: center;
    border-radius: 1rem;
    padding-left: 0;
    box-shadow: 0px 0px 16px 5px #004f621c;
}

.form .form-group{
    padding: 1rem;
}
.form label{
    text-align: left;
     border-radius: 1rem;
}

.form .form-information{
    padding: 2rem;
    background-color: #212529;
    color:#fff;
    border-radius: 1rem 0 0 1rem;
    font-size: 1.3rem;
}

.form .form-information h5{
    font-size: 2.2rem;
}

.form .form-information p{
    text-align: left;
}

@media (max-width: 1024px) {
    .contacto main{
        padding-top: 1rem;
    }
    main .form{
        grid-auto-flow: row; 
        grid-template-rows: repeat(2);
        padding-right: 0;
    }
    .form .form-information{
        border-radius: 1rem 1rem 0 0;
    }

}

@media (min-width: 1024px) {
    .contacto main{
        padding-top: 10rem;
    }
    main .form{
        grid-auto-flow: column; 
        grid-template-columns: repeat(2, 50%);
        
    }
}


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.proximamente{
    font-size: 2rem;
}



.context {
    width: 100%;
    position: absolute;
    top:50vh;
    
}

.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}


.area{
    width: 100%;
    height:100vh;
    background: linear-gradient(-45deg, #34e89e, #0f3443);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}