﻿@font-face {
    font-family: Geist;
    src: url("./fonts/Geist-Regular.woff");
    font-weight: normal;
    font-style: normal;
}

/* Loading Screen Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #291D64 0%, #2DA5A8 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    pointer-events: all;
}

/* Prevent body scroll when loader is active */
body.loading {
    overflow: hidden;
    height: 100%;
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    color: white;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #ffffff;
    animation-delay: -0.4s;
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #ffffff;
    animation-delay: -0.8s;
    animation-duration: 1.8s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-text h3 {
    font-family: 'Geist', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    letter-spacing: 1px;
}

.loader-text p {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
}

/* Responsive loader styles */
@media (max-width: 768px) {
    .loader-spinner {
        width: 60px;
        height: 60px;
    }

    .spinner-ring:nth-child(2) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }

    .spinner-ring:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }

    .loader-text h3 {
        font-size: 24px;
    }

    .loader-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .loader-spinner {
        width: 50px;
        height: 50px;
    }

    .spinner-ring:nth-child(2) {
        width: 35px;
        height: 35px;
        top: 7.5px;
        left: 7.5px;
    }

    .spinner-ring:nth-child(3) {
        width: 20px;
        height: 20px;
        top: 15px;
        left: 15px;
    }

    .loader-text h3 {
        font-size: 20px;
    }

    .loader-text p {
        font-size: 12px;
    }
}

