.main-section {
    background-image: url('../images/cover.jpg');
    height: 860px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}


.quote-example {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 15px;
    bottom: 0px;
    height: 166px;
    /* background: #EDF1FC; */
    border-radius: 8px;
}
@media(max-width:575px) {
    .main-section {
        height: auto;
    }
}

@media(min-width:576px) and (max-width:991px) {
    .main-section {
        height: max-content;
    }
}

.quote-form {
    background: #fff;
    width: 463px;
    padding: 51px;
    height: 677px;
    position: absolute;
    top: 150px;
    right: 80px;
    border-radius: 8px;

}

@media(max-width:575px) {
    .quote-form {
        width: 90%;
        position: static;
        padding: 20px;
        height: auto;

        margin: 80px auto;
        /* display: none; */
    }
    .quote-example {
        left: 10px;
        position: static;
        height: 100px;
        margin: 10px auto;
    }
}

@media(min-width:576px) and (max-width:991px) {
    .main-section {
        display: flex;
        align-items: end;
        flex-direction: column;
        padding-right: 20px;
    }

    .quote-form {
        width: 60%;
        position: relative;
        box-sizing: border-box;
        padding: 30px;
        background-color: #fff;
        top: 100px;
        right: 20px;
        height: max-content;
        /* display: none; */
    }
    .quote-example {
        position: static;
        height: 100px;
        margin: 150px 15px 50px 0;
    }
}

@media(min-width:1200px) {
    .quote-form {

        height: max-content;
    }
    .quote-example{
        left: 10px;
    }
}

.quote-form span {
    font-size: 32px;
    font-weight: 700;
    color: #000B41;
}

.quote-form input,
.quote-form textarea {
    height: 46px;
    color: #ADAFAE !important;
    padding-left: 20px;
    background: #E6F3FC;
    border: none !important;
    border-radius: 4px !important;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400 !important;
}

.quote-form input:focus {
    box-shadow: none !important;
    background: #E6F3FC !important;
    border: none !important;
}

.quote-form-btn {
    margin-top: 15px;
    text-transform: capitalize;
    color: #fff;
    background: #072a70;
    border-radius: 8px;
    width: 100%;
    height: 66px;
    font-size: 16px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media(max-width:991px) {


    .quote-form-btn {
        height: 50px;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .quote-example {
        bottom: 30px;
    }

    .quote-form {
        position: static;
        box-sizing: border-box;
        padding: 30px;
        background-color: #fff;
        /* top: 100px; */
        margin-top: 150px;
        margin-right: 30px;
        height: max-content;
        /* display: none; */
    }

    .main-section {
        display: flex;
        justify-content: end;
    }

    .about-sub-header {
        max-width: 90%;
    }
}

.quote-author {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #222A52;
}

.stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-icon {
    position: absolute;
    width: 84px;
    height: 84px;
    top: -35px;
    right: -35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1592B;
    font-size: 32px;
    color: #fff;
}

.quote-content {
    width: 384px;
    height: 129px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.star {
    width: 27px;
    height: 27px;

}

.quote-text {
    width: 289px;
}

.quote-text p {
    font-size: 13px;
    color: #333333;
}

.author {
    font-size: 16px;
    font-weight: bold;
}