.navbar.navbar-inner ul {
    display: none !important;
}

.navbar-inner {
    padding: 7px 0;
    background-color: white;
    border-bottom: 1px solid #ededed;
}

.navbar a,
.navbar a:focus {
    text-transform: none;
    font-size: 14px;
    font-weight: 500 !important;
    /* font-weight: normal !important; */
    /* padding-right: 15px; */
}

.navbar .dropdown a {
    padding-right: 18px;
}

.navbar .login,
.navbar .login:focus {
    border: 1px solid #cbcbcb;
}

.h_font {
    font-family: var(--font-varela-round);
}

a,
.btn,
button {
    transition: 0.3s;
    /* transition: background-color .5s ease-out 100ms */
}

.dropdown .nav-link {
    position: relative;
    padding-right: 15px;
}

    .dropdown .nav-link::after {
        content: "\f282";
        font-family: bootstrap-icons !important;
        text-align: right;
        font-size: 11px;
        position: absolute;
        top: 14px;
        right: 5px;
        transition: 0.3s;
    }

    .dropdown .nav-link:hover::after {
        transform: rotate(180deg);
    }

/*----------------------------
 containerHome 
-------------------------------*/

.containerHome-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.containerHome-fluid {
    max-width: 970px;
}

@media only screen and (min-width: 1200px) {
    .containerHome-fluid {
        max-width: 1170px;
    }
}

@media screen and (min-width: 1300px) {
    .containerHome-fluid {
        max-width: 1170px;
    }
}

@media screen and (min-width: 1440px) {
    .containerHome-fluid {
        max-width: 1280px;
    }
}

@media screen and (min-width: 1600px) {
    .containerHome-fluid {
        max-width: 1600px;
    }
}

@media only screen and (max-width: 479px) {
}

@media only screen and (max-width: 992px) {
    .containerHome-fluid {
        max-width: 750px;
    }
}


body.open-menu .navbar {
    right: 0 !important;
}

body.open-menu {
    /* left: -250px; */
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .open-menu .nav_header {
        background-color: var(--light);
    }
}

body.open-menu .over-menu {
    visibility: visible;
    opacity: 1;
}

body .over-menu {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: fixed;
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9;
}

body.open-menu .top_login {
    display: none;
}


.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler .hamburger-toggle {
        position: relative;
        display: inline-block;
        width: 45px;
        height: 40px;
        z-index: 11;
        /* float: right; */
    }

        .navbar-toggler .hamburger-toggle .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
        }

            .navbar-toggler .hamburger-toggle .hamburger span {
                width: 100%;
                height: 2px;
                position: absolute;
                /* background: #012b4e; */
                background: #a2acb7;
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
                left: 0px;
            }

.headerFixScroll .navbar-toggler .hamburger-toggle .hamburger span {
    background: #6a7582;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    left: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

    .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
        top: 45%;
        transform: rotate(45deg);
    }

    .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
        left: 50%;
        width: 0px;
    }

    .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
        top: 45%;
        transform: rotate(-45deg);
    }

.nav_header {
    display: none;
}

.navbar .dropdown ul.sub-menu {
    display: block;
    position: absolute;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
}

.navbar .menus > li:hover a ~ .sub-menu {
    display: block;
    opacity: inherit;
    visibility: inherit;
}

.navbar .dropdown ul {
    display: table-cell;
    position: inherit;
    opacity: inherit;
    visibility: inherit;
    box-shadow: none;
}

    .navbar .dropdown ul li {
        min-width: auto;
    }

        .navbar .dropdown ul li.sub-hed {
            font-size: 12px;
            display: block;
            padding: 2px 20px !important;
            font-weight: 500;
            color: var(--blue-dark);
        }

        .navbar .dropdown ul li h5 {
            font-size: 16px;
            margin: 0 0 5px 10px;
            color: var(--green);
        }

            .navbar .dropdown ul li h5::before {
                content: "\e473";
                font: normal normal normal 13px/1 FontAwesome;
                margin-right: 5px;
                color: var(--gray);
            }

.logo-menu {
    display: none;
}

.open-menu .navbar .dropdown ul li a:hover ~ .sub-menu {
    display: block;
    position: inherit;
    opacity: inherit;
    visibility: inherit;
}

.overflow-auto1 {
    overflow: inherit;
}



.navbar-mobi {
}

