@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: "Poppins", serif;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.header{
    background-image: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)),
        url(images/ima1.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 16vh;
        display: flex;
        align-items: center;
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 180px;
    padding-top: 20px;
}

.logo:hover{
    cursor: pointer;
}

.menu .navbar ul li{
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #FFFDFC;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover{
    color: #80c340;
}

#menu{
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.sociales-1 img{
    width: 35px;
    margin-right: 2px;
}

.formulario{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

form{
    padding: 50px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
    width: 640px;
}

.input-group{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group .btn{
    align-self: center;
}

h2{
    color: #83c13d;
    font-size: 35px;
}

h3{
    color: #159b54;
    font-size: 25px;
    text-align: center;
}

.sep{
    text-align: center;
}

label{
    color: #323337;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

input, textarea, select{
    padding: 17px 25px;
    border-radius: 25px;
    margin-bottom: 15px;
    background-color: #f3f3f3;
    border: 2px solid #FFFDFC;
    color: #323337;
    outline: none;
}

select{
    width: 155px;
    cursor: pointer;
}

input::placeholder, textarea::placeholder{
    color: #414247;
}

.form-v1 input{
    box-sizing: initial;
    width: 163px;
}

.form-v2 input{
    box-sizing: initial;
    width: 100px;
}

.form-txt{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.form-txt a{
    color: #80c340;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.form-txt a:hover{
    color: #70ac39;
}

.btn{
    font-size: 16px;
    color: #FFFFFF;
    border: 0;
    border-radius: 25px;
    border-color: #fafafa;
    box-shadow: 0 0 20px #a5a5a5;
    cursor: pointer;
    background-color: #80c340;
    width: 200px;
    height: 50px;
    margin-top: 20px;
}

.btn:hover{
    background-color: #70ac39;
}

.footer{
    border-top: 2px solid #E1E2E6;
    padding: 30px 0 0 0;
}

.footer-links{
    margin-bottom: 15px;
    align-items: center;
}

.link-img{
    text-align: center;
}

.link-img img {
    width: 200px;
    margin-bottom: 5px;
}

.sociales-2 img{
    width: 30px;
    margin: 5px;
}

.link h3{
    font-size: 22px;
    color: #323337;
    margin-bottom: 5px;
}

.link a{
    font-size: 18px;
    display: block;
    color: #414247;
    margin-bottom: 3px;
    margin-left: 15px;
}

.link a:hover{
    color: #70ac39;
}

.link{
    margin-right: 460px;
    margin-top: 50px;
}

.footer-copy{
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #E1E2E6;
}

.footer-copy p{
    color: #414247;
    font-size: 16px;
    margin: 0;
}

@media(max-width:991px){
    .logo{
        width: 95px;
        padding-top: 5px;
    }

    .header-content h1{
        font-size: 65px;
    }

    .menu{
        padding: 30px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #323337;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }

    #menu:checked ~ .navbar{
        display: initial;
    }

    form{
        padding: 50px 30px;
        width: 100%;
    }

    input{
        padding: 15px;
    }

    .footer{
        padding: 30px;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
    }
}