/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
    font-family: "AvertaStd";
    src: url("/frontend/assets/fonts/AvertaStd-Regular.eot");
    src: url("/frontend/assets/fonts/AvertaStd-Regular.eot?#iefix")
            format("embedded-opentype"),
        url("/frontend/assets/fonts/AvertaStd-Regular.woff2") format("woff2"),
        url("/frontend/assets/fonts/AvertaStd-Regular.woff") format("woff"),
        url("/frontend/assets/fonts/AvertaStd-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "AvertaStd";
    src: url("/frontend/assets/fonts/AvertaStd-Bold.eot");
    src: url("/frontend/assets/fonts/AvertaStd-Bold.eot?#iefix")
            format("embedded-opentype"),
        url("/frontend/assets/fonts/AvertaStd-Bold.woff2") format("woff2"),
        url("/frontend/assets/fonts/AvertaStd-Bold.woff") format("woff"),
        url("/frontend/assets/fonts/AvertaStd-Bold.ttf") format("truetype");
    font-weight: bold;
}

:root {
    --primary: #0c0c31;
    --dark: #000000;
    --yellow: #eecb48;
    --pink: #ff346e;
    --white: #fff;
    --peach: #f3836f;
    --green: #31ab8e;
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: "AvertaStd", sans-serif;
    color: var(--primary);
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: none;
}

header {
    border-bottom: 1px solid var(--white);
    position: relative;
    z-index: 3;
}

nav {
    background-color: transparent;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.logo {
    width: 250px;
}

.menuItems ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
}

.menuItems ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 29px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

/*.menuItems ul li a.active {*/
/*    color: var(--pink);*/
/*}*/

.heroSection {
    margin-top: -113px;
    position: relative;
}

.bannerSlider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgba(12, 12, 49, 0.98)),
        color-stop(21.15%, rgba(12, 12, 49, 0.66875)),
        color-stop(56.56%, rgba(163, 167, 228, 0))
    );
    background-image: -o-linear-gradient(
        bottom,
        rgba(12, 12, 49, 0.98) 0%,
        rgba(12, 12, 49, 0.66875) 21.15%,
        rgba(163, 167, 228, 0) 56.56%
    );
    background-image: linear-gradient(
        0deg,
        rgba(12, 12, 49, 0.98) 0%,
        rgba(12, 12, 49, 0.66875) 21.15%,
        rgba(163, 167, 228, 0) 56.56%
    );
    z-index: 2;
}

.bannerSlider .carousel-item {
    height: 100vh;
}

.heroSection .carousel .carousel-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.heroSection .carousel .carousel-indicators {
    max-width: 95%;
    left: 0;
    width: 100%;
    margin-inline: auto;
    padding-inline: 12px;
    right: 0;
    justify-content: flex-end;
    bottom: 40px;
}

.bannerSlider.md-none {
    display: none;
}
.heroSection .applyButtonWrapper {
    position: absolute;
    bottom: 60px;
    z-index: 4;
    width: 380px;
}
.heroSection .heading {
    color: var(--white);
    font-size: 100px;
    line-height: 120px;
    max-width: 550px;
    font-weight: bold;
    position: absolute;
    bottom: 125px;
    z-index: 2;
    text-transform: uppercase;
}
.heroSection .heading::after {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 200px;
    width: 2px;
    bottom: -290px;
}

.bannerLogo {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 2;
    overflow: hidden;
}

.bannerLogo img {
    height: 550px;
    position: relative;
    bottom: -100px;
    right: -100px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
}

.socialWrapper {
    position: absolute;
    top: 130px;
    right: 12px;
    z-index: 2;
}

.socialWrapper ul li {
    margin-bottom: 20px;
    position: relative;
    text-align: right;
}

.socialWrapper ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 25px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

.socialWrapper ul li a::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 100%;
    display: none;
    margin-left: 15px;
}

.socialWrapper ul li a:hover::after {
    display: block;
}