@font-face {
    font-family: Geist;
    src: url("./fonts/Geist-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Geist;
    src: url("./fonts/Geist-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: Geist;
    src: url("./fonts/Geist-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
/**********Header start here ytyt ********/
html,
body {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

html,
body,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Geist;
    color: var(--bs-dark);
}

body {
    color: #291C64;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: .2px;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: inherit;
}

h4 {
    color: #291C64;
}

a, a:hover, a:focus {
    /*    color: #0056b3;*/
    color: inherit;
}

.catalog-search-wrapper {
    border-radius: 12px;
    border: 1px solid #9F9C9C;
    background: #FFF;
    padding: 12px 16px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-search-input {
    border: none;
    outline: none;
    background-color: transparent;
}

    .catalog-search-input::placeholder {
        color: #726C6C !important;
    }
/*--------button ---------------*/
.btn-secondary.disabled, .btn-secondary:disabled {
    cursor: not-allowed;
}
.subscribe-for-complete-pricing-access {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    margin: 20px 0;
    padding: 16px 0;
    border-radius: 8px;
    background: #25888A;
}
.subscribe-for-complete-pricing-access:hover{
    color: #FFF;
}

.btn-secondary.disable:hover {
    background-color: #6c757d !important;
}

.btn-secondary {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    background: #25888A;
    color: #FFF;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    width: 100%;
    border: none;
    outline: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 100ms;
}

button:focus {
    outline: none;
    border: none;
}

.close {
    opacity: 0.7;
}

.section-title {
    color: #100C20;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9F9C9C !important;
    opacity: 1 !important; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #9F9C9C !important;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #9F9C9C !important;
}

.dropdown-toggle::after {
    display: none;
}

/*.disabled {
    display: none;
}*/

.desktop-header .nav-list {
    padding: 0;
    padding-left: 10px;
    margin-bottom: 0px;
}

.dropdown-menu.show {
    border: 0;
    box-shadow: -1px 6px 6px rgba(0,0,0,.1);
    /*    padding-left: 15px;*/
    border-radius: 6px;
    /*    width: 300px;*/
}

.dropdown-menu li a {
    display: block;
    padding: .5rem .7rem;
    font-style: normal;
    font-weight: normal;
    font-size: 16px !important;
    line-height: 150%;
    color: #756D98;
}

.btn-secondary-outline {
    display: flex;
    height: 54px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #25888A;
    color: #25888A;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.mobile-header .logo, .mobile-header .bag {
    display: inline-block;
    max-width: 200px;
}

    .mobile-header .bag i {
        background: #FFF;
        color: #291C64;
        padding: 12px;
        border-radius: 25px;
        border: 1px solid #291C64;
    }

.desktop-header .nav-list-item {
    display: inline-block;
}

.desktop-header .nav-link {
    display: inline-block;
    padding: .5rem .68rem;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #756D98;
    border: none;
}

.btn-primary.btn-subscribe {
    padding: 12px 16px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.mobile-header .btn-primary.btn-subscribe {
    display: inline-block;
    padding: 16px 90px;
}

.desktop-header {
    padding: 20px 0;
    background: #291D64;
}

.first-class-upgrades {
    margin-left: -12px;
    margin-right: -12px;
    padding-top: 16px;
}
/* Promotional Banner Styles */
.promotional-banner {
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    background-image: url("./../images/promotional-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 556px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    max-width: 640px;
}

.banner-header {
    color: #FCFBFF;
    text-align: center;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 3.8px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.banner-title {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 1.28px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.banner-description {
    color: #FFF;
    text-align: center;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 2rem;
}

.banner-cta-button {
    border-radius: 12px;
    border-bottom: 1px solid #154E4F;
    background: #FFF;
    color: #092F2F;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.banner-cta-button:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotional-banner {
        padding: 2rem 1.5rem;
    }
    
    .banner-header {
        font-size: 16px;
        letter-spacing: 2.8px;
    }
    
    .banner-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .banner-description {
        font-size: 14px;
    }
    
    .banner-cta-button {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .promotional-banner {
        padding: 1.5rem 1rem;
    }
    
    .banner-header {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .banner-title {
        font-size: 24px;
        letter-spacing: 0.8px;
    }
    
    .banner-description {
        font-size: 14px;
    }
    
    .banner-cta-button {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/*-----------------carousel -------------------------------*/
.text-data {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-left: 5px;
}

.text-data-source {
    color: #1D6B6D;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin-left: 5px;
    text-decoration-line: underline;
}

.text-title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

.coin-carousel-wrapper {
    padding: 32px;
    border: 1px solid #e3e3e3;
    margin-right: -15px;
    margin-left: -15px;
    padding-bottom: 32px;
    border-radius: 8px;
}
/*--------------------end carousel ---------------------------------------------*/
/* header navigation */
.gs-header-desktop-wrapper {
    display: flex;
    padding: 20px 40px;
    align-items: flex-start;
    gap: 32px;
    border-radius: 0px 0px 12px 12px;
    border: 1px solid #E3E3E3;
    background: #FBFBFB;
    max-width: 1200px;
    margin: 0 auto;
}

.gs-header-mobile-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
    align-items: flex-start;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.item-name:hover {
    background-color: #FFFFFF !important;
}

.gs-header-desktop-item-wrapper {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 8px;
    background: #F7F7F7;
    list-style-type: none;
}

.login__header3 {
    color: #151314;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    margin-bottom: 16px !important;
}

.gs-header-mobile-item-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px !important;
    margin: 0 !important;
    align-items: flex-start;
    /*    gap: 20px;*/
    align-self: stretch;
    border-radius: 8px;
    background: #F7F7F7 !important;
    list-style-type: none;
}

    .gs-header-mobile-item-wrapper li a {
        font-size: 14px !important;
        font-weight: 400;
        line-height: 18px;
        text-align: left;
        margin-top: 20px;
        padding: 0;
        color: #2B2829;
        white-space: normal;
    }

    .gs-header-mobile-item-wrapper li:first-child a {
        margin-top: 0;
    }

.gs-header-desktop-item-wrapper li a {
    color: #100C20;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
}

.gs-header-desktop-item-wrapper span {
    color: #5A5555;
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.w-330 {
    width: 330.667px;
}

.w-528 {
    width: 528px;
}

.divider-line {
    width: 1px;
    height: 184px;
    background: #E3E3E3;
}
/* end header navigation */
/*---------------start order successful ----------*/
.order-successful-title {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    margin-bottom: 96px;
}

.order-successful-subtitle {
    color: #100C20;
    font-family: Geist;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 32px;
}

.order-card {
    border-radius: 9px;
    border: 1px solid #E2E2E2;
    background: #FAFAFA;
    padding: 32px;
}

.os-heading-primary {
    color: #000;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 28.8px */
    margin-bottom: 16px;
    text-transform: uppercase;
}
/*---------------end order successful ----------*/
/*----------------Start US Coin------------------*/
.values-sponsor-wrapper {
    display: flex;
    height: 80px;
    padding: 4px 0;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    border: 2px solid #87A2FF;
    background: #E9EEFF;
}

.values-sponsor-image {
    height: 40px;
    width: 150px;
}

    .values-sponsor-image img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.value-form-wrapper {
    display: flex;
    padding: 12px;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #F1F1F1;
    background: #FFF;
    box-shadow: 0px 4px 30px -8px rgba(29, 29, 29, 0.10);
    max-width: 768px;
}

.box-btn,
.box-btn:hover {
    border-radius: 8px;
    background: #25888A;
    color: #FFF;
    font-size: 12px;
    font-weight: 800;
    line-height: 16px;
    padding: 8px;
    border: none;
}

.save-btn,
.save-btn:hover {
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: #1D6B6D;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

    .save-btn.disabled,
    .save-btn:disabled {
        border-radius: 8px;
        font-size: 12px;
        font-weight: 800;
        line-height: 16px;
        padding: 12px 16px;
        border: none;
        background-color: #CCC;
        border-color: #CCC #CCC #b3b2b2;
    }

.cancel-btn,
.cancel-btn:hover {
    border-radius: 12px;
    border: 1px solid #F03D3D;
    background: #FFF;
    padding: 12px 16px;
    color: #F03D3D;
    /* Greysheet1 - 1/Mobile/Body/Highlight Bold */
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
}

.horz-line {
    border: 1px solid #E3E3E3;
    margin: 20px 0;
}

.values-serach-btn {
    display: flex;
    width: 128px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #291D64;
    color: #FFF;
    text-align: center;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    border: none;
    outline: none;
    cursor: pointer;
}
/*----------------End US Coin------------------*/
/*----------------start img gallery------------------------*/
.bg-overlay-img-gallery {
    background: #00000069;
}

.btn-sign-in-ig {
    display: inline-flex;
    height: 48px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: var(--radius-border_radius_12, 12px);
    border-bottom: 1px solid var(--Secondary-Secondary1000, #154E4F);
    background: var(--Secondary-Secondary400, #8ADEE0);
    color: #092F2F;
    /* Greysheet1 - 1/Mobile/Body/Highlight Bold */
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
}

.image-box {
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 0px 4px 30px -8px rgba(50, 50, 50, 0.10);
}

.gallery-coin-title {
    overflow: hidden;
    color: #100C20;
    text-overflow: ellipsis;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
    white-space: nowrap;
}

.img-gl-footer-txt {
    color: #211750;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 19.5px */
}

.sponsor-badge {
    border-radius: 6px;
    background: #F1F1F1;
    padding: 6px;
    color: #726C6C;
    leading-trim: both;
    text-edge: cap;
    font-family: Geist;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 160% */
}

.img-gallery-header h1 {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */
    padding: 60px 0;
}

.breadcrumb-of-img-gallery {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

    .breadcrumb-of-img-gallery ul {
        list-style: none;
        display: flex;
        padding: 0;
    }

    .breadcrumb-of-img-gallery li {
        color: #1D6B6D;
        font-family: Geist;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 19.5px */
    }
/*---------------------end img gallery -----------------------*/
.dropdown .btn {
    padding: 12px !important;
    background: transparent;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #FAFAFA;
    padding: .5rem .5rem;
    border: 0;
    text-align: left;
    font-weight: 600;
}

ul.nav-list li a:hover {
    color: #FAFAFA;
}

.dropdown .btn:focus {
    outline: 0;
    box-shadow: none;
}

.desktop-header .header-right {
    text-align: right;
    position: relative;
}

.subscribe-now-button {
    background-color: #8ADEE0 !important;
    color: #092F2F !important;
}

.desktop-header .header-right .user-login {
    text-align: left;
    color: #FFC8CD;
    width: auto;
    margin: 0 12px;
}

.desktop-header .header-right .user-login-name {
    width: auto;
    border-radius: 12px;
    border-bottom: 1px solid #154E4F;
    background: #8ADEE0;
    color: #092F2F;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    padding: 12px 26px;
    white-space: nowrap;
}

.desktop-header .header-right .user-login-img {
    width: 32px;
    height: 32px;
    background-color: #154E4F;
    border-radius: 50%;
}

.desktop-header .header-right .bag {
    margin: 0 25px;
}

    .desktop-header .header-right .bag i {
        background: #FFF;
        color: #291C64;
        padding: 12px;
        border-radius: 25px;
        border: 1px solid #291C64;
    }

.v-line {
    position: absolute;
    left: 0;
    top: 9px;
}

.nav-list li:hover > ul.dropdown-menu {
    display: block;
    border: 0;
    box-shadow: -1px 6px 6px rgba(0,0,0,.1);
    padding-left: 0px;
    border-radius: 6px;
}

.dropdown-item {
    padding-left: 15px !important;
}

ul.nav-list li a {
    border-bottom: none;
    color: #100C20;
}

.dropdown-submenu {
    position: relative;
}

ul.nav-list li ul {
    list-style: none;
    margin: 0 0 0 5px;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

.mbl-dropdwn-item-icon-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

.page-header {
    padding: 30px 0;
}

    .page-header h1 {
        margin-bottom: 0;
        color: #100C20;
        font-size: 32px;
        font-weight: 700;
        line-height: 120%;
    }

.account-heading-text {
    color: #100C20;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}

.font-size-32 {
    color: #fff;
}

.footer-header {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    text-transform: uppercase;
}

#footer p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    /*color: #9994B1;*/
    color: #E3E3E3 !important;
}

.cdnFooter {
    background: #291C64;
    padding: 70px 0 0 0;
    /*    width: 100%;*/
}

#sub-menu ul li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

    #sub-menu ul li a {
        /*	color: #756D98*/
        color: #ffffff;
    }

#sub-menu ul {
    display: inline-block;
    margin: 0 0 0px 0;
    padding: 0px;
}

    #sub-menu ul li:last-child::after {
        display: none;
    }

.footer-copyright {
    background: #1E134E;
    margin-top: 70px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

#newsletterFrm .btn-primary {
    background-color: #2DA5A8;
    border-color: #2DA5A8 #2DA5A8 #2DA5A8;
    color: #FFF;
}

#newsletterFrm .input-group-rounded .form-control {
    border-radius: 12px;
    font-size: 16px;
    line-height: 150%; /* 24px */
    color: #0a0a0a;
}

#newsletterFrm .input-group-rounded .input-group-append .btn {
    border-radius: 12px;
    left: -16px;
    color: #FFF;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding: 14.5px 24px;
}

/*#sub-menu ul li::after {
    content: "|";
    position: absolute;
    right: -30px;
    color: #756D98;
}
*/

/* marketplace */
.marketplace-item-title {
    color: #100C20;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
}

.marketplace-item-title-list {
    color: #100C20;
    font-family: Geist;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
}
/*end marketplace*/

/*----------------- publication all product ------------*/
.pub-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: #F1F1F1;
    gap: 6px;
    border-radius: 4px;
}

.pub-filter-button {
    background-color: #F1F1F1;
    width: 110px;
    border-radius: 4px;
    color: #726C6C;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s;
    border: none;
    outline: none;
    cursor: pointer;
}

    .pub-filter-button.active {
        background-color: #2DA5A8;
        color: #fff;
    }
/*----------------- end publication all product ------------*/
/*------------------start wpm------------------*/
.wpm-countries {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    padding: 20px;
}

.table-header-container h4 {
    color: #100C20;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
}

.table-header-container p {
    color: #100C20;
    font-family: Geist;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.country-select div {
    color: #5A5555;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    cursor: pointer;
    padding: 8px 0;
}

.country-selected {
    color: #1D6B6D !important;
    font-weight: 600 !important;
}

.wpm-title {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */
    margin-bottom: 12px;
}

.wpm-subtitle {
    color: #5A5555;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
}

.filters-container {
    display: flex;
    padding: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.filter-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-filter {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #F1F1F1;
    cursor: pointer;
    color: #726C6C;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

    .btn-filter:hover {
        background: #2DA5A8;
        color: white;
    }

    .btn-filter.active {
        background: #2DA5A8;
        color: white;
    }

.search-container {
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #B5B3B3;
    padding: 5px 6px 5px 12px;
    box-shadow: 0px 4px 30px -8px rgba(29, 29, 29, 0.10);
    width: 320px;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #291C64;
    background: transparent;
}

    .search-input::placeholder {
        color: #756D98;
    }

.search-button {
    background: #291C64;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    line-height: 150%;
    transition: background-color 0.2s;
    cursor: pointer;
}

    .search-button:hover {
        background: #1D1447;
    }

.wpm-country-title {
    color: var(--Base-Base-Black, #100C20);
    font-family: Geist;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
    text-transform: capitalize;
}

.wpm-breadcrumb {
    padding: 16px 0;
}

.wpm-breadcrumb-link {
    color: #1D6B6D;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 19.5px */
    text-decoration: none;
}

    .wpm-breadcrumb-link:hover {
        text-decoration: underline;
        color: #1D6B6D; 
        font-size: 13px; 
        font-weight: 500;
    }

.wpm-breadcrumb-separator {
    color: #756D98;
    margin: 0 8px;
}

.wpm-breadcrumb-current {
    color: #726C6C !important;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 19.5px */
}

.auction-check-filter {
    display: flex;
    align-items: center;
    -webkit-justify-content: end;
    justify-content: end;
    gap: 24px;
}

@media only screen and (max-width: 480px) {
    .auction-check-filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .wpm-fl-item-3 {
        grid-column: span 1;
    }

    .wpm-fl-item-4 {
        grid-column: 1 / span 1;
        margin-top: 12px;
    }
}
/*------------------end wpm------------------*/
/*------------------------- start marketplace details page -----------------------*/
.marketplace-seller-logo {
    max-width: 183px;
/*    max-height: 131px;*/
    border: 1px solid #e3e3e3;
    border-radius: 12px;
}

    .marketplace-seller-logo img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        padding: 16px;
    }
/*------------------------- end marketplace details page -----------------------*/
.statsBox {
    background: #291C64;
}

    .statsBox h3 {
        display: inline;
        margin: 0;
        padding: 0;
        color: #FFF !important;
        font-size: 28px !important;
        margin-left: 25px !important;
    }

.statTrackerLogo {
    max-width: 75px;
}

.statNum {
    color: #50CDD0;
    background-color: #1E134E;
    padding: 3px 15px;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 4px;
    border-radius: 20px;
    display: inline-block;
}

.statNumrev {
    color: #291C64;
    background-color: #FFF;
    padding: 3px;
    margin-right: 2px;
    font-size: 16px;
    line-height: 150%;
    font-weight: bold;
    margin-bottom: 4px;
    border-radius: 3px;
    display: inline-block;
}

/******24/03/2021 CSS**********/

.profile-name {
    color: #fff;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
}

.profile-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 48px;
    background-position: center;
    border-radius: 8px;
    margin: 0 10px;
    vertical-align: middle;
}

.card-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    margin: 0 5px 0 0;
    vertical-align: middle;
}

.profile-logout {
    color: #9994B1;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
}

.blue-bg {
    background-color: #291C64;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-size-32 {
    font-size: 32px;
    letter-spacing: .1px;
}

.nav-main-item {
    padding: 16px 0;
    border-radius: 8px;
    border: 1px solid #E3E3E3;
    background: #FAFAFA;
}

.account {
    background-color: #FFFFFF;
    padding: 10px 0;
}

    .account .tabs-navigation .nav-tabs > li .nav-link::before {
        display: none;
    }

    .account .tabs-left .nav-tabs > li .nav-link {
        border-right: 0;
        border-left: 0;
        border-radius: 16px;
        margin: 0 0 24px 0;
        text-align: left;
        color: #100C20;
        font-size: 16px;
        font-weight: 400;
        display: inline-block;
        width: 100%;
        /*        transition: all .5s;*/
        transition: none;
        border: none !important;
        background: transparent;
    }

    .account .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link.active {
        border-left: 0;
        background: transparent;
        color: #1D6B6D !important;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin: 0 5px !important;
        padding: 18px;
    }

    .account .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link:hover {
        border-left: 0;
        background: transparent;
        color: #1D6B6D !important;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        text-decoration: underline;
        margin: 0 5px !important;
        padding: 18px;
    }

    .account .tabs-vertical {
        /*        border-top: none;*/
    }

.account__settings {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
}

    .account__settings h3 {
        color: #100C20;
        font-size: 24px;
        font-weight: 600;
        line-height: 150%; /* 36px */
        text-transform: capitalize;
        margin-bottom: 15px;
    }

.membership-icons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 56px;
    width: 30%;
}

.sub-heading {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 170%;
    color: #9994B1;
}

.account__pic {
    width: 150px;
    height: 150px;
    margin-bottom: 45px;
}

    .account__pic img {
        border-radius: 50%;
    }

.first-last-name-wrapper {
    display: grid;
    grid-template-columns: repeat( 2,1fr);
    gap: 24px;
}

.cdn-customer {
    color: #5A5555;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    text-transform: capitalize;
}

.personal-infrm-sub-head {
    color: #100C20;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 32px;
}

.company-info-sub-head {
    color: #100C20;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 32px;
}

.save-changes-btn {
    padding: 16px 32px;
    border-radius: 12px;
    background: #25888A;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    border: none;
    cursor: pointer;
}

    .save-changes-btn:hover {
        background: #1D6B6D;
    }

.width-95 {
    width: 95%
}

.my-32 {
    margin: 32px 0;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

.popular-items-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.btn-primary {
    background: #291D64;
    border-radius: 12px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 120%;
    display: inline-block;
    text-align: center;
    color: #fafafa;
    padding: 12px 24px;
    border: none;
    box-shadow: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
        background: #291D64;
        color: #fff;
        text-decoration: none;
        box-shadow: none;
        border: none;
        opacity: 1 !important;
    }

.btn-tag {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #291C64 !important;
    padding: 10px 15px;
    border: 1px solid #ECECF5 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    display: inline-block;
}

    .btn-tag.active {
        color: #495057;
        background-color: #ECECF5;
        border-color: #ECECF5 #ECECF5 #ECECF5;
        font-weight: bold;
    }

    .btn-tag:hover {
        background-color: #c4c4ce;
    }

.pubTag {
    background-color: #d8f1f2 !important;
}

    .pubTag:hover {
        background-color: #b2c3c4 !important;
    }

.btn-ghostPurple {
    background: #FFF;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    display: inline-block;
    text-align: center;
    color: #291C64;
    padding: 10px 30px;
    border: 1px solid #291C64;
    box-shadow: none;
}

    .btn-ghostPurple:hover, .btn-ghostPurple:focus, .btn-ghostPurple:not(:disabled):not(.disabled):active:focus {
        background: #EEE;
        color: #150E32;
        text-decoration: none;
        box-shadow: none;
        border: 1px solid #150E32;
    }

.btn-ghost {
    background: #FFF;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    display: inline-block;
    text-align: center;
    color: #50CDD0;
    padding: 10px 10px;
    border: 1px solid #50CDD0;
    box-shadow: none;
}

    .btn-ghost:hover, .btn-ghost:focus, .btn-ghost:not(:disabled):not(.disabled):active:focus {
        background: #EEE;
        color: #39B6B9;
        text-decoration: none;
        box-shadow: none;
        border: 1px solid #39B6B9;
    }

.btn-danger {
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 30px;
    border: none;
    box-shadow: none;
}

.btn-dark {
    background-color: #212529;
    border-color: #212529 #212529 #0a0c0d;
    color: #FFF;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    border: none;
    box-shadow: none;
}

    .btn-dark:hover, .btn-dark:focus, .btn-dark:not(:disabled):not(.disabled):active:focus {
        background-color: #32383e;
        border-color: #383f45 #383f45 #212529;
        color: #FFF;
        text-decoration: none;
        box-shadow: none;
        border: none;
    }

.page-item:first-child .page-link, .page-item:last-child .page-link {
    margin-left: 0;
    border-radius: 12px;
}

.account__form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.account__form .form-control-placeholder {
}

.form-control:focus {
    box-shadow: none;
}
/*.account__form .form-control:focus + .form-control-placeholder,
.account__form .form-control:valid + .form-control-placeholder {
    font-size: 75%;
    transform: translate3d(0, -50%, 0);
    opacity: 1;
}*/
.account__form .form-control {
    display: flex;
    height: 41px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    border: 1px solid #9F9C9C;
    background: #FFF;
    color: #100C20;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}

.account__form select.form-control {
    display: flex;
    height: 41px !important;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #9F9C9C !important;
    background: #FFF;
}

.confirmation-text {
    color: #100C20;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.account__form label {
    color: #100C20;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    margin-bottom: 8px;
}

.change-pass {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
}

.dealer-box {
    background: #FFFFFF;
    margin-top: 6px;
    margin-bottom: 40px;
}

    .dealer-box h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
        margin-bottom: 0px;
    }

    .dealer-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #9994B1;
        margin-bottom: 0px;
    }


.switch input {
    display: none;
}

.slider {
    background-color: #fff;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border: 2px solid #BFBDCB;
}



#dvCategoryResult {
    padding: 0 2rem;
}

    #dvCategoryResult .nav-link:hover {
        background-color: #c4c4ce;
    }

/* toogle button */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 26px;
    margin-bottom: 0 !important;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #B5B3B3;
    -webkit-transition: .4s;
    transition: .4s;
    border: none;
    outline: none;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 23px;
        left: 2.5px !important;
        top: 2px !important;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    border: none;
    background-color: #291D64;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/*    input:checked + .slider:before {
        transform: translateX(26px);
        background-color: #fff;
        left: 1px;
    }*/
/* Display the check icon only when in Grid View */
input:checked + .slider:after {
    content: "";
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    color: #032154; /* Color for the icon */
    font-size: 16px;
    opacity: 1; /* Make it visible */
    transition: opacity .4s;
}

/* Hide the check icon when in List View */
.slider:after {
    opacity: 0;
    transition: opacity .4s;
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/*toggle button end*/
.switch-label {
    display: inline-block;
    margin-left: 5px;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 170%;
    color: #291C64;
}

.switch-box {
    /*    display: inline-block;*/
    display: flex;
    align-items: center;
    margin-right: 0;
}

.memberships h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 170%;
    color: #291C64;
    margin-bottom: 30px;
}



.memberships .switch--horizontal input {
    left: .5rem;
}

.memberships .switch--horizontal .toggle-outside {
    left: .5rem;
}


.change-pass .modal-content {
    text-align: center;
}

.change-pass .modal-header1 {
    padding: 30px 50px 5px;
}

.change-pass .modal-body {
    padding: 30px 50px;
}

.change-pass .modal-footer {
    padding: 10px 50px;
}

.forgot-pass {
    text-align: right;
}

.change-pass .modal-title {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-bottom: 0px;
}

.change-pass h5 {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.forgot-pass a {
    color: #1D6B6D;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    display: inline-block;
    margin-top: 8px;
}

.modal-header1 {
    position: relative;
}

    .modal-header1 .close {
        position: absolute;
        right: 0px;
        top: 25px;
        font-size: 30px;
    }

.flex {
    display: flex;
    justify-content: space-between;
}

.btn-light {
    background: #F6F7FB;
    border-radius: 12px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #dc2626 !important;
    box-shadow: none;
    border: 1px solid #dc2626;
    padding: 12px 16px;
}

.address-payment {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

    .address-payment h3 {
        color: #100C20;
        font-size: 28px;
        font-weight: 600;
        line-height: 120%; /* 33.6px */
        margin-top: -36px;
    }

.btn-p {
    border: 1px solid #35E3CA;
    box-sizing: border-box;
    border-radius: 100px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 170%;
    color: #50CDD0;
    display: inline-block;
    text-decoration: none;
    padding: 4px 12px;
    vertical-align: middle;
}

    .btn-p:hover {
        text-decoration: none;
    }

.address-box {
    border-radius: var(--Spacing-sm, 12px);
    border: 1px solid #E3E3E3;
    padding: 16px 24px;
    margin-top: 40px;
}

.address-poBox {
    margin: 11px 0;
}

.payment-box-title {
    color: #100C20;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
}

.address-list span {
    vertical-align: middle;
    display: inline-block;
}

.address-list {
    border-radius: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E3E3E3;
}

.btn-edit {
    display: inline-block;
    vertical-align: middle;
    /*    padding: 5px 7px;*/
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
}

    .btn-edit:hover, .btn-edit:focus {
        color: #291C64;
    }

.btn-delete {
    display: inline-block;
    vertical-align: middle;
    /*    padding: 5px 7px;*/
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #9994B1;
}

    .btn-delete:hover, .btn-delete:focus {
        color: #9994B1;
    }

.address-box h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-bottom: 15px;
}

.stree-name {
    color: #100C20;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%; /* 21px */
}

.city-name {
    color: #100C20;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

.country-name {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
}

.order-header-text {
    color: #100C20;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%; /* 36px */
    text-transform: capitalize;
}

.pin-code {
    color: #100C20;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

.line-up {
    color: #291C64;
    vertical-align: middle;
}



.edit-add .modal-header1 {
    padding: 30px 0 0 0;
    /*    text-align: center;*/
}

.edit-add .modal-body {
    padding: 30px 0px;
    padding-bottom: 4px;
}

.edit-add .modal-footer {
    padding: 10px 50px;
}

.edit-add .modal-title {
    color: #100C20;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%; /* 24px */
}

.edit-add h5 {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.p-text {
    color: #291D64;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%; /* 24px */
}

.delete-h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    text-align: center;
    color: #291C64;
    margin-bottom: 15px;
}

.tab-pane-navigation {
    display: none;
}

.sub-form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
/******Ribbon CSS Starts here ***********/
.ribbon-box {
    position: relative;
}

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

    .ribbon::before,
    .ribbon::after {
        position: absolute;
        z-index: -1;
        content: '';
        display: block;
        border: 5px solid #2c8c8e;
    }

    .ribbon span {
        position: absolute;
        display: block;
        width: 225px;
        padding: 15px 0;
        background-color: #39B6B9;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        color: #fff;
        font: 700 18px/1 'Lato', sans-serif;
        text-shadow: 0 1px 1px rgba(0,0,0,.2);
        text-transform: uppercase;
        text-align: center;
    }

.ribbon-annual::after {
    border: 5px solid #291C64;
}

.ribbon-annual span {
    background-color: #291C64;
}

.ribbon-top-left {
    top: -10px;
    left: -10px;
}

    .ribbon-top-left::before,
    .ribbon-top-left::after {
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-top-left::before {
        top: 0;
        right: 0;
    }

    .ribbon-top-left::after {
        bottom: 0;
        left: 0;
    }

    .ribbon-top-left span {
        right: -25px;
        top: 30px;
        transform: rotate(-45deg);
    }

.ribbon-top-right {
    top: -10px;
    right: -10px;
}

    .ribbon-top-right::before,
    .ribbon-top-right::after {
        border-top-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-top-right::before {
        top: 0;
        left: 0;
    }

    .ribbon-top-right::after {
        bottom: 0;
        right: 0;
    }

    .ribbon-top-right span {
        left: -15px;
        top: 20px;
        transform: rotate(45deg);
    }

.ribbon-bottom-left {
    bottom: -10px;
    left: -10px;
}

    .ribbon-bottom-left::before,
    .ribbon-bottom-left::after {
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-bottom-left::before {
        bottom: 0;
        right: 0;
    }

    .ribbon-bottom-left::after {
        top: 0;
        left: 0;
    }

    .ribbon-bottom-left span {
        right: -25px;
        bottom: 30px;
        transform: rotate(225deg);
    }

.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}

    .ribbon-bottom-right::before,
    .ribbon-bottom-right::after {
        border-bottom-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-bottom-right::before {
        bottom: 0;
        left: 0;
    }

    .ribbon-bottom-right::after {
        top: 0;
        right: 0;
    }

    .ribbon-bottom-right span {
        left: -25px;
        bottom: 30px;
        transform: rotate(-225deg);
    }
/******RIBBON CSS ENDS *****************/


/******LOGIN PAGE CSS START HERE********/

.header-right {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: #291C64;
    /* New add*/
    justify-content: space-between;
    margin-right: 16px;
}

    .header-right a {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        text-align: right;
        color: #50CDD0;
    }

.grey-bg {
    background: #F6F7FB;
}

.login-header {
    min-height: 90px !important;
}

.login {
    margin-top: 50px;
    background: #F6F7FB;
    padding-top: 50px;
    margin-bottom: 50px;
}

.login__header {
    font-family: Geist !important;
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 124%;
    text-align: center;
    color: #291C64;
    margin: 15px 0 30px;
}

.forgot-pass {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    color: #9994B1;
}

.p-relative {
    position: relative;
}

.eye-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    vertical-align: middle;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    color: #CCC;
}

.btn-back {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #756D98;
    display: inline-block;
}

.nps-body {
    position: relative;
}

.nps {
    background: #291C64;
    border-radius: 8px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    padding: 12px 30px;
    display: inline-block;
    position: relative;
    top: -117px;
    z-index: 9999;
}

.login__header2 {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    text-transform: inherit;
}

    .login__header2 a b {
        color: #291C64;
        font-weight: bold;
    }

.form-group.step-2 input {
    width: 45px;
    display: inline-block;
    margin: 0 5px;
    text-align: center;
}

.form-group.step-2 {
    text-align: center;
}

p {
    color: #756D98;
}

.login__header3 {
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 117%;
    color: #291C64;
    margin-top: 30px;
    margin-bottom: 20px;
}


.mobile-header .nav-bar {
    position: fixed;
    background-color: #FFFFFF;
    top: 65px;
    left: -80rem;
    height: calc(100vh);
    width: 100%;
    display: block;
    transition: 0.5s ease-out;
    z-index: 1000;
    display: block !important;
    margin: 0;
}

.mobile-header .toggle {
    left: 0;
}

.mobile-header .toggle-menu {
    background-color: transparent;
    position: fixed;
    top: 16px;
    right: 20px;
    width: 3.2rem;
    height: 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
}

.mobile-header .line {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background-color: #291C64;
    transition: 0.2s ease-out;
}

.mobile-header .toggle .line1 {
    background-color: #291C64;
    transform: scale(0.9) rotateZ(-45deg) translate(-11px, 9px);
}

.mobile-header .line.line2 {
    width: 80%;
}

.mobile-header .toggle .line2 {
    display: none;
}

.mobile-header .toggle .line3 {
    background-color: #291C64;
    transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
}

.mobile-header .toggle .toggle-menu {
    /*    background-color: white;*/
    background-color: transparent;
}

.mobile-header .nav-list {
    list-style: none;
    padding: 0 16px;
    display: block;
    width: 100%;
}

.mobile-header .nav-list-item {
    text-align: left;
    padding: 0px 5px;
    /*    border-top: 1px solid #756D98;*/
    color: #756D98;
}

    .mobile-header .nav-list-item .dropdown .btn {
        padding: 0.5rem 0.7rem;
        border: 0;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        color: #100C20;
    }

    .mobile-header .nav-list-item a[type=button] {
        -webkit-appearance: none;
        -webkit-border-radius: 0;
    }

    .mobile-header .nav-list-item .btn.dropdown-toggle[aria-expanded="true"] {
        color: #291C64;
    }

        .mobile-header .nav-list-item .btn.dropdown-toggle[aria-expanded="true"]:after {
            transform: rotate(180deg);
        }

.mobile-header ul.nav-list li a.nav-link {
    text-decoration: none;
    position: relative;
    padding-bottom: 0.4rem;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 132%;
    color: #756D98;
    border-bottom: 0;
    padding: 0.5rem 0.7rem;
}

.mobile-header ul.nav-list .dropdown-menu.show {
    border: 0;
    border-radius: 0;
    width: 100% !important;
    display: inline-block;
    float: none;
    position: relative !important;
    padding: 0;
    margin: 0;
    top: 5px !important;
    background-color: #F6F7FB;
    transform: none !important;
    box-shadow: none !important;
}

.mobile-header ul.dropdown-menu.show li {
    border-top: 1px solid #756D98;
}

    .mobile-header ul.dropdown-menu.show li.btmBorder {
        border-bottom: 1px solid #756D98;
    }

}

.mobile-header ul.nav-list li a::before {
    display: none;
}


.mobile-header .logo, .mobile-header .bag {
    margin-top: 15px;
    display: inline-block;
}

.mobile-header ul.nav-list li a {
    font-size: 18px;
}

.user-login {
    color: #100C20;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */

    width: 45%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

    .user-login:hover, .user-login:focus {
        text-decoration: none;
    }

.vertSep {
    color: white;
}

.btn-change.btn-subscribe {
    width: 50%
}

    .btn-change.btn-subscribe:hover, .btn-change.btn-subscribe:focus {
        text-decoration: none;
    }

.last-list {
    position: absolute;
    bottom: 15px;
    left: 0px;
    width: 100%;
}

.digital-media {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
}

    .digital-media h3 {
        color: #100C20;
        font-size: 24px;
        font-weight: 600;
        line-height: 150%;
        text-transform: capitalize;
        margin-bottom: 24px;
        margin-top: -36px;
    }

.textbox.form-control {
    border-radius: 25px;
    padding-left: 40px;
}

.textboxSearch.form-control {
    border-radius: 0 25px 25px 0;
    /*    padding-right: 140px;*/
}

.search-form {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 12px;
}

.past-issue-library-box {
    border-radius: 8px;
    /*    padding: 16px;*/
    margin: 24px 0;
    border-radius: 8px;
    background: #FFFFFF;
}


.issue-box {
    margin-bottom: 24px;
}

.issue-library-box {
    border-radius: 8px;
    padding: 16px;
    margin: 12px 0;
    border-radius: 8px;
    background: #FFFFFF;
}


.issue-box h4 {
    color: #1D6B6D;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
    margin: 0;
    background: #FAFAFA;
    border-radius: 8px;
    padding: 16px;
    border-radius: 8px;
}

.issue-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 24px;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 24px;
}

.issue-library-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.past-issue-library-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.issue-list li {
    display: inline-block;
    margin: 0;
}

.issue-library-list li {
    display: inline-block;
    margin: 0;
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    padding: 16px 32px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.past-issue-library-list li {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e3e3e3;
    padding: 16px 0;
    border-radius: 12px;
}

.issue-library-img {
    background-color: #FFFFFF;
}

.issue-list-title {
    color: #1D6B6D;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%; /* 24px */
    margin-top: 16px;
}

.issue-btn {
    background: #ECECF5;
    border-radius: 100px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 170%;
    color: #291C64;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
}

.space-50 {
    min-height: 44px;
}

.issue-btn:hover, .issue-btn:focus {
    color: #291C64;
    text-decoration: none;
    background: #aaa;
}
/* Reset Select */
select {
    /*  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
*/
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background-image: none;
}
    /* Remove IE arrow */
    select::-ms-expand {
        display: none;
    }
/* Custom Select */
.select {
    position: relative;
    display: flex;
    width: 100%;
    height: 48px !important;
    line-height: 3;
    background: #fff;
    overflow: hidden;
    border-radius: 15px;
}

.selectSearch {
    position: relative;
    display: flex;
    width: 100%;
    height: auto !important;
    line-height: 3;
    background: #fff;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    font-size: 16px !important;
    border: 1px solid #ced4da !important;
    padding: 12px 6px;
}

select {
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
}
/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #34495e;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}
/* Transition */
.select:hover::after {
    color: #f39c12;
}

.issue-label {
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 130%;
    color: #9994B1;
    font-size: 11px;
    position: absolute;
    top: 0px;
    z-index: 9;
    left: 27px;
}

.arrow_up {
    position: absolute;
    right: 26px;
    top: 17px;
}

.more-btn {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
}

.see-more-less {
    cursor: pointer;
    color: #291D64;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

    .see-more-less:hover {
        text-decoration: underline;
    }

.more-btn:hover, .more-btn:focus {
    color: #291C64;
    text-decoration: underline;
}

.new-benefit-h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
    margin-top: 15px;
}

.new-benefit {
    background: #ECECF5;
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

.new-benefit-h3 img {
    background: #fff;
    padding: 10px;
    border-radius: 100%;
}

.new-benefit-h3 span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.new-benefit .close {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 14px;
    height: 14px;
    background: url(../images/close.png) no-repeat left center;
    background-size: cover;
}

.subscription-box {
    border-radius: 8px;
    position: relative;
    background: #FFFFFF;
    padding: 0;
    margin-top: 32px;
}

    .subscription-box h4 {
        color: #100C20;
        font-size: 18px;
        font-weight: 600;
        line-height: 120%; /* 21.6px */
        margin-bottom: 24px;
    }

    .subscription-box table th {
        font-style: normal;
        font-weight: bold;
        font-size: 14px;
        line-height: 170%;
        color: #291C64;
        background: #ECECF5;
        border-top: 0px;
    }

    .subscription-box table td {
        color: #291C64;
    }

.edit-icon {
    width: 16px;
    height: 16px;
    background: url(../images/edit.png) no-repeat left center;
    background-size: cover;
    display: inline-block;
    margin-left: 10px;
}

.del-icon {
    width: 12px;
    height: 16px;
    background: url(../images/delete.png) no-repeat left center;
    background-size: cover;
    display: inline-block;
    margin-left: 10px;
    float: right;
}

.downword-icon {
    width: 24px;
    height: 24px;
    background: url(../images/downward.png) no-repeat left center;
    background-size: cover;
    display: inline-block;
    margin-left: 10px;
    float: right;
}

.user-edit img {
    border-radius: 50%;
}

.btn-cancel {
    background: #ECECF5;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 170%;
    text-align: center;
    color: #291C64;
    padding: 3px 12px;
    float: right;
}

    .btn-cancel:hover, .btn-cancel:focus {
        text-decoration: none;
        color: #291C64;
    }

.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: #FFFFFF;
}

.table-striped tbody tr:nth-of-type(2n+2) {
    background-color: #FFFFFF;
}

.table td, .table th {
    border-top: 0px;
}

.table thead th {
    border-bottom: 0px;
}

.user-edit span {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #BFBDCB;
    margin-left: 5px;
}

.f-normal {
    font-weight: normal;
}

.btn-new-user {
    background: #50CDD0;
    border-radius: 18px;
    padding: 7px 15px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
}

    .btn-new-user:hover, .btn-new-user:focus {
        color: #FFFFFF;
        text-decoration: none;
    }

.user-name img {
    border-radius: 100%;
    max-width: 32px;
    margin-right: 10px;
}

.last-activity {
    margin-right: 15px;
    display: inline-block;
}

.manage-box {
    padding: 0px;
    background: transparent;
}


    .manage-box .table-striped tbody tr:nth-of-type(2n+2) {
        background-color: #F6F7FB;
    }


.btn-help {
    background: #50CDD0;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    padding: 7px 15px;
    display: inline-block;
}

    .btn-help:focus, .btn-help:hover {
        color: #FFFFFF;
    }

.ask-question {
    background: #ECECF5;
    border-radius: 8px;
    padding: 20px;
}

#downword h3, #downword h6 {
    color: #291C64;
    margin-bottom: 0px;
}

.ask-question h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin: 0;
    margin-top: 5px;
}

.text-dark {
    color: #0a0a0b !important;
}

.new-benefit-h3 {
    margin-bottom: 15px;
}

.row.user-box {
    background: #f7f7f7;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
}



/***Advertise CSS start here****/
.advertise-heading {
    padding: 32px 0;
    text-align: center;
    border-bottom: 1px solid #e3e3e3;
}

    .advertise-heading span {
        color: #433E3F;
        text-align: center;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 24px */
    }

    .advertise-heading h3 {
        color: #100C20;
        text-align: center;
        font-family: Geist;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 62.4px */
        margin-top: 10px;
    }

    .advertise-heading h5 {
        color: #433E3F;
        text-align: center;
        font-family: Geist;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 12px;
        margin-bottom: 20px;
    }

.advertise {
    background-color: #f6f7fb;
    /*    background-image: url(../images/add-bg.png);*/
    padding: 50px 0;
    background-size: 643px;
    background-repeat: no-repeat;
    background-position: top right;
}

.advertise-left h1 {
    color: #2B2829;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    margin-bottom: 16px;
}

.advertise-left p {
    color: #2B2829;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.advertise-left a {
    color: #291D64;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
}

    .advertise-left a:hover {
        text-decoration: underline;
    }

.advertise-box {
    background: #ECECF5;
    padding: 20px;
    border-radius: 25px;
    min-height: 240px;
}

.advertise-icon span, .advertise-icon i {
    background: #291C64;
    color: #fff;
    padding: 6px;
    border-radius: 100%;
    font-size: 20px;
    display: inline-block;
}

.advertise-icon {
    margin-bottom: 15px;
}

.advertise-box h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
}

.advertise-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #291C64;
}

.advertise h1 {
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 124%;
    color: #9994B1;
    padding-right: 100px;
}

.advertise h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    color: #291C64;
    padding-right: 100px;
}

.advertise h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 124%;
    color: #39B6B9;
}

.advertise-form h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
    text-transform: inherit;
    margin-bottom: 15px;
}

.advertise-form p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #9994B1;
}
.catagory-sponsor-wrapper{
    display: flex;
    height: 80px;
    padding: 4px 0;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    background: #FAFAFA;
    border: 2px solid #E3E3E3;
    margin-bottom: 16px;
}

.advertise-form {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
}


.advertise-bottom {
    padding: 50px 0;
}

    .advertise-bottom p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
    }

.advertise-logo img {
    margin: 0 5px;
}

.advertise-logo {
    background: #fff;
    padding: 20px;
    border-radius: 25px;
    text-align: center;
}

.advertise-launch-info {
    max-width: 654px;
}

    .advertise-launch-info h4 {
        color: #2B2829;
        font-family: Geist;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 38.4px */
        margin-bottom: 16px;
    }

    .advertise-launch-info p {
        color: #2B2829;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
        margin-bottom: 0;
    }

.advertise-contact-wrapper {
    border: 1px solid #e3e3e3;
    gap: 54px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 72px;
}

.advertise-contact-info {
    width: 528px;
    position: relative;
    background-color: #291D64;
    border-radius: 12px;
    padding: 32px 40px;
}

.advertise-contact-form {
    width: 535px;
}

    .advertise-contact-form h4 {
        color: #100C20;
        font-family: Geist;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 36px */
        text-transform: capitalize;
        padding: 12px 0;
        border-bottom: 1px solid #E3E3E3;
        margin-bottom: 24px;
    }

    .advertise-contact-form h5 {
        color: #100C20;
        font-family: Geist;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        text-transform: capitalize;
        margin-bottom: 8px;
    }

    .advertise-contact-form p {
        color: #433E3F;
        font-family: Geist;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-bottom: 36px;
    }

.advertise-contact-info div {
    max-width: 320px;
}

.advertise-contact-info h5 {
    color: #FFF;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
}

.advertise-contact-form label {
    color: #100C20;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
}

.advertise-contact-form input, .advertise-contact-form textarea {
    border-radius: 4px;
    border: 1px solid #9F9C9C;
}

.advertise-social-links {
    display: flex;
    max-width: 128px !important;
    flex-wrap: wrap;
    gap: 12px;
    position: absolute;
    bottom: 32px;
}

.advertise-footer-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.advertise-contact-info a {
    color: #8ADEE0;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
}

.advertise-contact-info p {
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
}

.advertise-pub-text {
    background: #FCFBFF;
    padding: 56px 0;
}

    .advertise-pub-text p {
        margin: 0 auto;
        max-width: 791px;
        color: #100C20;
        font-family: Geist;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 36px */
        margin-bottom: 24px;
    }

.btn-form-submit {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #FFF;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    border-radius: 4px;
    background: #25888A;
    border: none !important;
}

.app-image {
    padding-top: 14px;
    padding-bottom: 64px;
    max-width: 1200px;
}

    .app-image img {
        width: 100%;
    }

.benifits {
    padding: 64px 0;
}

.benefits-box {
    display: flex;
    height: 326px;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 0px 4px 30px -8px rgba(48, 48, 48, 0.10);
}

.benefits-icon span, .benefits-icon i {
    background: rgba(80, 205, 208, 0.1);
    color: #50CDD0;
    padding: 12px;
    border-radius: 25px;
}

.benefits-icon {
    margin-bottom: 20px;
}

.benefits-box h4 {
    color: #100C20;
    font-family: Geist;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
}

.benefits-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
}

.benifits .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.advertise-rate {
    padding: 50px 0;
    text-align: center;
}

    .advertise-rate h3 {
        color: #100C20;
        font-family: Geist;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 38.4px */
        margin-bottom: 8px;
        text-align: left;
        margin-top: 32px;
    }

    .advertise-rate h4 {
        color: #433E3F;
        font-family: Geist;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 36px */
        text-align: left;
        margin-bottom: 32px;
    }

    .advertise-rate .col-sm-2 {
        padding-right: 8px;
        padding-right: 8px;
    }

.advertise-rate-table {
    background-color: white;
    border-start-end-radius: 12px;
    border-start-start-radius: 12px;
    border: 1px solid #e3e3e3;
    overflow: hidden;
}

.rate-box h5 {
    color: #100C20;
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    margin-bottom: 16px;
    text-align: left;
}

.rate-box-header p {
    color: #1D6B6D;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
}

.rate-box {
    /*    padding: 30px 0 15px;*/
    background: #fff;
    border-radius: 12px;
}

.rate-box-header {
    height: 178px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    border-left: 1px solid #e3e3e3;
}

    .rate-box-header:last-child {
        border-left: none;
    }

.rate-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .rate-box ul li {
        border-top: 1px solid #e3e3e3;
        border-left: 1px solid #e3e3e3;
        padding: 7px 15px;
        color: #2B2829;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
    }

        .rate-box ul li b {
            font-style: normal;
            font-weight: bold;
            font-size: 16px;
            line-height: 150%;
            color: #291C64;
        }

.bg-transparent {
    background: transparent;
}

    .bg-transparent ul li {
        text-align: left;
        color: #291C64;
    }

/*.rate-box h5:before {
    position: absolute;
    width: 48px;
    height: 4px;
    left: 34%;
    top: -15px;
    background: #50CDD0;
    border-radius: 100px;
    content: "";
}*/

.rate-box.bg-transparent h5:before {
    display: none;
}

.mail-ins {
    /*    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    text-align: left;
    padding-left: 15px;*/
    border-bottom: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    padding: 7px 16px;
    color: #2B2829;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    border-end-start-radius: 12px;
}

.call-4 {
    border-right: 1px solid #e3e3e3;
    border-left: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    border-end-end-radius: 12px;
    color: #2B2829;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 7px 16px;
}

.camera-ready-wrapper {
    max-width: 791px;
    margin: 0 auto;
    padding: 56px 0;
}

    .camera-ready-wrapper ul {
        padding-left: 0;
        margin: 0px;
    }

        .camera-ready-wrapper ul li {
            color: #100C20;
            font-family: Geist;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%; /* 36px */
            padding-bottom: 36px;
        }

            .camera-ready-wrapper ul li a {
                color: #2DA5A8;
                font-family: Geist;
                font-size: 24px;
                font-style: normal;
                font-weight: 600;
                line-height: 150%;
                text-decoration-line: underline;
                text-transform: capitalize;
            }

.email-ad h4 {
    color: #100C20;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    padding: 32px 0;
}

.email-blast {
    text-align: left;
    background: #fff;
    border-radius: 25px;
}

.email-blust-one {
    display: flex;
    padding: 16px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px 0px 0px 12px;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    border-left: 1px solid #E3E3E3;
    background: #FBFAFF;
}

    .email-blust-one p b {
        color: #100C20;
        font-family: Geist;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 27px */
    }

    .email-blust-one p span {
        color: #1D6B6D;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }

.email-blust-two {
    display: flex;
    padding: 16px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 0px 12px 12px 0px;
    border: 1px solid #E3E3E3;
    background: #FFF;
}

    .email-blust-two p b {
        color: #100C20;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 24px */
    }

.email-blast h5 {
    color: #100C20;
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
}

.email-blast p {
    color: #2B2829;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

/******TEAM CSS STARTED********/

.team {
    /*    background-color: #f6f7fb;*/
    /*    background-image: url(../images/team-right.png);*/
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: top right;
}

.team-heading h1 {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

.h-line {
    border: 2px solid #ECECF5;
    margin: 30px 0;
}

.price-production {
}

    .price-production h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
    }

    .price-production p {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #9994B1;
    }
.breadcrumbs-link {
    color: #1D6B6D;
    font-size: 13px;
    font-weight: 500;
    line-height: 150%;
}
.breadcrumbs-divider {
    color: #1D6B6D;
    font-size: 13px;
    font-weight: 500;
    line-height: 150%;
}
.price-para {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: #291C64;
    margin-top: 20px
}

.team-box {
    padding: 24px;
    /*    background: ;*/
    border-radius: 12px;
    border: 1px solid #e3e3e3;
}

    .team-box h4 {
        color: #100C20;
        font-family: Geist;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 28.8px */
    }

    .team-box h5 {
        color: #5A5555;
        font-family: Geist;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 27px */
    }

    .team-box p:not(:empty) {
        color: #100C20;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
    }

    .team-box a {
        color: #1D6B6D;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
        text-decoration-line: underline;
    }

.team-social span, .team-social a {
    margin: 0 7px;
}

.team-details p:empty {
    margin-bottom: 0;
}

/****About Us CSS start****/
.about-us-bg-image {
    min-height: 853px;
    padding: 16px 0;
}

    .about-us-bg-image .image-container {
        position: absolute;
        z-index: 1;
        border-radius: 6px;
        background: #F5F5F5;
        padding: 8px;
    }

        .about-us-bg-image .image-container img {
            height: 248px;
        }

    .about-us-bg-image .one {
        top: 63px;
        left: 0;
    }

    .about-us-bg-image .two {
        top: 16px;
        left: 50%;
        transform: translate(-50%);
    }

    .about-us-bg-image .three {
        top: 38px;
        right: 0;
    }

    .about-us-bg-image .four {
        bottom: 40px;
        left: 0;
    }

    .about-us-bg-image .five {
        bottom: 16px;
        left: 50%;
        transform: translate(-50%);
    }

    .about-us-bg-image .six {
        bottom: 138px;
        right: 0;
    }

.about-us-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

    .about-us-info span {
        color: #433E3F;
        text-align: center;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 24px */
        margin-bottom: 10px;
    }
.header-worth-title {
    color: #100C20;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}
.about-us-info h3 {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 62.4px */
    white-space: nowrap;
}


.about {
    background-color: #f6f7fb;
    background-image: url(../images/add-bg.png);
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: top right;
}

.timeline-section {
    border-top: 1px solid #e3e3e3;
    padding: 64px 0;
}

.about-us-info h1 {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 62.4px */
    white-space: nowrap;
}
.about h1 {
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 124%;
    color: #9994B1;
    padding-right: 100px;
}

.about h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    color: #291C64;
    padding-right: 100px;
}

.timeline {
    background: #fff;
}

    .timeline h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
        padding-right: 100px;
    }

.left-box {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291D64;
    display: inline-block;
    margin-top: 15px
}

.right-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 132%;
    color: #291C64;
    display: inline-block;
    padding: 44px 32px;
    margin-bottom: 48px;
}

.img-logo {
    max-width: 150px;
}

.right-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #756D98;
    margin-bottom: 0px;
}

.right-box h4 {
    color: #100C20;
    font-family: Geist;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    margin-bottom: 24px;
}

.right-box p {
    color: #2B2829;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin-bottom: 32px;
}

.video-box {
    margin-bottom: 15px;
}

.img-box {
    background: #fff;
    display: inline-block;
    border-radius: 25px;
}

.t-line {
    position: relative;
}

    .t-line::after {
        content: "";
        position: absolute;
        right: 50px;
        width: 3px;
        height: 100%;
        background: #E3E3E3;
        top: 30px;
    }

    .t-line::before {
        content: "";
        position: absolute;
        right: 45px;
        width: 14px;
        height: 14px;
        border-radius: 100%;
        background: #50CDD0;
        z-index: 9;
        top: 30px;
    }

    .t-line.t-last:after {
        display: none;
    }

.img-cvg {
    max-width: 190px;
}

.about.cpg {
    background-color: #f6f7fb;
    background-image: url(../images/cpg-bg-new.png);
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50%;
}

.cpg-box {
    max-width: 588px;
}

    .cpg-box h3 {
        color: #100C20;
        font-family: Geist;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }

    .cpg-box p {
        color: #2B2829;
        font-family: Geist;
        /*        font-size: 16px;*/
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }
.header1-text{
    font-family: Geist;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}
.cpg-subscribe-wrapper {
    border-radius: 12px;
    padding: 75px 64px 75px 64px;
    background: #DFE1FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.cpg-subscribe-info {
    max-width: 50%;
}

@media (max-width: 1023px) {
    .cpg-subscribe-info {
        max-width: 75%;
        margin: 32px 0;
    }
}

.cpg-subscribe-img {
    width: 350px;
}

    .cpg-subscribe-img img {
        width: 100%;
    }

.cpg-subscribe-info h3 {
    color: #100C20;
    font-family: Geist;
    /*    font-size: 32px;*/
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.cpg-subscribe-info h4 {
    color: #100C20;
    font-family: Geist;
    /*    font-size: 18px;*/
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.cpg-subscribe-info p {
    color: #433E3F;
    font-family: Geist;
    /*    font-size: 14px;*/
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.cpg-video-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.cpg-video-item {
    border-radius: 12px;
    padding: 12px 12px 4px 12px;
    background-color: #E3E3E3;
}

    .cpg-video-item iframe {
        width: 336px;
        height: 212px;
        border-radius: 12px;
    }

.cpg-slider .owl-carousel .owl-nav button.owl-prev::before {
    font-family: fontawesome;
    font-weight: 900;
    font-size: 14px;
    content: "\f060";
    position: relative;
    left: -58px;
    top: -1px;
    background: #ddd;
    padding: 15px;
    border-radius: 50%;
}

.cpg-slider .owl-carousel .owl-nav button.owl-next::before {
    font-family: fontawesome;
    font-weight: 900;
    font-size: 14px;
    content: "\f061";
    position: relative;
    right: -48px;
    top: -1px;
    left: auto;
    background: #ddd;
    padding: 15px;
    border-radius: 50%;
}

.owl-nav span {
    font-size: 0px;
}

.cpg-box-bg {
    background-color: #ececf5;
    background-image: url(../images/cpg-box-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 55%;
}

    .cpg-box-bg h4 {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #756D98;
        margin-bottom: 30px;
    }

.faq-info h4 {
    color: #2B2829;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    margin-bottom: 16px;
}

.faq-info p {
    color: #2B2829;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.faq-wrapper {
    background-color: #E1E2F5;
    border-radius: 12px;
    width: 992px;
    margin: 0 auto;
}

.faq {
    background-color: #f6f7fb;
    background-image: url(../images/left-bg1.png);
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: bottom left;
}


    .faq h3 {
        font-style: normal;
        font-weight: normal;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
        margin-bottom: 40px;
    }

#accordion {
}

.panel-title a {
    color: #1d2243;
    letter-spacing: 1px;
}

    .panel-title a .fa {
        margin-right: 20px;
        color: #df518e;
    }

.panel-group {
    margin-bottom: 0;
}

    .panel-group .panel {
        box-shadow: none;
        padding: 32px;
        border-radius: 12px;
        background: #fff;
        border: 2px solid transparent;
        margin: 32px 0;
    }

        .panel-group .panel .panel-heading {
            padding: 0;
        }

            .panel-group .panel .panel-heading h4 a {
                display: block;
                /*                padding: 15px;*/
                text-decoration: none;
                transition: 0.15s all ease-in-out;
                font-style: normal;
                font-weight: bold;
                font-size: 24px;
                line-height: 132%;
                color: #291C64;
            }

            .panel-group .panel .panel-heading h4 a {
                color: #100C20;
                font-family: Geist;
                font-size: 24px;
                font-style: normal;
                font-weight: 600;
                line-height: 150%; /* 36px */
                text-transform: capitalize;
                margin-bottom: 10px;
            }

                .panel-group .panel .panel-heading h4 a.first {
                    border-top: none;
                }

                .panel-group .panel .panel-heading h4 a:not(.collapsed) i:before {
                    content: "\f107";
                }

                .panel-group .panel .panel-heading h4 a:not(.collapsed) i {
                    color: #ffffff;
                    background: #291D64;
                }

                .panel-group .panel .panel-heading h4 a i {
                    color: #291D64;
                    float: right;
                    font-size: 20px;
                    margin: 0px;
                    box-shadow: 0px 4px 30px -8px rgba(48, 48, 48, 0.10);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 10px;
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                }

        .panel-group .panel .panel-body {
            padding-top: 0;
            font-size: 14px;
        }

            .panel-group .panel .panel-body a {
                text-decoration: underline;
                color: #1d2243;
            }

        .panel-group .panel .panel-heading + .panel-collapse > .list-group,
        .panel-group .panel .panel-heading + .panel-collapse > .panel-body {
            border-top: none;
        }

        .panel-group .panel + .panel {
            border-top: none;
            margin-top: 0;
        }

#accordion .panel-body p {
    color: #433E3F;
    font-family: Geist;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin-bottom: 0;
    width: 710px;
}

#accordion h4 {
    margin-bottom: 0;
}


.contact-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .contact-list li {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #4F447E;
        margin-bottom: 15px;
        position: relative;
        padding-left: 35px;
    }

        .contact-list li span, .contact-list li i {
            position: absolute;
            left: 0px;
            top: 0;
            font-size: 20px;
        }

.subscribe-page {
    background-size: 43%;
}

.subscribe-mid {
    background-color: #f6f7fb;
    padding: 25px 0;
}

.subscribe-box {
    background: #ECECF5;
    padding: 30px 33px;
    border-radius: 25px;
    margin-bottom: 30px;
}

    .subscribe-box h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
        margin: 15px 0;
        min-height: 38px;
    }

    .subscribe-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #9994B1;
    }

.reasons h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    color: #291C64;
    margin-bottom: 40px;
}

