@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');

:root {
    /* color */
    --orange: #f7941e;
    --orange2: #fe9c0a;
    --white: #fff;
    --black: #000;
    --yellow: #ffd754;
    --yellow2: #fdea7c;
    --gray: #babcc3;
    --gray2: #e5e0e0;
    --orange3: #ffaf6a;
    --orange3_70: #f7b37cb3;
    --blumine: #1E5772;
    --dark: #1A1A1A;
    --dark80: #1A1A1ACC;
    --cream: #FCF7EE;
    --mustard: #6E5B0F;
    --olivetone: #806a12;
    --blue: #383d5c;
    --blueLight: #4d547e;
    --brown: #754e2b;
    --brownLight: #9e6737;
    --sliver: #a2a2a2;
    --blueGray: #4d547e;


    /*Fonts*/
    --nunito: "Nunito", sans-serif;
    --paytone: "Paytone One", sans-serif;
    --poetsen: "Poetsen One", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
}

html {
    width: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--nunito);
    background: var(--white);
}


/* Header */
header#header {
    padding: 12px 0;
    background-color: var(--orange);
    z-index: 11;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.10);
    -webkit-transition: all ease-in-out 250ms;
    -moz-transition: all ease-in-out 250ms;
    -o-transition: all ease-in-out 250ms;
    -ms-transition: all ease-in-out 250ms;
    transition: all ease-in-out 250ms;
}
header#header.fixed{
    position: fixed;
    padding: 8px 0;
}
.custom-logo {
    width: 95px;
    height: auto;
    -webkit-transition: all ease-in-out 250ms;
    -moz-transition: all ease-in-out 250ms;
    -o-transition: all ease-in-out 250ms;
    -ms-transition: all ease-in-out 250ms;
    transition: all ease-in-out 250ms;
}
header#header.fixed .custom-logo {
  width: 75px;
}

.header-navbar ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 40px;
}

.header-navbar ul li a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0 !important;
}
.header-navbar ul li a.nav-link:hover,
.header-navbar ul li.current-menu-item a.nav-link{
  color: var(--white);
  background: url('../images/wave.svg') repeat-x bottom;
}
.header-navbar ul li.yp-menu-btn a.nav-link:hover {
  color: var(--white);
}

nav.header-navbar {
    justify-content: space-between;
}

.navbar-expand-md {
    justify-content: flex-start;
    display: flex;
    justify-content: space-between;
}

.yp-hm-video-panel {
    background-color: var(--orange);
    max-height: calc(100vh - 90px);
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* Aspect ratio */
    position: relative;
    background: var(--orange);
}

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

.yp-pp-quiz-wrapper {
    position: relative;
    z-index: 3;
    display: table;
    width: 100%;
}
.yp-pp-quiz-wrapper-inner{
    /* margin-top: -13%; */
    margin-top: -10%;
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
    overflow: hidden;
}

.yp-pp-quiz {
    background-image: url('../images/ranbow-gradient-bg.png');
    background-color: var(--orange);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    /* padding-top: 1.5%; */
    padding-top: 3.5%;
    /* margin-top: -12.5%; */
    margin-top: -2px;
}
.boyonrocket-img {
    margin-top: -11%;
    position: relative;
}
.boyonrocket-img img{
  /* position: absolute;
  left: 0;
  top: 0;
  width: 100%;*/
}

#return-to-top {
    width: 40px;
    height: 96px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    animation: rocketLounch infinite 1.5s alternate;
    display: none;
    cursor: pointer;
}

@keyframes rocketLounch {
    0% {
        transform: translate(0px, 0px);
    }

    25% {
        transform: translate(0px, -35px);
    }

    50% {
        transform: translate(0px, 0px);
    }

    75% {
        transform: translate(0px, 35px);
    }

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

.imgae-heading-title h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.star-quiz-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px 0;
}

.star-quiz-list .star-li {
    background: url('../images/star.png') no-repeat center;
    background-size: 100%;
    color: var(--blumine);
    display: inline-flex;
    padding: 25px;
    width: 200px;
    height: 200px;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: var(--paytone);
    font-weight: 400;
    font-style: normal;
    text-shadow: 0 4px 4px rgba(255, 255, 255, 0.16), 0 4px 4px rgba(0, 0, 0, 0.16);
}

.star-quiz-list .star-li.big {
    width: 260px;
    height: 260px;
    font-size: 1.75rem;
    line-height: 1.2;
}

.yp-quiz-portraits {
    overflow: hidden;
    margin-top: -27%;
    background: url('../images/leafs-plants.png') no-repeat center bottom;
    background-size: 50% auto;
}

.left-portrait img {
    max-width: 90%;
    max-height: 580px;
}
.right-portrait img {
    max-width: 75%;
    float: right;
    max-height: 580px;
}
@media(min-width: 1200px){
    .left-portrait img {
        max-width: 400px;
    }
    .right-portrait img {
        max-width: 325px;
    }
    .yp-quiz-portraits {
        margin-top: -24%;
    }
}
@media(min-width: 1440px){
    .left-portrait img {
        max-width: 450px;
    }
    .right-portrait img {
        max-width: 380px;
    }
    .yp-quiz-portraits {
        margin-top: -19%;
    }
}

