/* *Contenedores */
.me-container{
    width: 60%;
    height: 90%;
    color: white;
}

.content-container-1-2{
    width: 50%;
    height: 100%;
}

.skill-img{
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

.project-container{
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding-top: 90px;
}

.project-img{
    width: 30%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-text{
    width: 70%;
}
/* -------------------- */

/* *Flexbox */
.flex{
    display: flex;
}

.flex-column{
    flex-direction: column;
}

.flex-center{
    justify-content: center;
    align-items: center;
}
/* -------------------- */


/* *Flex Responsive */
.rs-1{
    flex-direction: row;
}

.rs-x{
    flex-direction: row;
}

.rs-2{
    flex-direction: column;
}

/* -------------------- */


/* *Container Fonts and Customs*/
.me-container span{
    font-size: 35px;
}

.me-container ul{
    list-style: none;
}

.content-container-1-2 img{
    border-radius: 50%;
    width: 300px;
    height: 300px;
}

.me-container li{
    padding: 10px 10px 10px 10px;
}

.project-text span{
    font-size: 25px;
}

.project-text{
    padding: 0 30px 0 30px;
}

.project-text a{
    color: white;
    border-radius: 20px;
    border: 3px solid white;
}

.alert-custom{
    border-radius: 20px;
}
/* -------------------- */


.dwn-icon{
    margin-top: 30px;
    animation: bounce 2s ease-out 0s infinite alternate none;
    color: white;
}

.dwn-icon a:hover{
    color: var(--secondary-color);
}

.skill-img img{
    width: 45px;
    height: 45px;
}

/* *Form Customs */
.me-container form{
    width: 70%;
}

.me-container form label{
    color: white;
}

.form-input-style form input{
    border: 1px var(--border-color) solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background:none;
    outline: none;
    color: white;

    background: rgba( 255, 255, 255, 0.1 );
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
}


.form-input-style form input:focus{
    border: 3px var(--border-color) solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: white;

    background: rgba( 255, 255, 255, 0.2 );
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
}
/* TODO: CORREGIR */
.form-input-style form textarea{
    border: 1px var(--border-color) solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background:none;
    outline: none;
    color: white;

    background: rgba( 255, 255, 255, 0.1 );
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );     
}

.form-input-style form textarea:focus{
    background-color: #202025;
    border: 3px var(--border-color) solid;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: white;

    background: rgba( 255, 255, 255, 0.2 );
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
}
/* +++++++++++++++++++++++++++++++++ */


.me-container form button{
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-top: 10px;
}

.me-container form button:focus{
    background-color: var(--secondary-color);
    color: white;
}
/* -------------------- */

/* *Footer */
footer{
    height: 25px;
    background: rgba( 255, 255, 255, 0.1 );
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
    color: white;
    font-size: 13px;
    margin-top: auto;
}

footer a{
    color: white;
}

footer a:hover{
    color: white;
}
/* -------------------- */

.test{
    background-color: red;
    
}

/* *Animation */
@keyframes bounce {
	0% {
		animation-timing-function: ease-in;
		opacity: 1;
		transform: translateY(-45px);
	}

	24% {
		opacity: 1;
	}

	40% {
		animation-timing-function: ease-in;
		transform: translateY(-24px);
	}

	65% {
		animation-timing-function: ease-in;
		transform: translateY(-12px);
	}

	82% {
		animation-timing-function: ease-in;
		transform: translateY(-6px);
	}

	93% {
		animation-timing-function: ease-in;
		transform: translateY(-4px);
	}

	25%,
	55%,
	75%,
	87% {
		animation-timing-function: ease-out;
		transform: translateY(0px);
	}

	100% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateY(0px);
	}
}



@media only screen and (max-width: 800px){
    /* *Responsive */
    .rs-1{
        width: 70%;
        height: 100%;
        flex-direction: column-reverse;
    }

    .rs-x{
        width: 70%;
        height: 100%;
        flex-direction: column;
    }

    .rs-2 ul{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rs-3{
        width: 100%;
        height: 50%;
    }

    .rs-3 img{
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }
    /* -------------------- */

    .me-container form{
        width: 100%;
    }

    .project-img{
        width: 100%;
        height: 200px;
        /* height: 80%; */
    }
    
    .project-text{
        width: 100%;
        height: 70%;
        padding: 20px 0 20px 0;
    }

    .tx{
        width: 100%;
    }
}