.reasons-box {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 30px;
    min-height: 200px;
}

.h-250 {
    min-height: 247px;
}

.reasons-icon span, .reasons-icon i {
    background: #50CDD0;
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    font-size: 18px;
}

.reasons-icon {
    margin-bottom: 10px;
}

.reasons-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-bottom: 0px;
}

.reasons .col-sm-3 {
    padding-left: 8px;
    padding-right: 8px;
}

.award-box {
    background: #ECECF5;
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 30px;
}

    .award-box h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
        margin: 25px 0;
    }

    .award-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
        margin-bottom: 30px;
    }


.tool-box {
    background: #291D64;
    padding: 64px;
    border-radius: 12px;
    margin-bottom: 80px;
}

.free-d {
    color: #8ADEE0;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 4px;
}

.tool-right {
    padding-left: 40px;
}

.tool-box h4 {
    color: #FFF;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    margin-bottom: 16px;
}

.tool-box p {
    color: #F1F1F1;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.tool-box a {
    color: #8ADEE0;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
    cursor: pointer;
}

.note-bottom {
    color: #B5B3B3;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    margin-top: 34px;
}

/*.tool-video, .tool-video img {
    border-radius: 25px;
}*/

.m-app img {
    border-radius: 16px;
}

.advertise.m-app {
    background-image: url(../images/m-app.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 50%;
    min-height: 450px;
    padding-top: 70px;
}

.pricing-box {
    padding: 30px;
    background: #fff;
    border-radius: 25px;
    margin-bottom: 30px;
}

    .pricing-box h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
    }

