@font-face {
    font-family: "Inter-Regular";
    src: url("../fonts/Inter-Regular.ttf") format("ttf"),
        url("../fonts/Inter-Regular.ttf") format("ttf");
    font-style: normal;
    font-weight: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter-Regular", "Source Sans Pro", sans-serif;
    /* color:inherit; */
    font-size: 99%;
}
a:hover {
    color: #000;
}

@media (min-width: 0px) and (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 10000px) {
    .hidden-web {
        display: none;
    }
}

#center,
#end,
#menuButton,
:host([loading_]) paper-progress {
    opacity: 1;
    visibility: hidden !important
    ;
}

#toolbar {
    align-items: center;
    background-color: var(--viewer-pdf-toolbar-background-color);
    color: #fff;
    display: none;
    height: var(--viewer-pdf-toolbar-height);
    padding: 0 16px;
}

html,
body {
    scroll-behavior: smooth;
    /* font-family: 'Source Sans Pro', sans-serif; */
    width: 100%;
    height: 100%;
}
h1,
h2,
h3 {
    font-weight: 600;
}
.h3,
h3 {
    font-size: 1.4rem;
}
h5 {
    margin-bottom: 0;
}
/* ---------------
    NAVIGATION BAR
-------------------*/
.rw0 {
    margin-left: 0;
    margin-right: 0;
}
.rw1 {
    margin-right: -5px;
    margin-left: -5px;
}
.lr {
    padding-left: 0;
    padding-right: 0;
}
.lr1 {
    padding-left: 5px;
    padding-right: 5px;
}

.header {
    background: #fff;
    width: 100%;
    /* padding: 5px; */
    /* max-height: 60px; */
    position: fixed;
    top: 0;
    z-index: 999;
    box-shadow: 1px 1px 4px rgb(237, 236, 236);
    /* padding: 10px 0; */
}

.logos {
    max-height: 60px;
    padding: 20px 0;
    display: block;
}

.logos img {
    position: relative;
    /* max-height: 80px; */
    z-index: 6;
}
.menu {
    font-size: 1.4rem;
    /* padding: 7px 10px; */
    margin: 4px 0 0;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #2bc38c;
    display: none;
    cursor: pointer;
}
.navigations {
    width: 100%;
    text-align: right;
    /* margin-top: 6px; */
}
ul.navs {
    padding: 0;
    margin: 0;
}

ul.navs li {
    list-style: none;
    display: inline-block;
    position: relative;
}

ul.navs li a {
    display: block;
    padding: 7px 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    /* border: 1px solid transparent; */
    border-radius: 10px;
    /* margin: 0 10px; */
}
ul.navs li a:hover {
    /* background: #1a5292; */
    text-decoration: none;
    /* border: 1px solid #00B17A; */
    color: #00b17a;
}
ul.navs li a.actives {
    /* background: #1a5292; */
    text-decoration: none;
    text-align: center;
    border: 1px solid #00b17a;
    background: #00b17a;
    background: linear-gradient(#34d6a4, #00b17a);
    color: #fff;
}

.light-container {
    background: #fff;
    width: 100%;
    box-shadow: 1px 1px 4px rgb(237, 236, 236);
}

.explore {
    border: none;
    color: white;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    border-radius: 12px;
    cursor: pointer;
}

.explore1 {
    background-color: #edfff8;
    color: #00b17a;
    border: 2px solid #00b17a;
}

.explore1:hover {
    background-color: #00b17917;
    color: white;
}


.search-button {
    background-color: #00b17a;
    color: #ffff;
    border: 2px solid #00b17a;
}


.back {
    border: none;
    color: white;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    border-radius: 12px;
    cursor: pointer;
}

.back1 {
    background-color: #edfff8;
    color: #00b17a;
    border: 2px solid #00b17a;
}

.back1:hover {
    background-color: #00b17917;
    color: white;
}

ul.navs li ul {
    position: absolute;
    top: 110%;
    margin: 0;
    padding: 0;
    background: #fff;
    display: none;
    opacity: 0;
    min-width: 150px;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}
ul.navs li:hover ul {
    display: block;
    opacity: 1;
    top: 100%;
    transition: all 0.5s ease-in-out;
}

ul.navs li ul li {
    list-style: none;
    display: block;
}
ul.navs li ul li a {
    display: block;
    text-decoration: none;
    text-align: left;
    color: #fff;
    padding: 0px 10px;
    border-bottom: 1px solid #153e6e;
}
ul.navs li ul li a:hover {
    background: #ec6608;
    color: #fff;
}
/* ------------- */

/* ---------hero section--------- */
.hero-section {
    position: relative;
    background-color: #fff;
    background-position: top center;
    background-size: cover;
    width: 100%;
    min-height: 40vh;
    display: block;
    transition: all 0.9s ease-in-out;
}
.hero-left {
    position: relative;
    height: 100vh;
    width: 100%;
}
.hero-conts,
.hero-corporate {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.hero-corporate {
    background-color: rgba(241, 241, 241, 0.4);
    padding: 13% 30px;
    backdrop-filter: blur(11.3843px);
}
.hero-conts h1 {
    font-weight: 900;
    font-size: 2.9vw;
    margin: 20px 0;
    line-height: 1.2;
    color: #0c2b3b;
}
span.greeny,
.green-title {
    color: #00b17a;
}
.green-info {
    color: #00b17a;
    text-decoration: underline;
}
.gray-title {
    color: #555555;
}
.gray-title {
    font-weight: 600;
}
.gray-small {
    font-size: 18px;
    color: #0C2B3B99;
}

.green-title {
    font-weight: 600;
}

.black-title {
    color: #000;
    font-weight: 600;
}
.undelined-title {
    position: relative;
    font-size: 1.7rem;
    line-height: 1.2;
    padding: 7px 0;
    margin: 5px 0 10px;
}
.undelined-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 60px;
    height: 3px;
    background: #00b17a;
    border-radius: 5px;
}
.btn {
    border: transparent;
}
.btn-green,
.btn-white {
    padding: 8px 35px;
    text-align: center;
    color: #fff;
    font-weight: 200;
    background-color: #00b17a;
    text-decoration: none;
}

.btn-announcements {
    padding: 15px 39px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    background-color: #00b17a;
    text-decoration: none;
    font-size: 19px;
    border-radius: 5px;
}

.btn-white {
    background-color: #fff;
    color: #00b17a;
}
.animated-video {
    min-width: 100%;
    min-height: 100vh;
    position: relative;
}
.animated-video video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}
/* -------------------------- */

