/* Importing fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Assigning fonts */

.poppinsFont {
    font-family: "Poppins", sans-serif;
}

.robotoFont {
    font-family: "Roboto", sans-serif;
}

.interFont {
    font-family: "Inter", sans-serif;
}

.manropeFont {
    font-family: "Manrope", sans-serif;
}

/* Assigning font colors */

.textDarkGray {
    color: #3E3E3E;
}

.textDimGray {
    color: #6C6C6C;
}

.textGrayBlue {
    color: #848199;
}

.textOnyx {
    color: #383838;
}

.textSlate {
    color: #7E848C;
}

.textFooter {
    color: #D9DBE1;
}

/* Assigning font sizes */

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.f18 {
    font-size: 18px;
}

.f36 {
    font-size: 36px;
}

.f38 {
    font-size: 38px;
}

.textHeaderBrand {
    font-size: 14px;
}

.textCarouselH {
    font-size: 24px;
}

.textImageSecH {
    font-size: 19px;
}

.textSecTitle {
    font-size: 19px;
}

.textFaqQ {
    font-size: 16px;
}

.textFaqA {
    font-size: 14px;
}



/* Carousel Image */

.darkened-image {
    filter: brightness(40%);
}

.carousel-item img {
    width: 100%;
    height: 584px;
    object-fit: cover;
}

/* Toast-Offer Section */

.toast {
    max-width: none;
    width: auto;
}

/* Image-Text Section */

.btnSquare {
    border-radius: 2px;
}

/* Package Section */

.packSec .card {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    transform-origin: bottom center;
}

.packSec .card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #3F87F5;
    cursor: pointer;
}

.packSec .card:hover .btn {
    background-color: #f8f9fa !important;
    color: #3F87F5 !important;
}

.packSec .card:hover .card-title,
.packSec .card:hover .card-text,
.packSec .card:hover h3,
.packSec .card:hover h4,
.packSec .card:hover p {
    color: #ffffff;
}

.packSec .darkened-on-hover {
    transition: filter 0.3s ease;
}

.packSec .card:hover .darkened-on-hover {
    filter: brightness(0%);
    cursor: pointer;
}

.moveBadge {
    position: relative;
    top: 0px;
    right: 0px;
}

/* Responsive text sizes */

@media (min-width: 576px) {

    .textCarouselH {
        font-size: 30px;
    }

    .textHeaderBrand {
        font-size: 18px;
    }

    .textImageSecH {
        font-size: 22px;
    }

    .textSecTitle {
        font-size: 24px;
    }
}

@media (min-width: 768px) {

    .textCarouselH {
        font-size: 36px;
    }

    .textSecTitle {
        font-size: 28px;
    }

    .textFaqQ {
        font-size: 18px;
    }

    .textFaqA {
        font-size: 16px;
    }
}

@media (min-width: 992px) {

    .textHeaderBrand {
        font-size: 22px;
    }

    .textCarouselH {
        font-size: 40px;
    }

    .textImageSecH {
        font-size: 30px;
    }

    .textSecTitle {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {

    .textCarouselH {
        font-size: 48px;
    }

    .textSecTitle {
        font-size: 38px;
    }

    .textFaqQ {
        font-size: 20px;
    }

    .faq50 {
        /* fixing faq img-fluid above 1200px */
        width: 50%;
    }
}

@media (min-width: 1400px) {

    .textImageSecH {
        font-size: 38px;
    }
}