.socialWrapper ul li a:hover {
    font-weight: 700;
    font-style: italic;
}

.footer {
    background-color: var(--primary);
    padding-top: 50px;
    position: relative;
    margin-top: 30px;
}
.footer .applyButtonWrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
}

.footer .logoWrapper {
    padding-bottom: 50px;
    text-align: center;
}

.footer img {
    width: 370px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 30px;
    padding-bottom: 30px;
    color: var(--white);
    text-align: center;
    font-size: 25px;
}

.contactForm {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contactForm .heading {
    font-size: 83px;
    line-height: 97px;
    font-weight: bold;
    /* max-width: 300px; */
}

.contactForm .socialItem .websiteIcon {
    padding: 20px !important;
}

.contactForm .subHeading {
    font-size: 30px;
    padding-top: 20px;
    font-weight: bold;
}

.contactForm .socialItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    max-width: 360px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contactForm .socialItem img {
    width: 120px;
    height: 120px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 35px;
}

.contactForm .socialItem li:nth-child(odd) {
    background-color: #d9d9d9;
}

.contactForm .socialItem li:nth-child(even) {
    background-color: #f8f8f8;
}

.contactForm .socialItem img:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.contactForm .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 40px;
}

.contactForm .desc {
    max-width: 200px;
    display: none;
}

.form .gridBox {
    position: relative;
}

.form .gridBox input {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--dark);
    background: transparent;
    padding: 5px 0px;
    border-radius: 0;
    color: var(--pink);
    font-size: 26px;
}

.form .gridBox input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form .gridBox input:focus {
    border-color: var(--pink);
}

.pr-30 {
    padding-right: 50px;
}

.form .gridBox label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 0px;
    pointer-events: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 26px;
    color: var(--primary);
}

.form .gridBox input:focus ~ label,
.form .gridBox input:valid ~ label {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
    color: #b7b8c3;
    font-size: 20px;
}

.textareaWrapper {
    position: relative;
}

.textareaWrapper label {
    position: absolute;
    top: 10px;
    background-color: #fff;
    left: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 0 5px;
    pointer-events: none;
    font-size: 25px;
}

.textareaWrapper textarea:focus ~ label,
.textareaWrapper textarea:valid ~ label {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
    color: #b7b8c3;
    font-size: 20px;
}

.contactForm .lg-none {
    display: none;
}

.contactForm textarea {
    border-radius: 0;
    border: 1px solid var(--dark);
    outline: none;
    padding: 10px;
    width: 100%;
    resize: none;
    color: var(--pink);
    font-size: 27px;
}

.contactForm textarea:focus {
    border-color: var(--pink);
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 74px;
    width: 100%;
    border: 2px solid transparent;
    background-color: var(--pink);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 30px;
}

.showMoreButton {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 74px;
    width: 100%;
    border: 2px solid transparent;
    background-color: #f3836f;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}
.applyButton {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 74px;
    width: 100%;
    border: 2px solid transparent;
    background-color: var(--pink);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

.sendButton {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 74px;
    width: 100%;
    border: 2px solid transparent;
    background-color: var(--green);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 30px;
}
#showMoreBtn,
#applyBtn,
#submitBtn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
#showMoreBtn button,
#applyBtn button,
#submitBtn button {
    position: relative;
    -webkit-transition: all 0.35s ease-Out;
    -o-transition: all 0.35s ease-Out;
    transition: all 0.35s ease-Out;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    border: none;
    height: 74px;
    font-size: 29px;
    width: 100%;
}
#applyBtn:hover .slide {
    left: 0;
}
#submitBtn:hover .slide {
    left: 0;
}

#submitBtn:hover button {
    color: var(--green);
}
#applyBtn:hover button {
    color: var(--pink);
}
.applyButton .slide,
.sendButton .slide {
    width: 100%;
    height: 100%;
    left: -100%;
    background: #fff;
    position: absolute;
    -webkit-transition: all 0.6s ease-Out;
    -o-transition: all 0.6s ease-Out;
    transition: all 0.6s ease-Out;
    bottom: 0;
}