.yp-btn, .yp-menu-btn {
  padding: 2px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  background: linear-gradient(to right, #FF671F, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FF671F);
  border: 3px solid #E6E7E8;
  width: auto !important;
}

.yp-btn-in {
    /* background-image: linear-gradient(to right, #ff671f, #fe9c0a 12%, #fe9c0a 83%, #ff671f 100%); */
    background: linear-gradient(to bottom, #ffffff, #ffffffb8, #ffffff5e, #00000000, #00000000, #00000000);
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-family: var(--paytone);
    font-size: 36px;
    line-height: 1.5;
    min-width: 282px;
    text-align: center;
}

.yp-btn.yp-btn-small .yp-btn-in {
  min-width: 168px;
  font-size: 24px;
  padding: 5px 10px;
  line-height: 1.25;
}

.yp-menu-btn a.nav-link{
  background: linear-gradient(to bottom, #ffffff, #ffffffb8, #ffffff5e, #00000000, #00000000, #00000000);
    padding: 5px 10px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-family: var(--paytone);
    font-size: 24px;
    line-height: 1.25;
    min-width: 168px;
    text-align: center;
}

.quiz-btn-faq {
    padding-top: 40px;
}

.yp-heading h1,
.yp-heading h2 {
    position: relative;
    display: inline-block;
}
.yp-heading h1 .heading,
.yp-heading h2 .heading {
    font-size: 44.5px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.12px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-block;
    text-shadow: 1px 1px 0px #FCB415, -1px -1px 0px #FCB415;
}
.yp-heading h1 .heading-shadow,
.yp-heading h2 .heading-shadow {
    -webkit-text-stroke: 12px #f6021a;
    font-size: 44.5px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.12px;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}
.yp-pp-quiz .yp-heading {
    margin-top: -20px;
}
.yp-heading {
    position: relative;
    padding: 42px 10px 0px 42px;
    display: inline-block;
}

.yp-heading-icon img {
    position: absolute;
    top: -6px;
    left: -7px;
}

.yp-bordered-heading h3 {
    font-weight: 700;
    font-family: var(--nunito);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    font-size: clamp(16px, 2.75vw, 32px);
}
.yp-bordered-heading h3 a{
  text-decoration: none;
  color: inherit;
}

.yp-bordered-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url('../images/yp-underline.png');
    width: 100%;
    height: 9px;
}

.yp-leaderboard {
    background: linear-gradient(to bottom, #fff, #fcf7ee 98%);
    padding-top: 30px;
    /* box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15); */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 100% 100% / 0 0 10% 10%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.yp-leaderboard-inner {
    background: url('../images/leader-board-left-icons.png') no-repeat left top, url('../images/leader-board-right-icons.png') no-repeat right top;
    min-height: 535px;
}

.yt-subhead {
    max-width: 320px;
    margin: auto;
    font-size: 24px;
    line-height: 1.35;
    color: var(--dark80);
    font-family: var(--nunito);
    font-weight: 400;
}

.leaderboard-item {
    padding: 8px;
}

.leaderboard-item-wrap {
    padding: 0px 0px 0px 120px;
    position: relative;
}

.leaderboard-item-right {
    padding: 7px 7px 7px 0;
}

.leaderboard-item-right-in {
    background: var(--white);
    padding: 22px 22px 22px 75px;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
    min-height: 130px;
    display: flex;
    align-items: center;
}

.leaderboard-item-wrap.yellow .leaderboard-item-right-in {
    background: var(--yellow);
    background: linear-gradient(to right, var(--yellow), var(--yellow2));
}

.leaderboard-item-wrap.gray .leaderboard-item-right-in {
    background: var(--gray);
    background: linear-gradient(to right, var(--gray), var(--gray2));
}

.leaderboard-item-wrap.orange .leaderboard-item-right-in {
    background: var(--orange3);
    background: linear-gradient(to right, var(--orange3), var(--orange3_70));
}

.leaderboard-item-left {
    width: 154px;
    height: 154px;
    background: var(--cream);
    border-radius: 100%;
    border: 10px solid var(--white);
    position: absolute;
    top: -5px;
    left: 0;
}

.leaderboard-item-wrap.yellow .leaderboard-item-left {
    background: var(--yellow);
    background: linear-gradient(to right, var(--yellow), var(--yellow2));
}

.leaderboard-item-wrap.gray .leaderboard-item-left {
    background: var(--gray);
    background: linear-gradient(to right, var(--gray), var(--gray2));
}

.leaderboard-item-wrap.orange .leaderboard-item-left {
    background: var(--orange3);
    /* background: linear-gradient(to right, var(--orange3), var(--orange3_70)); */
    background: linear-gradient(to right, var(--orange3), var(--orange3));
}

.leaderboard-item-right-in .learderbaord-name {
    width: 50%;
    font-family: var(--nunito);
    font-size: clamp(20px, 2.75vw, 32px);
    font-weight: 900;
    line-height: 1.16;
    text-align: left;
    color: var(--sliver);
    padding-right: 15px;
}

.learderbaord-content .__content,
.learderbaord-content .__location {
    font-family: var(--nunito);
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--sliver);
}

.learderbaord-content .__content {
    margin-bottom: 12px;
}

.learderbaord-content .__location {
    font-weight: 700;
}

.leaderboard-item-wrap.yellow .leaderboard-item-right-in .learderbaord-name {
    color: var(--mustard);
}

.leaderboard-item-wrap.yellow .learderbaord-content .__content,
.leaderboard-item-wrap.yellow .learderbaord-content .__location {
    color: var(--olivetone);
}

.leaderboard-item-wrap.gray .leaderboard-item-right-in .learderbaord-name {
    color: var(--blue);
}

.leaderboard-item-wrap.gray .learderbaord-content .__content,
.leaderboard-item-wrap.gray .learderbaord-content .__location {
    color: var(--blueLight);
}

.leaderboard-item-wrap.orange .leaderboard-item-right-in .learderbaord-name {
    color: var(--brown);
}

.leaderboard-item-wrap.orange .learderbaord-content .__content,
.leaderboard-item-wrap.orange .learderbaord-content .__location {
    color: var(--brownLight);
}

.leaderboard-item-left .count {
    width: 50px;
    height: 23px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7.2px;
    padding: 1.8px 7.2px;
    object-fit: contain;
    border-radius: 2.7px;
    position: absolute;
    bottom: -10px;
    background: var(--blueGray);
}

.yellow .leaderboard-item-left .count {
    background-image: linear-gradient(to bottom, #600026, #c6004e 200%);
}

.gray .leaderboard-item-left .count {
    background: #000e25;
    background-image: linear-gradient(to bottom, #000e25, #00368b);
}

.orange .leaderboard-item-left .count {
    background: #064f47;
    background-image: linear-gradient(179deg, #064f47 49%, #0eb5a3 98%);
}

.leaderboard-item .count span {
    font-family: var(--nunito);
    font-size: 11.6px;
    font-weight: 900;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
}

.leaderboard-list {
    padding: 28px 0;
}

.yp-howzzat-hacks {
    background: var(--white);
    padding: 45px 0;
    overflow: hidden;
}


.swiper-cards {
    width: 372px;
    height: 475px;
}
.swiper-slide {
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
.multicolor-swipper .swiper-slide:nth-child(1n) {
    background-color: #EF4043;
}
.multicolor-swipper .swiper-slide:nth-child(2n) {
    background-color: #1CBBB4;
}
.multicolor-swipper .swiper-slide:nth-child(3n) {
    background-color: #ED145B;
}
.multicolor-swipper .swiper-slide:nth-child(4n) {
    background-color: #FF994E;
}
.multicolor-swipper .swiper-slide:nth-child(5n) {
    background-color: #B6D434;
}
.multicolor-swipper .swiper-slide:nth-child(6n) {
    background-color: #EF4043;
}
.multicolor-swipper .swiper-slide:nth-child(7n) {
    background-color: #1CBBB4;
}
.multicolor-swipper .swiper-slide:nth-child(8n) {
    background-color: #ED145B;
}
.multicolor-swipper .swiper-slide:nth-child(9n) {
    background-color: #FF994E;
}
.multicolor-swipper .swiper-slide:nth-child(10n) {
    background-color: #B6D434;
}
.panorama-slider .swiper {
    width: 100%;
    height: 500px;
}
@media(min-width: 1440px){
    .panorama-slider .swiper {
        height: 575px;
    }
}
.swiper-slide {
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
.panorama-slider .swiper .swiper-slide {
    overflow: hidden;
}
.swiper-cards .swiper-slide{
    overflow: visible;
}
.swiper-slide-shadow{
    border-radius: 18px;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}
.panorama-slider .swiper-slide {
    align-items: flex-end;
}

/*******************/
.yp-blogs {
    background: var(--cream);
    padding-top: 60px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
    overflow: hidden;
    min-height: 450px;
}
.yp-quick-answer{
    background: var(--cream);
    padding: 80px 0 35px;
    overflow: hidden;
}
.text-card-slider .swiper-slide {
    padding: 18px;
}
.yp-text-slide-card h3 {
    font-size: 34px;
    color: var(--white);
    font-family: var(--nunito);
    font-weight: 900;
    line-height: 1.1;
    opacity: 0.9;
}
.yp-text-slide-card .text {
    color: var(--white);
    font-family: var(--nunito);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    opacity: 0.8;
}
.slide-card-count {
    background: url(../images/white-circle.png) no-repeat center;
    background-size: 100%;
    width: 82px;
    height: 82px;
    color: #ED145B;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--poetsen);
    font-size: 49px;
    line-height: 1.2px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    top: -40px;
    margin: auto;
    opacity: 0;
}
.swiper-slide-active .slide-card-count{
    opacity: 1;
}

.blog-article {
    width: 100%;
    min-height: 175px;
    overflow: hidden;
    display: flex;
    /* padding: 9px; */
    /* border: 9px solid var(--orange); */
    height: 100%;
}
.blog-article-in {
    border-radius: 27px;
    width: 100%;
    overflow: hidden;
}
.blog-article {
    border: 9px solid transparent;
}
.blog-article:hover{
    border-color: var(--orange);
}
.yp-big-article .blog-article {
    min-height: 400px;
    height: 100%;
    border-radius: 48px;
}
.blog-article {
    border-radius: 48px;
}
.blog-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
}
.yp-blog-grid{
    height: 550px;
}
.yp-blog-grid .row {margin: 0;}
.yp-blog-grid .row > * {
    padding: 0;
}
.yp-small-left-top {
    height: 48%;
}
.yp-small-left-bottom {
    height: 52%;
}
.yp-small-left-top .row{
    height: 100%;
}
.yp-small-right-top {
    height: 58%;
}
.yp-small-right-bottom {
    height: 42%;
}
.blog-article-in {
    position: relative;
    border-radius: 27px;
}
.blog-article-in:before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: var(--orange);
    opacity: 0;
    border-radius: 35px;
}
.yp-big-article .blog-article-in:before {
    top: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
}
.blog-article-in:hover:before{
    opacity: 0.6;
}
.blog-article,
.blog-article-in,
.blog-article-in:before,
.blog-article-in span.icon img{
    transition: all ease-in-out 350ms;
}
.blog-article-in span.icon{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-article-in span.icon img {
    max-width: 65px !important;
    width: 100%;
    transform: scale(0);
}
.yp-big-article .blog-article-in span.icon img {
    max-width: 112px !important;
}
.blog-article-in:hover span.icon img {
    transform: scale(1);
}
.yp-blog-grid {
    padding: 40px 0;
    position: relative;
}
.cloud-img{
    margin-top: -5%;
}
.yp-blogs-in{
    position: relative;
    z-index: 1;
}
.yp-faq-cards {
    padding: 35px 60px 0 60px;
}
.yp-faq-cards .swiper-button-prev {
    left: -150px;
}
.yp-faq-cards .swiper-button-prev img{
    transform: rotateY(180deg);
}
.yp-faq-cards .swiper-button-next {
    right: -150px;
}
.yp-faq-cards .swiper-button-next:after,
.yp-faq-cards .swiper-button-prev:after{
    font-size: 0;
}
.footer-menu ul {
    padding-left: 0;
}
.footer-menu ul li {
    display: inline-block;
    padding: 5px 5px;
}
.footer-menu ul li a {
    font-size: 22px;
    color: var(--white);
    font-family: var(--nunito);
    font-weight: 600;
    padding: 5px 5px
}

#footer{
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.footer-inn {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 23% 0 5% 0;
}
.footer-social-links ul{
    border-top: 1px solid var(--white);
    gap: 16px;
    padding: 10px 0;
    margin-bottom: 0;
}
.copyright p {
    font-size: 15px;
}
.footer-social-links ul li a{
    display: block;
}
.footer-social-links ul li a img {
    width: 36px;
}
.yippee-sun {
    position: absolute;
    max-width: 140px;
    top: 22%;
    left: 2.5%;
    transform: rotateY(180deg);
}
.navbar-toggler {
    border: none;
    transition: all ease-in-out 350ms;
}
.navbar-toggler:focus{
    box-shadow: none !important;
}
.close-toggle {
    width: 24px;
    display: none;
}
.panorama-slider .swiper .swiper-slide.swiper-slide-active {
    box-shadow: 0px 7px 34px 0px rgba(0, 0, 0, 0.15);
}
.panorama-slider .swiper-wrapper {
    gap: 5px;
}
.panorama-slider {
    z-index: 3;
    margin-top: -45px;
}
.cloud-bg {
    position: relative;
}
.cloud-rocket {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.cloud-rocket img{
    width: 70%;
    margin: auto;
}
.yp-text-slide-card .text ul {
    padding-left: 0px;
    padding-top: 10px;
    margin-bottom: 0;
}
.yp-text-slide-card .text ul li {
    display: inline-block;
    width: 100%;
    padding: 2px 0 2px 10px;
    font-size: 16px;
    line-height: 1.35;
    position: relative;
}
.yp-text-slide-card .text ul li:before {
    content: '';
    width: 4px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 11px;
    left: 0;
    opacity: 0.8;
}

.login-btn {
    padding: 3px !important;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #a5b7c6 2%, #00000000 101%);
    display: inline-block;
    box-shadow: 6.4px 6.4px 10.7px 0 rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(149deg, #d3d3d4 8%, #e6e7e8 32%, #d3d3d4 92%);
    overflow: hidden;
    display: none !important;
    height: auto !important;
    width: 180px !important;
}

.login-btn a.nav-link {
    background-image: linear-gradient(to right, #ff671f, #fe9c0a 12%, #fe9c0a 83%, #ff671f 100%);
    padding: 10px 25px !important;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: block;
    background-image: linear-gradient(to right, #ff671f, #fe9c0a 12%, #fe9c0a 83%, #ff671f 100%);
    font-family: var(--paytone);
    font-size: 20px;
    line-height: 1.25;
    min-width: 174px;
    text-align: center;
}

/* styles added for blog page and leaderboard */

.top-5 {
  top: 5%;
}
.top-35 {
  top: 35%;
}
.left-0 {
  left: 0;
}
.inner-banner {
  height: 480px;
}
.blog-banner {
  background: url(../images/blog-banner.webp);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  aspect-ratio: 3/1;
  padding: 7.5% 0;
}
.blog-banner-content {
  /*left: 0;
  top: 35%;*/
}
.blog-banner-cloud {
  width: 100%;
  position: relative;
}
.blog-cloud-img {
  margin-top: -9%;
}
.blog-list {
  background-color: var(--cream);
  margin-top: -1px
}
.nav-tabs .nav-link {
  border-radius: 66px;
  border: solid 1px rgba(247, 148, 30, 0.5);
  background-color: #fff;
  color: var(--orange);
  margin-right: 10px;
  text-wrap: nowrap;
  padding: 15px 28px;
}
.nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}
.nav-tabs li.nav-item {
  margin-bottom: 1px;
}
.nav-tabs .nav-link.active {
  background-color: var(--orange);
  color: #fff;
}
.blog-search {
  padding: 0px 0px;
  border-radius: 35px;
  border: solid 1.5px #fff;
  background-color: #fff;
  overflow: hidden;
}
.subscribe-block {
  background: url(../images/aside.webp) no-repeat;
  height: 545px;
  background-size: 100%;
  border-radius: 12px;
  background-position: bottom center;
}
.subscribe-block h2 {
  font-size: 34.9px;
  font-weight: 900;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.9);
}
.subscribe-input-group {
  border-radius: 36px;
  border: solid 1px #fff !important;
  background-color: var(--white);
  height: 60px;
  overflow: hidden;
}
.subscribe-input-group .wpcf7-form-control-wrap {
  position: relative;
  width: calc(100% - 122px);
  display: inline-block;
}
.subscribe-input-group .wpcf7-form-control-wrap input {
  max-width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  font-size: 20px;
  color: #6b6b84cc;
  line-height: 1.6;
}
.subscribe-block .wpcf7, .subscribe-input-group > p {
  max-width: 100%;
}
.subscribe-input-group > p > br {
  display: none;
}
.subscribe-input-group > p {
  margin: 0px 0 0;
}
.subscribe-input-group .form-control,
.subscribe-input-group .form-control::placeholder {
  color: #6b6b84cc;
}
.subscribe-input-group .btn {
  padding: 15px 16px;
  border-radius: 36px !important;
  border:  0px;
  background-color: var(--orange);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  text-transform: capitalize;
  height: 58px;
}
.subscribe-input-group .wpcf7-spinner {
  margin: 10px;
  position: absolute;
  right: 35px;
  top: 7px;
  visibility: visible;
  z-index: -1;
}
.subscribe-input-group p{
  margin-bottom: 0;
  display: flex;
}
.subscribe-input-group .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: normal;
  display: block;
  position: absolute;
  bottom: 1px;
  left: 15px;
}
.blog-content {
  max-width: 856px;
  margin: auto;
}
.blog-inner-content {
  background-color: var(--cream);
}
.blog-item-text p:first-of-type::first-letter {
  color: var(--orange);
  font-size: 58px;
  font-weight: 800;
  margin-right: 0.75rem;
  line-height: 100%;
}
.blog-item-text h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.08;
  color: #231f20;
}
.author-box a{
  text-decoration: none;
  color: var(--orange);
  font-weight: 600;
}
.blog-item-text {
  color: var(--dark);
}
.blog-item-img img {
  margin: auto;
  display: block;
}
.blog-item-text p {
  font-size: 16px;
  line-height: 1.63;
  color: #313131;
}
.blog-item-text ul {
  padding-left: 15px;
}
.blog-item-text ul li {
  list-style: disc;
  line-height: 1.63;
  color: #191919;
}
.blog-item::after {
  content: "";
  display: block;
  height: 5px;
  background: url(../images/blog-underline.png);
  width: 100%;
  margin: 2.5rem 0;
}
.blog-item.blog-category-item a {
  text-decoration: none;
}
.blog-item .blog-title {
  line-height: 1.3;
  color: var(--dark);
  font-weight: bold;
}
.blog-item .blog-text {
  font-size: 16px;
  line-height: 1.64;
  color: #6b6b84;
}
.blog-share span,
.blog-categories p {
  color: var(--dark);
  font-size: 20px;
  font-weight: bold;
  line-height: 0.9;
  margin-right: 0.75rem;
}
.blog-categories::after {
  content: "";
  display: block;
  height: 9px;
  background-color: var(--orange);
  border-radius: 5px;
  margin: 2rem 0rem;
}
.blog-categories h5 {
  color: var(--dark);
  font-weight: bold;
}
.blog-categories p > span {
  color: var(--orange);
  font-weight: 600;
}
.blog-inner-breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.blog-inner-breadcrumb  li.breadcrumb-item {
  flex-shrink: 0;
}
.blog-inner-breadcrumb .breadcrumb-item a {
  color: #585858;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.17;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-inner-breadcrumb .breadcrumb-item.active {
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.17;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
}
.blog-publisher-info img {
  object-fit: contain;
  border-radius: 50px;
  border: solid 1px #fff;
}
.blog-publisher-info span {
  font-size: 16px;
  font-weight: bold;
  color: rgba(247, 148, 30, 0.8);
}
.blog-pagination .page-link {
  border-radius: 33px !important;
  border: solid 1px #b5b5b5;
  background-color: transparent;
  font-size: 13px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--dark);
  margin: 0px 10px;
}
.blog-pagination .page-link.active {
  background-color: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
}
.blog-inner-header h1 {
  font-weight: bold;
  line-height: 1.31;
  color: var(--dark);
}
.blog-inner-header p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.6);
}
.blog-inner-publisher-info span {
  font-weight: 600;
  color: var(--orange);
}
.blog-inner-date-time small {
  font-size: 14px;
  line-height: 1;
  color: #231f20;
  margin-right: 0.75rem;
}
.relatedBlogSwiper {
  overflow: visible;
}
.related-blog-items .swiper-cards .swiper-slide {
  background-color: transparent !important;
}
.related-blog-items .swiper-3d .swiper-slide-shadow {
  background: none;
  display: none;
}
.relatedBlogSwiper .swiper-button-prev {
  left: -70px;
}
.relatedBlogSwiper .swiper-button-prev img {
  transform: rotateY(180deg);
}
.relatedBlogSwiper .swiper-button-next {
  right: -70px;
}
.relatedBlogSwiper .blog-article {
  border-radius: 0;
}
.relatedBlogSwiper .swiper-button-next:after,
.relatedBlogSwiper .swiper-button-prev:after {
  font-size: 0;
}
.relatedBlogSwiper .swiper-pagination {
  bottom: -15% !important;
}
.related-blog-items .blog-article {
  display: block;
}
.related-blog-items .blog-article a {
  text-decoration: none;
  display: block;
  border-radius: 45px;
}
.related-blog-items h2 {
  font-weight: bold;
  line-height: 1.3;
  color: var(--dark);
}
.related-blog-items .blog-article h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--dark);
  margin-top: 12px;
}
.relatedBlogSwiper .blog-article a {
  border: 5px solid transparent;
}
.relatedBlogSwiper .blog-article,
.relatedBlogSwiper .blog-article:hover {
  border: 0px;
}
.relatedBlogSwiper .blog-article:hover a {
  border: 5px solid var(--orange);
}
.relatedBlogSwiper .swiper-wrapper {
  overflow: hidden;
}
.relatedBlogSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  /* border: 5px solid rgba(247, 148, 30, 0.16); */
  border-radius: 10px;
  box-shadow: 0px 0px 0px 5px rgba(247, 148, 30, 0.16);
}
.leaderboard-banner {
  background: url(../images/yippee-leaderboard-bg.webp);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
.leaderboard-cloud-img {
  position: absolute;
  bottom: -9%;
  left: 0;
}
.leadership-content {
  background-color: var(--cream);
}
.leaderboard-aside-text h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.leaderboard-aside-text p {
  font-size: 14px;
  letter-spacing: 0.98px;
  color: rgba(255, 255, 255, 0.9);
}
.self-rank-num {
  background: linear-gradient(to bottom, #ea3722, #f6a816);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 48px;
  line-height: 100%;
}
.self-rank-item .leaderboard-item-left .count {
  background: linear-gradient(to bottom, #ea3722, #f6a816);
}
.self-rank-item .leaderboard-item-left {
  background: var(--white);
  border: 10px solid var(--cream);
}
.self-rank-item .learderbaord-name {
  font-weight: 900;
  line-height: 1.16;
  color: rgba(26, 26, 26, 0.75);
}
.self-rank-item .learderbaord-content {
  color: rgba(26, 26, 26, 0.75);
}
.self-rank-item .learderbaord-content .__content {
  color: rgba(26, 26, 26, 0.9);
}
.self-rank-item .learderbaord-content .__location {
  color: rgba(26, 26, 26, 0.8);
}
.leadership-content {
  background-image: url(../images/leaderboard-designelm.png);
  background-repeat: no-repeat;
  background-position: 0px 15%;
}
.leaderboard-rankings {
  margin-top: 20%;
}
.blog-item-text h2 {
  font-size: 24px;
  font-weight: bold;
}
.blog-item-text h4 {
  font-size: 1.25rem;
  margin-top: 0.75rem;
}
.blog-img {
  height: 100%;
  object-fit: cover;
  min-height: 230px;
}
.meta-share-info div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
  margin: 0 8px;
}
.cat-list a {
  text-decoration: none;
  color: var(--orange);
  font-weight: bold;
}
  @media only screen and (max-width: 600px) {
    .blog-list {
      margin-top: -5.25%;
    }
    .blog-banner {
      background: url(../images/blog-banner-mobile.webp);
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: 100%;
      min-height: 280px;
      aspect-ratio: 1/0.8;
      padding: 25px 0;
    }
    .blog-banner-content {
      /*top: 10%;*/
    }
    .inner-banner {
      height: 300px;
    }
    .blog-cloud-img {
      bottom: 2%;
    }
    .blog-banner-content .yp-heading h2 .heading,
    .blog-banner-content .yp-heading h2 .heading-shadow {
      font-size: 28px;
    }
    .blog-banner-content .yp-heading-icon img {
      width: 60px;
    }
    .nav-tabs .nav-link {
      padding: 10px 20px;
    }
    .blog-item::after {
      margin: 1.5rem 0;
    }
    .blog-item .blog-title {
      font-size: 24px;
    }
    .subscribe-block h2 {
      font-size: 26px;
    }
    .subscribe-input-group {
      padding: 0px;
    }
    .leaderboard-banner {
      background: url(../images/yippee-leaderboard-mob-bg.webp);
      background-position: right top;
      background-repeat: no-repeat;
      background-size: cover;
    }
    .blog-item-text p:first-of-type::first-letter {
      font-size: 1.5em;
      margin-right: 0.25rem;
    }
    .leaderboard-cloud-img {
      bottom: -1%;
    }
    .leaderboard-banner-contnet .yp-heading h2 .heading,
    .leaderboard-banner-contnet .yp-heading h2 .heading-shadow {
      font-size: 28px;
    }
    .leadership-content {
      background-image: url(../images/leaderboard-designelm.png);
      background-repeat: no-repeat;
      background-position: 0px 8.5%;
      background-size: 100%;
    }
    .self-rank-num {
      font-size: 24px;
    }
    .self-rank-item .leaderboard-item-left {
      border: 4px solid var(--cream);
    }
    .subscribe-input-group .wpcf7-form-control-wrap input {
      padding: 0 5px;
    }
    .subscribe-input-group .btn {
      padding: 17px 10px;
      font-size: 16px;

    }
    .subscribe-block {
      height: 300px;
    }
    .meta-share-info .heateor_sss_sharing_container {
      position: absolute;
      right: 0;
      top: 100%;
      background-color: #fff;
      border-radius: 10px;
      padding: 3px;
    }
    .blog-item-text h2 {
      font-size: 22px;
    }
    .blog-share span, .blog-categories p, .blog-categories h5, .cat-list a {
      font-size: 16px;
    }
    .blog-categories::after {
      height: 3px;
      margin: 1.25rem 0rem;
    }
    .blog-inner-breadcrumb .breadcrumb-item a, .blog-inner-breadcrumb .breadcrumb-item.active {
      font-size: 14px;
    }
    .blog-item-text h4 {
      font-size: 1rem;
    }
    .blog-item-text h3 {
      font-size: 22px;
    }
    .blog-search {
      padding: 5px 10px;
    }
    .yp-heading {
      padding: 40px 0px 0px 40px;
    }
    .meta-share-info div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
      margin: 5px 0;
    }
    .suggestions-dropdown {
      margin-top: 0;
    }
  }

/* Searh results page */

.search-results-section {
  background-color: var(--cream);
}
.search-top-filter h1 {
  color: var(--dark);
  font-size: 32px;
  font-weight: bold;
}
.search-result-item::after {
  content: "";
  display: block;
  height: 5px;
  background: url(../images/blog-underline.png);
  width: 100%;
}
.search-result-item-in:hover {
  background-color: rgba(247, 148, 30, 0.12);
  border-radius: 12px;
}
.search-result-item .search-result-item-in a {
  text-decoration: none;
}
.search-result-item .search-result-item-in a h2{
  font-size: 24px;
  font-weight: bold;
  color: var(--dark);
}
.search-result-item .search-result-item-in a .search-content p {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(26, 26, 26, 0.8);
}
@media only screen and (max-width: 600px) {
  .search-top-filter h1 {
    font-size: 18px;
  }
  .search-result-item .search-result-item-in a h2 {
    font-size: 16px;
  }
  .search-result-item .search-result-item-in a .search-content p {
    font-size: 12px;
    margin-bottom: 0;
  }
}

#search-button, #close-button {
  transition: opacity 0.3s;
}
input#search-input::placeholder {
  color: rgb(107 107 132 / 54%);
}
input#search-input {
  font-size: 20px;
  padding: 13px 0px 13px 25px;
  line-height: 1.6;
}
span#search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px 15px 5px;
}
input#search-input:focus {
  box-shadow: none;
}
#close-button .custom-icon {
  width: 24px;
  opacity: 0.54;
}
#close-button {
  padding: 15px 20px 15px 5px;
  opacity: 1 !important;
  cursor: pointer;
}
.suggestions-dropdown {
  position: absolute;
  background: white;
  z-index: 1000;
  border-radius: 12px;
  width: 100%;
  top: 60px;
  left: 0;
  margin-top: 10px;
}
.suggestions-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: solid 1px #d7d7d7cc;
  border-radius: 12px;
  max-height: 250px;
  overflow-y: auto;
}
.suggestions-dropdown li {
  padding: 0px;
  border-bottom: 1px solid #eee;
}
.suggestions-dropdown li a {
  text-decoration: none;
  text-align: left !important;
  width: 100%;
  display: block;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #6c757d80;
  padding: 15px 30px;
  font-weight: 500;
  font-size: 16px;
}
.suggestions-dropdown li:hover {
  background: var(--orange); ;
}
.suggestions-dropdown li:hover a{
  color: var(--white);
}
.site-form {
  position: relative;
}
.novalue, .suggestions-dropdown p {
  background: var(--orange);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 15px;
  margin-bottom: 0;
}
#shareIcons span.heateor_sss_svg,
.blog-share span.heateor_sss_svg {
    background-color: transparent !important;
}
#shareIcons span.heateor_sss_svg svg,
.blog-share span.heateor_sss_svg svg {
    display: none !important;
}
#shareIcons .heateor_sss_sharing_ul a.heateor_sss_facebook,
.blog-share .heateor_sss_sharing_ul a.heateor_sss_facebook {
    background: url('../images/facebook.svg')no-repeat center !important;
    background-size: contain;
}
#shareIcons .heateor_sss_sharing_ul a.heateor_sss_button_x,
.blog-share .heateor_sss_sharing_ul a.heateor_sss_button_x {
    background: url('../images/twitter-x.svg')no-repeat center !important;
    background-size: contain;
}
#shareIcons .heateor_sss_sharing_ul a.heateor_sss_button_linkedin,
.blog-share .heateor_sss_sharing_ul a.heateor_sss_button_linkedin {
    background: url('../images/linkedin.svg')no-repeat center !important;
    background-size: contain;
}
#shareIcons .heateor_sss_sharing_ul a.heateor_sss_whatsapp,
.blog-share .heateor_sss_sharing_ul a.heateor_sss_whatsapp {
    background: url('../images/whatsapp.svg')no-repeat center !important;
    background-size: contain;
}
.swiper-pagination-bullet {
  margin: 6px !important;
}

