.btn{
    display: inline-block;
    text-decoration: none;
    padding: 20px 25px;
    color: #000;
    background: #eee;
    transition: 0.3s ease-in-out;
}
.solid-btn{
    background: #000;
    color: #fff;
}
.solid-btn:hover, .solid-btn:focus{
    background: #FF6365;
    color: #fff;
}
.bordered-btn{
    background: transparent;
    border: 1px solid #000;
    color: #000;
}
.bordered-btn:hover, .bordered-btn:focus{
    background: #000;
    color: #fff;
}

/* Header Styles */
header{
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    background: #000000;
    width: 100%;
    transition: 0.3s ease-in-out;
    z-index: 9999;
}
header.fixed{
    background: #000;
    padding: 15px 0;
}
header .container {
    display: flex;
    align-items: center;
}

a.logo, a.logo > span {
    display: inline-block;
}
a.logo > span img, a.custom-logo-link img {
    width: 66px;
    height: auto;
    transition: 0.3s ease-in-out;
}
header.fixed a.logo > span img, header.fixed a.custom-logo-link img{
    width: 50px;
    height: 107px;
}

header .container #mainNav{
    padding-left: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
header .container #mainNav ul{
    list-style: none;
    padding: 0;
    display: flex;
    column-gap: 30px;
}
header .container #mainNav a{
    color: #fff;
    text-decoration: none;
}
header .container #mainNav a:hover{
    color: #F8E170;
}
.burger-menu{
    display: none;
}

.account-item, .cart-item{
    display: inline-flex;
    align-items: center;
}
.account-item a{
    font-size: 0;
    height: 32px;
    width: 32px;
    display: inline-flex
}
.account-item a::after{
    content: '';
    height: 32px;
    width: 32px;
    background: url(../img/user-icon.svg);
}
.cart-item a{
    font-size: 0;
    height: 32px;
    width: 32px;
    display: inline-flex;
    position: relative;
}
.cart-item a::after{
    content: '';
    height: 32px;
    width: 32px;
    background: url(../img/cart-icon.svg);
}
.cart-item a span {
    background: #F8E170;
    color: #000000;
    border-radius: 50%;
    display: inline-flex;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -12px;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
}

/* Footer Styles */
footer{
    background-color: #EDEDED;
    color: #000;
    padding-top: 90px;
    font-size: 15px;
}
footer a{
    text-decoration: none;
    color: #000;
}
footer a:hover{text-decoration: underline;}
footer a img{vertical-align: middle;}
footer ul {
    list-style: none;
    padding: 0;
}
.copyright{
    padding: 52px 0;
    border-top: 1px solid #D2D2D2;
    margin-top: 65px;
}

/* Homepage Styles */
.heading{
    font-size: 90px;
    color: #000;
    line-height: 1em;
}
.heading small {
    font-size: 60px;
    font-weight: 500;
}
.subtext{
    font-size: 28px;
    line-height: 1.5em;
    margin-top: 30px;
}

.hero{
    padding: 460px 0 115px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .65);
}
video.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero .container{
    position: relative;
    z-index: 1;
}
.hero h1{
    font-size: 110px;
}
.hero p, .inner-hero p{
    margin-top: 45px;
    font-size: 28px;
    line-height: 1.5em;
    font-weight: 400;
}

.about-ws p, .faq-bottom-box p{
    font-size: 45px;
    line-height: 1.5em;
}
.about-ws p span {
    display: block;
    font-family: 'Playfair';
    color: #000;
    font-weight: bold;
    font-size: 60px;
    max-width: 500px;
    margin-top: 30px;
}

.ws-4p-approach video{
    /*width: 100%;*/
    margin-left: auto;
    padding: 0;
}

.ws-power video{
    margin-top: 50px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    width: 100%;
}
.v-caption {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8em;
    padding: 20px;
    background: #323232;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-top: -5px;
}
.ws-power-card-inner{
    background: linear-gradient(180deg, #111111 0%, #222222 100%);
    padding: 40px;
}
.ws-power-card-inner h3{
    font-size: 60px;
    line-height: 1.1em;
}
.ws-power-card-inner h4 {
    font-size: 28px;
    line-height: 1.25em;
    font-weight: 300;
    margin-top: 25px;
}
.ws-power-card-inner h4 span {
    font-weight: 500;
}
.ws-power-card-inner ul{
    list-style: none;
    padding: 0;
    margin-top: 40px;
    font-size: 22px;
    line-height: 1.35em;
}
.ws-power-card-inner ul li{
    margin-bottom: 10px;
    padding-left: 35px;
    position: relative;
}
.ws-power-card-inner ul li:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/star-icon.svg);
    background-size: cover;
    position: absolute;
    top: 3p;
    left: 0;
}
.ws-power-card-inner h5{
    margin-top: 35px;
    font-size: 40px;
    line-height: 1.1em;
    font-family: 'Playfair';
}
.ws-power-card-inner > span {
    padding-left: 35px;
}
.ws-power .btn{
    font-size: 32px;
    color: #000;
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    text-decoration: none;
}
.ws-power .btn:hover{
    background: #FFC357;
}