.marquee {
    background-color: var(--pink);
    color: var(--white);
    padding: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    width: 100%;
    overflow: hidden;
}

.marqueeLine {
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
    -webkit-animation: 60s ticker 0s infinite linear;
    animation: 60s ticker 0s infinite linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.01s;
    transition: -webkit-transform 0.01s;
    -o-transition: transform 0.01s;
    transition: transform 0.01s;
    transition: transform 0.01s, -webkit-transform 0.01s;
}

@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    100% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
}

.marquee .marqueeText {
    font-size: 30px;
    white-space: nowrap;
}

.wrapper {
    padding: 0 12px;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
}

.header {
    position: relative;
}

.header .wrapper {
    position: relative;
    z-index: 5;
}

.header-canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: none !important;
}

.header-content {
    position: relative;
    z-index: 10;
    color: #fff;
    min-height: 100vh;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header-caption {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    padding: 50px 0 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
}

.topbar {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    min-height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 44px 0;
}

.topnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.topnav-item {
    margin-left: 68px;
    position: relative;
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}

.topnav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    margin-top: 2px;
}

.topnav-item:hover a::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.topnav-item:active {
    color: #575757;
}

.hidden {
    overflow: hidden;
}
.section {
    position: relative;
    overflow: hidden;
    padding-top: 180px;
}

.numgrid-item:nth-child(2) {
    text-align: right;
}

.numgrid-item:nth-child(3) {
    max-width: 543px;
    text-align: right;
}

.numgrid-item .num-val::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: #000;
}

.num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.num-val {
    font-size: 133px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.num-text {
    font-size: 35px;
    line-height: 1;
    letter-spacing: -0.03em;
    padding-top: 20px;
    overflow: hidden;
}

.desktop {
    display: none;
}

.pink {
    color: var(--pink);
}

.yellow {
    color: var(--yellow);
    text-align: left;
}

.green {
    color: #31ab8e;
    text-align: left;
}

.num-note {
    font-size: 14px;
    line-height: 1.25;
    margin-top: 2em;
    max-width: 286px;
}

.menu-button {
    display: none;
    height: 40px;
    width: 40px;
    position: relative;
    margin-left: auto;
    z-index: 3;
}

.menu-button::before,
.menu-button::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    -webkit-transition: -webkit-transform 0.5s 0.75s;
    transition: -webkit-transform 0.5s 0.75s;
    -o-transition: transform 0.5s 0.75s;
    transition: transform 0.5s 0.75s;
    transition: transform 0.5s 0.75s, -webkit-transform 0.5s 0.75s;
    color: var(--white);
    border-radius: 2px;
}

.menu-button::before {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.menu-button::after {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
}

.menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    -o-transition: all 0.5s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.5s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    visibility: hidden;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    overflow: auto;
}

.menu-close {
    position: relative;
    width: 36px;
    height: 36px;
    margin-top: -4px;
    margin-left: auto;
    color: #0c0c31;
}

