/* ============================================================
   FONTS
   ============================================================ */

@font-face {
    font-family: 'Campton';
    src: url('/Transitarius/fonts/CamptonBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Campton';
    src: url('/Transitarius/fonts/CamptonMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Campton';
    src: url('/Transitarius/fonts/CamptonLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}


/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, auto 100%;
    background-position: left top, right center;
    background-image:
        linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.8) 64%,
            rgba(255, 255, 255, 0) 75%),
        var(--hero-bg);
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 180px 20px 80px 20px;
}

.hero-content {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 59px;
    color: #000000;
    margin: 0 0 20px 0;
}

.hero-description {
    font-family: 'Campton', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 33px;
    color: #333333;
    margin: 0 0 35px 0;
}

.hero-cta-wrapper {
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    background-color: #1800FE;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Campton', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #1100b3;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 200px;
}

.feature-icon {
    color: #1800FE;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-text {
    font-family: 'Campton', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
}

.hero-image-wrapper {
    display: none;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ============================================================
   DISRUPTIONS SECTION
   ============================================================ */

.disruptions-section {
    width: 100%;
    background-color: #F8F8FD;
}

.disruptions-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.disruptions-content {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.disruptions-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    color: #000000;
    margin: 0 0 20px 0;
}

.disruptions-description {
    font-family: 'Campton', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin: 0 0 35px 0;
}

.disruptions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disruption-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.disruption-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.disruption-text {
    font-family: 'Campton', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.disruptions-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.disruptions-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Sections that share disruptions layout but have no image */
.disruptions-section.no-image .disruptions-image-wrapper {
    display: none;
}

.disruptions-section.no-image .disruptions-content {
    max-width: 800px;
}


.disruption-item-complex {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0px;
}

.disruption-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.disruption-item-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

.disruption-item-desc {
    font-family: 'Campton', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #333333;
    margin: 0;
}


/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */

.testimonial-section {
    width: 100%;
    background-color: #F8F8FD;
    padding: 40px 20px 60px 20px;
}

.testimonial-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-heading {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    text-align: center;
    margin: 0 0 40px 0;
    max-width: 800px;
}

.testimonial-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid #1800FE;
}

.testimonial-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #1800FE;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Campton', sans-serif;
    font-weight: 500;
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-text {
    font-family: 'Campton', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin: 0;
}

.testimonial-author {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    margin: 0;
}


/* ============================================================
   SECTION HEADER BLOCK
   ============================================================ */

.section-header-block {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px 0 20px;
    box-sizing: border-box;
}

/* Shared gray background modifier — applies to both section-header-block and testimonial-section */
.section-header-block.gray-bg,
.testimonial-section.gray-bg {
    background-color: #F8F8FD;
}

.section-header-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.section-header-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    text-align: center;
    margin: 0;
    width: 100%;
}


/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 20px;
    box-sizing: border-box;
}

.features-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.features-header {
    text-align: center;
    margin-bottom: 20px;
}

.features-main-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    margin: 0 auto;
    width: 100%;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.feature-row:nth-child(odd) {
    flex-direction: row-reverse;
}

.feature-image-col {
    flex: 0 0 450px;
    width: 450px;
}

.feature-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-subheading {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
    margin: 0 0 24px 0;
}

.feature-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    margin: 0 0 16px 0;
}

.feature-description {
    font-family: 'Campton', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    margin: 0 0 24px 0;
}

.feature-btn {
    display: inline-block;
    background-color: #1800FE;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Campton', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.feature-btn:hover {
    background-color: #1100b3;
}


/* ============================================================
   DIFFERENT SECTION
   ============================================================ */

.different-section {
    width: 100%;
    background-color: #ffffff;
}


/* ============================================================
   STORIES SECTION
   ============================================================ */

.stories-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0 100px 80px 100px;
    box-sizing: border-box;
}