#our_products .tab-link .display-mobile {
    margin-bottom: 40px;
}

.singlemenu-panel {
    border-radius: 5px;
    width: auto !important;
    padding: 15px !important;
    /* top: calc(100% + 30px); */
    border-top: solid 1px #f0f0f0 !important;
    background-color: #fdfdfd !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.075) !important;
    animation: opac 0.8s;
}

@media only screen and (max-width: 992px) {
    h4 {
        font-size: 1.3rem;
    }

    .cycle-tab-container .tab-item h2 {
        font-size: 1rem !important;
    }

    .RestComplianceReport table, .table thead tr th {
        font-size: 0.7rem !important;
    }

    .tab-content {
        top: 0;
    }

    #our_products .tab-link.current .display-mobile {
        display: block;
        transition: opac 1s;
    }

    #our_products .tab-link {
        display: block;
    }

    .cycle-tab-container ul {
        padding-left: 1rem;
    }



    .circleMobile {
        width: 100%;
        height: 300px;
        position: absolute;
        top: 0;
        left: 0;
        /* bottom: 0; */
        /* right: 0; */
        margin: auto;
        /* background: #ddd;
       border-radius: 50%; */
    }

        .circleMobile img {
            width: 100%;
            height: auto;
        }


    #our_products .tab-link .contentWrapped {
        display: block;
    }

    .waves-img::after,
    .waves-img::before {
        background-size: cover;
    }

    .no_complaints .card-body {
        padding: 0;
    }

    .mob-nav-toggle {
        display: block;
    }

    /* .navbar > .menus {
       display: block;
     } */
    .navbar .menus > li {
        border-bottom: 1px solid #f1f1f1;
        margin: 5px 10px;
    }

    .dropdown .nav-link::after {
        font-size: 15px;
    }

    .navbar .top_login {
        display: none;
    }

    .navbar .top_login {
        display: flex;
    }

    .navbar .registernow,
    .navbar .registernow:focus,
    .navbar .login,
    .navbar .login:focus {
        margin-left: 0;
    }

    .open-menu .menus {
        display: block;
        width: 100%;
        height: 100%;
        padding: 5px;
        font-size: 14px;
    }

    .open-menu header .navbar {
        display: block;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background: #FFF;
        position: fixed;
        height: 100%;
        /* width: 250px; */
        width: 100%;
        right: 0px;
        top: 0;
        z-index: 12 !important;
    }

    .nav_header {
        display: flex;
    }

    .open-menu .nav_header {
        background-color: var(--light);
    }

    .navbar .dropdown ul {
        display: inline-grid;
    }

    .megamenu-list:nth-child(2) {
        border-right: none;
    }

    .megamenu-lists .list-col-4 {
        width: 50%;
        display: block;
    }

    .megamenu-panel {
        position: initial;
    }

    #navbar .menus > li:hover a ~ .submenu-active {
        display: block;
    }

    .navbar a {
        font-size: 16px;
    }

        .navbar a:hover,
        .navbar a:active {
            font-size: 16px;
        }

    .navbar .top_login a,
    .navbar .top_login a:hover,
    .navbar .top_login a:active {
        font-size: 14px;
    }

    .navbar .dropdown ul a {
        font-size: 14px;
    }

    .navbar .dropdown ul li.sub-hed {
        font-size: 12px;
    }

    .open-menu .logo-menu {
        display: block;
        padding: 9px 14px;
    }

    .logo-menu img {
        width: 62px;
        height: auto;
    }

    .overflow-auto1 {
        overflow: auto !important;
    }

    .navbar .dropdown ul.sub-menu {
        position: initial;
        display: none;
    }

    .open-menu .navbar .dropdown.active .sub-menu {
        display: block;
        /* position:inherit; */
        opacity: inherit;
        visibility: inherit;
    }

    .open-menu .navbar .dropdown.active > a {
        color: #2487ce;
    }

    .dropdown.active a.nav-link::after {
        color: #2487ce;
        transform: rotate(180deg);
    }

    .navbar .menus > li:hover a ~ .sub-menu {
        display: none;
    }

    .num-subscriber {
        font-size: 25px;
    }

        .num-subscriber .std_code span {
            width: 45px;
            top: 9px;
        }

    /* #hero-new {
        padding-top: 85px;
    } */

    #our_benefites .swiper-slide {
        /* min-width: 180px; */
    }

        #our_benefites .swiper-slide .card .card-body h5 {
            font-size: 1rem;
        }

    .card-text {
        font-size: 0.6rem;
    }

    .client_info h6 {
        font-size: .6rem;
    }

    .no_complaints .card .card-body p {
        font-size: 0.6rem;
    }

    #best_tradingPlatform .moblie_more {
        display: block !important;
    }

        #best_tradingPlatform .moblie_more a,
        #best_tradingPlatform .moblie_more span {
            display: block;
            text-align: center;
        }

        #best_tradingPlatform .moblie_more a {
            margin-top: 20px;
        }

    .RestDisclosure {
        padding: 15px 0 0 0;
    }

    .pt-8 {
        padding-top: 3rem !important;
    }

    .pb-8 {
        padding-bottom: 3rem !important;
    }

    #algoTradingSimplified .card .card-body .card-text {
        font-size: .8rem;
    }

    #hero-new .HeroSwiper-text {
        max-height: 55px;
    }

    .num-subscriber input[type=text], .num-subscriber input[type=tel] {
        width: 100% !important;
    }


    .num-subscriber input[type=submit] {
        border-radius: 6px !important;
        width: 100%;
    }

    .num-subscriber .input-group {
        display: block;
        width: 100% !important;
    }

    .h-mobile {
        height: auto !important;
    }

    .num-subscriber .input-group button {
        margin-left: 0;
        border-radius: 6px !important;
        width: 100%;
        margin-top: 15px;
    }

    .sec_heading p.sub-heading {
        font-size: 0.7rem !important;
    }
}