.yippee-hm-hero {
  background: url(../images/stadium-background.png) no-repeat center;
  background-size: cover;
  padding-top: 2%;
  min-height: 400px;
  height: calc(100vh - 175px);
}
.yippee-hm-hero-right img {
  max-height: 100%;
}
.yippee-hm-hero-left{
  padding-bottom: 9%;
}
.banner-item-list ul {
  display: flex;
  gap: 20px;
  padding-top: 5%;
  justify-content: center;
}
.banner-item-list ul li{
  display: flex;
  gap: 10px;
  align-items: center;
}
.panorama-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--orange);
}
.yp-leaderboard-inner .yt-subhead {
  max-width: 560px;
}
.banner-item-list ul li .text {
  text-shadow: 9px 7px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}
.panorama-slider .swiper .swiper-slide iframe {
  width: 100% !important;
  height: 100%;
}
.shorts-link {
  position: relative;
}
.shorts-link::after {content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;inset: 0;}
.panorama-slider .swiper-3d {
  perspective: 2500px;
}

.subscribe-input-group .wpcf7-form-control-wrap input::placeholder{
  color: rgba(107, 107, 132, 0.8);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container img.poster-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.poster .play-btn-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}

.poster {
  width: 100%;
  height: 100%;
}
.play-btn-img {
  position: relative;
}
.video-container .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.del-btn-li {
  margin-top: 25px;
}
.logout-btn-li,
.del-btn-li {
  border: none;
  padding: 10px 0px;
}
.logout-btn-li a,
.logout-btn-li a:hover,
.logout-btn-li a:focus{
  background: transparent url('../images/logout-icon.svg') no-repeat left center !important;
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  color: #fff !important;
  padding: 5px 0 5px 28px !important;
  text-decoration: none;
}
.del-btn-li a,
.del-btn-li a:hover,
.del-btn-li a:focus{
  background: transparent url('../images/delete-icon.svg') no-repeat left center !important;
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  color: #fff !important;
  padding: 5px 0 5px 28px !important;
  text-decoration: none;
}
.sticy-quizbtn {
  width: 79px;
  height: 79px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  padding: 3px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  background: linear-gradient(to right, #FF671F, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FF671F);
  border: 3px solid #E6E7E8;
  font-family: var(--paytone);
  font-size: 17.3px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  z-index: 9;
}
.quiz-btn-in {
  background: linear-gradient(to bottom, #ffffff, #ffffffb8, #ffffff5e, #00000000, #00000000, #00000000);
  border-radius: 50px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.powerplay-prizes {
  padding: 40px 0;
}
.yippee-prizes {
  border-radius: 12px;
  background-color: #fff0da;
  padding: 0 12px;
  max-width: 1240px;
  margin: auto;
}
.icon-blurb-card {
  display: flex;
  gap: 36px;
  padding: 20px 0;
}
.blurb-icon-col {
  width: 106px;
}
.blurb-content h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.blurb-content p{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.26;
  color: rgba(26, 26, 26, 0.7);
}
.blurb-content p:last-child{
  margin-bottom: 0;
}
.yippee-prize-right-col {
  padding: 20px 7% 20px 7%;
}
.blurb-content {
  display: flex;
  align-items: center;
}
.yippee-prize-left-img {
  max-width: 550px;
}
.audio-controller-btns{
    position: fixed;
    right: 100px;
    bottom: 15px;
    display: flex;
    gap: 5px;
    z-index: 9;
}
.audio-control-btn {
    width: 79px;
    height: 79px;
    padding: 3px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: linear-gradient(to right, #FF671F, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FE9C0A, #FF671F);
    border: 3px solid #E6E7E8;
    font-family: var(--paytone);
    font-size: 17.3px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
}
.audio-control-btn-in {
    background: linear-gradient(to bottom, #ffffff, #ffffffb8, #ffffff5e, #00000000, #00000000, #00000000);
    border-radius: 50px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.audio-control-btn img{
    width: 36px;
}


.default-pg-main {
    background: #fcf7ee;
    display: inline-block;
    width: 100%;
    padding: 60px 0;
    color: #000;
    line-height: 26px;
}
.default-pg-main ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 0 8px 22px;
    font-size: 16px;
    line-height: 26px;
    position: relative;
}
.default-pg-main ul, .default-pg-main ol{
    padding-left: 0;
}
.default-pg-main ul li::before, .default-pg-main ol li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f7941e;
    border-radius: 10px;
    top: 16px;
    left: 0;
    box-shadow: 0px 0px 0px 3px rgb(254 195 106 / 60%);
}

.howzzat-cards {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}
.howzzat-card-in{
    perspective: 2500px;
    width: 100%;
}
.howzzat-card-in-wrap{
    display: flex;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
}
.howzzat-slide {
    transform-style: preserve-3d;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    width: 24%;
}
.howzzat-slide-container {
    width: 100%;
    height: 100%;
}
.howzzat-slide-container .poster {
    width: 100%;
    height: 100%;
}
.howzzat-slide-container .poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.howzzat-slide-container .video-wrapper {
    height: 100%;
    width: 100%;
}
.howzzat-slide-container .video-wrapper iframe {
    width: 100% !important;
    height: 100%;
}
.howzzat-cards .howzzat-slide:nth-child(1n),
.howzzat-cards .howzzat-slide:nth-child(6n) {
    background-color: #EF4043;
}
.howzzat-cards .howzzat-slide:nth-child(2n),
.howzzat-cards .howzzat-slide:nth-child(7n) {
    background-color: #1CBBB4;
}
.howzzat-cards .howzzat-slide:nth-child(3n),
.howzzat-cards .howzzat-slide:nth-child(8n) {
    background-color: #ED145B;
}
.howzzat-cards .howzzat-slide:nth-child(4n),
.howzzat-cards .howzzat-slide:nth-child(9n) {
    background-color: #FF994E;
}
.howzzat-cards .howzzat-slide:nth-child(5n),
.howzzat-cards .howzzat-slide:nth-child(10n) {
    background-color: #B6D434;
}


.related-blog-items .blog-article-in {
    width: 100%;
    padding-top: 70%;
    position: relative;
}
.related-blog-items .blog-article-in .blog-article-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body div.heateor_sss_horizontal_sharing a.heateor_sss_button_instagram span svg {
    display: block !important;
}
#shareIcons a.heateor_sss_button_instagram span.heateor_sss_svg, .blog-share a.heateor_sss_button_instagram span.heateor_sss_svg {
    background: #fff !important;
}
#shareIcons a.heateor_sss_button_instagram span.heateor_sss_svg svg, .blog-share a.heateor_sss_button_instagram span.heateor_sss_svg svg {
    display: block !important;
}


.myaccount-btn,
.myaccount-btn:hover,
.myaccount-btn:focus,
.myaccount-btn:active {
    background: #f79238 !important;
    width: 100%;
    border-radius: 0 !important;
    color: #ffff !important;
    font-size: 16px;
    outline: none !important;
    box-shadow: 0px -3px 20px rgba(0, 0, 0, 0.05) !important;
    border: none;
    padding: 10px;
}

.myaccount-btn span {
    position: relative;
    padding-right: 15px;
    font-family: 'Source Sans Pro', sans-serif;
}
.myaccount-btn span:after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transform: rotate(-135deg);
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 0;
    margin: auto;
    transition: all ease-in-out 500ms;
}
.myaccount-btn img {
    width: 22px;
    margin-right: 5px;
}

.myaccount-menu-wrapper {
    width: 100% !important;
}
.myaccount-menu-wrapper > ul {
    margin: 15px 0;
    padding-left: 0;
}
.myaccount-menu-wrapper > ul > li {
    margin: 3px 0;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}
.myaccount-menu-wrapper ul li {
    border: solid 1px #e5e5e5;
}
.myaccount-menu-wrapper ul li a {
    background-color: #f5f5f5;
    font-size: 15px;
    font-weight: normal;
    color: #131313;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    transition: all ease-in-out 350ms;
    text-decoration: none;
}
.myaccount-menu-wrapper ul li a .icon-circle {
    height: 20px;
    width: 20px;
    background-color: #000000;
    border-radius: 50%;
    margin-right: 6px;
    text-align: center;
    transition: all ease-in-out 350ms;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myaccount-menu-wrapper ul li a .icon-circle img {
    transition: all ease-in-out 350ms;
}
.myaccount-menu-wrapper .cat-circle-image {
    width: 12px;
}
.myaccount-menu-wrapper ul li:hover > a,
.myaccount-menu-wrapper ul li.active > a {
    background-color: #949494;
    color: #fff;
    text-decoration: none;
    transition: all ease-in-out 350ms;
}
.myaccount-menu-wrapper ul li:hover > a .icon-circle,
.myaccount-menu-wrapper ul li.active > a .icon-circle{
    background-color: #fff;
    transition: all ease-in-out 350ms;
}
.myaccount-menu-wrapper ul li:hover > a .icon-circle img,
.myaccount-menu-wrapper ul li.active > a .icon-circle img{
    filter: brightness(0.35);
}
.myaccount-btn.active span:after {
    transform: rotate(45deg);
    top: 0;
}

.fixed-btm-nav {
    position: fixed;
    bottom: 0px;
    z-index: 99999;
    width: 100%;
    left: 0px;
    background-color: rgb(255, 255, 255);
}