.stories-container {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.story-card {
    flex: 1;
    max-width: 460px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.story-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 20px 100px 20px;
    box-sizing: border-box;
}

.faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq-main-title {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    text-align: center;
    margin: 0 0 20px 0;
}

.faq-card {
    width: 100%;
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.faq-header-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question {
    font-family: 'Campton', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin: 0;
}

.faq-static-arrow {
    width: 32px;
    height: 32px;
    background-color: #ECEEFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    width: 100%;
}

.faq-answer p {
    font-family: 'Campton', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    margin: 0;
}


/* ============================================================
   BLUE PROMO SECTION
   ============================================================ */

.blue-promo-section {
    background-color: #1800FE;
    width: 100%;
    padding: 80px 20px;
    font-family: 'Campton', sans-serif;
    color: #ffffff;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.promo-text-content {
    flex: 1;
    max-width: 580px;
}

.promo-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px 0;
    color: #ffffff;
}

.promo-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    color: #ffffff;
}

.promo-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: #ffffff;
}

.promo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.promo-icon-circle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.promo-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.promo-closing {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 32px 0;
}

.promo-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #1800FE;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.promo-btn:hover {
    opacity: 0.9;
}

.promo-image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.promo-main-img {
    width: 100%;
    max-width: 500px;
    max-height: 520px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    object-position: center top;
}


/* ============================================================
   RESPONSIVE — TABLET  (768px – 1024px)
   ============================================================ */

