﻿* {
    font-family: "Inter", sans-serif;
}

.btn-11 {
    border-color: white !important;
    background: #F34F4F;
    /*background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%);*/
    color: #fff;
    overflow: hidden;
}

    .btn-11:hover {
        /*text-decoration: none;
        color: #fff;*/
    }

    .btn-11:before {
        position: absolute;
        content: '';
        display: inline-block;
        top: -180px;
        left: 0;
        width: 30px;
        height: 100%;
        background-color: #fff;
        animation: shiny-btn1 5s ease-in-out infinite;
    }

    /* .btn-11:hover {
        opacity: .7;
    }*/

    .btn-11:active {
        box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
    }

@keyframes shiny-btn1 {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}


/*#faq*/

.containerfaq {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
    margin: 20px 0;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .question::after {
        content: "\002B";
        font-size: 2.2rem;
        position: absolute;
        right: 20px;
        transition: 0.2s;
    }

    .question.active::after {
        transform: rotate(45deg);
    }

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.question.active + .answercont {
}



.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
}

    .logo-slider:hover .logos-slide {
        animation-play-state: paused;
    }

.logos-slide {
    /*display: inline-block;
    animation: 45s slide infinite linear;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logos-slide img {
        /*width: 183px;
        height: 83px;*/
        margin: 0 40px;
    }


    .logos-slide img {
        /*filter: grayscale(100%);*/
        /*transition: filter 0.3s ease-in-out;*/
    }

        .logos-slide img:hover {
            /*filter: grayscale(0%);*/
        }


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*#About us*/


.col-text {
    height: 15em;
}

.grid-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: space-around;
}

.col {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.col-left {
    -webkit-box-ordinal-group: -1;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}

.col-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Aligner-item {
    /*width: 60%;*/
}

.col-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 640px) {
    .mtm-150 {
        margin-top: 152px!important;
    }

    .logos-slide {
        display: inline-block;
        animation: 45s slide infinite linear;
    }

    .grid-flex {
        height: 40em;
        display: -webkit-flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .col {
        order: vertical;
    }

    .col-left {
        -webkit-box-ordinal-group: 0;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .col-text div p {
        padding: 1em;
    }

    .Aligner-item {
        width: 90%;
    }
}

/*#footer*/

.footer {
    /*position: fixed;*/
    width: 100%;
    bottom: 0;
    left: 0;
}

    .footer .heading {
        max-width: 1010px;
        width: 90%;
        text-transform: uppercase;
        margin: 0 auto;
        margin-bottom: 3rem;
        font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    }

    .footer .content {
        display: flex;
        justify-content: space-evenly;
        margin: 1.5rem;
    }

        .footer .content p {
            margin-bottom: 1.3rem;
            color: rgba(0, 0, 0, 0.829);
        }

        .footer .content a {
            text-decoration: none;
            color: rgb(0, 0, 0, 0.829);
        }

           /* .footer .content a:hover {
                border-bottom: 1px solid rgba(0, 0, 0, 0.829);
            }*/

        .footer .content h4 {
            margin-bottom: 1.3rem;
            font-size: 19px;
        }

footer {
    text-align: center;
    /*margin-bottom: 2rem;*/
}

    footer hr {
        margin: 2rem 0;
    }

@media (max-width: 767px) {
    .footer .content {
        display: flex;
        flex-direction: column;
        font-size: 14px;
    }

    .footer {
        position: unset;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer .content,
    .footer {
        font-size: 14px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        /*position: unset;*/
    }
}





/**** From Index html page ****/
.fixed-top-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;  /*Ensures it stays above other content */
    box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3)/*0 4px 2px -2px gray*/;  /*Optional: adds a shadow for visual effect */
    transition: background-color 0.3s ease;  /*Optional: transition for any background color changes */
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.9);  /*Change background color when scrolled */
}

/****Whychooseus****/


/***NavBar Toggler Css media***/
/*body.no-scroll {
    overflow: hidden;
}*/
/*.navbar-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}*/

    /*.navbar-collapse.open {
        max-height: 300px;*/  /*or any suitable height */
        /*overflow-y: auto;
    }*/
@media screen and (max-width: 600px) {
    .navbar-collapse.open {
        display: flex; /* Show the menu when it has the 'open' class */
        display: block;
        /*box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3);*/
    }

    /*.navbar.show {
        box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3);
    }*/

    body.no-scroll {
        overflow: hidden;
    }

    #rbLogo-lg{
        display: none!important;
    }
    #rbSignInbtn {
        display: none!important;
        width: 18%;
    }
    .container-fluid.navmbdiv {
        display: flex;
        justify-content: flex-start;
        /*box-shadow: 8px 5px 8px 19px #eee3e1b3;*/
    }
    .navhdrImgSignbtn {
        display: flex;
        margin-left: 2%;
        align-items: flex-end;
        justify-content: space-between;
    }
    .navSignInbtn .px-5 {
        /*padding-right: 0rem!important;*/
        padding-right: 0rem !important;
        padding-left: 0rem !important;
        /*width: 20%;*/
    }
    .navSignInbtn {
        width: 18%;
    }
    .navSignInbtn.user-logged-in {
        width: 45%;
    }
    .navbar.nav-item:hover {
        background: gray;
    }
    .navbar-nav .nav-link.active {
        text-decoration: underline;
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*@media screen and (max-width: 768px) {
    .navbar-collapse.open {
        display: flex;*/  /*Show the menu when it has the 'open' class */
        /*display: block;
        box-shadow: 0 8px 24px 0 rgba(23, 50, 101, .3);
    }

    body.no-scroll {
        overflow: hidden;
    }

    #rbLogo-lg {
        display: none !important;
    }

    #rbSignInbtn {
        display: none !important;
        width: 18%;
    }

    .container-fluid.navmbdiv {
        display: flex;
        justify-content: flex-start;
    }

    .navhdrImgSignbtn {
        display: flex;
        margin-left: 2%;
        align-items: flex-end;
        justify-content: space-between;
    }

    .navSignInbtn .px-5 {
        padding-right: 0rem!important;
        padding-right: 0rem !important;
        padding-left: 0rem !important;
        width: 20%;
    }

    .navSignInbtn {
        width: 18%;
    }

        .navSignInbtn.user-logged-in {
            width: 45%;
        }

    .navbar.nav-item:hover {
        background: gray;
    }

    .navbar-nav .nav-link.active {
        text-decoration: underline;
    }
}*/