.section {
    position: relative;
    padding: 4% 0;
    background-color: #fff;
    background-size: cover;
    background-position: center;
}
.gray-section {
    background-color: #f6f6f6;
    padding: 2% 0;
}
.green-section {
    background-color: #00b17a;
    color: #fff;
    background-size: cover;
}
/* .palegreen-section1{background-color: #f0fffa;color:#fff; background-size: 100%;} */
.palegreen-section {
    background-color: #f0fffa;
    color: #fff;
}
.dark-section {
    background-color: #0b212d;
    color: #fff;
}
/* ------title bar --------*/
.title-bar {
    padding: 20px 2px;
    margin-top: 20px;
}
.title-bar .title {
    font-size: 1.3rem;
}
.title-bar .lg-title {
    font-size: 2.3rem;
    font-weight: 800;
}
.title-bar a {
    padding: 4px 2px 2px;
    text-decoration: none;
    display: inline-block;
    color: #444;
    border-bottom: 1px solid #444;
}
.title-bar a:hover {
    padding: 4px 2px 2px;
    text-decoration: none;
    display: inline-block;
    color: #00b17a;
    border-bottom: 1px solid #444;
}

/* -------Features------ */
.feature-lg {
    padding: 10px 5px;
}
.feature-lg h2,
.feature-lg h3,
.feature-lg h4 {
    padding: 15px 0 5px;
    line-height: 1.1;
}
.feature-left,
.feature-center,
.feature-carousel {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 0 0 5px;
    padding: 20px;
}
.feature-center,
.feature-carousel {
    text-align: center;
}
.feature-left .img,
.feature-center .img {
    margin: 10px auto;
    display: inline-block;
    padding: 10px;
    position: relative;
    transform: scale(1);
    transition: all 0.5s ease;
}
.feature-left .img img,
.feature-center .img img,
.feature-carousel .img img {
    height: 50px;
    width: auto;
}
.feature-left:hover .img,
.feature-center:hover .img {
    transform: scale(1.3) rotate(10deg);
    transition: all 0.5s ease;
}
.feature-left .icons,
.feature-center .icons {
    font-size: 1.7rem;
    width: 50px;
    height: 50px;
    line-height: 51px;
    margin: 10px 0;
    display: inline-block;
}
.feature-left .title,
.feature-center .title {
    line-height: 1.2;
    font-size: 1.3rem;
    font-weight: 500;
}
.feature-left .title {
    font-weight: 600;
}
.feature-left p {
    line-height: 1.1;
    font-size: 1rem;
}
.app-feature {
    display: block;
}
.app-feature .title {
    display: block;
    font-size: 1.5rem;
    line-height: 1.2;
    position: relative;
    color: inherit;
    padding: 7px 0;
    font-weight: 600;
    margin: 15px 0;
}
.app-feature .title:before {
    position: absolute;
    left: 0;
    top: 100%;
    content: "";
    width: 25%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
}
.app-feature p {
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 300;
    color: inherit;
}
.app-feature a {
    text-decoration: none;
}
.app-feature a img {
    height: 35px;
}
.app-feature-banner {
    margin-top: -50px;
    position: relative;
    transition: all 0.5s ease;
}
.app-feature-banner img {
    max-width: 90%;
}
/* ------------------ */
.packages {
    display: block;
    padding: 15px;
    background: #fff;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adjust values based on your preference */
    border-radius: 10px; 
    transition: box-shadow 0.3s ease; 

 
    &:hover {
        box-shadow: 0 0 0 1px #2BC38C; 
    }
}


.pack-active {
    border-color: #2BC38C !important;
}




.pack-header {
    display: inline-flex;
    min-height: 60px;
}
.pack-icon {
    min-width: 45px;
    height: 45px;
    margin-top: 5px;
    line-height: 45px;
    text-align: center;
    font-size: 1.6rem;
    background: #00b17a;
    color: #fff;
    border-radius: 50%;
}

/* PACKAGES/BUNDLES */


.pack-heading {

    text-align: center;
    color: #00b17a;
    font-size: 1.2rem;
    width: 100%;
    font-weight: none;
    padding: 3px;
}
.pack-body {
    display: block;
}
.pack-body-head {
    display: inline-block;
    text-align: center;
    font-size: 1.9rem;
    width: 100%;
    font-weight: 600;
    padding: 6px;
}


.pack-head-new {
    display: inline-block;
    text-align: center;
    font-size: 1.9rem;
    width: 100%;
    font-weight: 600;
    padding: 6px;
}