@media (min-width: 768px) and (max-width: 1024px) {

    /* Hero */
    .hero-section {
        min-height: auto;
        background-image: none;
        background-color: #ffffff;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
    }

    .hero-image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        max-height: 350px;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        margin: 0 auto;
        padding: 40px 60px 60px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
        line-height: 48px;
    }

    .hero-description {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-btn {
        font-size: 20px;
        line-height: 28px;
        margin: 0 auto;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 32px;
        margin-top: 20px;
    }

    .feature-item {
        max-width: none;
        flex: 0 1 auto;
        text-align: left;
    }

    /* Disruptions */
    .disruptions-container {
        flex-direction: column;
        gap: 48px;
        padding: 60px 40px;
    }

    .disruptions-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .disruptions-list {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 32px auto;
    }

    .disruptions-image-wrapper {
        width: 100%;
        justify-content: center;
    }

    .disruptions-image {
        width: 100%;
        max-width: 500px;
    }

    /* Features */
    .features-section {
        padding: 60px 60px;
    }

    .feature-row {
        gap: 40px;
    }

    .feature-image-col {
        flex: 1;
        width: auto;
    }

    .feature-text-col {
        flex: 1;
    }

    /* Misc */
    .section-header-block {
        padding-left: 60px;
        padding-right: 60px;
    }

    .testimonial-section {
        padding: 60px 60px;
    }

    .stories-section {
        padding: 0 60px;
    }

    .faq-section {
        padding: 40px 60px 60px 60px;
    }

    /* Promo */
    .blue-promo-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .promo-container {
        flex-direction: column;
        gap: 50px;
    }

    .promo-text-content {
        max-width: 100%;
    }

    .promo-image-content {
        justify-content: center;
        width: 100%;
    }

    .promo-main-img {
        max-height: 360px;
        object-position: center top;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 767px)
   ============================================================ */

@media (max-width: 767px) {

    /* Hero */
    .hero-section {
        min-height: auto;
        background-image: none;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .hero-image-wrapper {
        display: block;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .hero-image {
        height: 180px;
        object-fit: cover;
        object-position: center top;
    }

    .hero-content {
        padding: 32px 20px 40px 20px;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 25px;
        margin-bottom: 28px;
    }

    .hero-btn {
        font-size: 17px;
        padding: 12px 24px;
        margin: 0 auto;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-text {
        font-size: 16px;
    }

    /* Disruptions */
    .disruptions-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 32px;
    }

    .disruptions-content {
        align-items: center;
        text-align: center;
    }

    .disruptions-title {
        font-size: 28px;
        line-height: 36px;
    }

    .disruptions-description {
        font-size: 16px;
        line-height: 24px;
    }

    .disruptions-list {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        gap: 16px;
        margin: 0 0 32px 0;
    }

    .disruption-item {
        align-items: flex-start;
    }

    .disruption-text {
        font-size: 16px;
    }

    .disruptions-image-wrapper {
        width: 100%;
        justify-content: center;
    }

    .disruptions-image {
        width: 85%;
        max-width: 320px;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 20px 20px 40px 20px;
    }

    .testimonial-heading {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-author {
        font-size: 14px;
    }

    /* Section header */
    .section-header-block {
        padding: 40px 20px 0 20px;
    }

    .section-header-title {
        font-size: 24px;
        line-height: 32px;
    }

    /* Features */
    .features-section {
        padding: 60px 30px;
    }

    .features-container {
        gap: 60px;
    }

    .features-main-title {
        font-size: 26px;
        line-height: 36px;
    }

    .feature-row,
    .feature-row:nth-child(odd) {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .feature-image-col {
        width: 85%;
        max-width: 320px;
        margin: 0 auto;
        flex: initial;
    }

    .feature-text-col {
        align-items: center;
    }

    .feature-title {
        font-size: 22px;
        line-height: 30px;
    }

    .feature-description {
        font-size: 16px;
        line-height: 24px;
    }

    .feature-btn {
        font-size: 15px;
        line-height: 22px;
        padding: 8px 18px;
    }

    /* Stories */
    .stories-section {
        padding-bottom: 60px;
    }

    .stories-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: 24px;
    }

    .story-card {
        width: 100%;
        max-width: 100%;
    }

    .story-content {
        padding: 20px;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 20px 60px 20px;
    }

    .faq-card {
        padding: 20px;
        gap: 12px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 22px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 22px;
    }

    .faq-static-arrow {
        width: 28px;
        height: 28px;
    }

    /* Promo */
    .blue-promo-section {
        padding: 60px 20px;
    }

    .promo-container {
        flex-direction: column;
        gap: 50px;
    }

    .promo-text-content {
        max-width: 100%;
    }

    .promo-image-content {
        justify-content: center;
        width: 100%;
    }

    .promo-main-img {
        max-height: 280px;
        object-position: center top;
    }

    .promo-title {
        font-size: 28px;
    }
}


/* ============================================================
   RESPONSIVE — LARGE DESKTOP  (1024px – 1450px)
   Adds horizontal breathing room on mid-size viewports where
   sections haven't yet hit their inner container max-width.
   ============================================================ */

@media (min-width: 1025px) and (max-width: 1450px) {

    .hero-container,
    .disruptions-container,
    .features-section,
    .section-header-block,
    .stories-section,
    .faq-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 54px;
    }
}

.pagefooter{
  background-image: url("./assets/images/footer-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;

}
.h226 {
  font-size: 26px;
  font-family: "Campton", Montserrat;
  font-weight: Bold;
  line-height: inherit;
  color: #000;
}

.p20 {
    font-size: 20px;
    font-family: "Campton", Montserrat;
    font-weight: 400;
    line-height: inherit;
    color: #000;
    margin-bottom: 0;
}
.form-wrapper {
    width: 100%;
}
.form-label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    outline: none;
}
.notify-btn {
    width: 100%;
    padding: 10px 30px;
    margin-top: 40px;
    background: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #0044ff;
    cursor: pointer;
    transition: 0.2s ease;
}
.container {
    max-width: 100% !important;
}
.ali-item-jus-con-cen {
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0px 20px;
}
.fff {
    color: #fff !important;
}
.padtp50 {
    padding: 50px 0px;
}
.bgfff{
    background: #fff!important;
}
.card {
  padding: 20px;
  box-shadow: 0 4px 10px rgb(227 227 227);
  display: flex;
  align-items: center;
  border: solid 1px #eaeaea;

}
.custom-card a {
  text-decoration: none;
  color: inherit;

}
.carousel-control-prev,
.carousel-control-next{
    width:50px;
    opacity:1;
}

.carousel-control-prev{
    left:-30px;
}

.carousel-control-next{
    right:-30px;
}

.carousel-control-prev img,
.carousel-control-next img{
    width:40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}
.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
    margin-top: 20px;
}
.mt20{
    margin-top: 20px;
}
.mt40 {
  margin-top: 40px !important;
}