.menu-close::before,
.menu-close::after {
    content: "";
    width: 100%;
    border-radius: 2px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.navBottomLogo {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 200px;
}

.menu-header {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.menu-nav {
    padding: 50px 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    opacity: 0;
    -webkit-transform: translateX(100vw);
    -ms-transform: translateX(100vw);
    transform: translateX(100vw);
}

.menu-nav li {
    padding-bottom: 30px;
}

.menu-nav li > a {
    display: block;
    font-size: 40px;
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
}

.menu-nav li > a.active {
    color: var(--pink);
}

.menuss {
    border-bottom: 2px solid #000;
}

.menu-footer {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 0px 0 60px;
    letter-spacing: -0.03em;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    opacity: 0;
    -webkit-transform: translateX(100vw);
    -ms-transform: translateX(100vw);
    transform: translateX(100vw);
}

.menu-footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.menu-footer ul li a {
    color: #000;
    text-decoration: none;
}

.menu-active .menu {
    visibility: visible;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.menu-active .menu-button::before,
.menu-active .menu-button::after {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.menu-active .menu-close::before,
.menu-active .menu-close::after {
    -webkit-transition-delay: 0.75s;
    -o-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.menu-active .menu-close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-active .menu-close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-active .menu-nav,
.menu-active .menu-footer {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}
.allPodcast {
    padding: 50px 0px 100px 0px;
    background: #fff;
}
.output {
    height: 50px;
    display: flex;
    align-items: center;
}
.mobileViewFilterBtns button {
    font-size: 14px;
}
.dropdown-item {
    cursor: pointer;
}
.allPodcast button {
    background: none;
    border: 0;
    color: #000 !important;
}
.inputWrapper input {
    outline: none;
    border-radius: 12px;
    background: #f8f8f8;
    border: 1px solid #000;
    padding: 10px;
    width: 100%;
    width: 300px;
}
/*  Dropdown Toggle Customization */

.customActionDropdown.dropdown-toggle {
    border: 0;
}
.customActionDropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}
.customActionDropdown.dropdown-toggle::after {
    display: none;
}
.filterText {
    color: #000 !important;
}
.podcast {
    padding: 100px 0px;
    border-color: #fff;
}
.podcastSubheading {
    padding: 17px 0px;
}
.podcast .showMoreButtonWrapper {
    text-align: center;

    width: 380px;
    margin: auto;
    margin-top: 50px;
}
.allPodcast .contentWrapper,
.podcast .contentWrapper {
    background-color: #f8f8f8;
    border-radius: 24px;
    width: 100%;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    padding: 25px 20px;
}
.contentWrapper .topWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -20px;
    left: 0;
    padding-inline: 20px;
}
.allPodcast .shareWrapper,
.podcast .shareWrapper {
    width: 50px;
    height: 50px;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
}
.podcastIconsWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.podcast .podcastIconsWrapper button,
.podcast .shareWrapper button {
    border: 0;
    background: none;
}

.playerBtn {
    transition: transform 0.5s, opacity 0.5s;
}
.rotated {
    transform: rotate(-90deg);
}

.audioWrapper {
    visibility: hidden;
}
.audioWrapperr {
    visibility: hidden;
}

.allPodcast .audioWrapper,
.podcast .audioWrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}
.allPodcast .audioWrapperr,
.podcast .audioWrapperr {
    margin-top: 20px;
    margin-bottom: 20px;
}

.plyr--audio .plyr__controls {
    background: #000 !important;
    border-radius: 50px !important;
    height: 44px;
}

input[type="range"]::-webkit-slider-thumb {
    background-color: #000;
    appearance: none;
    transition: none;
    box-shadow: none;
}

.plyr--full-ui input[type="range"] {
    transition: none;
}

.plyr-color-main {
    color: transparent !important;
}

:root {
    --plyr-color-main: var(--pink) !important;
}
.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded="true"] {
    background: transparent !important;
}
.plyr__controls__item .plyr__control {
    color: var(--white) !important;
}
.plyr__controls .plyr__controls__item:first-child {
    color: var(--pink) !important;
}
.plyr__controls .plyr__controls__item.plyr__time {
    color: var(--white) !important;
    font-family: "AvertaStd", sans-serif;
    font-size: 14px;
    min-width: 50px;
}
.plyr,
.plyr__tooltip,
.plyr__control {
    transition: none !important;
}

.plyr__volume {
    min-width: 40px !important;
    width: 0% !important;
}
.allPodcast .dateWrapper,
.podcast .dateWrapper {
    background-color: #e9e9e9;
    padding: 10px 15px;
    border-radius: 10px;
    fill: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
    max-width: 180px;
    width: 100%;
    text-align: center;
}
.podcastIcon {
    max-width: 50px;
    width: 50px;
    height: 50px;
}
.allPodcast .date,
.podcast .date {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.podcast .date span {
    padding-left: 7px;
}
.allPodcast .contentWrapper h3,
.podcast .contentWrapper h3 {
    font-size: 28px;
    color: var(--dark);
    margin-top: 20px;
    /* max-width: 320px; */
    font-weight: 600;
    min-height: 68px;
}

.allPodcast .contentWrapper h6,
.podcast .contentWrapper h6 {
    margin-top: 15px;
    font-size: 24px;
    color: var(--dark);
    font-style: italic;
}

.allPodcast .contentWrapper p,
.podcast .contentWrapper p {
    margin-top: 20px;
    color: var(--dark);
    font-size: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 200px;
}
.partners {
    padding: 100px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    background-color: #f8f8f8;
}
.podcastTopImgWrapper img {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}
.podcast .heading,
.partners .heading {
    font-size: 83px;
    line-height: 83px;
    font-weight: bold;
    text-align: left;
    padding-bottom: 50px;
}

.partnerWrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.partnerWrapper .partnerBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 399px;
}

.partnerWrapper .partnerBox img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 0 50px;
    filter: brightness(0);
}

