.strait-regular {
    font-family: "Strait", sans-serif;
    font-weight: 400;
    font-style: normal;
}


body {
    font-family: "Strait", sans-serif;
}


.change-logo {
    font-size: 8rem; /* doubled font size */
    font-weight: 500;
    color: #3631FD;
    cursor: default;
}

.custom-card {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

    .custom-card .card {
        width: 100%;
        height: 243px;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        align-items: center;
    }

.logo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-grid-change img {
        height: 50px;
    }


.tabs-row .tabs-name a {
    color: #000;
    text-decoration: none;
}

    .tabs-row .tabs-name a:hover {
        text-decoration: underline;
    }

.custom-card .card img {
    height: 100%;
}

.paratext {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bounce {
    display: inline-block;
    animation: bounce 1s ease forwards; /* one bounce, no infinite */
}

.center-text {
    margin: 50px 0;
    justify-content: center;
}

    .center-text span {
        color: #3631FD;
    }

.contact-us-row {
    display: flex;
    margin: 40px 0;
    column-gap: 100px;
    justify-content: center;
}

    .contact-us-row a {
        color: #000;
    }

.big-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

    .big-card-grid .card {
        min-height: 400px;
        padding: 25px;
    }

.card-title, .card-subtitle, .card-details {
    padding: 0 50px;
}

.card-top-icon img {
    height: 90px;
}

.card-top-icon {
    display: flex;
    justify-content: space-between;
    font-size: 30px;
    margin-bottom: 10px;
}

.text-details {
    display: flex;
    column-gap: 40px;
    align-items: flex-start;
    color: #6E6E6E;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 120px;
}

    .text-details .quotes {
        font-size: 40px;
        line-height: 1.3;
        font-weight: 600;
        flex: none;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
        .text-details .quotes img {
            height: 30px;
            margin-bottom: 10px;
        }

        .text-details .quotes span {
            color: #3631FD;
        }

        .text-details .quotes:before {
            content: "";
        }

.text-grid {
    font-size: 18px;
}

.email-id a, .phone-no a {
    display: flex;
    column-gap: 8px;
    align-items: center;
}

.email-id img {
    width: 25px;
}


@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


/* responsive */
@media (max-width: 575.98px) { 
    .change-logo{
        font-size: 4.5em;
    }

    .arrow-down-icon img {
        height: 140px;
    }

    .text-details {
        align-items: flex-start;
        row-gap: 20px;
        margin-top: 60px;
    }

    .text-details .quotes {
        font-size: 30px;
    }
    .custom-card .card{
        align-items: center;
    }
    .custom-card .card img{
        max-width: fit-content;
    }
    .contact-us-row{
        align-items: center;
        flex-direction: column;
        grid-row-gap: 15px;
    }

}

@media (max-width: 767.98px) {
    .logo-grid-change img {
        height: 40px;
    }

    
}