.getaquote-section {
    background: #F8F9FA;
}

.getaquote-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    padding-top: 20px;
}


.getaquote-title:after {
    content: '';
    width: 88px;
    height: 3px;
    background: var(--yellow-color);
    position: absolute;
    top: 60px;
    left: 45%;
}

.getaquote-section p {
    text-align: center;
}

.getaquote-section .form-section {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-3 {
    background-color: var(--yellow-color);
    border: 1px solid white;
    color: #ffffff;
    text-align: center;
    padding: 5px 25px;
    transition: all 0.5s;
    cursor: pointer;
}

.btn-3:hover {
    background: var(--white-color);
    color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
}

.getaquote-section img {
    height: 470px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1025px) {
    .getaquote-title:after {
        left: 45.5%;
    }
}

@media (max-width: 769px) {
    .getaquote-title:after {
        left: 44%;
    }

    .getaquote-section img {
        height: 475px;
        width: 100%;
    }
}

@media (max-width: 426px) {

    .getaquote-title {
        font-size: 24px;
    }

    .getaquote-title:after {
        left: 40.5%;
    }

    .getaquote-section p {
        text-align: justify;
    }

    .getaquote-section img {
        margin-top: 2rem;
        width: 100%;
    }
}

@media (max-width: 376px) {
    .getaquote-title:after {
        left: 38.5%;
    }
}