.partnerWrapper:nth-child(even) .partnerBox:nth-child(odd) {
    background-color: transparent;
}

.partnerWrapper:nth-child(even) .partnerBox:nth-child(even) {
    background-color: #d9d9d9;
}

.partnerWrapper .partnerBox:nth-child(odd) {
    background-color: #d9d9d9;
}

.mbl-partners {
    display: none;
}

.whatIsSaudiEast {
    background-color: var(--primary);
    padding-top: 180px;
    position: relative;
}

.whatIsSaudiEast .pt-50 {
    padding-top: 50px;
}

.whatIsSaudiEast img {
    width: 100%;
    height: 700px;
    -o-object-fit: cover;
    object-fit: cover;
}

.whatIsSaudiEast .heading {
    font-size: 83px;
    line-height: 97px;
    font-weight: bold;
    color: var(--white);
}

.whatIsSaudiEast .subHeading {
    font-size: 44px;
    line-height: 52px;
    color: var(--white);
    font-weight: 400;
    font-style: italic;
}

.whatIsSaudiEast .desc {
    color: var(--white);
    font-size: 29px;
    line-height: 34px;
    max-width: 580px;
}

.whatIsSaudiEast .subDesc {
    color: var(--white);
    font-size: 44px;
    line-height: 52px;
    font-weight: bold;
    padding-top: 30px;
    max-width: 550px;
}

.whatIsSaudiEast .subDesc strong {
    color: var(--yellow);
    text-transform: uppercase;
}

.whatIsEO {
    padding: 100px 0px 50px;
}

.whatIsEO .desc {
    font-size: 44px;
    line-height: 52px;
    font-style: italic;
}

.whatIsEO .subDesc {
    font-size: 29px;
    line-height: 34px;
    padding-top: 30px;
}

.members {
    padding-top: 100px;
    overflow-x: hidden;
}

.members .heading {
    font-size: 92px;
    line-height: 84px;
    color: var(--primary);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    font-weight: bold;
    padding-bottom: 130px;
    letter-spacing: -5px;
}

.members .heading span:first-child {
    color: var(--pink);
}

.members .heading span:last-child {
    color: var(--yellow);
}

.members img {
    width: 100%;
    margin-bottom: 50px;
}

.pt-100 {
    padding-top: 120px;
    padding-right: 25px;
}

.pl-20 {
    padding-left: 25px;
}

.whyJoin {
    background-color: var(--primary);
    padding-top: 130px;
    position: relative;
}

.whyJoin::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1) 0 0) calc(1 * 100% / 4),
        linear-gradient(rgba(255, 255, 255, 0.1) 0 0) calc(2 * 100% / 4),
        linear-gradient(rgba(255, 255, 255, 0.1) 0 0) calc(3 * 100% / 4),
        linear-gradient(transparent 0 0) calc(4 * 100% / 4);
    background-size: 1px 100%;
    background-repeat: no-repeat;
    z-index: 1;
}
.whyJoin .applyButtonWrapper {
    z-index: 2;
    position: relative;
    max-width: 380px;
    margin-top: 47px;
}
.whyJoin .heading {
    font-size: 83px;
    line-height: 97px;
    font-weight: bold;
    color: var(--white);
}