.value {
    /*    max-width: 1056px;*/
    margin: 0 auto;
}

.value-content {
    max-width: 654px;
    margin-right: 56px;
}

    .value-content h4 {
        color: #2B2829;
        font-family: Geist;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 38.4px */
        margin-bottom: 16px;
    }

    .value-content p {
        color: #2B2829;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
        margin-bottom: 16px;
    }

    .value-content h6 {
        color: #1D6B6D;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 24px */
        text-decoration-line: underline;
        margin-top: 12px;
    }

.value-img {
    position: relative;
}

    .value-img span {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
        display: inline-block;
        padding: 20px;
        border-radius: 20px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        background: #fff;
        max-width: 250px;
    }

.value-box {
    border: 1px solid #e3e3e3;
    box-shadow: 0px 4px 30px -8px rgba(50, 50, 50, 0.10);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 12px;
    margin-right: 12px;
    max-width: 336px;
}

    .value-box h4 {
        color: #100C20;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%; /* 24px */
        padding: 24px;
    }

.value-box-img {
    background: #fff;
    border-radius: 12px;
    margin: 12px auto;
}

.dealer-list {
    background: #ECECF5;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.deal-box {
    /* Background */
    background: #F6F7FB;
    border-radius: 8px;
    padding: 10px 15px;
    display: inline-block;
    margin: 0 5px;
}

    .deal-box .material-icons-outlined {
        font-size: 16px;
        vertical-align: sub;
    }

.spotPrice-list {
    background: #ECECF5;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.spotPrice-box {
    /* Background */
    background: #F6F7FB;
    border-radius: 8px;
    padding: 10px 15px;
    display: inline-block;
    margin: 0 5px;
}

.color-green {
    color: #7ED321;
}

.color-red {
    color: #E42526;
}

/* .directory {
    padding: 64px 0;
    background-color: #f6f7fb;
} */

.directory h3 {
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    display: inline-block;
    margin-bottom: 15px;
}

/*.directory h2 {
    margin-bottom: 15px;
}*/

.card.tab-box {
    background: transparent;
    border: 0px;
}

    .card.tab-box .card-header {
        padding: 0;
        margin-bottom: 0;
        background-color: transparent;
        border-bottom: 0px;
    }

.nav-link-list {
    font-size: 16px;
}

.nav-item-list {
    color: #100C20;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 16px;
}

.nav-link-list:hover {
    color: #1D6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    text-decoration: underline;
}

.nav-link-list.active {
    color: #1D6B6D;
    font-family: Geist;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    padding: 16px;
    margin-left: -16px;
    border-left: 2px solid #1D6B6D;
}

.nav-tabs .nav-link {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64 !important;
    padding: 10px 15px;
    border: 1px solid #C6B3FF !important;
    /*    border-radius: 8px !important;*/
    box-shadow: none !important;
    /*    margin: 0 5px !important;*/
}

.nav-tabs {
    border-bottom: 0px;
}

.card.tab-box .nav-tabs .nav-item {
    margin-bottom: -1px;
    text-align: center;
    display: inline-block;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #ECECF5;
    border-color: #ECECF5 #ECECF5 #ECECF5;
    font-weight: bold;
}

.subscription-plan-tabs {
    display: flex;
    justify-content: center;
    /*    margin-bottom: 1px;*/
}

    .subscription-plan-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        border-top: 2px solid #9E90E7 !important;
        background: #291D64;
        color: #fff !important;
        -webkit-transition: background-color 2s ease-out;
        -moz-transition: background-color 2s ease-out;
        -o-transition: background-color 2s ease-out;
        transition: background-color 2s ease-out;
    }

    .subscription-plan-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px 5px 0px 0px;
        border-top: 1px solid #C6B3FF;
        border-right: 1px solid #C6B3FF;
        color: #100C20;
        font-family: Geist;
        font-size: 18px !important;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        padding: 12px 49px 12px 48px;
        cursor: pointer;
    }

    .subscription-plan-tabs .nav-tabs li .nav-link, .nav-tabs li .nav-link:hover {
        border-radius: 5px 5px 0px 0px;
        background: #291D64;
        color: #fff !important;
        -webkit-transition: background-color .2s ease-out;
        -moz-transition: background-color .2s ease-out;
        -o-transition: background-color .2s ease-out;
        transition: background-color .2s ease-out;
        cursor: pointer;
    }

.subscription-tab-content {
    padding: 88px 47px;
    border: 1px solid #C6B3FF !important;
    background: #FCFBFF;
    border-radius: 12px;
    margin-bottom: 56px;
}
/*-------------------- mobile App page -------------------------*/
.review-card-of-ios-header {
    display: flex;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 12px;
    background: #FCFBFF;
}
/*.star-of-review {
    width: 16px;
    height: 16px;
}*/
.star-of-review img {
    width: 16px;
    height: 16px;
}

.review-card-of-ios-header small {
    color: #433E3F;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.review-card-of-ios-header h5 {
    color: #100C20;
    font-family: Geist;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.review-header-app-logo {
    width: 58px;
    height: 58px;
    margin-right: 8px;
}

.review-card-of-ios {
    display: flex;
    width: 282px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    box-shadow: 0px 4px 30px -8px rgba(50, 50, 50, 0.25);
}

    .review-card-of-ios p h3 h5 h6 {
        line-height: 150%;
    }

    .review-card-of-ios a {
        color: #25888A;
        font-family: Geist;
        font-style: normal;
        font-weight: 600;
    }

    .review-card-of-ios small {
        color: #433E3F;
        font-family: Geist;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

.card-of-ios-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.review-card-of-ios span {
    color: #211750;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
/*------------------subscribe--------------------------*/
.btn-compare-price {
    display: flex;
    height: 48px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #25888A;
    color: #FFF;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 16.8px */
    border: none;
    outline: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 100ms;
    margin-top: 56px;
    cursor: pointer;
}

    .btn-compare-price:hover {
        background-color: #1d6b6d;
    }

.collector-package-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.collector-package-item {
    max-width: 352px;
    min-width: 352px;
    display: flex;
    padding: 58px 12px 32px 12px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

    .collector-package-item h3 {
        color: #1E1919;
        font-family: Geist;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 28.8px; /* 102.857% */
    }

    .collector-package-item span {
        color: #1E1919;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 120% */
    }

    .collector-package-item .discount-text {
        color: #179295;
        font-family: Geist;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 6px;
        margin-left: 4px;
    }

.pricing-card-list {
    margin-bottom: 12px;
}

    .pricing-card-list p {
        color: #1E1919;
        font-family: Geist;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16.8px;
    }

.collector-package-item p {
    color: #494656;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.choose-plan-btn {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    align-self: stretch;
    border-radius: 12px;
    background: #291D64;
}

    .choose-plan-btn span {
        color: #F7F5F2;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 19.2px; /* 120% */
    }

.all-feature-btn {
    color: #25888A;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    text-decoration-line: underline;
    margin-top: 16px;
}

.best-value {
    display: flex;
    padding: 1px 0px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    background: #25888A;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    border: 1px solid #25888A;
}

    .best-value p {
        color: #F7F5F2;
        font-family: Geist;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px; /* 128.571% */
    }

.price-compare-table td, .price-compare-table th {
    border: 1px solid #e3e3e3;
    padding: 8px;
}

.tab-box .tab-content {
    border-radius: 0px;
    box-shadow: none;
    background-color: transparent;
    border: 1px solid transparent;
}

.dealerWrap {
    display: block;
    height: 100%;
    /*    padding: 0 0 30px 0;*/
}

    .dealerWrap .ribbon-top-right {
        top: 0px;
        right: 15px;
    }

        .dealerWrap .ribbon-top-right span {
            left: -15px;
            top: 16px;
            transform: rotate(45deg);
        }

.eventWrap {
    display: block;
    padding: 15px 10px;
}

.d-box {
    background: #fff;
    border-radius: 25px;
    /*    margin-bottom: 30px;*/
    height: 100%;
}

.d-icon {
    /*    background: #ECECF5;*/
    padding: 20px;
    border-radius: 10px 10px 0px 0px;
    /*    margin-bottom: 24px;*/
}

.d-content {
    /*    padding: 0 20px 20px 20px;*/
}

.d-social {
    text-align: right;
    margin-bottom: 15px;
}

    .d-social span {
        background: #291C64;
        color: #fff;
        padding: 5px;
        border-radius: 50%;
        font-size: 18px;
        margin-left: 7px;
        display: inline-block;
    }

.d-box h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
}

.d-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .d-ul li {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 150%;
        color: #9994B1;
        margin-bottom: 10px;
    }

        .d-ul li span {
            background: rgba(80, 205, 208, 0.1);
            color: #50CDD0;
            padding: 7px;
            font-size: 16px;
            border-radius: 50%;
            margin-right: 10px;
        }

.no-serach {
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 124%;
    text-align: center;
    color: #291C64;
    margin-bottom: 30px;
}

.no-serach-p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
}

.single-image h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    color: #291C64;
}

.tags {
    list-style: none;
    padding: 0px;
}

    .tags li {
        display: inline-block;
    }

        .tags li a {
            font-weight: 400;
            font-size: 13px;
            line-height: 19.5px;
            text-align: center;
            color: #5A5555;
            padding: 4px 12px;
            background: #FAFAFA;
            border-radius: 48px;
            display: inline-block;
            margin-right: 16px;
        }

.single {
    padding: 50px 0;
    background-color: #f6f7fb;
}

.back-link {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #291C64;
    text-decoration: none;
}

    .back-link span {
        display: inline-block;
        vertical-align: middle;
    }

.single-box {
    padding: 50px;
    background: #fff;
    border-radius: 25px;
}

    .single-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
    }

.contact-box {
    /*background: #fff;
    padding: 30px;
    border-radius: 25px;
    min-height: 230px;*/
}

    .contact-box h4 {
        font-weight: 600;
        font-size: 28px;
        line-height: 33.8px;
        color: #2B2829;
    }

    .contact-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 30px;
        color: #291C64;
    }

    .contact-box h4 span {
        background: rgba(80, 205, 208, 0.1);
        color: #50CDD0;
        padding: 7px;
        font-size: 16px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .contact-box p span {
        margin-right: 10px;
        background-color: #291C64;
        padding: 7px;
        color: #fff;
        width: 30px;
        text-align: center;
        border-radius: 50%;
    }

.header-text-image-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
}