.pack-list {
    padding: 10px 5px;
    min-height: 100px;
}
.pack-list ul {
    margin: 0;
    padding: 0;
}
.pack-list ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    margin-bottom: 3px;
    color: #777;
}
.pack-list ul li:before {
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    content: url("../images/check.svg");
    color: #00b17a;
    width: 0.1rem; 
    height: 0.1rem;
}
.pack-btn {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding: 10px 17px;
    display: block;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(#34d6a4, #00b17a);
    border: 0;
    width: 100%;
}
.pack-btn:hover {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#00b17a, #34d6a4);
}
.outline_pack-btn {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding: 10px 17px;
    display: block;
    color: #00b17a;
    border: 2px solid #00b17a;
    border-radius: 5px;
    background: transparent;
    width: 100%;
}
.outline_pack-btn:hover {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#00b17a, #34d6a4);
    border: 0;
}
.tokenapply-btn {
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    padding: 10px 17px;
    display: block;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(#34d6a4, #00b17a);
    border: 0;
    width: 50%;
}
.tokenapply-btn:hover {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#00b17a, #34d6a4);
}
.promocode_input-group{
    border: 1px solid #ced4da;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 0.25rem;
}
.promocode_input-group-text{
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    border: none;
}
/* ------------------ */
/* ----flex features-- */
.features {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}
.flex-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
/* ------------------- */

.img2 {
    display: block;
    object-fit: fill;
    margin: 0 auto;
    max-width: 100%;
}
.img2 {
    height: 200px;
}

.storize {
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.storize {
    height: 200px;
}

.storize1 {
    object-fit: cover;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.storize1 {
    height: 150px;
}

.season-episode {
    object-fit: cover;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.season-episode {
    border-radius: 10px;
    height: 60px;
    width: 60px;
}




.feature-paper-home {
    display: block;
    border: 1px solid #e6e6e6;
    object-fit: fill;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s ease;
}
.feature-paper-home img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.feature-paper-home .img {
    height: 350px;
    width: 350px;
}
.feature-paper-home .title,
.feature-paper-home .title-s {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 5px;
    line-height: 1.1;
    min-height: 9px;
}
.feature-paper-home .title-s {
    font-size: 0.8rem;
}
.feature-paper-home .caption {
    font-size: 0.8rem;
    padding: 1px 5px 5px;
}
.feature-paper-home .date {
    display: block;
    font-size: 0.8rem;
    padding: 0 5px;
    color: #888;
}
.feature-paper-home .read {
    opacity: 0;
    position: absolute;
    transform: scale(0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #00b17a;
    background: rgb(74 74 74 / 45%);
    transition: all 0.3s ease;
    backdrop-filter: blur(03.3843px);
}
.feature-paper-home:hover .read {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}












.feature-paper {
    display: block;
    border: 1px solid #e6e6e6;
    object-fit: fill;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s ease;
}
.feature-paper img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.feature-paper .img {
    height: 350px;
}
.feature-paper .title,
.feature-paper .title-s {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 5px;
    line-height: 1.1;
    min-height: 9px;
}
.feature-paper .title-s {
    font-size: 0.8rem;
}
.feature-paper .caption {
    font-size: 0.8rem;
    padding: 1px 5px 5px;
}
.feature-paper .date {
    display: block;
    font-size: 0.8rem;
    padding: 0 5px;
    color: #888;
}
.feature-paper .read {
    opacity: 0;
    position: absolute;
    transform: scale(0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #00b17a;
    background: rgb(74 74 74 / 45%);
    transition: all 0.3s ease;
    backdrop-filter: blur(03.3843px);
}
.feature-paper:hover .read {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.feature-paper2 {
    display: block;
    padding: 10px;
    
    border-radius: 10px;
    position: relative;
    transition: all 0.5s ease;
}
.feature-paper2 img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.feature-paper2 .img {
    height: 350px;
}
.feature-paper2 .title,
.feature-paper2 .title-s {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 5px;
    line-height: 1.1;
    min-height: 9px;
}
.feature-paper2 .title-s {
    font-size: 0.8rem;
}
.feature-paper2 .caption {
    font-size: 0.8rem;
    padding: 1px 5px 5px;
}
.feature-paper2 .date {
    display: block;
    font-size: 0.8rem;
    padding: 0 5px;
    color: #888;
}
.feature-paper2 .read {
    opacity: 0;
    position: absolute;
    transform: scale(0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #00b17a;
    background: rgb(74 74 74 / 45%);
    transition: all 0.3s ease;
    backdrop-filter: blur(03.3843px);
}
.feature-paper2:hover .read {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.read a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    background-color: #00b17a;
    border-radius: 6px;
    color: #fff;
    font-weight: 200;
}
.feature-testmonial {
    position: relative;
    padding: 10px;
}
.feature-testmonial .profile {
    position: relative;
    display: flex;
}
.feature-testmonial .profile .img {
    display: inline-flex;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #888;
    background-size: cover;
    background-position: top center;
}
.feature-testmonial .profile .name {
    position: relative;
    display: inline-flex;
    padding: 5px 10px 0;
}
.feature-testmonial .profile .name .prof-name {
    line-height: 1.3;
}
.feature-testmonial .profile .handle {
    position: relative;
    display: block;
    font-size: 0.7rem;
    color: #999;
    line-height: 1;
}
.feature-testmonial .profile .icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    color: #1d80f1;
}
.feature-testmonial .conts {
    position: relative;
    display: block;
    padding: 20px 0;
    color: #777;
    font-size: 0.9rem;
    line-height: 1.2;
}
.feature-left {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #f6f6f6;
    border-radius: 3px;
}
.feature-left .icon {
    border-radius: 3px;
    line-height: 1;
    display: inline-block;
    background-color: #2bc38c38;
    width: 95%;
    padding-top: 2%;
    padding-left: 3%;
}
.feature-left .title {
    margin-top: 40px;
    font-size: 1.4rem;
    color: #333;
    padding-left: 2%;
    padding-bottom: 2%;
}
.feature-left .content {
    font-size: 1rem;
    line-height: 1.3;
    color: #555;
    text-align: left;
    padding-left: 2%;
    padding-bottom: 2%;
}
/* ------------------ */
.rifaly-phone,
.input-phone {
    margin: 10px 0 20px;
    color: #333;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"] {
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 6px;
    border-color: transparent;
    border: 1px solid #e5e5e5;
}
.get-app,
.get-app-grn {
    background: #eee;
    color: #00b17a;
    border-color: transparent;
    margin-left: 7px;
    padding-left: 16px;
    padding-right: 16px;
}
.get-app-grn {
    background: #00b17a;
    color: #fff;
}
/* ----------------- */
.btn-anim {
    position: relative;
    overflow: hidden;
}
.btn-anim:before {
    position: absolute;
    top: 0;
    left: -130%;
    width: 50%;
    height: 100%;
    content: "";
    background: rgba(225, 225, 225, 0.7);
    transition: all 0.5s ease;
}
.btn-anim:hover::before {
    left: 130%;
}
/* --------Tab nav------ */
.nav-tabs .nav-link {
    color: #fff;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover {
  border: none;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #00b17a;
    border-color: #00b17a #03a145 rgb(4, 193, 95);
    border-radius: 6px;
}



.nav-tabs {
    border: 0.05rem solid #dee2e6;
    border-radius: 6px;
    padding:5px;
}
.tab-inner {
    padding: 20px 10px;
}
/* --------Blog Section--------- */
.blog-feature {
    position: relative;
    padding: 4px 6px 6px;
    border-radius: 5px;
    transition: all 0.5s ease;
}
.blog-feature:hover {
    position: relative;
    background: #f6f6f6;
    transition: all 0.5s ease;
}
.blog-feature .img-bg {
    position: relative;
    height: 250px;
    width: 100%;
    margin: 5px 0 10px;
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}
.blog-feature .category {
    font-size: 0.8rem;
    font-weight: 500;
    color: #777;
    margin-right: 3px;
}
.blog-feature .date {
    font-size: 0.8rem;
    font-weight: 300;
    color: #888;
}
.blog-feature .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    padding: 7px 0;
    transition: all 0.5s ease;
}
.blog-feature:hover .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00b17a;
    line-height: 1.2;
    padding: 7px 0;
    transition: all 0.5s ease;
}
.blog-feature .caption {
    font-size: 1rem;
    font-weight: 300;
    color: #444;
    line-height: 1.3;
    padding: 3px 0;
}
.blog-feature .read {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
    padding: 3px 0;
    display: block;
    margin: 15px 0 10px;
    text-decoration: none;
}
.blog-feature .read .fa {
    font-size: 1rem;
    color: #00b17a;
    line-height: 1.1;
    padding-left: 5px;
    transition: all 0.5s ease;
}
.blog-feature .read:hover .fa {
    font-size: 1rem;
    color: #00b17a;
    line-height: 1.1;
    padding-left: 25px;
    transition: all 0.5s ease;
}
/* --------------- */
/* ---------about-feature----- */

/* -------text-size-------- */
.xl-txt {
    font-size: 3rem;
    line-height: 2;
}
.lg-txt {
    font-size: 2.3rem;
    line-height: 1.3;
}
.md-txt {
    font-size: 1.5rem;
    line-height: 1.2;
}
.sm-txt {
    font-size: 1rem;
    line-height: 1.15;
}
.xs-txt {
    font-size: 0.8rem;
    line-height: 1.1;
}
/* --------text colors----- */
.green-text {
    color: #2bc38c;
}
.white-text {
    color: #fff;
}
.dark-text {
    color: #0b212d;
}
.black-text {
    color: #222;
}
/* ---background-color---- */
.green-bg {
    background-color: #00b17a;
}
.white-bg {
    background-color: #fff;
}
.dark-bg {
    background-color: #0b212d;
}
.black-bg {
    background-color: #222;
}
/* ------round border----------- */
.border-radius-50 {
    border-radius: 50%;
}
.border-radius-25 {
    border-radius: 25px;
}
.border-radius-10 {
    border-radius: 10px;
}
.border-radius-5 {
    border-radius: 5px;
}
/* ---------forms----- */
label {
    margin-top: 0.85rem;
    color: #555;
}
.align-right {
    display: block;
    text-align: right;
}
.align-center {
    display: block;
    text-align: center;
}
.align-left {
    display: block;
    text-align: left;
}
/* -------newsletter---- */
.newsletter-wraper {
    position: relative;
    padding: 2% 0;
    background-color: #fff;
}
.newsletter-wraper:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #f6f6f6;
    z-index: 1;
}
.newsletter {
    position: relative;
    padding: 3% 2%;
    box-shadow: 1px 1px 5px #d5d3d3;
    z-index: 100;
}
/* ---------Footer---- */
.footer {
    position: relative;
}
.footer .title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 10px 0;
    line-height: 1.1;
}
.footer .logo {
    position: relative;
    margin-bottom: 10px;
}
.footer .logo img {
    max-height: 50px;
}
.footer .caption {
    color: #777;
    line-height: 1.4;
    font-size: 1rem;
    padding: 10px 0 5px;
}
.footer .social {
    margin: 10px 0;
}

.footer .social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    color: #00b17a;
    margin: 10px 7px 10px 0;
    box-shadow: 1px 2px 9px #ccc;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.footer .social a:hover {
    background-color: #00b17a;
    color: #fff;
}

.footer .nav {
    display: block;
}
.footer .nav a {
    display: block;
    text-decoration: none;
    padding: 6px 0;
    color: #555;
    font-size: 1rem;
    transition: all 0.5s ease;
}
.footer .nav a:hover {
    display: block;
    text-decoration: none;
    padding: 6px 0;
    color: #00b17a;
    font-size: 1rem;
    transition: all 0.5s ease;
}
.footer-end {
    display: block;
    padding: 10px 10px 20px;
    color: #888;
    font-size: 1rem;
    font-weight: 200;
    background: #f6f6f6;
}
/* ------------------- */
.play-btn {
    position: relative;
    transform: scale(1);
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 1px solid #00b17a;
    border-radius: 50%;
    text-align: center;
    font-size: 3rem;
    color: #00b17a;
    margin: 10px auto;
    text-decoration: none;
    transition: all 0.5s ease;
}
.play-btn:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    cursor: pointer;
    transform: scale(1);
    min-width: 100%;
    min-height: 100%;
    border: 1px solid #00b17a;
    border-radius: 50%;
}
.play-btn:hover {
    position: relative;
    transform: scale(1.2);
    color: #00b17a;
    text-decoration: none;
    transition: all 0.5s ease;
}
.play-btn:hover::after {
    transform: scale(1.7);
    opacity: 0;
    transition: all 0.5s ease;
}
.pop-video-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
}
.pop-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    min-height: 300px;
    height: 70vh;
    background: #00b17a;
    padding: 4px;
    background: linear-gradient(to right, #00b17a, #0b212d);
}
.pop-cancel {
    position: absolute;
    top: 5%;
    right: 4%;
    font-size: 1.7rem;
    color: #00b17a;
    cursor: pointer;
    padding: 4px 10px 8px;
    line-height: 1;
    border: 1px solid #00b17a;
    border-radius: 50%;
    display: inline-block;
    transform: scale(1);
    transition: all 0.5s ease;
}
.pop-cancel:hover {
    transform: scale(1.3);
    transition: all 0.3s ease;
}
/* ------------------- */
#the-canvas {
    width: 100%;
}
/* ------------------- */
.paginate {
    padding: 5px 10px;
    background-color: #eee;
    margin: 10px 0;
}
.paginate a {
    padding: 10px;
    background: #ddd;
    text-align: center;
    margin: 4px 1px;
}
/* ------------------- */
.section {
    padding: 3% 0;
}
/* ------------- */
/* ------------- */
.auth-hero {
    position: fixed;
    height: 98vh;
    padding: 10px;
}
.hero-in {
    position: relative;
    top: 20%;
    transform: translateY(-40%);
    max-width: 500px;
    margin-left: -60px;
}
.hero-in .title {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.1;
    padding: 20px 0;
    font-weight: 900;
}
.hero-in .caption {
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 35px;
    font-weight: 500;

}
/* --------------*/
/* ------------- */
.partition {
    display: inline-flex;
}
.p-left,
.p-right {
    width: 58vw;
    position: fixed;
    top: 0;
    min-height: 100vh;
    /* background-color: #0f1f26; */
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    overflow: hidden;
}
.p-right {
    overflow-y: auto;
    left: 50%;
    background-color: #fff;
}
/* --------------------- */
label {
    margin-top: 0.25rem;
}
.form-control {
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 3px;
    transition: border-color 0s ease-in-out, box-shadow 0s ease-in-out;
}
/* -------------------- */
.send-btn {
    background-color: #00b17a;
    color: #fff;
    border-radius: 5px;
    display: block;
    width: 100%;
}

