body {
    margin: 0;
    background-color: #F5F5F5;
}

/* menu */
.logo {
    width: 170px;
}

.nav-item {
    color: #000 !important;
    font-weight: 500;
    padding: 20px;
}

.active {
    text-decoration: underline;
}

.c-btn {
    background-color: #FFB300;
    color: #000;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
}

/* heading */
h1 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

h3 {
    line-height: 64px;
    font-size: 56px;
}

h2 {
    font-size: 23px;
    font-weight: 700;
}

.section-header {
    font-size: 36px !important;
    font-weight: bold !important;
}

p {
    color: #000;
    font-weight: 400;
}

.w-50px {
    width: 50px;
}

/* hero section */

.review-star {
    width: 100px;
}

.text-bold {
    font-weight: bold;
}

form {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.tariff-card img {
    transform: rotateY(180deg);
}

.bg-white {
    background-color: #fff;
}

@media (min-width: 576px) {
    .custom-width {
        max-width: 540px;
    }
}


@media (min-width: 768px) {
    .custom-width {
        max-width: 720px;
    }
}


@media (min-width: 992px) {
    .custom-width {
        max-width: 960px;
    }

    .modal-content {
        width: 340px !important;
        margin: 0 auto !important;
    }
}

@media (min-width: 1200px) {
    .custom-width {
        max-width: 1200px;
    }
}

.service-card {
    background: #ffb300b3;
    padding: 22px;
    border-radius: 8px;
}

.accordion-button {
    font-weight: bold;
    background: #ffb300b3 !important;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.slide-img {
    width: 300px;
    height: 300px;
    margin-bottom: 5px;
    object-fit: cover;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-data {

    animation: marquee 18s linear infinite;
}

.marquee-data div {
    background: #fff;
    margin: 15px;
}

.marquee-data span {
    letter-spacing: -0.5px;

}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.call-float {
    position: fixed;
    bottom: -2px;
    left: -5px;
    /* or left: 20px for left side */
    z-index: 1000;
    cursor: pointer;
}

.call-float img {
    width: 120px;
    height: 120px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* or left: 20px for left side */
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-float img {
    width: 65px;
    height: 65px;
    transition: transform 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

.accordion-item {
    margin-top: 20px;
}

.accordion-body {
    font-weight: 500;
}

.modal-body .d-flex {
    justify-content: space-between;
}


@media (max-width: 780px) {
    h3 {
        line-height: 45px;
        font-size: 45px;
        text-align: center;
    }

    h1,
    .tab-center {
        text-align: center;
    }

    marquee {
        margin-bottom: 0px !important;
    }
}

@media (max-width: 760px) {
    #departTime {
        margin-top: 15px;
    }
}