.banner-section {
    position: relative;
}

.banner-section .banner-text {
    position: absolute;
    top: 10%;
    left: 4%;
}

.courses-section .course-container {
    width: 90%;
    height: 100%;
    /* background: linear-gradient(to bottom, white 50%, #f8d0d0 100%); */
    border-radius: 5px;
    padding: 2rem;
}

.courses-section .course-container p {
    font-size: 0.9rem;
}

.courses-section .course-container .course-heading {
    font-size: 1.7rem;
}

.courses-section .course-detail {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fafafa;
    padding: 0.5rem;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(95, 98, 100, 0.5);
}

.courses-section .course-detail div:last-child {
    width: 85%;
}

.courses-section .course-detail div:last-child p {
    font-size: 0.8rem;
}

.courses-section .course-detail .sep {
    width: 1px;
    height: 50px;
    background-color: #ccc;
}

@media (max-width: 767px) {
    .courses-section .course-container {
        width: 100%;
        padding: 0.5rem;
    }
}

@media (max-width: 600px) {
    .course-detail {
        flex-direction: column;
    }

    .courses-section .course-detail .sep {
        width: 80%;
        height: 2px;
        margin: 10px 0;
    }
}

.fixed-form-section .fixed-form-container {
    background-color: #f44336;
    position: fixed;
    bottom: 0;
    z-index: 5;
    width: 100%;
    box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.69);
}

@media (max-width: 767px) {
    .fixed-form-section .fixed-form-container {
        bottom: 50px;
    }
}

.fixed-form-section form {
    padding: 1rem 10%;
}

.fixed-form-section form button {
    width: 100%;
    height: 99%;
    border: 1px solid #ffffff;
    color: #f44336;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    background-color: #ffffff;
    border-radius: 3px;
}

.fixed-form-section form button:hover {
    color: #ffffff;
    background-color: #f44336;
    border: 1px solid #ffffff;
}

.fixed-form-section form .form-group {
    margin-top: 1rem;
}

.fixed-form-section .close-btn-container {
    position: relative;
}

.fixed-form-section .close-btn-container .close-btn {
    position: absolute;
    background-color: #f44336;
    color: #ffffff;
    right: 5px;
    top: -25px;
    padding: 1px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
    box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.69);
}

.fixed-form-section .form-display-button {
    color: #ffffff;
    font-weight: 500;
    background-color: #f44336;
    padding: 20px 45px;
    box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.69);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
    z-index: 5;
}

@media (max-width: 767px) {
    .fixed-form-section .form-display-button {
        bottom: 50px;
    }
}

.locations-container {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
    justify-content: space-around;
}

@media (max-width: 1024px) {
    .locations-container {
        max-height: 500px;
        overflow-y: scroll;
    }
}

.ds-location-card {
    width: 18rem;
    margin: 2rem;
}

@media (max-width: 1167px) {
    .ds-location-card {
        margin: 1rem;
    }
}

.ds-location-card .btn {
    background-color: #f44336;
    color: #ffffff;
    border: 1px solid #f44336;
}

.ds-location-card .btn:hover {
    color: #f44336;
    background-color: #ffffff;
}

.mobilr-footer {
    display: none !important;
}

/* service styles */
.service-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-card-container .service-card {
    width: 30rem;
    margin: 1rem 1rem 2rem;
    display: flex;
    align-items: center;
}

@media (max-width: 1053px) {
    .service-card-container .service-card {
        width: 25rem;
    }
}

@media (max-width: 893px) {
    .service-card-container .service-card {
        width: 21rem;
    }
}

@media (max-width: 766px) {
    .service-card-container .service-card {
        width: 30rem;
    }
}

.service-card .service-icon {
    min-width: 80px;
    max-width: 80px;
    margin-right: 10px;
    padding: 8px;
    border: 1px solid #ffffff;
    border-radius: 2px;
}

.service-card .service-description p {
    font-size: 0.8rem;
}

.faq-container .faq-list {
    border-bottom: none;
    flex-direction: column;
}

.faq-container .faq-list .faq-link {
    color: #929292;
}

.faq-container .faq-list .faq-link.active {
    border: 1px solid #000000;
    border-radius: 4px;
}

.faq-content .faq-content-list {
    list-style: none;
}

.faq-content .faq-content-list .faq-content-item {
    margin-bottom: 20px !important;
    border-bottom: 5px solid #000000;
    padding-bottom: 15px !important;
}

.faq-content .faq-content-list .faq-content-item a:hover,
.faq-content .faq-content-list .faq-content-item a {
    color: #000000;
}

.faq-content .faq-content-list .faq-content-item .faq-answer {
    margin-top: 10px;
    padding: 5px 5px;
    font-size: 0.9rem;
    background-color: rgba(204, 204, 204, 0.27);
}

.tiny-txt {
    font-size: 15px;
    position: absolute;
    top: 20px;
}

.fancy-txt {
    padding: 5px 10px !important;
    background: #fafafa;
    border-radius: 5px;
    color: #f44336;
}

.ds-offer-container .carousel-inner {
    z-index: 1;
}

.ds-offer-container .carousel-inner .carousel-item img {
    max-height: 388px;
}