.pass-btn {
    background-color: #fff;
    color: #00b17a;
    border-radius: 5px;
    border: 1px solid #00b17a;
    border-color: #00b17a;
    display: block;
    width: 100%;
}

.back-btn {
    background-color: #fff;
    color: #00b17a;
    border: 1px solid #00b17a;
    border-color: #00b17a;
    display: block;
    padding: 20px;
}

.google-btn {
    background-color: #00b17a;
    color: #fff;

    border-radius: 5px;
    display: block;
    width: 100%;
}

.btn1 {
    border: 1px solid #bcbcbc;
    background-color: #fff;
    color: black;
    padding: 9px 39px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

.btn2 {
    border: 1px solid #00b17a;
    background-color: #00b17a;
    color: black;
    padding: 9px 39px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.default:hover {
    background: #e7e7e7;
}

.btng {
    border-color: #bcbcbc;
}

.centered-wrap {
    position: relative;
    min-height: 80vh;
    width: 100%;
}
.centered {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
}
.the-form {
    max-width: 100%;
    padding: 20px;
}
/* ------------------- */
.f-pop-up-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(11.3843px);
    z-index: 9999;
    display: none;
}
.f-pop-up {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 350px;
    max-width: 400px;
    min-height: 100px;
    height: auto;
    padding: 14px 20px;
    background: rgb(244, 244, 244);
    border-radius: 5px;
}
.f-pop-cancel {
    position: absolute;
    top: 2%;
    right: 2%;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 4px 10px 8px;
    line-height: 1;
    display: inline-block;
    transition: all 0.5s ease;
}
.f-pop-cancel:hover {
    background: #eee;
}
.show-popup {
    display: block;
    transition: all 0.7s ease-in-out;
}
.popit {
    top: 50%;
    transition: all 0.5s ease-in-out;
}
.hideit {
    display: none;
}
.showmore {
    display: block;
    transition: all 0.5s ease-in-out;
}
/* ------------------ */
.usr-feature {
    display: block;
    padding: 2% 10px;
    position: relative;
    min-height: 200px;
    border-radius: 5px;
}
.grn {
    background-color: #00b17a;
    background-image: url("../images/grn.svg");
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    color: #fff;
}
.brwn {
    background-color: #0c2b3b;
    background-image: url("../images/brwn.svg");
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    color: #fff;
}
.action-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    text-align: center;
    background-color: #eee;
    border-radius: 6px;
    color: #333;
    font-size: 0.8rem;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.refresh-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    text-align: center;
    background-color: transparent;
    border-radius: 6px;
    color: #fff;
    font-size: 0.8rem;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.top-wallet-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    text-align: center;
    background-color: transparent;
    border-radius: 6px;
    color: #fff;
    font-size: 0.8rem;
    display: inline-block;
    text-decoration: none;
    margin: 2px;
    font-weight: bold;
    cursor: pointer;
}
.upgrade-btn {
    mask-position: 59%;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 8px 16px;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    color: #333;
    font-size: 0.7rem;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}
