/* Autor: Morgana Maria */
/* © copyright curta code */

body{
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}
a {
    text-decoration: none;
}
nav{
    width: 100%;
    background: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
    z-index: 99;
    top: 0;
}
main {
    margin-top: 85px;
}
/*banner*/
.container-banner {
    position: relative;
    background: linear-gradient(86deg, #422874 2.26%, #70358F 38.47%, #903FA2 96.05%);
    padding: 4rem 0;
}
.elemento-back {
    position: absolute;
    z-index: 0;
    bottom: 0;
    width: 320px;
}
.banner{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.cont-text {
    color: #ffffff;
    padding: 0 2rem 0 4rem;
}
.imgbanner {
    width: 100%;
    position: relative;
    z-index: 1;
}
.title-banner {
    color: #ffffff;
}
.btn-primary{
    border-radius: 30px;
    background: #E4572E;
    color: #fff;
    border: none;
    box-shadow: none;
    padding: .5rem 2rem;
    transition: all .5s ease;
}
.btn-primary:hover{
    background: #BC43D5;
    color: #fff;
}

/*./banner*/

/*Footer*/
footer{
    padding: 3rem 0;
}
footer h2 {
    color: #1E2125;
}
.project-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
}
.progress {
    width: 75%;
    height: .45rem;
    margin: 0 1rem;
}
.progress-bar{
    background-color: #E4572E;
}
.cont-midia {
    display: flex;
    justify-content: center;
}
.btn-midia {
    width: 50px;
    height: 50px;
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    -webkit-box-shadow: 0px 0px 14px -7px rgba(168,168,168,1);
    -moz-box-shadow: 0px 0px 14px -7px rgba(168,168,168,1);
    box-shadow: 0px 0px 14px -7px rgba(168,168,168,1);
    margin: 0.8rem;
    transition: all .5s ease;
}
.btn-midia:hover {
    background-color: #f2f2f2;
}
/*./Footer*/

/*Efeito*/
.float-infinite {
    animation: float 3s ease-in-out infinite;
    position: absolute;
    z-index: 0;
    width: 100%;
}

@keyframes float{
    0%,100%{
        transform:translatey(0)
    }
    50%{
        transform:translatey(-30px)
    }
}
/*./Efeito*/

@media (min-width:768px) {
    .banner{
        flex-direction: row;
        align-items: center;
    }
    .imgbanner {
        margin-bottom: 0 !important;
    }
    .project-progress {
        width: 50%;
    }
    .cont-text {
        padding: 0;
    }
}

@media (min-width:992px) {
    .imgbanner {
        width: 80%;
    }
}