@media screen and (max-width:768px) {
    #header .nav-link {
        color: #6a7582;
    }
}

@media only screen and (max-width: 1024px) {
    .num-subscriber .input-group {
        width: 100% !important;
    }
}

.navbar .dropdown ul a::before {
    content: "\f105";
    font: normal normal normal 11px / 1 FontAwesome;
    margin-right: 5px;
    color: var(--blue);
}

@media only screen and (max-width: 992px) {
    .navbar .dropdown ul a {
        font-size: 14px;
    }
}

/*----------------------------
 top hero  
-------------------------------*/
.hero_bg {
    background: linear-gradient(#151941 0%, #385794 100%);
}



#hero-new h1 {
    font-family: var(--font-varela-round);
    font-size: 4rem;
    font-weight: bold;
    color: white;
    line-height: normal;
}

    #hero-new h1 span {
        display: block;
        font-size: 3rem;
        padding-top: 16px;
    }

#hero-new .HeroSwiper-text {
    /* max-width: 360px; */
    overflow: hidden;
    max-height: 80px;
    font-family: var(--font-varela-round);
    font-weight: bold;
}

    #hero-new .HeroSwiper-text .swiper-slide {
        font-size: 4rem;
        color: var(--green);
        text-transform: uppercase;
    }

@media only screen and (max-width: 768px) {
    #hero-new h1 {
        font-size: 3rem;
    }

        #hero-new h1 span {
            font-size: 2rem;
        }

    #hero-new .HeroSwiper-text .swiper-slide {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 425px) {
    #hero-new h1 {
        font-size: 2rem;
    }

        #hero-new h1 span {
            font-size: 1.5rem;
        }

    #hero-new .HeroSwiper-text .swiper-slide {
        font-size: 2rem;
    }
}


/* @media only screen and (max-width: 992px) {
    #hero-new .HeroSwiper-text .swiper-slide {
        font-size: 2rem;
    }
} */

.pt108 {
    padding-top: 108px;
}

.num-subscriber .input-group {
    width: 65%;
}


.num-subscriber {
    position: relative;
    font-size: 18px;
}

    .num-subscriber input[type=submit] {
        padding: 8px 11px;
        height: 52px !important;
        font-size: 1.1rem !important;
    }

    .num-subscriber input[type=text], .num-subscriber input[type=tel] {
        /* background-color: #ffffff; */
        border-radius: 6px;
        height: 52px !important;
        padding: 8px 15px;
        padding-left: 58px !important;
        letter-spacing: 5px;
        font-size: large !important;
    }

    .num-subscriber input,
    .num-subscriber textarea:focus[type="text"]:focus,
    .num-subscriber textarea:focus[type="tel"]:focus {
        outline: 0 none !important;
    }

        .num-subscriber input::placeholder {
            color: #a0a0a0;
            font-size: 1rem !important;
            letter-spacing: normal;
        }

    .num-subscriber .std_code span {
        position: absolute;
        z-index: 5;
        display: block;
        width: 42px;
        top: 13px;
        left: 14px;
        font-weight: 500;
        color: var(--green);
    }

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.error-message {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #dc3545;
    font-size: .8rem;
}