.subscribe-single {
    padding: 0 0 50px 0;
    background-color: #FFFFFF;
    /*    background-image: url(../images/rectangle134.png);*/
    background-position: top 150px right;
}

.subscribe-ul {
    list-style: none;
    padding: 0px;
    margin-bottom: 30px;
}

    .subscribe-ul li a {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: #291C64;
        padding: 7px 15px;
        border: 1px solid #ECECF5;
        display: inline-block;
        border-radius: 10px;
        margin: 0 5px;
    }

    .subscribe-ul li {
        display: inline-block;
    }

        .subscribe-ul li a.active {
            background: #ECECF5;
            font-weight: bold;
        }

.subscribe-prodDiv {
    padding: 0px;
    margin-bottom: 0px;
    width: 100%;
}

    .subscribe-prodDiv a {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: #291C64;
        padding: 7px 15px;
        border: 1px solid #ECECF5;
        display: inline-block;
        border-radius: 10px;
        margin: 0 5px;
        width: 100%;
    }

        /*.subscribe-prodDiv div {
	display: inline-block;
}
*/
        .subscribe-prodDiv a.active {
            background: #ECECF5;
            font-weight: bold;
        }

.new-benefit2-logo img {
    background: #fff;
    padding: 12px;
    border-radius: 50%;
    max-width: fit-content;
}

.new-benefit2 h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
    margin-bottom: 0px;
}

.new-benefit2 p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-bottom: 5px;
}

.new-benefit2 {
    background: #ECECF5;
    border-radius: 8px;
    padding: 20px;
}

.new-benefit2-logo {
    vertical-align: sub;
    display: inline-block;
}

.industry {
    padding: 30px 0 40px;
    background-color: #FFFFFF;
}

    .industry h3 {
        color: #100C20;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;
        margin-bottom: 16px;
    }

    .industry h4 {
        color: #100C20;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        margin-bottom: 37px;
    }

    .industry h5 {
        color: #100C20;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;
        margin-bottom: 16px;
    }

    .industry p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: #100C20;
    }

.order-now {
    padding: 0 0 50px;
    background-color: #FFFFFF;
}

    .order-now h3 {
        color: #100C20;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%; /* 48px */
    }

.purple-box {
    border-radius: 16px;
    border: 2px solid #291C64;
    padding: 15px !important;
}

.morganSubHead {
    font-size: 16px;
}

.prodTileImage {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 73px 32px;
    margin-bottom: 16px;
}


.order-box h4 {
    color: #100C20;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%; /* 36px */
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hr-1 {
    background: #F6F7FB;
    border-radius: 100px;
    height: 8px;
    margin: 30px auto;
    max-width: 70%;
}

.year {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    background: #F6F7FB;
    border-radius: 100px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.old-price {
    color: #bcbcbc;
    /* Greysheet1 - 1/Desktop/Body/Highlight Bold */
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    text-decoration-line: line-through;
}

.old-priceTable {
    text-decoration-line: line-through;
}

.old-priceH {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    text-decoration-line: line-through;
    color: #FFF;
    margin-bottom: 10px;
}

.new-price {
    color: #1D6B6D;
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    margin-top: 8px;
}

.online-note {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #9994B1;
    margin: 50px 0;
}

.white-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

    .white-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 30px;
        color: #291C64;
        margin-bottom: 0px;
    }

.grey-box {
    border-radius: 12px;
    border: 1px solid #1D6B6D;
    background: #E2F7F7;
    padding: 24px;
}

.grey-box-span {
    color: #100C20;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 16px;
}

.grey-box-description {
    color: #3E465B;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.grey-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    color: #291C64;
    margin-bottom: 0px;
}

.white-box h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #291C64;
    margin-bottom: 30px;
}

.white-box h6 {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 132%;
    color: #756D98;
    margin-bottom: 30px;
}

.pd-30 {
    padding: 60px 30px;
    border-radius: 15px;
}

.h4-heading {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
}

.benifits h3 {
    color: #100C20;
    text-align: center;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    margin-bottom: 40px;
}

.tag-box .tag1 {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    color: #291C64;
    padding: 5px 10px;
    background: #ECECF5;
    border-radius: 100px;
    display: inline-block;
    margin: 5px 3px;
}

.tag-box .tag2 {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 170%;
    text-align: center;
    color: #291C64;
}

.tag-box {
    margin: 0;
}

.event-tab .d-box {
    padding: 15px;
}

.event-tab h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #9994B1;
}

.event-header-name {
    color: #100C20;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
}

.eventDtDisp {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 124%;
    color: #9994B1;
    display: flex;
    flex-direction: column;
    /*    border: 2px solid #2DA5A8;*/
    border-radius: 8px;
    margin-right: 16px;
    width: 100px;
}

.event-month {
    display: flex;
    padding: 2.553px 7.66px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 3.83px 3.83px 0px 0px;
    border: 0.638px solid var(--Secondary-Secondary700, #2DA5A8);
    background: var(--Secondary-Secondary700, #2DA5A8);
    color: var(--Theme-Color-White, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 15.319px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.event-date-range {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 4px 4px;
    border: 1.277px solid #2DA5A8;
    border-top: none;
    background: #FFFFFF;
    color: #154E4F;
    text-align: center;
    font-family: Poppins;
    font-size: 22.979px;
    font-style: normal;
    font-weight: 700;
    line-height: 17.872px;
    height: 40px;
    padding: 4px;
}

.eventSubHead {
    color: #726C6C;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}

.event-organizer-name {
    color: #25888A;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
}

.discription-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 24px;
}

.event-details-description {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin: 24px 0;
}

.discription-box p b {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #291C64;
}

.discription {
    background-color: #f6f7fb;
    padding: 50px 0;
}

    .discription h5 {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
    }

    .discription h6 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
    }

    .discription p b {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
    }

    .discription .d-social span {
        width: 28px;
        height: 28px;
        text-align: center;
    }

    .discription .d-social {
        float: right;
    }

.description {
    background-color: #f6f7fb;
    padding: 0;
}

    .description h5 {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
    }

    .description h6 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
    }

    .description p b {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 24px;
        color: #291C64;
    }

    .description .d-social span {
        width: 28px;
        height: 28px;
        text-align: center;
    }

    .description .d-social {
        float: right;
    }

.coming-event {
    background-color: #FFFFFF;
    margin-bottom: 60px;
}

    .coming-event h3 {
        color: #100C20;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }

.btn-view {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #50CDD0;
}

.i-box {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.i-date {
    display: flex;
    padding: 24px 16px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}


.i-box h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
}


.i-icon span {
    background: rgba(246, 246, 246, 0.7);
    color: rgb(80, 205, 208);
    padding: 20px;
    font-size: 50px;
    border-radius: 100%;
}

.i-box.i-grey {
    background: #ECECF5;
}

    .i-box.i-grey .i-icon {
        background: #ECECF5;
        padding: 20px 0px;
    }

.newsLink {
    color: #291C64 !important;
    text-decoration: none !important;
}

    .newsLink:hover {
        color: #39B6B9 !important;
        text-decoration: none !important;
    }

.tag-box {
    display: flex;
    gap: 16px;
}

a.catTags {
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 48px;
    background: #FAFAFA;
    color: #5A5555;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    border: 1px solid transparent;
}

    a.catTags:hover {
        border: 1px solid #291C64;
        text-decoration: none;
        color: inherit !important;
    }

.pagination li a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ECECF5;
    min-width: 40px;
    display: inline-block;
    min-height: 40px;
    line-height: 1.2;
    margin: 0 3px;
}

    .pagination li a.active {
        background: #ECECF5;
    }

.show-article a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    border-radius: 12px;
    border: 1px solid #ECECF5;
    min-width: 40px;
    display: inline-block;
    min-height: 40px;
    padding: 10px;
}

.industry-leader h4 {
    color: #100C20;
    font-family: Geist;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 36px */
    text-transform: capitalize;
    margin-bottom: 12px;
}

.industry-leader p {
    color: #100C20;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.subscribe-now {
    /*    background: #ECECF5;
    border-radius: 16px;*/
    border-radius: 12px;
    background: #FCFBFF;
    padding: 20px;
}

    .subscribe-now h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 132%;
        color: #25888A;
    }

    .subscribe-now p {
        /*        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;*/
        color: #000;
        font-family: Geist;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 27px */
        margin-bottom: 0;
    }

.sponsors {
    background: #fff;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
}

    .sponsors h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 18px;
        line-height: 124%;
        text-align: center;
        color: #291C64;
        margin-bottom: 5px;
    }

    .sponsors .webAdHoriz {
        max-height: 50px;
        max-width: 150px;
    }

    .sponsors .owl-slider {
        max-width: 95%;
        margin: 0 auto;
    }

    .sponsors .owl-carousel {
        margin-bottom: 5px;
    }

        .sponsors .owl-carousel .owl-nav button.owl-prev::before {
            font-family: fontawesome;
            left: -64px;
            top: -1px;
            background: #e5e5e5;
            width: 30px;
            height: 30px;
            display: inline-block;
            line-height: 30px;
            font-size: 10px;
            border-radius: 25px;
        }

        .sponsors .owl-carousel .owl-nav button.owl-next::before {
            font-family: fontawesome;
            left: 64px;
            top: -1px;
            background: #e5e5e5;
            width: 30px;
            height: 30px;
            display: inline-block;
            line-height: 30px;
            font-size: 10px;
            border-radius: 25px;
        }

.source-box {
    background: #ECECF5;
    padding: 30px;
    border-radius: 25px;
}

    .source-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
    }

.stacks-bowers span {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
    margin-left: 20px;
}

.stacks-bowers img {
    border-radius: 10px;
    float: left;
    margin-right: 15px;
}

.tag1.w-color {
    background: #f7f7f7;
}

.user-pic {
    padding: 5px;
    background: #e5e5e5;
    display: inline-block;
    border-radius: 100%;
}

.user-name {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    margin-left: 15px;
    display: inline-block;
}

.post-date {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: #9994B1;
}

.advertise-form p.message-para {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #291C64;
    margin-top: 20px;
}

.comment-box form {
    width: 50%;
}

.us-coin-box h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    margin-top: 15px;
    margin-bottom: 0px;
}

.us-coin-box {
    background: #ececf5;
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
}

    .us-coin-box img {
        /*    max-width: 100px;*/
    }

.us-coin-main {
    padding: 30px 0;
}

.us-coin-box:hover {
    background-color: #c4c4ce;
}

.us-coin-boxv2 h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    margin-top: 15px;
    margin-bottom: 0px;
}

.us-coin-boxv2 {
    background: #ececf5;
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
}

    .us-coin-boxv2 img {
        /*    max-width: 100px;*/
    }

.us-coin-mainv2 {
    padding: 30px 0;
}

.us-coin-boxv2:hover {
    background-color: #c4c4ce;
    text-decoration: none;
}

.pricingTileImg {
    display: inline-block;
    width: 100%;
    height: auto;
    max-height: 125px;
    max-width: 125px;
}

.pricingTileOverlay {
    position: relative;
    bottom: 75px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0);
    color: #FF0000;
    width: 100%;
    font-size: 20px;
    text-align: center;
    text-shadow: 2px 2px #FFFFFF;
    z-index: 1000;
}

.pricingTileOverlayBtn {
    position: absolute;
    top: 71px;
    left: 57px;
    background: rgba(255, 0, 0, 0.7);
    /*	background: #FF0000;*/
    border-radius: 9px;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 150%;
    display: inline-block;
    text-align: center;
    color: #FFF;
    padding: 5px 10px;
    border: none;
    box-shadow: none;
}

    .pricingTileOverlayBtn:hover, .us-coin-boxv2:hover .pricingTileOverlayBtn {
        background: rgba(255, 255, 255, 0.7);
        /*		background: #FFF;*/
        color: #FF0000;
    }

.pricingTileOverlayBtnBlank {
    background: rgba(0, 0, 0, 0);
}

.pricingTileOverlayBtn:hover, .us-coin-boxv2:hover .pricingTileOverlayBtnBlank {
    background: rgba(0, 0, 0, 0);
}

.comment-wrapper {
    border-radius: 9.409px;
    border: 0.941px solid #E3E3E3;
    padding: 28.226px 18.817px;
}

.comment-input-wrapper {
    border-radius: 12px;
    border: 0.941px solid #E3E3E3;
    background: #FAFAFA;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
}

    .comment-input-wrapper input {
        border: none !important;
        background: transparent !important;
        outline: none !important;
        width: 85% !important;
        height: 41px !important;
        color: #433E3F !important;
        font-family: Geist !important;
        font-size: 16px !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 150% !important;
    }

    .comment-input-wrapper button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translate(0%, -50%);
        max-width: 95px;
    }
/*cms start */
.cms-i-date {
    display: flex;
    padding: 24px 16px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    background: #FAFAFA;
    color: #5A5555;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}

.cms-author {
    color: #291D64 !important;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

    .cms-author a {
        color: #291D64 !important;
        font-family: Geist;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
    }

        .cms-author a:hover {
            color: #291D64 !important;
        }

.cms-story-summary {
    color: #433E3F;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
/*cms end*/
.coin-worth {
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    padding: 24px;
}

    .coin-worth iframe {
        border-radius: 12px;
    }

    /*    .coin-worth h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
        text-align: left;
        margin-bottom: 16px;
    }*/

    /*    .coin-worth h6 {
        color: #100C20;
        font-family: Geist;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
    }*/

    /*    .coin-worth h4 {
        font-style: normal;
        font-weight: normal;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
    }*/

    .coin-worth .bg-white h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
        margin-top: 20px;
    }

/*    .coin-worth p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 124%;
        color: #291C64;
    }*/

.values-box {
    background: #FFFFFF;
    border-radius: 16px 16px 0px 0px;
    padding: 15px;
}

    .values-box h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
        overflow-x: hidden;
    }

.values-footer {
    background: #ECECF5;
    border-radius: 0px 0px 16px 16px;
    padding: 22px;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
}

    .values-footer:focus, .values-footer:hover {
        color: #291C64;
    }

    .values-footer span {
        float: right;
    }

.tag-box .tag1.tag-blue {
    background: rgba(80, 205, 208, 0.1);
    color: #50CDD0;
}

.legal {
    background: #291C64;
    border-radius: 16px;
    padding: 50px 100px;
    margin-bottom: 30px;
}

    .legal h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #F6F7FB;
        margin-bottom: 15px;
        text-align: left;
    }

    .legal p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #F6F7FB;
    }

        .legal p a {
            font-style: normal;
            font-weight: bold;
            font-size: 16px;
            line-height: 150%;
            color: #50CDD0;
        }

.color-white {
    color: #fff !important
}

.itemImage-list button.owl-prev {
    color: #fff !important;
    padding: 0 !important;
    font-size: 18px !important;
    border-radius: 30px !important;
    background: #291C64 !important;
    height: 50px !important;
    width: 55px !important;
    border: 1px solid #D6D6D6 !important;
    margin-left: -66px !important;
}

.itemImage-list button.owl-next {
    color: #fff !important;
    padding: 0 !important;
    font-size: 18px !important;
    border-radius: 30px !important;
    background: #291C64 !important;
    height: 50px !important;
    width: 55px !important;
    border: 1px solid #D6D6D6 !important;
    margin-right: -66px !important;
}


.buffalo-icon img {
    /*    max-width: 115px;*/
}

    .buffalo-icon img.enlarger {
        max-width: 100px;
        cursor: pointer;
    }

.buffalo-icon a {
    background: rgba(79, 68, 126, .7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    padding: 7px;
    margin-right: 15px;
}

.us-buffalo-main {
    background: #291C64;
    padding: 50px 0;
}

.buffalo-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-bottom: 12px;
}

    .buffalo-ul li,
    .buffalo-ul li h1,
    .buffalo-ul li a {
        display: inline-block;
        color: #100C20;
        font-size: 40px;
        font-weight: 700;
        line-height: 120%;
    }

        .buffalo-ul li h1 {
        }

        .buffalo-ul li a {
        }

.us-buffalo-main h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.buffalo-values .values-box {
    border-radius: 16px;
}

.buffalo-values .blue-box {
    background: #50CDD0;
}

.buffalo-values .grey-box {
    background: #ECECF5;
}

.buffalo-values .dark-blue {
    background: #291C64;
}

.buffalo-values .blue-box h4 {
    color: #fff;
}

.buffalo-values .blue-box .tag-box .tag1.tag-blue {
    background: rgba(130, 225, 227, 0.5);
    color: #fff;
}

.blue-box .btn-primary {
    background: #ECECF5;
    color: #291C64;
}

.buffalo-values .dark-blue h4 {
    color: #fff;
    margin-bottom: 0;
}

.buffalo-values .dark-blue .tag-box .tag1.tag-blue {
    background: rgba(130, 225, 227, 0.5);
    color: #fff;
}



.type-coin {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #291C64;
    padding: 7px 15px;
    background: #fff;
    border-radius: 100px;
    /*	
	float: right;
*/
    margin: 5px;
}

    .type-coin:focus, .type-coin:hover {
        color: #291C64;
    }

.dark-blue .d-ul li span {
    background: #F6F7FB;
}

.sponsors.b-slide {
    background: transparent;
    padding: 30px;
}

.b-slide a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    padding: 10px 20px;
    border: 1px solid #ececf5;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    margin: 0 5px;
    text-decoration: none;
}

    .b-slide a.active, .b-slide a:hover, .b-slide a:focus {
        color: #fff;
        background: #50CDD0;
        border: 1px solid #50CDD0;
    }

.cac-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    border: 2px solid #291C64;
    height: 350px;
}

.cac-box-icon img {
    /*    max-width: 150px;*/
}

.cac-box-icon {
    text-align: center;
    position: relative;
}

    .cac-box-icon .cac-logo {
        position: absolute;
        right: 0;
        top: 5px;
        max-width: 56px;
    }

.cac-box h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    text-align: center;
    color: #291C64;
    margin: 15px 0;
}

.font-24 {
    font-size: 24px !important;
    font-weight: normal;
}

.mh-225 {
    min-height: 225px;
}

.mh-250 {
    min-height: 250px;
}

.mh-275 {
    min-height: 275px;
}

.mh-280 {
    min-height: 280px;
}

.mh-285 {
    min-height: 285px;
}

.cpg-grey-box {
    background: #ECECF5;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #291C64;
    padding: 10px;
}