.whyJoin .subHeading {
    font-size: 55px;
    line-height: 65px;
    font-weight: bold;
    color: var(--yellow);
    text-transform: uppercase;
}

.whyJoin .desc {
    font-style: italic;
    padding-top: 30px;
    padding-bottom: 30px;
    color: var(--white);
    font-size: 44px;
    line-height: 52px;
    max-width: 550px;
}

.whyJoin .subDesc {
    color: var(--white);
    font-size: 29px;
    line-height: 34px;
    max-width: 600px;
}

.whyJoin .contentWrapper {
    margin-right: 60px;
}

.whyJoin .rightContent {
    margin-left: 50px;
    position: relative;
    z-index: 2;
}

.whyJoin img {
    width: 100%;
}

.whyJoin .grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
}

.whyJoin .grid .gridBox {
    height: 250px;
    padding: 0 30px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    font-size: 25px;
}

.whyJoin .grid .gridBox .text {
    max-width: 180px;
    font-size: 35px;
}

.whyJoin .grid .gridBox:nth-child(1) {
    background-color: var(--pink);
}

.whyJoin .grid .gridBox:nth-child(2) {
    background-color: var(--peach);
}

.whyJoin .grid .gridBox:nth-child(3) {
    background-color: var(--yellow);
}

.whyJoin .grid .gridBox:nth-child(4) {
    background-color: var(--green);
}