button,
input,
optgroup,
select,
textarea {
    border: 0px solid;
}




/* ************
 section title
 ********************* */


/*.sec_heading h1 {
    font-size: 3.0rem;
    color: var(--blue-dark);
    font-family: var(--font-varela-round);
    font-weight: bold;
}

    .sec_heading h1 span {
        color: var(--green);
    }

@media only screen and (max-width: 992px) {
    .sec_heading h1 {
        font-size: 1.3rem;
    }
}*/



.sec_heading h2 {
    font-size: 3rem;
    color: var(--blue-dark);
    font-family: var(--font-varela-round);
    font-weight: bold;
    /* text-transform: uppercase; */
}

    .sec_heading h2 span {
        color: var(--green);
    }

@media only screen and (max-width: 992px) {

    .sec_heading h2 {
        font-size: 1.3rem;
    }
}



.sec_heading p.sub-heading {
    font-size: 1.0rem;
    color: var(--gray-dark);
}

.sec_heading .header-info {
    font-size: 1.5em;
    color: var(--green);
    font-family: var(--font-varela-round);
    /* margin-bottom: 0; */
}

.sec_heading.small-heading h1 {
    font-size: 22px;
}

.no_complaints .card .card-body p {
    font-size: 12px;
}

/*****************
  || Our Products  ||
  ***************/

#ourProducts_home {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
    z-index: 8;
    background-color: white;
}

.ourProduct_content {
    /* height: auto; */
    /* margin-top: 5rem; */
    /* padding-top: 14rem; */
    height: 600px;
}

@media only screen and (max-width: 992px) {
    .ourProduct_content {
        /* padding-top: auto; */
        height: auto;
    }
}

@media only screen and (max-width: 1024px) {
    .ourProduct_content {
        /* padding-top: auto; */
        height: auto;
    }
}

/* .ourProduct {
    margin-top: 5rem;
} */


.tabsScrollspy .nav-links {
    color: var(--gray);
    transition: all 50ms ease-in-out;
    /* border-bottom:2px solid transparent; */
    padding: 1rem 0rem;
}

    .tabsScrollspy .nav-links.active {
        background-color: transparent;
        color: #012b4e;
        border-bottom: 2px solid #012b4e;
    }



/* tab cycle */
.cycle-tab-container .nav-tabs {
    border-width: 0;
}

.cycle-tab-container .tab-item h2 {
    font-size: 1.1rem;
    color: var(--dark);
}

.tab-link.current h2 {
    color: var(--green);
    transition: opacity 0.5s;
}

.cycle-tab-container .tab-item p {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 0;
}

.tab-item {
    width: 100%;
    position: relative;
    padding-left: 15px;
    margin-bottom: 30px;
}

.tab-link .tab-item::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 5;
    left: -6px;
    top: 0;
    width: 6px;
    height: 100%;
    transform: scaleY(0);
}

.tab-link {
    cursor: pointer;
}

/* .tab-link.current .tab-item::after { 
   background-color: var(--green);
    transform: scaleY(1);
    transform-origin:  0% 50%; 
    transform-origin: top;
    border-radius: 10px;
    transition: transform 8000ms ease-in;
  } */

.cycle-tab-container .tab-link.current .tab-item::after {
    background-color: var(--green);
    transform: scaleY(1);
    transform-origin: top;
    border-radius: 10px;
    transition: transform 8000ms ease-in;
}

.tab-item::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 5;
    left: -6px;
    top: 0;
    background-color: #dedede;
    width: 6px;
    height: 100%;
    border-radius: 10px;
}

#our_products ul {
    list-style: none;
}

#our_products ul {
    font-size: 1.25rem;
}

@media only screen and (max-width: 992px) {
    #our_products ul {
        font-size: 0.9rem;
    }
}

#our_products .tab-link .display-mobile {
    display: none;
}


.tab-content {
    display: none;
    transition: opacity 0.5s;
    /*padding: 17px;*/
}

    .tab-content.current {
        display: block;
    }