.usr-avatar {
    position: relative;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    /* line-height: 50px; */
    text-align: center;
    color: #eee;
    font-size: 1.3rem;
    background-color: #00b17a;
    display: inline-block;
    /* margin: 20px auto; */
    text-transform: uppercase;
}
.usr-custom-avatar {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #eee;
    font-size: 1.3rem;
    background-color: #00b17a;
    display: inline-block;
    text-transform: uppercase;
    border-color: 2px solid #00b17a;
    padding: 1px;
    object-fit: cover;
}
.drop-item {
    background-color: white;
}
.drop-item:hover {
    background-color: white;
}
.drop-item:active {
    background-color: white;
}

.usr-avatar::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    border: 1px solid #eee;
    border-radius: 50%;
    transform: scale(3.3);
}
.usr-title-xxl {
    font-size: 2.2rem;
    line-height: 1;
    display: block;
    font-weight: 600;
}
.usr-title-xl {
    font-size: 1.6rem;
    line-height: 1;
    display: block;
    font-weight: 600;
}
.usr-title-l {
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    font-weight: 600;
}
.mod-title {
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    font-weight: 400;
}
.usr-subtitle-l {
    font-size: 0.9rem;
    color: #fff;
}
.usr-title-s {
    font-size: 1rem;
    line-height: 1;
    display: block;
    font-weight: 600;
}
.usr-subtitle-s {
    font-size: 0.7rem;
    color: #ddd;
}
/* ----------------- */
.my-tabs {
    position: relative;
}
.my-tabs .nav-tabs .nav-link {
    color: #333;
    border-bottom-width: 5px;
}
.my-tabs .nav-tabs .nav-item.show .nav-link,
.my-tabs .nav-tabs .nav-link.active {
    color: #00b17a;
    background-color: #fff;
    border-color: #fff #fff #00b17a;
    border-radius: 0px;
}
/* ----------------- */
.genres {
    display: inline-flex;
    padding: 5px 30px 5px 10px;
    margin: 10px 7px 0 0;
    position: relative;
    font-size: 1rem;
    color: #555;
    border: 1px solid #555;
    border-radius: 5px;
}
.calcel-gen {
    position: absolute;
    color: #999;
    top: 1px;
    right: 5px;
    padding: 5px;
    cursor: pointer;
}
.calcel-gen:hover {
    color: #00b17a;
}
/* ----------------- */
.switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 55px;
}
.switch input {
    display: none;
}
.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
}
.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 20px;
}
input:checked + .slider {
    background-color: #00b17a;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
/* ----------------- */
/* -----payment form----- */
.wallet-top-up {
    position: relative;
}
.wallet-top-up .form-control {
    /* border: 0; */
    border-bottom: 1px solid #ddd;
}
.wallet-top-up .form-control:hover,
.wallet-top-up .form-control:focus {
    /* border: 0; */
    border-bottom: 1px solid #ddd;
}

.mobile-payment,
.card-payment {
    color: #444;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: left;
    display: block;
}
.mobile-payment p,
.card-payment p {
    padding-top: 10px;
    font-size: 1.2rem;
}
.mobile-payment .fa,
.card-payment .fa {
    font-size: 2rem;
}
.mobile-payment:hover,
.card-payment:hover,
.clicked {
    padding: 20px;
    border: 1px solid #00b17a;
    color: #00b17a;
    cursor: pointer;
    text-align: left;
}

/* OTHER COUNTRIES STYLE */
.other-countries {
    color: #444;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    display: block;
}
.other-countries p {
    padding-top: 10px;
    font-size: 1.2rem;
}
.other-countries .fa {
    font-size: 2rem;
}
.other-countries:hover,
.clicked {
    padding: 20px;
    border: 1px solid #00b17a;
    color: #00b17a;
    cursor: pointer;
    text-align: center;
}

.other-countries-methods {
    color: #444;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    display: block;
}
.other-countries-methods p {
    padding-top: 10px;
    font-size: 1.2rem;
}
.other-countries-methods .fa {
    font-size: 2rem;
}
.other-countries-methods:hover,
.clicked {
    padding: 20px;
    border: 1px solid #00b17a;
    color: #00b17a;
    cursor: pointer;
    text-align: center;
}

.payment-methods {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px 0 2px;
    width: 100%;
}
.mobile-pay,
.card-pay,
.other-countries-methods {
    position: relative;
    top: 0;
    width: 100%;
    display: none;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.show-method {
    display: block;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}
.mobo-pay {
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
    padding: 20px 0 1px;
    display: block;
    background: rgb(245, 244, 244);
}
.mobo-pay img {
    margin: 5px auto;
    max-width: 90%;
}
.fill-it {
    border-bottom: 2px solid red;
    color: red;
}
/* ----------------- */

/* APPS DOWNLOAD FOOTER */
.apps-download {
    color: #444;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    display: block;
}
.apps-download p {
    padding-top: 10px;
    font-size: 1.2rem;
}
.apps-download .fa {
    font-size: 2rem;
}
.apps-download:hover,
.clicked {
    padding: 20px;
    border: 1px solid #00b17a;
    color: #00b17a;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 1390px) {
    .hero-section {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-section,
    .hero-section:hover {
        background-size: cover;
    }
    .pillar-bg,
    .pillar:hover .pillar-bg {
        background-size: cover;
    }
    .gallery a img {
        width: 33.3%;
    }
    .feature-paper .img {
        height: 300px;
    }
    .feature-paper2 .img {
        height: 300px;
    }

    .feature-paper-home .img {
        height: auto;
        width: 100px;
    }
    .feature-paper2 .img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 5px 0;
    }
    .logos img {
        max-height: 60px;
    }
    .menu {
        display: inline-block;
    }
    .navigations {
        position: fixed;
        top: 0;
        left: -200%;
        width: 50%;
        min-height: 100vh;
        text-align: left;
        background: #e3e3e3;
        padding: 20px;
        display: block;
        transition: all 0.5s ease-in-out;
        z-index: 9999;
    }
    .shownav {
        left: 0;
        transition: all 0.5s ease-in-out;
    }

    ul.navs li {
        display: block;
    }
    ul.navs li a {
        display: block;
        padding: 12px 10px;
    }
    ul.navs li ul,
    ul.navs li:hover ul {
        position: relative;
        display: block;
        opacity: 1;
        top: 0;
    }

    /* .features{display: block;} */
    /* .flex-box{display: block;} */
    .register-head {
        margin-top: 0;
    }
    .submit-btns {
        padding-top: 0;
        margin-bottom: 20px;
    }
    .pop-video {
        height: 50vh;
    }
    /* ----------- */
    /* .countUp{
        top:15%; right:3%;
        border-radius: 10px;
        width:160px;
    } */
    .countUp #dayss {
        font-size: 2rem;
        font-weight: 700;
        padding: 10px 5px;
    }
    #dayss sup {
        font-size: 0.8rem;
        font-weight: 500;
    }
    .countUp #hourss,
    .countUp #dates {
        font-size: 1rem;
        font-weight: 500;
        padding: 2px;
    }
    .countUp #dates {
        font-size: 0.9rem;
    }
    /* ----------- */
    .hero-section {
        background-attachment: scroll;
    }
    .g-slide {
        height: 300px;
    }
    .hide-qr {
        display: none;
    }
    .sponsa img {
        display: inline-block;
        height: 40px;
        margin: 10px 2px;
    }
    .m-video-box {
        height: 300px;
    }
    .gallery a img {
        width: 50%;
    }
    .features,
    .flex-box {
        display: block;
    }
    /* -------------- */
    .partition {
        display: block;
        height: auto;
    }
    .p-left,
    .p-right {
        width: 100vw;
        position: absolute;
    }
    .p-left {
        min-height: 300px;
    }
    .p-right {
        height: auto;
        left: 0;
        top: 200px;
    }
    /* -------------- */
    .auth-hero {
        height: 200px;
        position: relative;
    }
    .hero-in .title {
        color: #fff;
        font-size: 1.2rem;
    }
    .hero-in .caption {
        color: #fff;
        font-size: 0.8rem;
    }
    .partition {
        display: block;
        height: auto;
    }
    .p-left,
    .p-right {
        width: 100vw;
        position: absolute;
    }
    .p-left {
        min-height: 300px;
    }
    .p-right {
        height: auto;
        left: 0;
        top: 200px;
    }
    .the-form {
        max-width: 100%;
        padding: 15px;
    }
    /* -------------- */
    .feature-paper .img {
        height: 280px;
    }
    .feature-paper2 .img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    * {
        font-size: 96%;
    }
    .logos img {
        max-height: 30px;
    }
    .menu {
        padding: 0 10px;
    }
    .hero-section {
        min-height: 300px;
    }
    .hero-left {
        height: 70vh;
    }
    .hero-conts h1 {
        font-size: 9.9vw;
    }
    .animated-video {
        display: none;
    }
    .m-video-box {
        height: 250px;
    }
    .centered {
        position: relative;
        top: 5%;
        transform: none;
        width: 100%;
    }
    .popup-box {
        position: relative;
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
    }
    .pop-video {
        width: 90vw;
        height: 35vh;
    }
    /* .reg-img{display: none;} */
    .play-btn {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }
    .inner-hero::before {
        left: -40%;
        width: 80%;
    }
    .inner-hero {
        min-height: 240px;
    }
    .header-1 {
        font-size: 1.6rem;
    }
    .titles {
        font-size: 1rem;
    }
    .app-feature-banner {
        margin-top: 10px;
    }
    .feature-paper .img {
        height: 200px;
    }
    .feature-paper2 .img {
        height: 200px;
    }
}