.ws-cards .ws-card{
    background-color: #333;
    padding: 40px;
    color: #fff;
    height: 325px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.ws-cards .ws-card p{
    font-size: 22px;
    line-height: 1.25em;
    font-weight: 400;
    position: absolute;
    bottom: 30px;
    left: 40px;
    right: 40px;
}

.gallery img{
    border: 1px solid #000;
}
.gallery-box{
    padding-top: 60px;
}
.gallery-head-box {
    background: #000000;
    padding: 35px;
    position: relative;
}
.gallery-head-box img {
    width: 55%;
    margin-left: auto;
    display: block;
    margin-top: -80px;
    border: none;
}

.customer-testimony{
    margin-top: 60px;
}
.customer-testimony .owl-stage-outer{
    margin-right: -1px;
}
.customer-testimony .owl-stage .owl-item {
    display: flex;
}
.customer-testimony .owl-stage {
    display: flex;
}
.customer-testimony-item{
    padding: 45px;
    background: #F7F7F7;
    border: 1px solid #000;
    border-radius: 5px;
}
.customer-testimony-item p{
    font-size: 28px;
    line-height: 1.5em;
    color: #000;
    position: relative;
    z-index: 1;
}
.customer-testimony-item p::before {
    content: '';
    height: 95px;
    width: 95px;
    background: url(../img/quote-icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: -25px;
    top: -35px;
    z-index: -1;
}
.customer-testimony-item figure{
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.customer-testimony-item figure img{
    width: 84px !important;
    height: 84px;
    border-radius: 50%;
}
.customer-testimony-item figure figcaption {
    width: 100%;
    font-size: 28px;
    font-weight: 500;
    color: #000;
}
.customer-testimony-item figure figcaption small {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
}
.customer-testimony .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 8px;
}
.customer-testimony .owl-dots button{
    height: 10px;
    width: auto;
}
.customer-testimony .owl-dots button span {
    background: #D9D9D9;
    height: 10px;
    width: 25px;
    display: inline-block;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}
.customer-testimony .owl-dots button.active span {
    background: #000;
    width: 50px;
}

.cta-box{
    position: relative;
}
.cta-box::after{
    content: '';
    position: absolute;
    background: url(../img/logo-mirror.png);
    width: 290px;
    height: 550px;
    right: 125px;
    bottom: 0;
}
.custom-carousel .owl-stage {
    display: flex;
}
.custom-carousel .owl-stage .owl-item {
    display: flex;
}
.custom-carousel .carousel-item{
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #fff;
    width: 100%;
}
.custom-carousel img {
    max-width: 135px;
    height: auto;
}
.custom-carousel .carousel-item p {
    font-size: 28px;
    line-height: 1.75em;
    font-weight: 400;
    padding-top: 15px;
}

.cta .buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.cta .buttons .solid-btn {
    background: #fff;
    color: #000;
    font-weight: 400;
    padding-left: 45px;
    padding-right: 45px;
}
.cta .buttons .solid-btn:hover, .cta .buttons .solid-btn:focus{
    background: #FF6365;
    color: #fff;
}
.cta .buttons .bordered-btn {
    border-color: #fff;
    color: #fff;
    padding-left: 45px;
    padding-right: 45px;
    font-weight: 400;
}
.cta .buttons .bordered-btn:hover, .cta .buttons .bordered-btn:focus{
    background: #fff;
    color: #000;
}

/* Inner page styles */
.page-content h2 {
    font-size: 42px;
    color: #000;
    margin-top: 40px;
    margin-bottom: 25px;
}
.page-content p {
    margin-bottom: 25px;
    line-height: 1.5em;
}
.page-content ol, .page-content ul {
    padding-left: 17px;
    margin-bottom: 25px;
}
.page-content ol li ul, .page-content ol li ol, .page-content ul li ul, .page-content ul li ol{
    margin-top: 15px;
}
.page-content ol li:not(:last-child), .page-content ul li:not(:last-child){
    margin-bottom: 10px;
}
.inner-hero{
    background: #000;
    color: #fff;
    padding-top: 300px;
    padding-bottom: 115px;
}
.inner-hero h1{
    font-size: 100px;
}
.inner-hero p{
    margin-top: 20px;
}

/* Faq page styles */
.faq-lists{
    list-style: none;
    padding: 0;
}
.faq-lists > li{
    padding: 25px 0;
    border-bottom: 1px solid #C7C7C7;
}
.faq-lists > li:not(:last-child){
    margin-bottom: 15px;
}
.faq-lists .faq-question{
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #000;
    position: relative;
    cursor: pointer;
}
.faq-lists .faq-question::after{
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    height: 20px;
    width: 20px;
    background: url(../img/plus-icon.svg);
    transition: 0.3s ease-in-out;
}
.faq-lists .faq-question.active::after{
    background: url(../img/minus-icon.svg);
}
.faq-lists .faq-answer{
    font-size: 18px;
    line-height: 1.5em;
    padding-top: 5px;
    display: none;
    font-weight: 300;
}
.faq-lists .faq-answer p, .faq-lists .faq-answer ul, .faq-lists .faq-answer ol{
    padding-top: 15px;
}
.faq-lists .faq-answer ul {
    padding-left: 17px;
    list-style: disc;
}


/* About page styles */

.about-founder .quote-text{
    margin-top: 50px;
    position: relative;
}
.about-founder .quote-text::before {
    content: '';
    height: 105px;
    width: 105px;
    background: url(../img/quote-icon-dark.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: -25px;
    top: -40px;
    z-index: -1;
}
.about-founder .name{
    font-weight: 600;
    margin-top: 40px;
}
.about-founder .designation{
    font-size: 20px;
    display: block;
    margin-top: 5px;
}

/* Contact page styles */
p.highlighted-text {
    font-family: 'Playfair';
    font-size: 54px;
    color: #000;
    font-weight: bold;
    line-height: 1em;
    margin-top: 40px;
}
a.whatsapp-btn {
    padding: 15px 30px;
    background: #7CC642;
    font-size: 28px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    margin-top: 50px;
    transition: 0.3s ease-in-out;
}
a.whatsapp-btn:hover{
    background: #599f23;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, .25);
}
.inner-heading{
    font-size: 60px;
    position: relative;
    z-index: 1;
}
.form-box {
    overflow: hidden;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, .25);
    margin-top: -360px;
}
.form-box .title-box {
    background-color: #383737;
    background-image: url(../img/title-box-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 195px 30px 20px;
}
.form-box .title-box::before{
    content: '';
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.form-box .content-box{
    padding: 50px 40px;
}
.form-box .content-box .form-group {
    margin-bottom: 20px;
}
.form-box .content-box .form-group .form-control {
    height: 54px;
    padding: 10px 15px;
    font-size: 18px;
    font-family: 'Montserrat';
    width: 100%;
    border-radius: 5px;
    border: 1px solid #B7B7B7;
    outline: none !important;
}
.form-box .content-box .form-group textarea.form-control {
    height: 175px;
}
.form-box .content-box .form-btn{
    height: 64px;
    width: 100%;
    background: #000;
    color: #fff;
    border-radius: 5px;
    border: none;
    outline: none !important;
    font-size: 18px;
    font-family: 'Montserrat';
}
.form-box .content-box span.wpcf7-spinner {
    display: none;

}
.form-box .content-box .form-group .wpcf7-not-valid-tip{
    margin-top: 5px;
}

/* Career Page Design */
.job-openings .subtext {
    font-weight: 500;
    color: #000;
    margin: 0;
}
.job-openings .col-inner {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.job-openings .col-inner h3 {
    font-family: 'Montserrat';
    color: #000;
    font-size: 22px;
    font-weight: 600;
}
.job-openings .col-inner p {
    margin-top: 15px;
}
.job-openings .bottom-text {
    line-height: 1.75em;
    color: #000;
}
.job-openings .bottom-text a {
    font-weight: 600;
    text-decoration: none;
    color: #000000;
}
.job-openings .bottom-text a:hover{
    text-decoration: underline;
}
.job-form {
    max-width: 800px;
    padding: 25px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .15);
    border-radius: 10px;
}
.job-form h2 {
    color: #000;
    font-size: 35px; 
    margin-bottom: 35px;
}
.job-form .form-group {
    margin-bottom: 20px;
}
.job-form .form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 7px;
}
.job-form .form-group .form-control {
    height: 50px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #e0e0e0;
    outline: none;
    border-radius: 5px;
}
input[type="file"] {
    width: 100%;
    padding: 14px 15px;
    background: #f1f1f1;
    border-radius: 5px;
}




/* Why Wisesteps Page Styles */
.hero-slider{
    background: linear-gradient(to bottom, #000000, #444444);
    padding: 230px 0 115px;
}
.hero-slider .slider-wrapper {
  width: 100%;
}
.hero-slider .slider-wrapper h2 {
  font-size: 90px;
  color: #fff;
}
.hero-slider .slider-wrapper p {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-top: 40px;
    line-height: 1.3em;
    max-width: 525px;
}
.hero-slider .video-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider .animated-blob {
  width: 100%;
  height: 100%;
  clip-path: path('M106.886 69.1677C329.831 -122.217 460.054 142.211 615.944 161.608C771.834 181.006 798.272 448.943 687.063 534.044C575.854 619.145 304.285 619.167 182.13 556.456C59.975 493.745 -116.059 260.553 106.886 69.1677Z');
  overflow: hidden;
}
.hero-slider .animated-blob video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slider .owl-dots {
    margin-top: 40px;
    display: flex;
    gap: 8px;
}
.hero-slider .owl-dots button {
    width: auto;
    height: 10px;
}
.hero-slider .owl-dots button span {
    width: 10px;
    height: 10px;
    display: block;
    background: #636363;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}
.hero-slider .owl-dots button.active span {
    width: 35px;
    background: #fff;
}
.subtext > p:not(:first-child){
    margin-top: 20px;
}
.question-box{
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.15);
    background-image: url(../img/question-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}
.search-bar {
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 25px 20px;
  max-width: 750px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
#typed-output {
  border: none;
  outline: none;
  font-size: 28px;
  width: 100%;
  background: transparent;
  color: #000;
}
.search-icon {
  font-size: 28px;
  margin-left: 10px;
  color: #000;
}
.early-engagement h4 {
    font-size: 40px;
    line-height: 1em;
    font-family: 'Playfair';
    font-weight: bold;
}
section.early-engagement .subtext {
    font-weight: 400;
}
.learning-framework{
    position: relative;
}
.learning-framework .content-box {
    font-size: 28px;
    line-height: 1.5em;
    padding-top: 200px;
    padding-bottom: 200px;
}
.learning-framework .content-box ul li:not(:last-child) {
    margin-bottom: 20px;
}
.learning-framework .content-box ul li span {
    font-size: 45px;
    line-height: 1em;
    font-weight: 600;
}
.learning-framework video {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: -1;
}
.stage-journey ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.stage-journey ul li {
    width: 33.33%;
    display: flex;
    background: linear-gradient(to bottom, #ffffff, #EBEBEB);
    text-align: center;
}
.stage-journey ul li:not(:last-child) {
    border-right: 1px solid #000;
}
.stage-journey ul li figure figcaption, .program-options figure figcaption{
    padding: 0 30px 40px;
}
.stage-journey ul li figure figcaption span, .program-options figure figcaption span {
    display: inline-flex;
    background: #000;
    height: 72px;
    width: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .25);
    margin-top: -40px;
}
.stage-journey ul li figure figcaption h3, .program-options figure figcaption h3{
    color: #000;
    font-size: 32px;
    margin-top: 20px;
}
.stage-journey ul li figure figcaption h3 small, .program-options figure figcaption h3 small {
    display: block;
    font-size: 20px;
    color: #555555;
    font-weight: 300;
    font-family: 'Montserrat';
    margin-top: 10px;
}
.stage-journey ul li figure figcaption p {
    color: #555555;
    margin-top: 40px;
    font-size: 22px;
    line-height: 1.5em;
}
.inner-heading small {
    font-size: 28px;
    line-height: 1em;
    margin-top: 10px;
}
.phygital-learning-points p {
    font-size: 22px;
    line-height: 1.5em;
}
.progress .col-inner {
    min-height: 420px;
    max-width: 420px;
    background-size: cover;
    background-color: #000;
    border-radius: 50%;
    width: auto !important;
    margin: auto;
    padding: 50px;
}
.progress .col-inner p {
    font-size: 28px;
    color: #fff;
    line-height: 1.5em;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid #555555;
}
.info-list li:last-child{
    border: none;
    padding-bottom: 0;
}
.info-text {
  flex: 1;
  padding-right: 20px;
    max-width: 1000px;
}
.info-text h3 {
  font-size: 60px;
  margin: 0 0 10px;
  color: #000;
}
.info-text p {
  font-size: 28px;
  color: #555555;
  margin-top: 20px;
  line-height: 1.5em;
}
.info-icon {
  flex-shrink: 0;
  width: 120px;
  text-align: right;
}
.info-icon img {
  max-width: 100%;
  height: auto;
}
.program-options figure > img{
    border: 5px solid #EBEBEB;
}

.inner-hero.program-page {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 165px;
    position: relative;
    overflow: hidden;
}
.inner-hero.program-page img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
}
.inner-hero.program-page video{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    top: 0;
    /*height: 100%;*/
}
.inner-hero.program-page .content-area {
    position: relative;
    z-index: 1;
    padding-top: 135px;
    padding-bottom: 115px;
}
.inner-hero.program-page .content-area h1{
    color: #000;
}
.inner-hero.program-page span.supporting-text {
    font-size: 34px;
    font-weight: 500;
    margin-top: 40px;
    display: block;
    line-height: 1em;
    color: #000;
}
.inner-hero.program-page .content-area p {
    margin-top: 30px;
    color: #000;
    font-size: 24px;
}
.inner-hero.program-page .content-area p span {
    display: block;
    font-weight: 600;
    color: #F6C420;
}
.p-table {
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .15);
    overflow: hidden;
}
.p-table .img-box{
    line-height: 0;
}
.p-table .table-head {
    background: #000;
    padding: 40px 20px;
    color: #fff;
}
.p-table .table-head h3 {
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: 600;
}
.p-table .table-head p {
    margin-top: 10px;
}
.bottom-head {
    background: #EFEFEF;
    padding: 25px 30px;
}
.bottom-head p {
    color: #000;
    font-weight: 500;
}
.p-table .program-price {
    padding: 40px 20px 30px;
    border-top: 1px solid #C7C7C7;
}
.p-table .program-price .icon-box {
    height: 85px;
    width: 85px;
    background: #000;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .25);
}
.p-table .program-price .price {
    color: #E62A2E;
    font-size: 28px;
    font-weight: 500;
    text-decoration: line-through;
    margin-top: 30px;
}
.p-table .program-price .d-price {
    color: #000;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2em;
}
.p-table ul.list {
    text-align: left;
    padding: 25px 20px;
    list-style: none;
    border-top: 1px solid #C7C7C7;
}
.p-table ul.list li{
    position: relative;
    padding-left: 35px;
}
.p-table ul.list li:not(:last-child){
    margin-bottom: 15px;
}
.p-table ul.list li:before{
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/check-icon.svg);
    background-size: cover;
}
.p-table ul.list li span{
    font-weight: 500;
    font-size: 24px;
}
.p-table .link-container {
    padding: 0 20px;
}
.p-table .link-container a{
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
.p-table .btn-box {
    background: #F0EEEE;
    padding: 30px 25px;
    margin-top: 30px;
}
.p-table-headings {
    background: #F7F7F7;
    text-align: left;
    border-radius: 10px;
}
.p-table-headings > div {
    padding: 30px;
}
.p-table-headings > div:not(:first-child){
    border-top: 1px solid #C7C7C7;
}
.p-table-headings h3 {
    font-size: 40px;
    color: #000;
    font-family: 'Montserrat';
    font-weight: 600;
}
.p-table-headings h3 span {
    display: block;
    margin-top: 10px;
    color: #015FD9;
}

/* Featured Table */
.responsive-table {
    overflow: auto;
}
.feature-comparison-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: separate;
  border-spacing: 30px 0;
  font-size: 14px;
}
.feature-comparison-table th,
.feature-comparison-table td {
  border: 1px solid #ccc;
  padding: 20px 15px;
  vertical-align: top;
  text-align: left;
  width: 25%;
}
.feature-comparison-table td > strong {
    color: #015FD9;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    display: block;
    padding-left: 20px;
    font-size: 16px;
}
.feature-comparison-table td > strong::before {
  content: "+";
  position: absolute;
  left: 0px;
  font-weight: 600;
}
.feature-comparison-table tr.open td > strong::before {
  content: "–";
}
.feature-comparison-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}
.feature-comparison-table td > p{
    padding-left: 20px;
    margin-top: 10px;
}
.feature-comparison-table td p+ul, .feature-comparison-table td strong+ul  {
  padding-left: 20px;
  margin: 0;
  list-style: none;
  padding-top: 10px;
}
.feature-comparison-table td span+ul{
    list-style: none;
    padding-top: 10px;
} 
.feature-comparison-table td ul li:not(:last-child) {
  padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.feature-comparison-table td ul li strong, .feature-comparison-table td p strong{
    font-weight: 600;
}
.feature-comparison-table td ul li small {
    line-height: 1.2em;
    display: block;
    margin-top: 10px;
}
table span.check {
    font-size: 0;
    height: 20px;
    width: 20px;
    display: inline-block;
    background-image: url(../img/check-icon.svg);
    background-size: cover;
}

.accordion-toggle {
  cursor: pointer;
}
/* table tr td > strong+p, table tr td > strong+ul, table tr td > p+ul, table tr td > span+ul, table tr td > span+p, table tr td > div{
    display: none;
}  */
table tr td > span+p{
    padding-left: 0 !important;
}
table tr td > div{
    list-style: none;
}
table tr td > div > ul {
    list-style: auto;
    margin-top: 10px !important;
    padding-left: 17px;
    font-weight: 400;
}
table tr td > div > ul > li{
    min-height: unset !important;
    margin-bottom: 5px !important;
}
table tr.open td > strong+p, table tr.open td > strong+ul, table tr.open td > p+ul, table tr.open td > span+ul, table tr.open td > span+p, table tr.open td > div{
    display: block;
}
.feature-comparison-table td > p:first-child{
    margin-top: 0;
    padding-left: 0;
}
.no-border > li{
    border: none !important;
    padding-bottom: 0 !important;
}
.feature-comparison-table td ul li p:not(:last-child) {
    margin-bottom: 10px;
}
.btn-box {
    display: block;
    background: #F7F7F7;
    margin: -20px -15px;
    padding: 25px;
    text-align: center;
    font-size: 18px;
}
.feature-comparison-table th:first-child, .feature-comparison-table td:first-child {
    background: #F7F7F7;
}

.comparison-table {
    padding: 40px 25px;
}
.saving-info {
    display: flex;
    justify-content: end;
}
.saving-info-data {
    background: linear-gradient(#85DF5D, #1C7600);
    display: block;
    width: 41.66666667%;
    padding: 15px;
    border-radius: 15px;
    font-size: 60px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    position: relative;
}
.saving-info-data::before, .saving-info-data::after{
    content: '';
    background: url(../img/icon99.svg);
    width: 10px;
    height: 52px;
    background-size: cover;
    position: absolute;
    top: -35px;
    left: 8%;
}
.saving-info-data::after{
    left: auto;
    right: 8%;
}
.saving-info-data > span {
    display: inline-block;
    text-align: left;
}
.saving-info-data small {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: -7px;
}
.saving-info-data > span span {
    font-family: 'Playfair';
    font-size: 74px;
    font-weight: 800;
}
span.vs {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    line-height: 1em;
}
.data-compare h3 span {
    font-size: 20px;
}
.data-compare h3 {
    font-size: 50px;
    font-family: 'Montserrat';
}
.left-box {
    text-align: right;
}
.right-box {
    text-align: left;
}
.left-box h3 {
    color: #00A7CC;
}
.right-box h3 {
    color: #39B14D;
}
.table-header p {
    font-weight: 500;
}
.table-body .price-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #EDEDED;
  height: 54px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 4px 4px rgba(0,0,0,.10);
}
.table-body .price-bar .highlight {
  background: #00d5f2;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.table-body .price-bar .price {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 500;
  margin-right: 15px;
  color: #000;
}
.table-body .price-note {
    font-size: 15px;
    margin-top: 4px;
    font-weight: 500;
    padding-right: 15px;
}
.table-body .story-icon {
  margin: 10px auto;
  display: block;
  width: 50px;
  height: auto;
}
.table-body .story-button {
  display: inline-block;
  padding: 5px 10px;
  background-color: #d2e6ff;
  border-radius: 4px;
  font-size: 13px;
  color: #003d99;
  border: 1px solid #007bff;
  text-decoration: none;
}

.table-body .right-box h3 {
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  color: #000;
  height: 54px;
    padding: 10px 15px;
    background: #EDEDED;
    box-shadow: inset 0 4px 4px rgba(0,0,0,.10);
    position: relative;
}
.table-body .right-box h3::after {
  content: '';
  margin-left: 10px;
  font-size: 1.1rem;
  position: absolute;
  right: 15px;
  height: 32px;
    width: 32px;
    background: url(../img/table-check-icon-2.svg);
    background-size: cover;
}
.table-body .right-box h3 .text-green {
    color: #39B14D !important;
}
.table-body .right-box h3 strong{
    display: contents;
}
.table-body .right-box p {
  font-size: 15px;
  margin-top: 4px;
  line-height: 1.5em;
    font-weight: 400;
    padding-left: 15px;
}
.center-box p{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 10px;
}
.left-box, .center-box, .right-box{
    padding-bottom: 30px;
}
.center-box {
    border-left: 1px solid #C7C7C7;
    border-right: 1px solid #C7C7C7;
}
.table-body .right-box.total-price .price-bar {
    background: #3D7B34;
}
.table-body .left-box.total-price .price-bar {
    background: #FF6365;
}
.table-body .total-price .price-bar .price small {
    font-size: 12px;
    display: block;
}
.table-body .total-price .price-bar .price {
    text-align: left;
    color: #fff;
    margin-top: -5px;
}
.table-body .total-price .price-bar .price small {
    font-size: 15px;
    display: block;
}
.table-body .right-box .price-bar {
    justify-content: unset;
    padding-left: 15px;
}
.table-body .total-price .price-bar{
    height: 66px;
}
.table-body .total-price .price-note {
    line-height: normal !important;
    font-size: 12px !important;
    font-weight: 400;
}
.table-note {
    font-size: 10px;
    color: #61BB3D;
    line-height: 1.2em;
}
ul.guide {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 30px;
    justify-content: center;
}
ul.guide li {
    width: calc(16.35% - 20px);
    padding: 60px 20px 25px;
    background: linear-gradient(#787878, #000);
    font-size: 22px;
    line-height: 1.5em;
    font-weight: 400;
    border-top: 2px solid #F6C420;
    position: relative;
}
ul.guide li::before {
    content: '';
    height: 62px;
    width: 62px;
    background: #F6C420;
    border-radius: 50%;
    position: absolute;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
}
ul.guide li::after {
    content: '';
    height: 26px;
    width: 26px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.pre-order-box {
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .25);
    overflow: hidden;
}
.pre-order-box .pre-order-box-content {
    padding: 60px 35px;
}
.pre-order-box .pre-order-box-content .btn {
    margin-top: 35px;
    background: #fff;
    color: #000;
}
.pre-order-box .pre-order-box-content .btn:hover, .pre-order-box .pre-order-box-content .btn:focus{
    background: #F6C420;
    color: #000;
}
.pre-order-box > img {
    margin-bottom: -5px;
}



/* Refund Policy Form Styles */
.refund-form {
    padding: 30px;
    background: #eaeaea;
    margin-top: 50px;
    border-radius: 10px;
}
.refund-form .form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}
.refund-form .form-group .form-control {
    height: 54px;
    padding: 10px 15px;
    border: none;
    width: 100%;
    font-size: 18px;
    font-family: 'Montserrat';
}
.refund-form .form-group textarea {
    width: 100%;
    border: none;
    font-size: 18px;
    font-family: 'Montserrat';
    padding: 10px 15px;
}
.refund-form .form-group input[type="file"] {
    font-size: 18px;
    padding: 13px 15px;
    background: #fff;
    width: 100%;
    font-family: 'Montserrat';
}
.refund-form .btn {
    font-size: 18px;
    padding: 20px 50px;
    border: none;
    cursor: pointer;
}

/* Affiliate Page Design */
.inner-hero.affiliate-page {
    background-size: cover;
    background-position: center;
}
.inner-hero.affiliate-page span.supporting-text {
    display: block;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25em;
    margin-top: 25px;
    color: #F6C420;
}
.inner-hero.affiliate-page p {
    font-size: 18px;
}
.inner-hero.affiliate-page .btn {
    margin-top: 35px;
    padding: 20px 70px;
    background: #F6C420;
    color: #000;
    font-weight: 500;
}
.inner-hero.affiliate-page .btn:hover, .inner-hero.affiliate-page .btn:focus{
    background: #fff;
}
.affiliate-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 150px;
  padding: 0 20px;
}
.step-card {
  flex: 1 1 30%;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 25px 25px 35px;
  position: relative;
  box-sizing: border-box;
}
.step-card:not(:last-child)::before {
    content: '';
    width: 80%;
    height: 110px;
    background: url(../img/step-arrow.svg);
    background-size: contain;
    position: absolute;
    top: -60px;
    right: -100px;
    background-repeat: no-repeat;
    transform: rotate(2deg);
}
.step-number {
  font-size: 90px;
  font-weight: 700;
  color: #f4c012;
  margin-bottom: 10px;
  display: block;
    line-height: normal;
}
.step-card h3 {
    margin: 0 0 20px;
    padding-top: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    font-family: 'Montserrat';
}
.step-card ul {
  padding-left: 17px;
  margin: 0;
  line-height: 1.5em;
}
.step-card ul li:not(:last-child){
    margin-bottom: 10px;
}
.influencer-carousel{
    position: relative;
}
.influencer-carousel .owl-stage{
    display: flex;
}
.influencer-card {
  background: #3a3a3a;
  border: 1px solid #f4c012;
  border-radius: 10px;
  padding: 25px 20px;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
}
.influencer-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat';
    line-height: 1.25em;
}
.influencer-card h3 span {
  color: #f4c012;
  font-weight: 700;
}
.influencer-card h3 strong {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-top: 5px;
}
.influencer-card ul {
  list-style: none;
  padding: 15px 0 0;
  margin: 0;
}
.influencer-card li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  padding-left: 35px;
}
.influencer-card li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url(../img/check-icon.svg);
    background-size: cover;
    top: 2px;
    left: 0;
}
.inner-faq{
    list-style: none;
}
.inner-faq > li {
    position: relative;
    padding: 25px;
    background-color: #F4F4F4;
    text-align: left;
    border-radius: 10px;
}
.inner-faq li:not(:last-child) {
    margin-bottom: 20px;
}
.inner-faq .question {
    position: relative;
    font-size: 22px;
    line-height: 1.25em;
    font-weight: 500;
    cursor: pointer;
    color: #000;
    padding-right: 30px;
}
.inner-faq .question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
}
.inner-faq .open .question::after {
    content: '-';
}
.inner-faq .answer {
    color: #555;
    display: none;
    margin-top: 25px;
    transition: unset;
    line-height: 1.25em;
}
.inner-faq .answer ul, .inner-faq .answer ol {
    padding-left: 17px;
}
.inner-faq .answer ul li, .inner-faq .answer ol li {
    margin-bottom: 5px !important;
}
.signup-section{
    background-size: cover;
}
.signup-section .btn{
    margin-top: 30px;
}
.inner-cta h2.inner-heading{
    color: #000;
}
.inner-cta ul li:not(:last-child){
    margin-bottom: 10px;
}
.inner-cta ul li a, .inner-cta ul li strong{color: #000}
.bottom-text p {
    font-size: 22px;
    line-height: 1.35em;
}


@media (min-width: 768px) {
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #f4c012;
    transform: rotate(45deg);
  }
}
.guidelines-carousel{
    position: relative;
}
.guidelines-carousel .owl-stage, .guidelines-carousel .owl-stage .owl-item{
    display: flex;
}
.guidelines-card {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 30px 25px;
  width: 100%;
}

