:root {

    --primary-color: ;

    --secondary-color: ;
    --tertiary-color: ;
    --accent-color: ;
    --font-1: ;
    --font-2: ;
    --font-2-b: ;

    --heading-size: ;
    --para-size: ;

    --padding: ;
}


.hero {
    min-height: 155vh !important;
    padding-bottom: 40px !important;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

.hero .text {
    margin-top: 108px;
}

.hero .socials {
    display: flex;
    gap: 17px;
    margin: 0 auto;
    margin-top: 5px;
}

.hero img {
    width: 32px;

}

.hero form {
    background-color: rgb(23, 51, 71, .2);
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 40px 40px;
    border-radius: 25px;
    box-shadow: 0px 0px 4px .5px rgb(201, 201, 201, .7);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 55px;
}

.hero .input {
    display: flex;
    flex-direction: column;
    gap: 9px;

}

.hero label {
    letter-spacing: 1px;
    font-weight: 400;
}

.hero :is(input, textarea) {
    width: 100%;
    padding: 10px 14px;
    border-radius: 5px;
    outline: none;
    border: none;
    background: linear-gradient(to right, rgb(156, 156, 156, .21), rgb(107, 107, 107, .21));
    height: 5vh;
    color: white !important;
    font-size: 16px;
    font-family: var(--font-2);
}

.hero textarea {
    min-height: 34vh;
}

.hero form button {
    border: none;
    color: var(--primary-color);
    font-family: var(--font-2);
    padding: 13px 55px;
    font-weight: 500 !important;

}

.hero form>p {
    color: rgba(200, 200, 200, 0.8) !important;
    width: 90%;
    letter-spacing: .9px !important;
    font-weight: 400;
    font-size: 12.5px;

}


    .hero label{
        font-size: 24px;
    }

@media (max-width:1000px) {
    .hero form{
        padding: 35px 30px;
    }
    
}

@media (max-width:900px) {
    .hero .text {
        margin-top: 94px;
    }
}

@media (max-width:760px) {
    .hero {
        min-height: 48vh !important;
    }

    .hero .socials img {
        width: 28px;
    }

    .hero .text {
        margin-top: 70px;
    }

    .hero form .form-row{
        grid-template-columns: 1fr;
        gap: 25px;
    }

     .hero label{
        font-size: 21.5px;
    }

     .hero form{
        padding: 25px 20px;
        border-radius: 20px;
    }
}


@media (max-width: 500px) {
     .hero form{
        padding: 15px ;
        border-radius: 15px;
        box-shadow: 0px 0px 3px .3px rgb(201, 201, 201, .7);
    }
    .hero .socials img {
        width: 23px;
    }

        .hero label {
        font-size: 17px;
    }
    .hero :is(input, textarea){
        padding: 10px 12px;
    }

    .hero form>p{
        font-size: 12px;
        letter-spacing: .8px !important;
    }
}