/* REVIEWS CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.container3 {
    /* width: 100%;
    height: 100vh; */
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

k2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.description {
    text-align: center;
    width: 43%;
}

.clientImage {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.clientImage span {
    margin-left: 10px;
}

.clientImage img {
    width: 40px;
}

.reviewSection {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.reviewItem {
    width: 300px;
    padding: 10px;
    margin: 1rem;
    cursor: pointer;
    border-radius: 10px;
    background-color: #00b17a;
    border: 1px solid #00b17a;
    transition: all 0.2s linear;
}

.reviewItem:hover {
    border-color: #00b17a;
    transform: scale(1.01);
    background-color: #090921;
    box-shadow: 0 0px 5px 0px #cbc0c0;
}

.top {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.top ul {
    display: flex;
    list-style: none;
}

.top ul li {
    padding-left: 4px;
}

article p {
    font-size: 15px;
    font-weight: 100;
    margin-bottom: 1rem;
    font-family: system-ui;
}

@media screen and (max-width: 700px) {
    .container {
        height: auto;
    }

    .description {
        width: 90%;
    }
}

@media screen and (max-width: 375px) {
    .reviewSection {
        padding: 0;
    }

    .reviewItem {
        width: 100%;
    }

    .clientImage {
        margin-bottom: 0.6rem;
        border-radius: 10px;
    }

    .imagerad {
        border-radius: 10px 10px;
    }

    .top {
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}

#center,
#end,
#menuButton,
:host([loading_]) paper-progress {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* RIBBON CODE BEGIN (SLIDING PAPERS) - DAVID BILAZA */

/* common */
.ribbon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
}
.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: 0;
    content: "";
    display: block;
    border: 0px solid #e2b93b;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 195px;
    background-color: #e2b93b;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    font: 700;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
}

/* top right*/
.ribbon-top-right {
    top: -1px;
    right: -1px;
}
.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: 0px;
    top: 18px;
    transform: rotate(45deg);
}

/* LINE SEPARATOR LOGIN */

.divider-with-text {
    color: rgb(136, 136, 136);
    width: 84%;
    margin-left: 30px;
    font-weight: 300;
    font-size: 12px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-flow: row;
    align-items: center;
    text-align: center;
    height: 21px;
}

.divider-with-text hr {
    flex-grow: 1;
}

.divider-with-text span {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* WHATSAPP BUTTON */

.timer-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    /* display: flex; */
    align-items: center;
}


.whatsapp-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    /* display: flex; */
    align-items: center;
}

.explore6 {
    border: none;
    color: white;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 17px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    border-radius: 20px;
    cursor: pointer;
}

.whatsapp-button {
        background-color: #0C2B3B;
        color: #fff;
        border: 2px solid #0C2B3B;
    }

    /* Customize the WhatsApp icon */
.whatsapp-icon {
    display: inline-block;
    font-size: 22px; 
    color: #25D366; 
    transition: transform 0.3s, color 0.3s; 
}

/* Apply styles when hovering over the icon */
.whatsapp-icon:hover {
    color: #128C7E; 
    transform: scale(1.2); 
}



.welcome-text {
    margin-left: 10px;
    color: #000;
    font-size: 16px;
}

@media (max-width: 767px) {
    .welcome-text {
        display: none;
    }
}
.dropdown-item a:hover {
    color: #000;
}

.season-number-label{
    width: 40px; 
    height: 40px; 
    background-color: #efefef; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-left:10px;
}

.listen a{
    text-decoration: none;
}
.btn-listen{
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    background-color: #00b17a;
    border-radius: 6px;
    color: #fff;
    font-weight: 200;
}
.btn-listen:hover{
    color: #00b17a;
}

#closeToggle {
    display: none;
    cursor: pointer;
}