.guidelines-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  font-family: montserrat;
  position: relative;
  padding-left: 45px;
  line-height: 1.2em;
}
.guidelines-card h3::before{
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    height: 32px;
    width: 32px;
    background-image: url(../img/sealcheck-icon.svg);
    background-size: cover;
}

.guidelines-card p {
  margin-top: 20px;
  line-height: 1.5;
  font-size: 20px;
}
.influencer-carousel .owl-nav button,
.guidelines-carousel .owl-nav button{
    position: absolute;
    top: 50%;
    /*transform: translateY(-50%);*/
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f3f3f3eb !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.guidelines-carousel .owl-nav button{
    filter: invert(.8);
}
.influencer-carousel .owl-nav button.owl-prev,
.guidelines-carousel .owl-nav button.owl-prev{
    left: 15px;
    background-image: url(../img/left-arrow-icon.svg);
}
.influencer-carousel .owl-nav button.owl-next,
.guidelines-carousel .owl-nav button.owl-next{
    right: 15px;
    background-image: url(../img/right-arrow-icon.svg);
}
.influencer-carousel .owl-nav button:hover,
.guidelines-carousel .owl-nav button:hover{
    background-color: #f3f3f3 !important;
}
.influencer-carousel .owl-nav button span,
.guidelines-carousel .owl-nav button span{
    display: none;
}
.guidelines-carousel .owl-nav button:hover{
    filter: invert(1);
}


/* Woocommerce Styles */
.woocommerce-page section.inner-hero {
    padding: 250px 0 60px;
}
.woocommerce-page section.inner-hero h1 {
    font-size: 50px;
}
.woocommerce h2 {
    margin-top: 0;
	text-transform: capitalize;
}
.wp-block-woocommerce-coming-soon.woocommerce-coming-soon-store-only {
    padding-top: 200px;
}
.wp-block-woocommerce-coming-soon.woocommerce-coming-soon-store-only h1, .wp-block-woocommerce-coming-soon.woocommerce-coming-soon-store-only p {
    color: #fff;
}
.woocommerce-form-login, .woocommerce-form-register {
    background: #eee;
    padding: 30px 25px;
    border-radius: 10px;
}
.woocommerce-form-login .input-text, form.woocommerce-ResetPassword.lost_reset_password input.input-text,
.woocommerce-form-register .input-text {
    padding: 15px 15px !important;
    font-size: 18px;
    border: none !important;
    outline: none !important;
}
.woocommerce form.woocommerce-form-login label {
    margin-bottom: 10px;
}
.woocommerce form.woocommerce-form-login input[type="checkbox"] {
    height: 20px;
    width: 20px;
    vertical-align: sub;
}
.woocommerce-form-login button.woocommerce-button, form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button,
.woocommerce-form-register button.woocommerce-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 20px 50px;
    font-size: 18px;
    margin-top: 15px;
    cursor: pointer;
}
.woocommerce-form-login button.woocommerce-button:hover, .woocommerce-form-login button.woocommerce-button:focus,
form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:hover, form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:focus,
.woocommerce-form-register button.woocommerce-button:hover, .woocommerce-form-register button.woocommerce-button:focus{
    background: #F6C420;
    color: #000;
}
p.woocommerce-LostPassword.lost_password {
    margin-top: 15px;
}
p.woocommerce-LostPassword.lost_password a {
    text-decoration: none;
    color: #000;
}
p.woocommerce-LostPassword.lost_password a:hover {
    text-decoration: underline;
}
form.woocommerce-ResetPassword.lost_reset_password {
    background: #eee;
    padding: 30px 25px;
    border-radius: 10px;
}
nav.woocommerce-MyAccount-navigation {
    padding: 30px 25px;
    background: #eee;
    border-radius: 10px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:not(:last-child){
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    font-weight: 600 !important;
    color: #000 !important;
    text-decoration: none;
}


@media (max-width: 1799px){
    .ws-power-card-inner h3{
        font-size: 55px;
    }
    .ws-power-card-inner ul{
        font-size: 20px;
    }
    .ws-power .btn{
        font-size: 28px;
    }
}

@media (max-width: 1499px){
    .about-ws p, .faq-bottom-box p{font-size: 40px;}
    .about-ws p span{font-size: 50px;}
    .heading{ font-size: 76px; }
    .heading small{font-size: 60px;}
    .ws-power-card-inner{padding: 35px;}
    .ws-power-card-inner h3{ font-size: 46px;}
    .ws-power-card-inner h4{ font-size: 22px;}
    .ws-power-card-inner ul{ font-size: 18px; }
    .ws-power-card-inner ul li{ padding-left: 30px; }
    .ws-power-card-inner ul li:before{ width: 20px; height: 20px; }
    .ws-power-card-inner h5{ font-size: 30px; }
    .ws-power .btn{ font-size: 22px; padding: 20px; border-radius: 15px;}
    .customer-testimony-item p{ font-size: 20px; }
    .customer-testimony-item figure figcaption{ font-size: 22px; }
    .customer-testimony-item figure figcaption small{ font-size: 17px; }
    .custom-carousel img{max-width: 100px;}
    .custom-carousel .carousel-item p{ font-size: 22px; line-height: 1.5em; }
    .subtext{font-size: 22px;}
    .btn {
        font-size: 20px;
        padding: 15px 25px;
    }
}

@media (max-width: 1399px){
    .about-ws p, .faq-bottom-box p{font-size: 36px;}
    .about-ws p span{font-size: 45px;}
    .ws-power-card-inner h3{ font-size: 44px;}
    .v-caption{ font-size: 20px; }
    .heading{ font-size: 65px; }
    .heading small{font-size: 50px;}
    .ws-cards .ws-card p{ font-size: 20px; }
}

@media (max-width: 1299px){
    .about-ws p, .faq-bottom-box p{font-size: 32px;}
    .about-ws p span{font-size: 40px;}
    .heading{ font-size: 52px; }
    .heading small{font-size: 42px;}
    .ws-cards .ws-card p{ font-size: 18px; }
}


@media (max-width: 1199px){
    header .container #mainNav{
        margin-left: auto;
        width: auto;
        padding-left: 0;
    }
    .burger-menu {
        display: block;
        position: relative;
        width: 34px;
        height: 34px;
        cursor: pointer;
        z-index: 1;
        margin-left: 25px;
    }
    .burger-menu span, .burger-menu span::after, .burger-menu span::before {
        width: 34px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
        position: absolute;
        top: 15px;
    }
    .burger-menu span::before, .burger-menu span::after {
        content: "";
        position: absolute;
    }
    .burger-menu span::before {
        top: -10px;
    }
    .burger-menu span::after {
        top: 10px;
    }
    .burger-menu.active span {
        transform: translate3d(0, 10px, 0) rotate(45deg);
        top: 8px;
    }
    .burger-menu.active span::before {
        transform: translate3d(0, 10px, 0) rotate(45deg);
        opacity: 0;
    }
    .burger-menu.active span::after {
        transform: translate3d(0, -20px, 0) rotate(-90deg);
        top: 20px;
    }
    
    nav.main-nav {
        background: #000;
        position: fixed;
        left: -360px;
        width: 350px;
        padding: 0 20px;
        top: 0;
        bottom: 0;
        z-index: 999;
        transition: 0.3s ease-in-out;
    }
    nav.main-nav.active{
        left: 0;
    }
    header .container #mainNav .main-nav ul {
        display: block;
        padding: 30px 0;
    }
    header .container #mainNav .main-nav ul li:not(:last-child){
        margin-bottom: 30px;
    }
    header .container #mainNav .main-nav ul li a {
        font-size: 22px;
    }
    .hero h1{
        font-size: 90px;
    }
    ul.guide {
        gap: 60px 30px;
    }
    ul.guide li{
        width: calc(33.3% - 20px);
    }
    .feature-comparison-table {
        border-collapse: separate;
        border-spacing: 5px 0;
    }
    .p-table .program-price .d-price{
        font-size: 50px;
    }
    
    .about-ws p, .faq-bottom-box p{font-size: 26px;}
    .about-ws p span{font-size: 35px; max-width: 400px;}
}
@media (max-width: 991px){
    .hero h1{
        font-size: 70px;
    }
    .data-compare h3{
        font-size: 32px;
    }
    .data-compare h3 span {
        font-size: 18px;
    }
    .left-box, .right-box{
        text-align: center;
    }
    span.vs{
        font-size: 32px;
        margin-bottom: 30px;
    }
    .total-price span.vs{
        margin-bottom: 0;
    }
    .table-body .total-price .price-bar{
        justify-content: center;
    }
    .table-body .total-price .price-bar .price{
        margin-right: 0;
    }
    .saving-info-data {
        width: 100%;
        font-size: 50px;
    }
    .saving-info-data > span span{
        font-size: 60px;
    }
    .heading{
        font-size: 45px;
    }
    .heading small{font-size: 35px;}
    .inner-heading{
        font-size: 42px;
    }
    .inner-heading small{font-size: 26px;}
    .learning-framework .content-box{padding-top: 0; padding-bottom: 0;}
    .learning-framework video {
        position: static;
        margin-top: 0 !important;
    }
    .hero-slider .owl-dots{ justify-content: center; }
}
@media (max-width: 767px){


    .hero{
        padding-top: 250px;
    }
    .hero h1, .inner-hero h1, .hero-slider .slider-wrapper h2{
        font-size: 50px;
    }
    .hero p, .inner-hero p{
        margin-top: 30px;
        font-size: 24px;
    }
    .heading {
        font-size: 50px;
    }

    .gallery-head-box{
        padding: 20px;
    }
    .gallery-head-box img{
        margin-top: -35px;
    }
    .customer-testimony-item p{
        font-size: 20px;
    }
    .customer-testimony-item figure figcaption{
        font-size: 20px;
    }
    .customer-testimony-item figure figcaption small{
        font-size: 18px;
    }

    .center-box{
        border: none;
    }
    
    ul.guide li{
        font-size: 18px;
    }
    .heading{
        font-size: 40px;
    }
    .heading small{font-size: 30px;}
    .inner-heading{
        font-size: 32px;
    }
    .inner-heading small{font-size: 22px;}
    .inner-hero.affiliate-page span.supporting-text{
        font-size: 28px;
    }
    footer nav.main-nav {
        position: static;
        background: transparent;
        margin-top: 40px;
        width: 100%;
        padding: 0;
    }
    footer nav.main-nav ul {
        flex-wrap: wrap;
        gap: 10px 30px;
        justify-content: center;
    }
    
    .about-ws p, .faq-bottom-box p{font-size: 22px;}
    .about-ws p span{font-size: 30px;}
    .cta-box::after{display: none;}
    .learning-framework .content-box ul li span{ font-size: 40px; }
    .learning-framework .content-box{
        font-size: 26px;
    }
}