.cac-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 170%;
    text-align: center;
    color: #756D98;
    margin: 15px 0;
}

.btn-sign-in {
    background: #291C64;
    border-radius: 12px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #F6F7FB;
    padding: 10px;
    width: 100%;
    display: inline-block;
}

    .btn-sign-in:hover,
    .btn-sign-in:focus {
        background: #50CDD0;
        color: #fff;
    }

.btn-view {
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 170%;
    color: #756D98;
    display: block;
    padding: 15px 0 0 0;
    text-align: left;
    border-top: 1px solid #ECECF5;
    margin-top: 15px;
}

    .btn-view span {
        float: right;
    }

    .btn-view:hover {
        color: #756D98;
    }


.cac-box.blue-box {
    background: #50CDD0;
}

    .cac-box.blue-box h4 {
        color: #fff;
        text-align: left;
    }

    .cac-box.blue-box h5 {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #FFFFFF;
        text-align: left;
        margin-bottom: 25px;
        margin-top: 16px;
    }

    .cac-box.blue-box .btn-primary {
        background: #fff;
        color: #50CDD0;
    }

.btn-bg {
    background-size: contain;
    background-position: center center;
    min-height: 50px;
    line-height: 50px;
    background-repeat: no-repeat;
}

    .btn-bg span {
        color: #50CDD0;
    }

.mh-350 {
    min-height: 363px;
}

.subscription-required {
    padding: 100px;
    background: url(../images/s-r.png) no-repeat center;
    background-size: cover;
    min-height: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 16px;
}

    .subscription-required:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(41, 28, 100, .3);
        left: 0px;
        top: 0px;
        z-index: -1;
        border-radius: 16px;
    }

    .subscription-required h4 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #FFFFFF;
    }

    .subscription-required p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #FFFFFF;
    }


.btn-white {
    background: #fff;
    border-radius: 18px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    display: inline-block;
    text-align: center;
    color: #50CDD0;
    padding: 10px 30px;
    border: none;
    box-shadow: none;
    margin-right: 0 10px;
}

.bg-white {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    /*    margin-bottom: 20px;*/
}

.font-32 {
    font-size: 32px !important;
    font-weight: normal;
}

/* .heritage-box h5 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #291C64;
    text-align: left;
} */

/* .heritage-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #756D98;
    text-align: left;
} */
/*    Accordion form right col CSS*/

.accordion .btn-link {
    border: none; /* Remove border */
    box-shadow: none; /* Remove box-shadow */
    text-decoration: none; /* Remove any text decoration */
    padding: 0; /* Remove left padding */
    color: #100C20; /* Set the text color */
    display: flex;
    justify-content: space-between; /* Space between the text and icon */
    width: 100%; /* Full width to ensure space between */
    align-items: center; /* Center vertically */
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    text-align: left;
}

    .accordion .btn-link:focus {
        box-shadow: none !important; /* Remove focus box-shadow */
    }

/* Remove border-bottom from card-header */
.accordion .card-header {
    border-bottom: none;
    background-color: #FAFAFA; /* Default background color for the header */
}

/* Set the card-body background color to be the same as card-header */
.accordion .card-body {
    background-color: #FAFAFA; /* Match the header background color */
    padding: 0px !important;
    margin-top: 17px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #433E3F;
}

.accordion .card {
    border: 1px solid #E3E3E3;
    background: #FAFAFA;
    border-radius: 8px !important;
}

.accordion .btn-link .chevron-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease-in-out;
}

/* Rotate chevron down when expanded */
.accordion .collapse.show + .card-header .chevron-icon {
    transform: rotate(180deg);
}
/*    Accordion form END*/
.values-catagoryName {
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    padding: 8px 0;
    margin-bottom: 24px;
}

.price-box {
    background: #F6F7FB;
    border-radius: 16px;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    text-align: center;
    color: #50CDD0;
    line-height: 70px;
    height: 70px;
}

.values-collapsable-text {
    color: #433E3F;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.view-all-news-button,
.view-all-news-button:hover {
    display: flex;
    height: 48px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: #2DA5A8;
    color: #FFF;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.item-section-wrapper {
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    background: #FAFAFA;
    padding: 32px;
}


.heritage-box {
    margin-bottom: 15px;
}

.coin-worth .pagination li a {
    border-color: #BFBDCB;
}

.coin-worth .show-article a {
    border-color: #BFBDCB;
}

.coin-worth .pagination li a.active {
    background: #BFBDCB;
}

.mh-50 {
    min-height: 50px;
    line-height: 50px;
}

.after-none:after {
    display: none;
}

.page-list a {
    color: #291C64;
    font-size: 16px;
    display: inline-block;
    margin: 5px 0;
    border-bottom: 1px solid #291C64;
    text-decoration: none;
    transition: all .5s;
}

    .page-list a:hover, .page-list a:focus {
        border-color: #50CDD0;
        color: #50CDD0;
    }

.liberty-cap {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

    .liberty-cap li {
        background: #F6F7FB;
        border-radius: 100px;
        padding: 10px;
        margin-bottom: 10px;
    }

        .liberty-cap li img {
            max-width: 40px;
        }

        .liberty-cap li span {
            font-style: normal;
            font-weight: bold;
            font-size: 14px;
            line-height: 170%;
            color: #291C64;
            margin-left: 10px;
        }

.user-login img {
    border-radius: 10px;
}

.coin-hero {
    padding: 50px 0;
    background: #f6f7fb url(../images/coin-values-bg.png) no-repeat;
    background-position: right top;
    /*	min-height: 500px;*/
    background-size: contain;
}

    .coin-hero h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 48px;
        line-height: 117%;
        color: #291C64;
    }

.us-coin-main h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    text-align: center;
    color: #291C64;
}

.us-coin-main h4 {
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 124%;
    text-align: center;
    color: #756D98;
    margin-bottom: 50px;
}

.our-publication {
    padding: 15px 0;
}

/*    .our-publication h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        text-align: left;
        color: #291C64;
    }

    .our-publication h4 {
        font-style: normal;
        font-weight: normal;
        font-size: 32px;
        line-height: 124%;
        text-align: left;
        color: #756D98;
        margin-bottom: 50px;
    }*/

.issue-list h5 {
    color: #100C20;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-top: 16px;
}

.issue-list p {
    color: #433E3F;
    font-family: Geist;
    font-size: 12.455px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18.682px */
}

.issue-list .cover-label-date {
    border-radius: 100px;
    background: #ECECF5;
    padding: 4px 8px;
    color: #291C64;
}

.publication-box {
    background: #ECECF5;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.popular-videos {
    background: #291C64;
    /*    padding: 50px 0;*/
    margin: 32px auto;
    border-radius: 16px;
}

    .popular-videos h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #FFFFFF;
    }

    .popular-videos .cpg-slider .owl-carousel .owl-nav button.owl-next::before {
        font-family: fontawesome;
        font-weight: 900;
        font-size: 14px;
        content: "\f061";
        position: relative;
        right: 15px;
        top: -1px;
        left: auto;
        background: #50CDD0;
        padding: 15px;
        border-radius: 50%;
        color: #fff;
    }

    .popular-videos .owl-carousel .owl-nav button.owl-prev, .popular-videos .owl-carousel .owl-nav button.owl-next {
        display: inline-block;
        position: absolute;
        top: -30px;
        width: 30px;
        height: 30px;
        outline: 0;
        margin: 0;
        transform: translate3d(0, 0%, 0);
    }

    .popular-videos .cpg-slider .owl-carousel .owl-nav button.owl-prev::before {
        display: none;
    }

    .popular-videos .owl-carousel .owl-dots {
        margin-top: 15px;
    }

        .popular-videos .owl-carousel .owl-dots .owl-dot span {
            width: 8px;
            height: 8px;
            margin: 5px 4px;
            display: inline-block;
            background: #fff;
            border-radius: 50%;
        }

        .popular-videos .owl-carousel .owl-dots .owl-dot.active span {
            width: 16px;
            border-radius: 5px;
        }


.people-say {
    background: #FCFBFF;
    padding: 0 30px;
}

.review-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 100px 50px 70px;
    text-align: center;
    position: relative;
}

    .review-box:before {
        content: "";
        background: url(../images/quote1.png) no-repeat left;
        background-size: 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        left: 55px;
        top: 50px;
    }

    .review-box:after {
        content: "";
        background: url(../images/quote2.png) no-repeat left;
        background-size: 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        right: 75px;
        bottom: 100px;
    }

    .review-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
        max-width: 80%;
        margin: 0 auto 24px;
    }

    .review-box h5 {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        line-height: 132%;
        text-align: center;
        color: #50CDD0;
    }

    .review-box h6 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: #291C64;
    }

.people-say .owl-carousel .owl-dots {
    margin-top: 15px;
    text-align: center;
}

    .people-say .owl-carousel .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 5px 4px;
        display: inline-block;
        background: #BFBDCB;
        border-radius: 50%;
    }

    .people-say .owl-carousel .owl-dots .owl-dot.active span {
        width: 16px;
        border-radius: 5px;
    }

.coin-hero h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 117%;
    color: #291C64;
}

.our-publication .cpg-slider .owl-carousel .owl-nav button.owl-next::before {
    font-family: fontawesome;
    font-weight: 900;
    font-size: 14px;
    content: "\f061";
    position: relative;
    right: -45px;
    top: -1px;
    left: auto;
    background: #291C64;
    padding: 15px;
    border-radius: 50%;
    color: #fff;
}

.our-publication .cpg-slider .owl-carousel .owl-nav button.owl-prev::before {
    display: none;
}

/* .directory {
    padding: 15px 0;
} */

.directory h3 {
    margin-bottom: 15px;
}

.directory.us-coin h3 {
    margin-bottom: 15px;
}

h4.us-coin-h4 {
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    text-align: center;
    color: #756D98;
}

p.us-coin-p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #756D98;
}


.subscriber-box .btn-primary {
    padding: 8px;
    font-size: 14px;
}

.subscriber-box {
    min-height: 206px;
}

.subscription-required a {
    min-width: 200px;
}

.advertise-left > p.membership-para {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 132%;
    color: #756D98;
}

.cdnx h4 {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
    margin-bottom: 24px;
}

.cdnx p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #291C64;
    margin-bottom: 30px;
}

.cdnx h5 {
    font-style: normal;
    font-weight: normal;
    font-size: 23px;
    line-height: 132%;
    color: #756D98;
}

    .cdnx h5 b {
        color: #291C64;
    }

.sell-better {
    background-color: #f6f7fb;
    padding: 50px 0;
}

.sell-box {
    background: #ECECF5;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 0 120px 0 0;
}

    .sell-box img {
        position: relative;
        bottom: -25px;
        left: -50px;
    }

    .sell-box h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
        margin-bottom: 20px;
    }

    .sell-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
    }

.cdn-seller {
    background-color: #f6f7fb;
    padding: 50px 0;
}

    .cdn-seller h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        color: #291C64;
    }

    .cdn-seller p {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 132%;
        color: #291C64;
    }

    .cdn-seller .camera-ready {
        padding: 30px 50px;
    }

        .cdn-seller .camera-ready ul li {
            margin-bottom: 15px;
        }

.cdn-benefits, .cdn-pledge {
    background-color: #f6f7fb;
    padding: 50px 0;
}

    .cdn-benefits h3 {
        font-style: normal;
        font-weight: bold;
        font-size: 32px;
        line-height: 124%;
        text-align: center;
        color: #291C64;
    }

.cdn-box {
    padding: 24px;
    background: #ECECF5;
    border-radius: 16px;
}

    .cdn-box h5 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
        margin-bottom: 15px;
    }

    .cdn-box p {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
        margin-bottom: 0px;
    }

.mh-200 {
    min-height: 205px;
}

.mh-280 {
    min-height: 280px;
}

.coming-soon {
    padding: 50px 60px;
    background: #ECECF5;
    border-radius: 16px;
}

.subscribe2 h2 {
    font-size: 48px;
}

.cpg h1 b {
    color: #291C64;
}

.both-side {
    padding: 100px 0;
}

.space-650 {
    min-height: 650px;
}

/*********** CPG CSS*****************/
.cpg-container {
    max-width: 1056px;
    margin: 0 auto;
}

.cpg-page-header span {
    color: #433E3F;
    text-align: center;
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.cpg-value-img {
    width: 350px;
    height: 195px;
}

    .cpg-value-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.cpg-page-header img {
    width: 246px;
    height: 80px;
    margin: 0 auto;
    padding-top: 10px;
}

.cpg-value-wrapper h2 {
    color: #100C20;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.cpg-value-wrapper p {
    color: #2B2829;
    font-family: Geist;
    /*    font-size: 16px;*/
    font-style: normal;
    font-weight: 400;
    /*    line-height: 150%;*/
}
/*******CART CSS**********/
.payment-badge {
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #E2F7F7;
    color: #154E4F;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.payment-badge-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.monthly-price-display {
    font-family: Geist;
    font-size: 12px;
    color: #726C6C;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.13px;
}

.remove-from-cart {
    color: #C03744;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-decoration-line: underline;
}

    .remove-from-cart:hover {
        color: #8C1823;
    }

.coupon-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 16px 12px;
    align-items: center;
    align-self: stretch;
    border-radius: 12px;
    width: 100%;
    border: 1px solid #E3E3E3;
    margin-top: 6px;
    margin-bottom: 12px;
}

    .coupon-wrapper input[type="text"] {
        border: none;
        outline: none;
        color: #100C20;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        background-color: transparent;
    }

    .coupon-wrapper input::placeholder {
        color: #9F9C9C;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .coupon-wrapper button {
        display: flex;
        padding: 10px 16px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        border-radius: 8px;
        background: #25888A;
        border: none;
        outline: none;
        color: #fff;
        font-family: Geist;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        cursor: pointer;
    }

.total-checkout-count, .total-checkout-amount {
    margin-left: -12px;
    margin-right: -12px;
    padding-top: 16px !important;
    padding-top: 4px;
}