/* Media query to hide "X" icon on screens wider than 768px */
@media screen and (min-width: 769px) {
    #closeToggle {
        display: none !important; 
    }
}

#menuToggle {
    @media screen and (min-width: 769px) {
        #menuToggle {
            display: none !important; 
        }
    }

    
}

.rounded {
    border-radius: 10px; 
}

/* the sticky player container */
.sticky-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 10px;
    display: none; 
    z-index: 999; 
}


/* responsive iframe */
.responsive-iframe {
    overflow: hidden;
    padding-top: 56.25%; 
    position: relative;
}

.responsive-iframe iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.activate {
    background-color: #00b17a;
}


.nav-link {
    color: #000; 
  }

 
  .nav-link.active {
    background-color: #fff; 
    color: #fff;
  }
  
  .line-paper {
    display: block;
    object-fit: fill;
    padding: 4px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s ease;
}
.line-paper img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.line-paper .img {
    height: 350px;
}
.line-paper .title,
.line-paper .title-s {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 5px;
    line-height: 1.1;
    min-height: 9px;
}
.line-paper .title-s {
    font-size: 0.8rem;
}
.line-paper .caption {
    font-size: 0.8rem;
    padding: 1px 5px 5px;
}
.line-paper .date {
    display: block;
    font-size: 0.8rem;
    padding: 0 5px;
    color: #888;
}
.line-paper .read {
    opacity: 0;
    position: absolute;
    transform: scale(0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #00b17a;
    background: rgb(74 74 74 / 45%);
    transition: all 0.3s ease;
    backdrop-filter: blur(03.3843px);
}
.line-paper:hover .read {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}



#profile-tab.active {
    color: #fff !important;

}
#home-tab.active {
    color: #fff !important;

}

.nsm7Bb-HzV7m-LgbsSe
{
    width: 87% !important;
}

.nsm7Bb-HzV7m-LgbsSe-MJoBVe
{
    width: 87% !important;
}