.saudiNumbers {
    padding-top: 130px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.whatIsSaudiEast .title {
    font-size: 83px;
    line-height: 97px;
    font-weight: bold;
    color: var(--white);
    max-width: 500px;
    padding: 40px 0px;
}

.whatIsSaudiEast .br-1 {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.whatIsSaudiEast .numberWrapper {
    font-size: 80px;
    line-height: 108px;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.whatIsSaudiEast .numberWrapper span.pre {
    font-size: 27px;
    padding-right: 5px;
    text-transform: uppercase;
    line-height: 1;
}

.whatIsSaudiEast .numberDesc {
    font-size: 29px;
    color: var(--white);
    text-align: center;
}

.whatIsSaudiEast .flex {
    padding: 70px 12px;
}

.entreprenur .carousel-indicators {
    left: inherit;
    right: 0;
}

.sliderLogo {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    overflow: hidden;
}

.sliderLogo img {
    width: 250px;
    position: relative;
    right: -130px;
    top: 100px;
    -webkit-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
}

.trustLogo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    overflow: hidden;
}

.trustLogo img {
    width: 250px;
    height: 250px !important;
    position: relative;
    left: -130px;
    -webkit-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
    top: 100px;
}

.carousel-indicators {
    margin: 0;
    z-index: 3;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    bottom: -40px;
}

.carousel-indicators .active {
    border: 4px solid var(--pink) !important;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    margin-right: 7px;
    border: 4px solid transparent;
}

.carousel-indicators [data-bs-target]:last-child {
    margin-right: 0;
}

.years .title {
    font-size: 83px;
    line-height: 98px;
    font-weight: bold;
    padding-top: 100px;
}

.years {
    position: relative;
}

.imageWrapper {
    position: absolute;
    top: -120px;
    right: 0;
}

.imageBox {
    overflow: hidden;
}

.imageWrapper .imageBox img {
    height: 600px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0;
    -webkit-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.imageWrapper .textBox {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.imageWrapper .textBox .number {
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
}

.imageWrapper .textBox .desc {
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
}

.imageGallery {
    padding-top: 100px;
}

.imageGallery img {
    width: 550px;
    margin-left: 30px;
    height: 100%;
}

.imageGallery img:first-child {
    margin-bottom: 30px;
}

.whatIsEO .carousel-indicators {
    padding: 0 12px;
    bottom: inherit;
    top: -50px;
}

.whatIsEO .carousel-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.whatIsEO .carousel-indicators [data-bs-target] {
    width: 50px;
    height: 5px;
    background-color: var(--primary) !important;
    border-radius: 0;
    border: 0 !important;
}

.whatIsEO .carousel-indicators .active {
    background-color: var(--yellow) !important;
}

.carousel-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.imageGallery .flickity-page-dots .dot {
    width: 50px;
    height: 4px;
    border-radius: 0;
    background: var(--primary);
    opacity: 1;
    margin: 0;
    margin-right: 10px;
}

.imageGallery .flickity-page-dots .dot.is-selected {
    background: var(--yellow);
    height: 6px;
}

.imageGallery .flickity-viewport {
    z-index: 3;
    min-height: 1000px;
}

.memberWrapper {
    display: flex;
    column-gap: 10px;
}

.flickity-prev-next-button {
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(50% - 45px) !important;
}

.flickity-button:focus {
    box-shadow: none !important;
}

.flickity-button {
    z-index: 3;
}

.flickity-prev-next-button.previous {
    left: 45px !important;
}

.flickity-prev-next-button.next {
    right: 45px !important;
}

.eapps-instagram-feed-posts-slider-next {
    box-shadow: none;
}

.flickity-prev-next-button .flickity-button-icon {
    width: 20px !important;
    height: 20px !important;
    position: static !important;
}

.memberWrapper .founding {
    color: #b7b8c3;
    font-size: 15px;
    max-width: 65px;
    min-width: 65px;
    line-height: 16px;
    padding-top: 5px;
}

.imageGallery .flickity-page-dots {
    width: 95%;
    top: -40px;
    padding-inline: 12px;
    text-align: left;
    right: 0;
    left: 0;
    margin-inline: auto;
}

.boardMembers .tabWrapper.md-none {
    display: none;
}

.md-none {
    display: none;
}

.md-block {
    display: block;
}

.instagram {
    background-color: #f8f8f8;
    padding: 100px 0px;
}

.instagram .heading {
    font-size: 83px;
    line-height: 97px;
    font-weight: bold;
    padding-bottom: 40px;
}

.instagram .eapps-instagram-feed-title {
    display: none !important;
}

.instagram .eapps-widget-toolbar {
    display: none;
}

.podcastIconsWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.podcastSubheading {
    display: flex;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.subHeading button {
    border: 0;
    background: none;
}

/* BOD PAGE */
.bodSection {
    background-color: var(--primary);
    height: 700px;
    margin-top: -111px;
    padding-top: 130px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.bodSection .heading {
    font-size: 101px;
    line-height: 119px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.bodSection .subHeading {
    font-size: 44px;
    line-height: 52px;
    font-weight: bold;
    color: var(--white);
    max-width: 1100px;
}

.bodSection .subHeading span:nth-child(1) {
    color: var(--pink);
}

.bodSection .subHeading span:nth-child(2) {
    color: var(--yellow);
}

.bottomLogo {
    position: absolute;
    right: -100px;
    bottom: -170px;
}

.bottomLogo img {
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: bodRotate 10s linear infinite;
    animation: bodRotate 10s linear infinite;
}

@-webkit-keyframes bodRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes bodRotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.boardMembers {
    padding: 80px 0px;
    overflow-x: hidden;
}

.boardMembers .nav-link {
    color: var(--primary);
    padding: 0px;
    position: relative;
}

.boardMembers .nav-link:first-child {
    margin-top: 0;
}

.boardMembers .nav-link span {
    padding-left: 50px;
    font-size: 23px;
}

.boardMembers .nav-link span::before {
    content: "";
    position: absolute;
    width: 29px;
    height: 29px;
    background-color: #fff;
    border: 6px solid var(--primary);
    border-radius: 50%;
    left: 0;
    top: 0;
}

.boardMembers .nav-pills .nav-link.active {
    background-color: transparent;
    color: var(--pink);
}

.boardMembers .nav-pills .nav-link.active span {
    font-size: 29px;
    font-weight: bold;
    line-height: 1;
}

.boardMembers .nav-pills .nav-link.active span::before {
    background-color: var(--pink);
    border-color: var(--pink);
}

.boardMembers .tabWrapper::before {
    position: absolute;
    content: "";
    width: 2px;
    height: calc(100% - 5px);
    background-color: var(--primary);
    left: 14px;
    top: 0;
}

.boardMembers .sideNav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    max-width: 350px;
    position: sticky;
    top: 0px;
    height: 100vh;
}

.boardMembers .nav {
    position: relative;
    row-gap: 50px;
}

.boardMembers .membersGrid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin-bottom: 70px;
}

.boardMembers .membersGrid:last-child {
    margin-bottom: 0;
}

.boardMembers .membersGrid .memberInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.boardMembers .membersGrid .memberInfo .info {
    position: relative;
}

.boardMembers .membersGrid .memberInfo:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.boardMembers .membersGrid .memberInfo:nth-child(even) .date {
    padding-top: 0px;
    padding-bottom: 5px;
}

.boardMembers .membersGrid .memberInfo:nth-child(even) .info::before {
    top: 0;
}

.boardMembers .membersGrid .memberInfo img {
    width: 100%;
}

.boardMembers .membersGrid .memberInfo .date {
    color: #b7b8c3;
    font-size: 15px;
    max-width: 60px;
    line-height: 16px;
    padding-top: 5px;
}

.boardMembers .membersGrid .memberInfo .info::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% + 53px);
    left: 75px;
    background-color: rgba(0, 0, 0, 0.5);
    top: -53px;
}

.tabWrapper .tab-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.boardMembers .membersGrid .memberInfo .info .name {
    padding-left: 10px;
    padding-bottom: 5px;
    font-size: 27px;
    font-weight: bold;
    margin-left: 75px;
}

.boardMembers .membersGrid .memberInfo .info .name:hover {
    color: var(--pink);
}

.boardMembers .membersGrid .memberInfo .info .designation {
    padding-left: 10px;
    padding-bottom: 5px;
    font-style: italic;
    min-height: 48px;
    font-size: 22px;
}

.boardMembers .membersGrid .memberInfo .info .company {
    padding-left: 10px;
    font-size: 16px;
    text-transform: capitalize;
    color: #444;
    font-weight: bold;
    margin-left: 75px;
}

.boardMembers .tabWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.modal-body {
    /* display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
    height: 200px; */
}
.modal-body-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
    /* height: 200px; */
}

.modal-header {
    background-color: #f7f7f7;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-content {
    border-radius: 8px;
}

.btn-close {
    color: #333; /* Set your desired color for the close button */
}

.modal-dialog {
    transform: translate(-50%, -50%);
}

.textBox {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.textBox input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

.textBox button {
    border: 2px solid #303030;
    padding: 5px;
    border-radius: 8px;
    width: 100px;
    font-size: 17px;
    color: #303030;
}

.modal-header button {
    border: 0;
    background-color: #f7f7f7;
}

.search-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

#searchInput {
    padding-right: 25px; /* Space for the clear icon */
}

.clear-button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; /* Initially hide the clear icon */
}

.shareBtnn {
    background-color: #ff346e !important;
    color: white !important;
    border-color: white !important;
}

#copiedToast {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #ff346e;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

/* Styles for Light Mode */
@media (prefers-color-scheme: light) {
    /* Hide Dark Mode Favicon */
    #favicon-dark {
        display: none;
    }
    /* Display Light Mode Favicon */
    #favicon-light {
        display: block;
    }
}

/* Styles for Dark Mode */
@media (prefers-color-scheme: dark) {
    /* Hide Light Mode Favicon */
    #favicon-light {
        display: none;
    }
    /* Display Dark Mode Favicon */
    #favicon-dark {
        display: block;
    }
}