.total-checkout-count {
    color: #100C20;
    font-family: Geist;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

    .total-checkout-count p {
        margin-bottom: 12px;
    }

.total-checkout-amount {
    color: #100C20;
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.selected-unit-descp {
    color: #726C6C;
    font-family: Geist;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
    margin: 4px 0;
}

.cart-unit {
    border-radius: 12px;
    border: 1px solid #E3E3E3;
    display: flex;
    justify-content: space-between;
    padding: 16px 12px;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
    margin: 6px 0;
    width: 100%;
}

    .cart-unit p {
        color: #100C20;
        font-family: Geist;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
    }

.cart-count {
    color: #100C20;
    font-family: Geist;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.cart-table {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    font-size: 16px;
    border-radius: 12px;
    background: #FCFBFF;
    margin-left: 18px;
}

.cart-body-title {
    color: #362785;
    font-family: Geist;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
    text-wrap: nowrap;
}

.table-header {
    background: #ECECF5;
    padding: 15px;
    border-radius: 8px;
}

.table-body {
    padding: 15px 30px;
}

.table-header.blue-bg {
    color: #fff;
    background: #291C64;
}

.table-header.purple {
    color: #291C64;
    background: #FFF;
    border: 2px solid #291C64;
}

.row.table-row {
    padding: 12px;
    background: #F6F7FB;
    border-radius: 8px;
    margin-bottom: 15px;
}

.close-icon {
    background: #ECECF5;
    width: 32px;
    border-radius: 50%;
    height: 32px;
    display: inline-block;
    text-align: center;
    line-height: 31px;
    color: #291C64;
}

    .close-icon img {
        max-width: 18px;
    }

.form-box.account__form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.form-box h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 132%;
    color: #291C64;
    text-align: left;
}

/*.form-box p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #756D98;
}*/

.form-box p.font-dark {
    color: #291C64;
}

.del-icon1 {
    vertical-align: top;
    margin-left: 30px;
}

.btn-pay {
    margin-top: 20px;
    margin-bottom: 24px;
    margin-left: 12px;
    margin-right: 12px;
}

.bottom-para {
    margin-left: 12px;
    max-width: 438px;
    color: #000;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

.font-14 {
    font-size: 14px;
}

.color-theme {
    color: #291D64;
}

.isSticky {
    position: sticky;
    top: 5px;
}

.isAlwaysSticky {
    position: sticky;
    top: 95px;
}

.isStickyMobile {
    position: relative;
    top: inherit;
}



/*  --------------------   News Section Start  ---------------------------- */
.pad-0 {
    padding: 0;
}

.gap-10 {
    gap: 10px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.news-article-list {
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 20px;
}

.news-list-cat-header {
    padding: 32px 16px;
    border-radius: 12px;
    border: 1px solid #DFE1FF;
    background-color: #FCFBFF;
    max-width: 279px;
}

.btn-clear-filter {
    color: #1D6B6D;
    font-family: Geist;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 16.8px */
    border-radius: 12px;
    padding: 12px 0;
}

.category-header-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.form-check {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    gap: 8px;
}

.form-check-input {
    /* Remove default appearance */
    -webkit-appearance: none; /* For WebKit browsers */
    -moz-appearance: none; /* For Firefox */
    appearance: none; /* Standard property */
    height: 20px;
    width: 20px;
    border: 1.5px solid #291D64;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-top: .15rem;
}

    /* Ensure you have Font Awesome included in your project */


    .form-check-input::before {
        content: "\f00c"; /* Unicode for Font Awesome check icon */
        font-family: 'Font Awesome 5 Free'; /* Ensure this matches your Font Awesome version */
        font-weight: 900; /* Needed for Font Awesome solid icons */
        position: absolute;
        color: #ffffff; /* Checkmark color */
        top: 52%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px; /* Adjust size if needed */
        opacity: 0; /* Hide checkmark initially */
    }

    /* Adjust the checkmark visibility when checked */
    .form-check-input:checked::before {
        opacity: 1; /* Show checkmark when input is checked */
    }

    .form-check-input:checked {
        background-color: #291D64;
        border-color: #291D64;
    }
        /*.form-check-input::after {
    content: "✔";*/ /* Default checkmark character */
        /*position: absolute;
    color: #291D64;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
        /* Checkmark color */
        /*font-size: 14px;*/ /* Adjust size if needed */
        /*opacity: 0;*/ /* Hide checkmark initially */

        /*}*/
        .form-check-input:checked::after {
            opacity: 1;
            color: #fff; /* Checkmark color when checked */
        }

.news-form-name .form-check-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 16.8px;
    color: #100C20;
    margin-right: 0px;
    margin-left: 0px;
}

.news-form-value .form-check-label {
    font-weight: 400;
    font-size: 13px;
    line-height: 19.5px;
    color: #726C6C;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #E3E3E3;
}

.mt-32px {
    margin-top: 32px;
}

.tx-al-lft {
    text-align: left !important;
}

.result-found-sm {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #5A5555 !important;
}

.news-item-cart {
    /*display: grid;
    grid-template-columns: repeat(3, 1fr);*/
    gap: 24px;
}
/*  ------------    News Section end =----------  */


/*-------------------- Dealer Directory Page Start -------------------------*/
.flx-100 {
    flex: 0 0 100%;
}

.news-search-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 19%;
    left: 2%;
}

.dealer-item-cart {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/*-------------------- Dealer Directory Page End -------------------------*/


/*    ads section start  */

/*    ads section end    */


/*filter icon css start*/

.filter-icon {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-top: 10px;
}

.filter-icon-placeholder {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-bottom: 10px;
}

.filter-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.card {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.filter-icon-marketplace {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-top: 20px;
}
/*Filer icon css end*/
@media only screen and (min-width: 1920px) {
}

@media only screen and (min-width: 1440px) {
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
        padding: 0;
    }
}

@media only screen and (max-width: 1919px) {
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
    .coin-iconv2 {
        display: block;
    }

    .us-coin-boxv2 {
        padding: 15px;
        /*        width: 200px;*/
    }

        .us-coin-boxv2 img {
        }

        .us-coin-boxv2 h5 {
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
            margin-top: 0;
            vertical-align: middle;
        }

    .pricingTileOverlay {
        position: relative;
        bottom: 75px;
        background: rgb(0, 0, 0);
        background: rgba(0, 0, 0, 0);
        color: #FF0000;
        width: 100%;
        font-size: 20px;
        text-align: center;
        text-shadow: 2px 2px #FFFFFF;
        z-index: 1000;
    }

    .pricingTileOverlayBtn {
        top: 54px;
        left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .btn-primary {
        padding: 10px 15px;
    }

    .tabs-vertical .nav-tabs {
        border-bottom: none;
        display: block;
        height: 100%;
        float: none;
        padding: 0;
        vertical-align: top;
        min-width: 100%;
        overflow-x: scroll;
        white-space: nowrap;
        max-width: 320px;
    }

    .tabs-left .nav-tabs > li {
        margin-right: 10px;
    }

    .tabs-vertical .nav-tabs > li {
        display: inline-block;
    }

    .account .tabs-left .nav-tabs > li .nav-link {
        width: auto;
        display: inline-block;
    }

    .desktop-header .nav-link {
        display: inline-block;
        padding: .5rem .3rem;
        font-size: 14px;
    }

    .dropdown .btn {
        padding: .5rem .3rem;
        font-size: 14px;
    }

    .btn-change.btn-subscribe {
        max-width: 87px;
        text-align: center;
        color: #fff;
        display: inline-block;
        font-size: 12px;
        padding: 7px 12px;
        margin-top: 12px;
    }

    /*    #newsletterFrm .input-group .form-control {
        height: 40px;
        width: 100%;
        border-radius: 2.5rem !important;
    }

    #newsletterFrm .input-group-rounded .input-group-append .btn {
        border-radius: 12px;
        left: 0;
        width: 100%;
        top: 5px;
    }*/

    .btn-ghost {
        padding: 10px 15px;
    }

    .advertise {
        background-color: #f6f7fb;
        background-image: none;
        padding: 25px 0;
    }

    .coin-worth {
        padding: 15px 15px;
        margin-bottom: 15px;
    }

    .award-box {
        background: #ECECF5;
        padding: 15px;
        border-radius: 25px;
        margin-bottom: 30px;
    }

    .header-right {
        font-size: 14px;
    }

    .desktop-header .header-right .bag {
        margin: 0 5px;
    }

    .coin-iconv2 {
        display: block;
    }

    .us-coin-boxv2 {
        padding: 15px;
        /*        width: 200px;*/
    }

        .us-coin-boxv2 img {
        }

        .us-coin-boxv2 h5 {
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
            margin-top: 0;
            vertical-align: middle;
        }

    .pricingTileOverlay {
        position: relative;
        bottom: 50px;
        background: rgb(0, 0, 0);
        background: rgba(0, 0, 0, 0);
        color: #FF0000;
        width: 100%;
        font-size: 14px;
        text-align: center;
        text-shadow: 2px 2px #FFFFFF;
        z-index: 1000;
    }

    .pricingTileOverlayBtn {
        top: 38px;
        left: 25px;
        font-size: 8px;
    }
}




@media only screen and (max-width: 992px) {
    .header1-text, 
    .header-worth-title {
        font-size: 32px;
    }
    .img-gallery-header h1 {
        font-size: 32px;
        padding: 20px 0 30px 0;
    }
    .team-heading h1 {
        font-size: 32px;
    }
    .team-box h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .advertise-heading h3{
        font-size: 32px;
    }
    .about-us-info h1 {
        font-size: 32px;
    }
        .team-box h5 {
        font-size: 14px !important;
    }

    .team-box p:not(:empty) {
        font-size: 14px !important;
    }

    .team-pic {
        margin-bottom: 16px;
    }

    .cpg-container {
        margin: 0 16px;
    }

    .cpg-video-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .tool-right {
        margin-top: 16px;
    }

    .cpg-subscribe-wrapper {
        flex-direction: column-reverse;
        padding: 16px;
    }

    .cpg-subscribe-img {
        /*        width: 100%;*/
        margin-top: 16px;
    }

    .cpg-value-img {
        margin-top: 16px;
    }

    .tool-box {
        margin-bottom: 40px;
    }


    .profile-right {
        margin-top: 15px;
        text-align: right;
    }

    .cdn-customer {
        text-align: left;
    }

    .switch-box {
        margin-bottom: 10px;
    }

    .account .tabs-left .nav-tabs > li .nav-link {
        margin: 0 0 10px 0;
    }

    .account__form .form-group {
        position: relative;
        margin-bottom: 1rem;
    }

    .change-pass .modal-header1 {
        padding: 30px 30px 0;
    }

    .change-pass .modal-body {
        padding: 30px 30px;
    }

    .change-pass .modal-footer {
        padding: 10px 30px;
        border-top: 0;
    }

    .modal-header1 .close {
        position: absolute;
        top: 10px;
    }

    .delete-h2 br {
        display: none;
    }

    .edit-add .modal-body {
        padding: 30px 0px;
        padding-bottom: 4px;
    }

    .edit-add .modal-header1 {
        text-align: center;
        padding: 15px 0 0 0;
    }

    .edit-add .modal-footer {
        padding: 10px 30px;
        border-top: 0px;
    }

    .btn-change {
        padding: 10px 28px;
        width: 100%;
    }

    .btn-p {
        line-height: 150%;
        padding: 3px 10px;
    }

    .address-list span {
        font-size: 14px;
    }

    .address-list {
        padding: 15px 20px;
    }

    .btn-edit {
        /*        padding: 5px 15px 0 0px;*/
        font-size: 14px;
    }

    .btn-delete {
        /*        padding: 5px 0 0 15px;*/
        font-size: 14px;
    }

    .font-size-32 {
        line-height: 1.4 !important;
    }

    .profile-name {
        font-size: 14px;
    }

    .profile-logout {
        font-size: 16px;
        display: block;
        text-align: right;
        margin-top: 8px;
    }

        .profile-logout:hover, .profile-logout:focus {
            color: #ddd;
        }

    .account__pic {
        max-width: 42%;
        display: inline-block;
        margin-bottom: 20px;
        margin-right: 45px;
    }

        .account__pic ~ .btn-box {
            max-width: 54%;
            display: inline-block;
        }

            .account__pic ~ .btn-box .btn-change {
                padding: 7px 18px;
                font-size: 14px;
                width: 100%;
                border-radius: 13px;
            }

    .dealer-box h4 {
        /*        margin-bottom: 10px;
        margin-top: 2px;*/
    }

    .dealer-box p {
        font-size: 14px;
    }

    .dealer-box {
        padding: 10px 20px;
        margin-bottom: 20px;
    }

    .company-info-sub-head {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .membership-icons {
        gap: 32px 56px;
    }

    .memberships h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .memberships .switch-box {
        display: inline-block;
        margin-right: 20px;
        margin-left: 0;
    }

    .memberships .switch-label {
        float: left;
        margin-right: 20px;
        min-width: 36px;
    }

    .past-issue-library-list {
        grid-template-columns: repeat(2,1fr);
    }
    /*.btn-light{
	display: none;
}*/
    .city-name {
        margin: 12px 0;
    }

    .delete-add .btn-light {
        display: inline-block;
    }

    .delete-add .btn-change {
        display: inline-block;
        width: auto;
    }

    #header .header-btn-collapse-nav {
        left: -20px;
    }

    .tabs-vertical .nav-tabs {
        border-bottom: none;
        display: block;
        height: 100%;
        float: none;
        padding: 0;
        vertical-align: top;
        min-width: 100%;
        overflow-x: scroll;
        white-space: nowrap;
        max-width: 320px;
    }

    .tabs-left .nav-tabs > li {
        margin-right: 10px;
    }

    .tabs-vertical .nav-tabs > li {
        display: inline-block;
    }

    .account .tabs-left .nav-tabs > li .nav-link {
        width: auto;
        display: inline-block;
    }

    .w-100 {
        width: 100%
    }

    .width-100 {
        width: 100%
    }

    .header-right.new-one {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: #291C64;
        max-width: 75%;
        margin: 0px auto 35px;
    }

    .login__header3 {
        font-size: 34px;
        line-height: 40px;
    }

    .form-group.step-2 input {
        width: 40px;
    }

    .nps {
        top: -11px;
    }

    .login {
        margin-top: 50px;
    }

    .mobile-header .nav-list.list-more {
        display: none;
    }

    .mobile-header .nav-list.list-more {
        display: none;
    }

    .mobile-header .list-more4 {
        display: none;
    }

    .mobile-header .list-more3 {
        display: none;
    }

    .mobile-header .list-more2 {
        display: none;
    }

    .mobile-header .list-more1 {
        display: none;
    }

    .mobile-header .list-less-arrow {
        position: absolute;
        left: 15px;
        top: 15px;
        z-index: 99;
    }

    .mobile-header {
        position: fixed;
        background: #fff;
        top: 0;
        padding: 0;
        height: 70px;
        z-index: 1000;
        width: 100%;
    }

    .mobile-cdni-left {
        position: sticky;
        top: 80px;
        z-index: 100;
        background: #F6F7FB;
    }

    .main {
        margin-top: 88px !important;
    }

    #sub-menu ul li {
        display: inline-block;
        margin: 0 25px;
    }

    .issue-list li {
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .new-benefit .close {
        position: absolute;
        top: -86px;
    }

    .table thead th {
        border-bottom: 0px;
        vertical-align: middle;
    }

        .table thead th:last-child {
            min-width: 200px;
        }

    .btn-light.del-user {
        display: inline-block;
        width: 100%;
    }


    .digital-media.dm {
        background: #fff;
        padding: 10px;
    }

    .digital-media .issue-box {
        background: #F6F7FB;
        border-radius: 8px;
        padding: 10px;
        margin-top: 10px;
    }

    .issue-list {
        min-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .issue-box h4 {
        white-space: normal;
        font-size: 14px;
        font-weight: 600;
        line-height: 150%; /* 21px */
    }

    .account-heading-text {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .account__settings {
        padding-right: 0;
    }

        .account__settings h3 {
            font-size: 20px;
        }

    .personal-infrm-sub-head {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .issue-list li {
        margin-right: 0;
        /*    width: 56%;*/
    }

    .cdnFooter {
        background: #291C64;
        padding: 50px 0 0 0;
        /*        text-align: center;*/
    }

        .cdnFooter #sub-menu {
            text-align: left;
        }

    #sub-menu ul li::after {
        display: none;
    }

    #sub-menu ul li {
        display: inline-block;
        margin: 0 0px;
        width: 49%;
        text-align: center;
    }




    /* Force table to not be like tables anymore */
    /*	table, thead, tbody, th, td, tr { 
		display: block; 
	}
*/
    /* Hide table headers (but not display: none;, for accessibility) */
    /*	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
*/
    /*	tr { margin-bottom: 15px; padding: 10px;}
	
	table td { 
		border: none;
		position: relative;
		padding-left: 50%; 
	}
*/
    /*td:before {*/
    /* Now like a table header */
    /*position: absolute;*/
    /* Top/left values mimic padding */
    /*top: 12px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		font-weight: normal;
	}*/

    /*
	Label the data
	*/
    .table1 td:nth-of-type(1):before {
        content: "";
    }

    .table1 td:nth-of-type(2):before {
        content: "Expiration:";
    }

    .table1 td:nth-of-type(3):before {
        content: "Next Billing:";
    }

    .table1 td:nth-of-type(4):before {
        content: "Users:";
    }

    .table2 td:nth-of-type(2):before {
        content: "Expired:";
    }

    .table2 td:nth-of-type(3):before {
        content: "Users:";
    }

    .table3 td:nth-of-type(2):before {
        content: "Role:";
    }

    .table3 td:nth-of-type(3):before {
        content: "E-mail:";
    }

    .table3 td:nth-of-type(4):before {
        content: "Last Activity:";
    }

    .table4 td:nth-of-type(2):before {
        content: "Type:";
    }

    .table4 td:nth-of-type(3):before {
        content: "Location:";
    }

    .table4 td:nth-of-type(4):before {
        content: "Last Activity:";
    }

    .table5 td:nth-of-type(3):before {
        content: "Price:";
    }

    .table5 td:nth-of-type(4):before {
        content: "Payment:";
    }

    .subscription-box table td {
        padding-left: 2%;
        font-weight: bold;
    }

        .subscription-box table td:first-child {
            padding: 1%;
        }

    .subscription-box table.table5 td:nth-child(2) {
        padding-left: 0%;
    }

    .subscription-box table.table5 td:nth-child(1) {
        border-bottom: 1px solid #eee;
    }

    .subscription-box {
        padding: 20px 20px;
    }

        .subscription-box .table-striped tbody tr:nth-of-type(2n+1) {
            background-color: #fff;
        }

        .subscription-box.manage-box .table-striped tbody tr:nth-of-type(2n+1) {
            background-color: #F6F7FB;
        }

    .btn-cancel {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 5px 15px;
    }

    .subscription-box table td:last-child {
        padding-bottom: 50px;
    }

    .subscription-box.manage-box {
        padding: 15px 5px;
        word-wrap: anywhere;
    }

        .subscription-box.manage-box table td:last-child {
            padding-bottom: 0px;
        }

    .modal-body br {
        display: none;
    }

    .btn-mobile-plus {
        border-radius: 100%;
        width: 40px;
        height: 40px;
        padding: 0;
        display: inline-block;
        line-height: 36px;
        font-size: 32px;
        position: fixed;
        bottom: 15px;
        right: 15px;
        z-index: 9;
    }

        .btn-mobile-plus span {
            display: none;
        }

    .btn-primary.width-95, .btn-ghost.width-95 {
        width: 100%;
        padding: 7px 12px !important;
        font-size: 14px !important;
    }

    .btn-primary, .btn-ghost {
        padding: 10px;
    }

    .isSticky {
        position: relative;
        top: inherit;
    }

    .isStickyMobile {
        position: sticky;
        top: 5px;
    }

    .ask-question .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .benefits .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .subscribe-ul {
        white-space: nowrap;
        overflow: auto;
    }

    .advertise.subscribe-single {
        background-image: none;
        padding: 20px 0;
    }

    .advertise h2 {
        padding-right: 0px;
    }

    .new-benefit2 p {
        margin-top: 15px;
    }

    .new-benefit2 {
        margin: 5px;
    }

    .order-box {
        margin-bottom: 15px;
    }

    .order-now h3 {
        font-size: 24px;
        text-align: left;
    }

    .grey-box {
        margin-top: 15px;
    }

    .pd-30 {
        padding: 30px 30px;
        margin-bottom: 15px;
    }

    .h4-heading {
        margin-top: 20px;
    }

    .single-box {
        padding: 30px;
    }

    .contact-box {
        /* border-radius: 25px;
        min-height: auto;
        margin-bottom: 15px;*/
    }

    .tab-box .card-body {
        padding: 0rem;
    }

    #myTab {
        flex-wrap: nowrap;
        overflow: auto;
        white-space: nowrap;
    }

    .advertise h1, .advertise-left > p {
        padding-right: 0px;
    }

    .pricing-icon img {
        max-width: 120px;
    }

    .advertise.price-page {
        background-image: none;
    }

    .value-img span {
        max-width: 100%;
    }

    .value-content h4 {
        margin-top: 30px;
    }

    .value {
        padding: 15px 0;
    }

    .value-box {
        margin-bottom: 15px;
    }

    .advertise.subscribe-page {
        background-image: none;
    }

    .advertise.m-app {
        /*        background-image: url(../images/m-app.png);*/
        background-repeat: no-repeat;
        background-position: left top;
        background-size: 97%;
        min-height: 450px;
        padding-top: 220px;
    }

    .row-wrap {
        flex-wrap: nowrap;
        overflow: auto;
        white-space: normal;
        justify-content: left !important;
    }

    .reasons-box {
        width: 150px;
    }

    .award-box {
        padding: 30px;
    }

    .tool-box {
        padding: 20px;
        margin: 5px;
    }

    .advertise.contact {
        background-image: none;
    }

    .advertise-form {
        margin-top: 15px;
    }

    .panel-group .panel .panel-heading h4 a {
        font-size: 18px;
        padding-right: 30px;
        position: relative;
    }

        .panel-group .panel .panel-heading h4 a i {
            position: absolute;
            right: -14px;
            top: 14px;
        }

    .about.cpg {
        background-image: none;
    }

    .cpg-box h3 br {
        display: none;
    }

    .about {
        background-image: none;
    }

        .about h1 {
            padding-right: 0px;
        }

        .about h2 {
            padding-right: 0px;
        }

    .timeline {
        padding: 20px 15px;
    }

        .timeline h3 {
            padding-right: 0px;
        }

    .left-box {
        font-size: 14px;
        display: none;
    }

    .t-line::after {
        right: 4px;
    }

    .t-line::before {
        right: -5px;
    }

    .right-box {
        padding: 20px;
    }

    .img-box {
        padding: 20px;
        margin-bottom: 15px;
    }

    .team {
        background-image: none;
    }

    .price-para {
        text-align: left;
    }

        .price-para br {
            display: none;
        }

    .ord-2 {
        order: 2;
    }

    .advertise {
        background-image: none;
    }

    .advertise-box {
        margin-bottom: 15px;
    }

    .advertise-logo img {
        margin: 0 5px;
        max-width: 120px;
    }

    .benifits .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .benefits-box {
        background: #fff;
        padding: 24px;
        border-radius: 25px;
        min-height: 300px;
    }

    .advertise-rate h4 {
        margin-bottom: 0px;
    }

    .rate-box {
        margin-bottom: 15px;
    }

        .rate-box h5::before {
            left: 43%;
        }

    .mail-ins {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
        text-align: left;
        padding-left: 30px;
        background: #fff;
        padding-top: 10px;
        width: 98%;
        border-start-end-radius: 12px;
    }

    .call-4 {
        border-radius: 0px;
        text-align: left;
    }

    .camera-ready {
        padding: 30px;
    }

    .email-blast {
        padding: 30px;
        border-radius: 25px;
    }

    .advertise-rate h4 {
        margin-bottom: 20px;
        text-align: left;
        font-size: 24px;
    }

    .rate-box.bg-transparent h5 {
        display: none;
    }

    .rate-box.bg-transparent ul {
        display: none;
    }

    .advertise h2 {
        font-size: 24px;
    }

    .directory h3 {
    }

    .event-tab .d-box {
        padding: 15px;
        min-width: 250px;
    }

    .advertise.event-single h1 {
        font-size: 24px;
    }

    .april-9 {
        font-size: 24px;
    }

    .subscribe-video.m-app {
        margin-top: 30px;
    }

    .discription h5 {
        font-size: 18px;
    }

    .discription-box {
        margin-bottom: 30px;
    }

    .discription .d-social {
        display: block;
        text-align: center;
        float: none;
        margin-top: 10px;
    }

    .discription h6 .img-fluid {
        display: block;
        margin: 10px auto;
    }

    .discription h6 {
        text-align: center;
    }

    .discription-box.two p {
        text-align: center;
    }

    .discription-box .d-ul {
        padding-left: 30px;
    }

    .d-box {
        min-width: 250px;
    }

    .i-box h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .i-box .btn-primary {
        width: 100%;
    }

    .statNum, .statNumrev {
        font-size: 14px;
    }

    .statsBox {
        padding: 5px;
    }

    .comment-box form {
        width: 100%;
    }

    .coin-hero h2 {
        font-size: 32px;
        text-align: center;
    }

    .coin-hero h3.font-32 {
        font-size: 24px !important;
    }

    .issue-list h5 {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 150%;
        color: #291C64;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .btn-tag {
        width: 80%;
        display: block;
    }

    .us-coin-main {
        padding: 10px 0;
    }

        .us-coin-main h3 {
            font-size: 24px;
            text-align: left;
            margin-bottom: 15px;
        }

        .us-coin-main h4 {
            font-size: 24px;
            text-align: left;
        }

    .us-coin-box h5 {
        font-size: 14px;
    }

    .w-50 {
        width: 100% !important;
    }

    .coin-hero h3 {
        font-size: 32px;
    }

    .coin-hero {
        background-position: right bottom;
        padding: 20px;
    }

    .pubCell {
        padding: 10px 0;
    }

    .our-publication h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .our-publication h4 {
        font-size: 24px;
    }

    .popular-videos h3 {
        font-size: 24px;
    }

    .publication-box h3 br {
        display: none;
    }

    .publication-box h3 {
        margin-top: 15px;
    }

    .publication-box {
        margin-bottom: 0px;
    }

    .directory h3 {
        font-size: 24px;
        text-align: left;
    }

    .people-say h3 {
        text-align: left;
        font-size: 24px;
    }

    .review-box::after {
        content: "";
        background: url(../images/quote2.png) no-repeat left;
        background-size: auto;
        background-size: 50px;
        width: 50px;
        height: 50px;
        position: absolute;
        right: 8px;
        bottom: 100px;
    }

    .review-box::before {
        content: "";
        background: url(../images/quote1.png) no-repeat left;
        background-size: auto;
        background-size: 50px;
        width: 50px;
        height: 50px;
        position: absolute;
        left: 24px;
        top: 50px;
    }

    .review-box {
        padding: 100px 30px 50px;
    }

        .review-box p {
            font-size: 18px;
        }


    .our-publication .cpg-slider .owl-carousel .owl-nav button.owl-next::before {
        right: 0px;
    }

    .directory.us-coin h3 {
        text-align: center;
    }

    h4.us-coin-h4 {
        font-size: 24px;
    }

    .coin-worth {
        padding: 15px;
    }

    .directory.us-coin .coin-worth h3 {
        text-align: left;
    }

    .coin-worth h4 {
        font-size: 24px;
    }

    .values-box h4 {
        font-size: 20px;
    }

    .legal {
        padding: 30px;
    }

    .directory.us-coin .legal h3 {
        text-align: left;
    }

    .us-buffalo-main h3 {
        font-size: 24px;
        text-align: center;
        margin-top: 15px;
    }

    .buffalo-ul {
        text-align: center;
        margin-top: 15px;
    }

        .buffalo-ul li {
            font-size: 24px;
        }

    .buffalo-icon img {
        max-width: 200px;
    }

    .buffalo-icon a {
        vertical-align: top;
    }

    .toggle-div {
        display: none;
    }

    .b-slide a {
        font-size: 14px;
        padding: 10px 15px;
    }

    .sponsors.b-slide {
        background: transparent;
        padding: 0;
    }

    .b-slide .owl-carousel .owl-nav {
        top: 31%;
        display: none;
    }

    .cac-box.blue-box h4 {
        text-align: center;
    }

    .cac-box.blue-box h5 {
        text-align: center;
    }

    .mh-350 {
        min-height: auto;
    }

    .subscription-required {
        min-height: 200px;
        padding: 0px;
    }

        .subscription-required * {
            display: none;
        }

    .subscription-mobile {
        text-align: center;
        margin-top: 15px;
    }

        .subscription-mobile h4 {
            font-style: normal;
            font-weight: bold;
            font-size: 24px;
            line-height: 132%;
            color: #291C64;
        }

    .coin-worth .bg-white h4 {
        font-size: 18px;
    }

    .heritage-box img {
        margin-bottom: 15px;
    }

    .dealer-list {
        overflow: scroll;
    }

    .us-coin-box {
        padding: 15px;
        width: 200px;
    }

    .coin-icon {
        display: inline-block;
        width: 30%;
    }

    .us-coin-box img {
        max-width: 57px;
    }

    .us-coin-box h5 {
        font-size: 14px;
        display: inline-block;
        width: 60%;
        margin-bottom: 10px;
        text-align: left;
        margin-left: 12px;
        margin-top: 0;
        vertical-align: middle;
    }

    .coin-iconv2 {
        display: block;
    }

    .us-coin-boxv2 {
        padding: 15px;
        width: 200px;
    }

        .us-coin-boxv2 img {
            max-width: 150px;
            max-height: 150px;
        }

        .us-coin-boxv2 h5 {
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
            margin-top: 0;
            vertical-align: middle;
        }

    .pricingTileOverlay {
        position: relative;
        bottom: 95px;
        background: rgb(0, 0, 0);
        background: rgba(0, 0, 0, 0);
        color: #FF0000;
        width: 100%;
        font-size: 20px;
        text-align: center;
        text-shadow: 2px 2px #FFFFFF;
        z-index: 1000;
    }

    .pricingTileOverlayBtn {
        top: 81px;
        left: 72px;
    }

    .tag-box .tag1 {
        font-size: 12px;
    }

    .values-box .tag-box {
        margin-bottom: 0px;
    }

    .subscriber-box {
        min-height: auto;
    }


    .advertise.cdnexchange {
        background-image: url(../images/add-bg.png);
        background-position: bottom right;
        background-size: 300px;
    }

    .cdnexchange .subscribe-video.m-app {
        margin-top: 40px;
    }

    .cdnx {
        margin-top: 50px;
    }

    .discription .cdnx h5 {
        font-size: 24px;
    }

    .sell-box {
        padding: 0 32px 0 20px;
    }

        .sell-box img {
            position: relative;
            bottom: -0px;
            left: -50px;
        }

        .sell-box h3 {
            margin-top: 30px;
        }

    .cdn-seller .camera-ready {
        padding: 30px;
    }

    .cdn-box {
        padding: 24px;
        background: #ECECF5;
        border-radius: 16px;
        min-width: 260px;
    }

    .coming-soon {
        padding: 24px;
        background: #ECECF5;
        border-radius: 16px;
    }

    .advertise.subscribe2 h1 {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .advertise.subscribe2 h2 {
        font-size: 32px;
    }

    .advertise.subscribe2 {
        background-image: url(../images/add-bg.png);
        background-position: bottom right;
        background-size: 500px;
    }

    .rounded {
        border-radius: 5px !important;
    }

    .rounded-circle {
        border-radius: 50% !important;
    }


    .blue-color {
        color: #291C64 !important;
    }

    /******CART CSS ********/


    .cart-table {
        padding: 0px;
        min-height: auto;
        font-size: 14px;
    }

    .table-body {
        padding: 0 15px 0 10px;
        position: relative;
    }

    .row.table-row {
        background: #ECECF5;
        padding: 15px 5px;
    }

    .close-icon {
        top: -81px;
        position: absolute;
        right: 5px;
        background: #fff;
    }

    .table-body b {
        min-width: 65px;
    }

    .del-icon1 {
        vertical-align: top;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .industry {
        padding: 0;
    }
    .header1-text, 
    .header-worth-title {
        font-size: 24px;
    }
    .team-heading h1 {
        font-size: 24px;
    }
    .about-us-info h1 {
        font-size: 24px;
    }
    .img-gallery-header h1 {
        font-size: 24px;
    }
    .buffalo-ul li h1{
        font-size: 24px;
    }
    .nav-link-list.active {
        padding: 8px;
        margin-left: 0;
        border-left: none;
        border-radius: 4px;
        background: #25888A;
        color: #FFF;
        font-family: Geist;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
    }

    .mobile-cdni-left {
        top: 63px;
        /*        background: transparent;*/
    }

    .nav-main-item {
        padding: 0;
        border: none;
        margin: 0;
    }

    .subscription-box {
        padding: 0px;
    }

        .subscription-box table td:last-child {
            padding-bottom: 36px;
        }

    .digital-media.dm {
        padding: 0;
    }

    .account-heading-text,
    .page-header h1 {
        color: #433E3F;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        line-height: 120%; /* 14.4px */
    }

    .page-header {
        padding: 15px 0;
    }

    .digital-media h3 {
        text-align: center;
        margin-top: -18px;
    }

    .digital-media .issue-box {
        margin: 10px 0;
        background: transparent;
        padding: 0;
    }

    .issue-box h4 {
        font-size: 14px;
        font-weight: 600;
    }

    .account {
        padding: 0;
    }

    .account__settings {
        padding: 0;
    }

        .account__settings h3 {
            text-align: center;
        }

    .cdn-customer {
        text-align: center;
    }

    .personal-infrm-sub-head {
        text-align: center;
    }

    .account__pic {
        margin-right: 0;
    }

    .first-last-name-wrapper {
        grid-template-columns: repeat(1,1fr);
        gap: 0;
    }

    .company-info-sub-head {
        text-align: center;
    }

    .dealer-box {
        padding: 0;
    }

    .mt-sm-20 {
        margin-top: 20px !important;
    }

    .my-sm-20px {
        margin: 20px 0 !important;
    }

    .account-membership-aff {
        color: #100C20 !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 120%;
        text-align: left !important;
        margin-bottom: 32px !important;
    }

    .membership-icons {
        gap: 13px 23px;
    }

    .pd-0 {
        padding: 0 !important;
    }

    .address-payment {
        padding: 0;
    }

        .address-payment h3 {
            margin-top: 0px;
            color: #100C20;
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            line-height: 120%;
        }

    .address-box {
        margin-top: 20px;
        padding: 12px 24px;
    }

    .address-list {
        padding: 0;
        padding-bottom: 8px;
    }

    .btn-edit {
        padding: 0;
    }

    .btn-delete {
        padding: 0;
    }

    .sub-form-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

    .edit-add .modal-header1 {
        padding: 30px 0 5px 0;
    }

    .modal-header1 .close {
        right: 0;
    }

    .edit-add .modal-title {
        font-size: 16px;
        font-weight: 700;
    }

    .past-issue-library-box {
        margin: 0 0 24px 0;
    }

    .past-issue-library-list {
        grid-template-columns: repeat(2,1fr);
    }

    .digital-media {
        padding: 10px 0
    }

    .publications-text {
        color: #433E3F;
        font-weight: 600;
        line-height: 120%;
        margin-bottom: 16px;
    }

    .city-name {
        margin: 0;
    }

    .address-list {
        margin-bottom: 10px;
    }

    #footer p {
        color: #BFB8DF !important;
    }
}


@media (max-width: 450px) {

    #myTab {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .form-control {
        font-size: 16px !important;
    }

    input[type="text"],
    input[type="search"],
    textarea {
        font-size: 16px !important;
    }

    .nav-item-button {
        font-size: 14px !important;
        padding: 12px !important;
        width: 100%;
    }

    .nav-tabs li .nav-link {
        font-size: 14px !important;
        padding: 12px !important;
        width: 100%;
    }

    .mobile-header {
        height: 65px;
    }

    .event-date-range {
        font-size: 18px;
    }
}

@media only screen and (max-width: 320px) {
}

.owl-carousel .owl-nav button.owl-next::before,
.owl-carousel .owl-nav button.owl-prev::before {
    font-family: fontawesome !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    position: relative !important;
    background: #291C64 !important;
    padding: 15px !important;
    border-radius: 50% !important;
    color: #fff !important;
    opacity: 0.8 !important;
}

.owl-carousel .owl-nav button.owl-next::before {
    content: "\f061" !important;
}

.owl-carousel .owl-nav button.owl-prev::before {
    content: "\f060" !important;
}

.owl-carousel .owl-nav button.owl-next {
    right: 13px !important;
}

.popular-videos .owl-carousel .owl-nav button.owl-next {
    right: 0 !important;
}

.btn-outline-primary {
    background-color: #2DA5A8;
    border-radius: 12px;
    font-weight: bold;
    padding: 11px 24px;
    color: #fafafa;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    border: none;
    outline: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

    .btn-outline-primary p {
        color: #fafafa;
    }

/* Vertical Product Carousel Styles */
.vpc-product-carousel {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.vpc-main-container {
    position: relative;
}

/* Desktop Layout Styles */
.vpc-desktop-layout {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.vpc-thumbnails-column {
    flex-shrink: 0;
}

.vpc-thumbnails-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vpc-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    z-index: 2;
}

.vpc-nav-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.vpc-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vpc-thumbnails-list {
    height: 400px; /* 4 thumbnails * 70px height */
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
}

.vpc-thumbnails-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.vpc-thumbnail-item {
    width: 84px;
    height: 94px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #E3E3E3;
}

.vpc-thumbnail-item:hover {
    border-color: #ddd;
    background: #f0f0f0;
}

    .vpc-thumbnail-item.active {
        background: transparent;
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
        border-radius: 6px;
        border: 1.5px solid #35C2C5;
    }

.vpc-thumbnail-img {
    width: 100%;
    height: 100%; 
    transition: transform 0.3s ease;
}

.vpc-thumbnail-item:hover .vpc-thumbnail-img {
    transform: scale(1.05);
}

.vpc-large-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vpc-large-image-container {
    width: 428px;
    height: 484px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vpc-large-image {
    width: 100%;
    height: 100%; 
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: fill;
}

.vpc-large-image:hover {
    transform: scale(1.02);
}

/* Mobile Layout Styles */
.vpc-mobile-layout {
    display: none;
    flex-direction: column;
    gap: 56px;
    align-items: center;
}

.vpc-mobile-large-image {
    width: 100%;
    max-width: 438px;
    display: flex;
    justify-content: center;
}

.vpc-mobile-large-img {
    width: 438px;
    height: 565px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.vpc-mobile-large-img:hover {
    transform: scale(1.02);
}

.vpc-mobile-thumbnails {
    width: 100%;
    max-width: 438px;
}

.vpc-mobile-thumbnails-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vpc-mobile-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex-shrink: 0;
    z-index: 2;
}

.vpc-mobile-nav-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.vpc-mobile-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vpc-mobile-thumbnails-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    padding: 4px 0;
    width: 100%;
    max-width: 100%;
}

.vpc-mobile-thumbnails-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.vpc-mobile-thumbnail-item {
    width: 84px;
    height: 94px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #E3E3E3;
}

    .vpc-mobile-thumbnail-item:hover {
        border-color: #ddd;
        background: #f0f0f0;
    }

    .vpc-mobile-thumbnail-item.active {
        background: transparent;
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
        border-radius: 6px;
        border: 1.5px solid #35C2C5;
    }

.vpc-mobile-thumbnail-img {
    width: 100%;
    height: 100%; 
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.vpc-mobile-thumbnail-item:hover .vpc-mobile-thumbnail-img {
    transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .vpc-desktop-layout {
        display: none;
    }
    
    .vpc-mobile-layout {
        display: flex;
    }

    .vpc-mobile-large-img {
        width: 100%;
        max-width: 438px;
        max-height: 565px;
        object-fit: fill;
    }
    
    .vpc-mobile-thumbnails {
        max-width: 100%;
    }
    
    /* Limit to 4 thumbnails visible on tablet */
    .vpc-mobile-thumbnails-container {
        width: calc(5 * 84px + 3 * 8px); /* 4 thumbnails (60px + 8px gap) + 3 gaps */
        max-width: 100%;
        margin: 0 auto;
    }
    
    .vpc-mobile-thumbnail-item {
        width: 84px;
        height: 94px;
        padding: 8px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .vpc-mobile-layout {
        gap: 28px;
    }

    .vpc-mobile-large-img {
        max-width: 230px;
        max-height: 275px; 
    }
    
    /* Limit to 3 thumbnails visible on mobile */
    .vpc-mobile-thumbnails-container {
        width: calc(4 * 84px + 2 * 8px); /* 3 thumbnails (50px + 8px gap) + 2 gaps */
        max-width: 100%;
        margin: 0 auto;
    }

    .vpc-mobile-thumbnail-item {
        width: 65px;
        height: 75px;
        padding: 8px;
        flex-shrink: 0;
    }
    
    .vpc-mobile-nav-btn {
        width: 28px;
        height: 28px;
    }
}

/* Smooth transitions for all interactive elements */
.vpc-product-carousel * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
