.wrapper {
   height: 130vh;
    padding-top: 100px;
    justify-content: center;
    align-items: center;
    margin-top: 0!important;
}


.logo {
    width: 8em;
}

h2 {
    font-size: 2rem;
    margin: 20px;
    padding-right: 20px;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(100px);
    text-align: center;
    color: var(--color-green);
}

main {
    margin-top: 4em;
    
}

h1 {
    font-family: 'Merriweather', serif;
}

label {
    margin-top: 1em; 
    margin-bottom: .4em;
    display: block;
    font-weight: bold;
}

.col2 {
    display: flex;
}

.hero {
    display: block;
}

.form {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    margin: 0 auto;
    transform: translateY(100px);
    color:#ffffff;
    
}
.form label{
    font-family: "poppins", sans-serif;
    font-weight: 400;
}

input[type="text"], input[type="submit"] {
    padding: 1.2em;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    border-radius: .2em;
    border: none;
}

input[type="submit"] {
    width: 10em;
    background: var(--color-green);
    color: white;
    border: none;
    margin-left: .5em;
    font-weight: bold;
    cursor: pointer;
}

  


.card {
    transform: translateY(100px) scaleY(1);
    transform-origin: 0% 100%;
    padding-left: 1em;
    border-left: 1px solid #4E5862;
    position: relative;
    height: 8em;
}
    .card:before {
        position: absolute;
        content: '';
        border-radius: 100%;
        border: .5em solid #1A1D20;
        background: var(--color-green);
        width: .5em;
        height: .5em;
        top: 0;
        left: -.8em;
        opacity: 1;
    }

    .card:hover:before {
        width: .8em;
        height: .8em;
        left: -.95em;
        top: -.15em;
    }

    .title {
        font-weight: bold;
        opacity: 0;
        transform: translateY(100px);
    }

    .desc {
        color: #ffffff;
        opacity: 0;
        transform: translateY(100px);
    }


footer {
    opacity: 0;
    background: linear-gradient(90.73deg, var(--color-green) 4%, var(--color-fundo-dark));
    padding: 2em 1em;
    color: #1A1A1A;
    font-weight: bold;
    position: absolute;
    left: 0;
    bottom:0;
    width: 100%;
    z-index: 9;
    
}
    .all {
        margin: .3em 0 0 .5em;
        font-size: 2rem;
    }

    .parent {
        display: block;
    }

    .twitter {
        width: 2em;
        margin-left: .5em;
    }

    .social {
        margin-top: 2em;
    }

    a {
        color: black;
        text-decoration: none;
    }

    .angle-line {
        margin-top: 1.2em;
    }
    




@media only screen and (min-width: 750px) {
    .features {
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        gap: 2em;
       
        
    }
        .card {
            margin-bottom: 2em;
            height: auto;
        }
        .title {
                margin-top: 0;
            }
        
    

    footer {
        padding: 3em;
    }
}

@media only screen and (min-width: 900px) {
    .form {
        width: 75%;
    }
}

@media only screen and (min-width: 1200px) { 
    .hero {
        display: flex;
        justify-content: space-between;
        margin: 8em 0 6em;
    }
        h1 {
            width: 40%;
            margin-bottom: 0;
            text-align: left;
        }

        .form {
            width: 50%;
            align-self: flex-end;
            padding-bottom: 1em;
            margin: unset;
        }
    
    .features {
        grid-template-columns: repeat(4, auto);
        grid-template-rows: auto;
    }
    .wrapper, .features {
        margin-bottom: 0;
    }
    footer {
        margin: 0;
        padding: 6em;
    }
        .parent {
            max-width: 1150px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }

        .social {
            margin: 0;
        }

        .learn, .skillform {
            margin: 1em;
        }

    
    .features .card {
        margin-bottom: 0;
        height: 15rem;
    }
    .wrapper {
        width: 1150px;
        margin: 3em auto 0;
    }
}