/* Start Section Properties */
.about-us{
    background-image: url("../images/background-footer.jpg");
    height: 900px;
    position: relative;
    top: -155px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}
.about-us::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: -2;
}
.about-us .section{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
}
.about-us .section .head-1{
    font-size: 60px;
    font-weight: 600;
}
.about-us .section .details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}
.about-us .section .details .link{
    font-size: 20px;
    font-weight: 600;
}
.about-us .section .details .link a{
    color: white;
    font-weight: 600;
}
.about-us .section .details .description{
    font-size: 20px;
    color: #ffffff96;
    max-width: 500px;
    font-weight: 600;
}
@media screen and (max-width:768px) {
    .about-us{
        top: -170px;
    }
    .about-us .section .head-1{
        font-size: 30px;
    }
    .about-us .section .details .link , .about-us .section .details .description{
        font-size: 18px;
    }
}
@media screen and (max-width:568px) {
    .about-us{
        top: -222px;
        height: 1000px;
        padding-top:260px ;
    }
}
/* End Section Properties */
/* Start Section Ready List */
.ready{
    margin-top: -200px;
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 60px 0;
}
.ready small{
    font-size: 20px;
    color: var(--primaryColor);
    margin: 20px 0;
}
.ready .head-1{
    font-size: 60px;
    font-weight: 700;
    color: #1B1F12;
    margin: 20px 0;
}
.ready .parag{
    font-size: 24px;
    color: var(--secondColor);
    margin: 20px 0;

}
.ready form{
    display: flex;
    gap: 50px;
    flex-direction: column;
    margin-top: 90px;
}
.ready form .inputs{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
    
}
.ready form .inputs .input-label{
    flex-basis: calc((100% / 3) - 20px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ready form  .input-label label{
    font-size: 22px;
    color: #1B1F12;
}
.ready form  .input-label label span{
    color: var(--secondColor);
}
.ready form  .input-label input{
    border: none;
    outline: none;
    border-bottom: 1px solid #CACACA;
    font-size: 22px;
}
.ready form .input-label{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ready form .submit{
    width: fit-content;
    font-size: 22px;
    padding: 15px 30px;
}
@media screen and (max-width:768px) {
    .ready small{
        font-size: 14px;
    }
    .ready .head-1{
        font-size: 30px;
    }
    .ready .parag{
        font-size: 18px;
    }
    .ready form .inputs .input-label{
        flex-basis: 100%;
    }
    .ready form  .input-label label , .ready form .input-label input{
        font-size: 18px;
    }
    .ready form .submit{
        width: fit-content;
        font-size: 18px;
        padding: 10px 20px;
    }

}
/* End Section Ready List */