/* Style the submenu */
.submenu {
    display: none;
   
    top: 100%;
    left: 0;
    
    box-shadow: 0 2px 4px rgb(240, 240, 240);
    
    z-index: 1;
    border-radius: 6px;
}

.submenu li {
    padding: 10px;
}

.submenu a {
    color: white;
}




/* ******************** Style for the custom audio player container ********************/
/* 

/* ******************** Style for the custom audio player container ********************/
/* Style for the custom audio player container */
#audioContainer {
    position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #013a52ff;
        border-top: 1px solid #013a52ff;
        height: 11vh;
        z-index: 999;
        display: flex;
        align-items: center;
        opacity: 1;
}

/* Thumbnail Container */
#thumbnailContainer {
    display: flex;
    align-items: center;
    margin-right: 1vw;
    width: 22%;
    height: auto;
    position: relative; /* Make the container relative to position the button */
    margin-left: 3vw;
    min-width: 12rem;
}

/* Styles for the arrow icon inside the Reopen button */


/* Thumbnail Background */
#thumbnailBackground {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 2%;
    width:20%;
    min-width: 4rem;
    min-height: 4rem;
}


/* Thumbnail Image */
#thumbnail {
    width: 100%;
    height: auto;
    margin-top: 0px;
    border-radius: 5px; /* Match the border-radius for curved edges */
}

/* Text Fields Styling */
#textFields {
    overflow: hidden;
    white-space: nowrap;
    margin-left: 5%;
    width: 70%;
    min-width: 6rem;
}

.story-title,
.publisher-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.publisher-name {
    font-weight: bold; /* Set the company text to bold */
    color: #00b17a;
    font-size: 1.5em;
}

.story-title {
    font-size: 1em;
    margin: 0;
    color: white; /* Set the title text color to white */
    font-weight: normal; /* Reset font weight to normal (optional) */
    animation: marquee-title 10s linear infinite; /* Adjust the duration as needed */
    animation-duration: 10s; /* Set the same duration as in the animation property */
    animation-timing-function: linear;
}

@keyframes marquee-title {
    0% {
        transform: translateX(100%); /* Initial position off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* Move completely off-screen to the left */
    }
}

.narrow-input {
    width: 50px; /* Adjust the width as needed */
}


/* CSS for audio buttons */
#playerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
}

#audioButtons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 20%;
    min-width: 15%;
    margin-right: 10%;
}

#audioButtons button {
    background-color: #013a52ff;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;

}

#audioButtons button:hover {
    color: #00b17a;
}

#previousButton{
    font-size: 1em;
    margin-right: 3%;
}

#nextButton{
    font-size: 1em;
    margin-left: 3%;
}
/* Hover styles for the entire audio container */
#playPauseButton {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#buttonShape {
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    z-index: 1;
    background-color: #00b17a;
}

.icon {
    fill: rgb(255, 255, 255);
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
}

#playButtonIcon,
#pauseIcon {
    display: block;
}

#pauseIcon {
    display: none;
}

#customSeekBar {
    width: 80%;
    min-width: 50%;
    height: 8px;
    background-color: rgb(255, 255, 255);
    position: relative;
    cursor: pointer;
    border-radius: 50px;
    margin-left: 2%;
}

#seekTimeVolumeContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}

#played {
    height: 100%;
    background-color: #00b17a;
}

#thumb {
    width: 18px;
    height: 18px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
}

#timeDisplays {
    margin-left: 2%;
    color: white;
    font-size: 1em;
}

#volumeContainer {
    display: flex;
    align-items: center;
    padding-right: 5px;
    padding-left: 5px;
}

#volumeContainer label {
    margin-right: 1%;
}

#customVolumeContainer {
    position: relative;
    width: 4vw;
    height: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#volumeBar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 5px;
    transform: translateY(-50%);
}

#volumeLevel {
    height: 100%;
    width: 50%;
    background-color: #00b17a;
    border-radius: 5px;
}

#volumeThumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

#volumeicon{
    color: white;
    margin-left: 5px;
}

/*Media queries for the audio player*/
@media only screen and (max-width: 768px) {
    #audioContainer {
        height: 15vh;
    }

    #thumbnailContainer {
        margin-right: 5px;
        margin-left: 10px;
    }

    #thumbnailBackground {
        padding: 5px;
    }

    #textFields {
        margin-left: 5px;
        width: 65%;
    }

    .publisher-name {
        font-size: 1em;
    }

    .story-title {
        font-size: 0.8em;
    }

    #customSeekBar {
        width: 85%;
    }

    #timeDisplays {
        font-size: 0.8em;
    }

    #customVolumeContainer {
        width: 5vw;
    }
}

@media only screen and (max-width: 425px) {
    #audioContainer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #013a52ff;
        border-top: 1px solid #013a52ff;
        height: 11vh;
        z-index: 999;
        display: flex;
        align-items: center;
        opacity: 1;
    }

    #customSeekBar {
    position: absolute;
    top: -9px;
    left: -8px;
    width: 100%;
    height: 8px;
    background-color: rgb(0 177 123);
    cursor: pointer;
    border-radius: 0px;
    }


    #previousButton{
        margin-right: 2px;
    }

    #nextButton{
        margin-left: 2px;
    }

    #audioButtons{
        width: 40%;

    }
    #buttonShape{
        width:90%;
        height: 90%;

    }

    .icon{
        width: 60%;
    }

    #volumeContainer{
        margin-right: 8%;
        width: 40%;
        display: flex;
        justify-content: space-between; /* This will space the items equally */
    }

    #volumeBar{
        width: 100%;
        color: white;
    }

    #customVolumeContainer{
        width: 13vw;
    }

    #timeDisplays{
        font-size: 1em;
        margin-left: 15%;
    }
    
}


.list-item-container {
    display: inline-block;
    vertical-align: middle;
}


.section3 {
    background-position: right top; 
    background-size: cover; 
}


.btn-green0,
.btn-green0:link,
.btn-green0:visited {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00b17a; /* green-bg */
    color: #fff; /* white-text */
    text-align: center;
    text-decoration: none;
    border-radius: 5px; /* or buttonShape equivalent */
    transition: background-color 0.3s; /* btn-anim equivalent */
}

.btn-green0:hover,
.btn-green0:focus {
    background-color: #00b17a; /* Darker shade for hover */
}