/* landing */
.landing {
    background-image: url('../images/Group 78.png');
    background-size: cover;
    height: 300px;
    margin-bottom: 40px;
}

.landing .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
}

.landing .container .callus {
    font-weight: bold;
    color: #2784A1;
    font-size: 28px;
}

.landing .container p {
    color: black;
    font-size: 16px;
}

/* landing */

/* cost */
.need {
    background-color: #F4F4F4;
    padding-bottom: 40px;
}

.need .container {}

.need .container .header {
    padding-top: 50px;
    text-align: center;
}

.need .container .header h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.need .container .header p {
    color: #25282B;
    margin-bottom: 20px;
}

.need .container .feat {
    background-color: #FFFFFF;
    border-radius: 30px;
    width: 55%;
    margin: auto;
    padding: 20px 30px;
}

@media (max-width: 1200px) {
    .need .container .feat {
        width: 70%;
    }
}

@media (max-width: 992px) {
    .need .container .feat {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .need .container .feat {
        width: 100%;
    }

    .need .container .feat form .form-group label {
        font-size: 13px !important;
    }
}

.need .container .feat form {}

.need .container .feat form .form-group {}

.need .container .feat form .form-group label {
    font-weight: bold;
    margin-bottom: 10px;
    color: #707070;
    font-size: 16px;
}

.need .container .feat form .form-group .form-select,
.need .container .feat form .form-group .form-control {
    margin-bottom: 20px;
    color: #707070;
}

.form-select:focus,
.form-control:focus {
    box-shadow: none;
    border-color: #E6E6E6;
}

.need .container .feat form .form-group option {
    color: #707070;
}


form .required::after {
    content: "*";
    color: red;
    font-size: 20px;
    margin-left: 5px;
}

form .required.input-filled::after {
    content: "";
}

.need .container .btns {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 50px;
    margin-top: 30px;
}

.need .container .btns .btn-prev {
    color: #2E2E2E;
    font-weight: bold;
}

.need .container .btns .btn-next {
    color: #2E2E2E;
    background-color: #FFE1BE;
    border-radius: 4px;
    padding: 10px 20px;
    color: #2E2E2E;
    font-weight: bold;
}

@media (max-width: 768px) {
    .need .container .btns {
        justify-content: center;
    }
}


/* cost */