@media only screen and (max-width: 992px) {
    .tab-content.current {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .tab-contents {
        display: none;
    }
}

.stat-figure {
    font-size: 3em;
    font-weight: bold;
    font-family: var(--font-varela-round);
}

/*****************
  || Safe and Secure ||
  ***************/

#DisclosureRestAssuredId {
    font-size: 0.8rem;
}

.RestComplianceReport table {
    font-size: 0.8rem;
}

.RestComplianceReport > .table {
    border-collapse: separate;
    border-spacing: 0 1em;
}

    .RestComplianceReport > .table tr td:first-child {
        border-left: 1px solid #34b54d;
        border-radius: 3px 0 0 3px;
    }

    .RestComplianceReport > .table tr td:last-child {
        border-right: 1px solid #34b54d;
        border-radius: 0 3px 3px 0;
    }

    .RestComplianceReport > .table td {
        border-top: 1px solid #34b54d;
        border-bottom: 1px solid #34b54d;
    }


/*********************** 
|| Clients Say - TESTIMONIALS  ||
************************/
.swiper-testimonials {
    width: 100%;
    margin: 15px auto;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    overflow: hidden;
}

#clients_testimonials .card {
    /* background-color: #fff; */
    border-radius: 30px;
    border-width: 0;
}

#clients_testimonials .card-body {
    padding: 2.5rem;
}

@media screen and (max-width: 992px) {
    #clients_testimonials .card-body {
        padding: 1.5rem 1rem;
    }

    .truncate + a {
        float: none !important;
    }

    .truncate {
        text-align: justify;
    }
}



.swiper-wrapper {
    height: auto;
}

/* .swiper-slide {
    height: 248px;
} */

.quote-icon {
    position: absolute;
    width: 35px;
    height: auto;
    top: -14px;
    left: 32px;
}

    .quote-icon i {
        font-size: 35px;
        color: #B4B8BC;
    }

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 1px solid #ccc; */
    background-color: white;
}

    .client-avatar img {
        width: 100%;
        height: auto;
        white-space: break-spaces;
    }

.truncate {
    display: inline-block;
    /* display: -webkit-box; */
    max-width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .truncate + a {
        /* display: inline-block; */
        vertical-align: top;
        margin-top: 4px;
        float: right;
        /* margin-right: 19px; */
        position: relative;
    }


#clients_testimonials .card-body {
    text-align: left;
}

    #clients_testimonials .card-body .card-text {
        margin-bottom: 30px;
        line-height: 1.6;
        height: 99px;
    }

        #clients_testimonials .card-body .card-text a {
            font-size: 0.8rem;
        }

.client_info {
    padding-left: 15px;
}

    .client_info h6 {
        margin-bottom: 0;
        font-size: .7rem;
    }

    .client_info span {
        font-size: .6rem;
    }

/*********************** 
|| campaign promotion ||
************************/
.advt_wrap {
    background: url(../img/promotional_sec_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    /* height: 353px; */
    text-align: center;
}

    .advt_wrap h2 {
        font-size: 2.2rem;
        color: white;
    }

@media screen and (max-width:768px) {
    .advt_wrap h2 {
        font-size: 1.5rem !important;
    }

    .advt_wrap p {
        font-size: 1rem !important;
    }
}

.advt_wrap p {
    font-size: 1.2rem;
}

.advt_wrap .playstore_logo a {
    width: 152px;
}

    .advt_wrap .playstore_logo a:first-child {
        margin-top: -4px;
        width: 152px;
    }

.inner_join {
    position: relative;
    /* bottom: -120px; */
}

    .inner_join::after {
        content: "";
        position: absolute;
        top: 55%;
        width: 100%;
        background-color: var(--blue-dark);
        height: 235px;
        z-index: -1;
    }

.inner_join_hero {
    position: relative;
}

    .inner_join_hero::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        /* background-color: #385794; */
        background: linear-gradient(#385794 0%, #5d85d7 98%);
        height: 258px;
        z-index: -1;
    }

    .inner_join_hero::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-image: linear-gradient(180deg, transparent 0 30%, #FFF 70% 100%);
    }

@media screen and (max-width:768px) {
    .inner_join_hero::after {
        height: 103px;
    }
}

.blue_bg {
    background-color: var(--blue-dark);
}

.h-155 {
    height: 155px;
}