@media (max-width: 575px){
    a.logo > span img, a.custom-logo-link img{width: 50px;}
    .inner-hero.program-page span.supporting-text{font-size: 28px;}
    .hero p, .inner-hero p, .hero-slider .slider-wrapper p{ font-size: 22px; }
    .stage-journey ul li{
        width: 100%;
    }
    .info-list li{ flex-wrap: wrap; justify-content: center; text-align: center;}
    .info-text{padding-right: 0; margin-top: 25px; order: 2; flex: unset;}
    .info-text h3{font-size: 45px;}
    .info-icon{order: 1; }
    
    .form-box{margin-top: 50px;}
    p.highlighted-text{font-size: 28px;}
    .form-box .content-box {
        padding: 30px 20px;
    }
    .faq-lists .faq-question{font-size: 22px; line-height: 1.25em;}
    
    .comparison-table {
        padding: 30px 15px;
    }
    
    ul.guide li {
        width: calc(50% - 20px);
        font-size: 16px;
    }
    .influencer-carousel, .guidelines-carousel{
        padding: 0 15px;
    }
    .influencer-card, .guidelines-card{
        margin-left: 2px;
    }
    .affiliate-steps{
        margin-top: 50px;
    }
    .step-card:not(:last-child)::before{
        top: 250px;
        right: -106px;
        transform: rotate(97deg);
        z-index: 1;
    }
    .secondary-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .secondary-nav li:not(:last-child){
        margin-bottom: 5px;
    }
    
    .about-ws p, .faq-bottom-box p{font-size: 20px;}
    .about-ws p span{font-size: 26px;}
    .learning-framework .content-box ul li span{ font-size: 32px; }
    .learning-framework .content-box{
        font-size: 22px;
    }
    #typed-output{font-size: 22px;}
    .job-form .form-group label {
        font-size: 16px;
    }
}
@media (max-width: 430px){
    
    .table-body .right-box h3{
        font-size: 16px;
        padding: 10px;
    }
    .table-body .price-bar img{
        width: 20px;
        height: 20px;
    }
    .table-body .right-box h3::after {
        width: 20px;
        height: 20px;
        right: 10px;
    }
}