@font-face {
    font-family: 'Raleway-Regular';
    src: url('fonts/Raleway-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('fonts/Raleway-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('fonts/Raleway-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Bold';
    src: url('fonts/Raleway-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-ExtraBold';
    src: url('fonts/Raleway-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'ARIALNB';
    src: url('fonts/ARIALNB.TTF') format('truetype');
}

@font-face {
    font-family: 'ArialCEMTBlack';
    src: url('fonts/ArialCEMTBlack.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('fonts/OpenSans-SemiBold.ttf') format('truetype');
}

:root {
    --black: #141E23;
    --fade-black: #212529;
    --fade-white: #FCFCFC;
    --theme-color: #2CDD88;
    --theme-color-mad: #20b96f;
    --Raleway-Regular: 'Raleway-Regular';
    --Raleway-Medium: 'Raleway-Medium';
    --Raleway-SemiBold: 'Raleway-SemiBold';
    --Raleway-Bold: 'Raleway-Bold';
    --Raleway-ExtraBold: 'Raleway-ExtraBold';
    --ARIALNB: 'ARIALNB';
    --ArialCEMTBlack: 'ArialCEMTBlack';
    --OpenSans-Regular: 'OpenSans-Regular';
    --OpenSans-SemiBold: 'OpenSans-SemiBold';
    --soft-white: #f6f6f6;

}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--Raleway-Regular);
    overflow-x: hidden;
}

a {
    display: inline-block;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.common_heading h2 {
    font-size: 82px;
    color: var(--black);
    line-height: 1.2;
    font-family: var(--Raleway-Bold);
}

.common_para p {
    font-size: 20px;
    font-family: var(--Raleway-Medium);
    color: var(--black);
}

.common_sub_section_heading h2 {
    font-size: 48px;
    font-family: var(--Raleway-SemiBold);
    color: var(--black);
}

.common_btn_main {
    border: 2px solid var(--black);
    border-radius: 13px;
    font-size: 18px;
    padding: 0 32px;
    line-height: 47px;
    color: var(--black);
    font-family: var(--Raleway-Medium);
    transition: all 0.5s;
}

.small_container {
    width: 100%;
    max-width: 1088px;
    margin: 0 auto;
}

/* ============ UPPER HEADER =========== */

.upper-header-main {
    background-color: var(--black);
    color: #fff;
    padding: 18px 0;
    display: none;
}

.upper-header {
    max-width: 1352px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upper-header p {
    font-size: 20px;
    color: var(--fade-white);
    letter-spacing: 1.2px;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: end;
}

.btns a {
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 5px;
    font-family: var(--Raleway-Bold);
    transition: all 0.5s;
}

.btns a:hover {
    background-color: var(--fade-white);
    color: var(--black);
}

.btns .white-btn {
    background-color: var(--fade-white);
    color: var(--black);
    transition: all 0.5s;
    border: 2px solid var(--fade-white);
}

.btns .white-btn:hover {
    background-color: transparent;
    color: var(--fade-white);
}

.btns .t-btn {
    padding: 14px 32px;
    border: 2px solid var(--fade-white);
    color: var(--fade-white);
    margin-left: 43px;
}

/* ============ HEADER =========== */



.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    max-width: 1368px;
    margin: 0 auto;
    z-index: 999;
}

.logo-area a img {
    max-width: 275px;
    object-fit: scale-down;
}

.nav-area-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-ul {
    display: flex;
    flex-wrap: wrap;
}


.nav-ul>li {
    margin-right: 36px;
    position: relative;
}

.nav-ul li a {
    padding: 10px 0;
    font-size: 18px;
    font-family: var(--Raleway-SemiBold);
    color: var(--fade-black);
    transition: all 0.1s;
}

.dropdown-arrow i {
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}


.mobile-nav .nav-ul .dropdown-nav a::after {
    right: 10%;
}

.nav-ul li a:hover {
    color: var(--theme-color);
}

.mobile-nav .nav-ul>li>a:hover {
    color: var(--fade-black);
}

.mobile-nav .nav-ul>li>a.active {
    color: var(--theme-color);
}

.header .nego-btn-area {
    margin-left: 30px;
}

.contact-btn {
    display: flex;
    justify-content: end;
    flex: 0 0 auto;
}

.contact-btn a {
    font-size: 18px;
    font-family: var(--Raleway-SemiBold);
    line-height: 35px;
    padding: 0 34px;
    border: 2px solid var(--black);
    background-color: var(--black);
    border-radius: 13px;
    color: var(--fade-white);
    transition: all 0.5s;
}

.contact-btn .btn-one {
    background-color: #FAFBFB;
    color: var(--black);
    border-color: #FAFBFB;
    margin-right: 16px;
}

.contact-btn .btn-one:hover {
    background-color: #e9eded;
}

.contact-btn a:hover {
    background-color: transparent;
    color: var(--black);
}

.nego-btn-area a {
    background-color: var(--black);
    color: var(--fade-white);
    padding: 9px 34px;
    border-radius: 5px;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    border: 2px solid var(--black);
    transition: all 0.5s;
}

.nego-btn-area a:hover {
    background-color: transparent;
    color: var(--black);
}

.nego-btn-area a span {
    display: block;
    text-align: center;
    font-size: 12px;
    padding-top: 4px;
    font-family: var(--Raleway-Regular);
}

.nav-ul li:hover .dropdown-arrow i {
    transform: rotate(180deg);
}

.nav-ul li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 45px;
}

.sub-menu {
    background-color: #ffffff;
    position: absolute;
    width: 200px;
    top: 60px;
    visibility: hidden;
    opacity: 0;
    z-index: 9999999;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
    border-radius: 5px;
}

.sub-menu li a {
    display: block;
    padding: 5px 12px;
    transition: all 0.5s;
    font-family: var(--Raleway-SemiBold);
    font-size: 12px;
    color: #101112;
    transition: all 0.5s;
}

.sub-menu li a:hover {
    text-decoration: underline;
}

.dropdown-arrow {
    margin-left: 5px;
}

.menu-bar {
    display: none;
    padding: 0 10px;
}

.menu-bar i {
    font-size: 20px;
}

.nav-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 3px 20px #0000000D;
}


.mobile-nav {
    display: none;
}

.mobile-nav .logo-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #cfcfcf;
}


.mobile-nav .logo-area i {
    font-size: 20px;
}

.nav-ul>li>a.active {
    color: var(--theme-color);
}


.black-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000008e;
    z-index: 99;
    display: none;
}


/* BANNER AREA  */

.banner-main {
    background: #FAFBFB;
    position: relative;
    overflow: hidden;
    padding: 106px 0 0;
}

.banner-main .container {
    position: relative;
    z-index: 999;
}

.banner-area {
    text-align: center;
    position: relative;
}

.banner-area::before {
    content: " ";
    width: 259px;
    height: 199px;
    background-image: url('../img/banner-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 99999;
    position: absolute;
    bottom: 17px;
    left: 6%;
}

.banner-area h1 {
    font-size: 82px;
    max-width: 985px;
    margin: 0 auto;
    margin-bottom: 33px;
    font-family: var(--Raleway-Bold);
    position: relative;
    line-height: 106px;
}

.banner-area h1::after {
    content: " ";
    width: 430px;
    height: 160px;
    background-image: url('../img/green-ovel.svg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
    position: absolute;
    top: -33px;
    right: 30px;
}

.banner-area h1 span,
.banner-area h1 strong {
    font-family: 'Black';
}

.banner-area p {
    max-width: 1088px;
    margin: 0 auto;
    margin-bottom: 49px;
    font-size: 20px;
    font-family: var(--Raleway-Medium);
}

.banner-btn-area a {
    padding: 18px 40px;
    font-family: var(--Raleway-Bold);
    border-radius: 13px;
    border: 2px solid var(--theme-color);
    font-size: 18px;
    color: var(--black);
    transition: all 0.5s;
}

.banner-btn-area .first-btn:hover {
    background-color: var(--theme-color);
    color: var(--fade-white);
}

.banner-btn-area .second-btn {
    padding: 0 35px;
    background-color: var(--theme-color);
    line-height: 45px;
}

.banner-btn-area .second-btn:hover {
    background-color: var(--theme-color-mad);
    border-color: var(--theme-color-mad);
    color: var(--fade-white);
}


.banner-main .right-img {
    top: -20%;
    right: -20%;
    z-index: 1;
    max-width: 100%;
}

.right-img {
    position: absolute;
    top: -10%;
    right: -20%;
    z-index: -1;
}

.calender-area {
    width: 1077px;
    height: 753px;
    margin: 0 auto;
    margin-bottom: 26px;
}

.calender-area img {
    width: 100%;
    height: 100%;
}

/* ============ COUNTER AREA =========== */


.counter-area-main {
    position: relative;
    margin-top: -285px;
    background-color: #141126;
    padding-top: 285px;
    padding-bottom: 88px;
}

.counter-area {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1368px;
    margin: 0 auto;
    box-shadow: 0px 0px 18px #0000001A;
    color: #FAFBFB;
    border-radius: 5px;
}

.counter-area .item {
    padding: 5px 55px;
    display: flex;
    align-items: center;
}

.counter-area .item:first-child {
    padding-left: 0;
}

.counter-area .item:last-child {
    padding-right: 0;
}

.counter-area .item img {
    max-width: 211px;
}

.counter-area .text {
    font-size: 18px;
    font-family: var(--Raleway-Medium);
    line-height: 28px;
    font-weight: 400;
}

.count,
.plus {
    font-size: 50px;
    font-family: var(--OpenSans-SemiBold);
}

.plus-area {
    margin-right: 13px;
}

/* ================= OWN PATH AREA ============== */
.own-path-main {
    padding: 117px 0 73px;
    background-color: #fff;
}

.own-path .title-area {
    max-width: 1088px;
    margin: 0 auto;
}

.own-path .title-area {
    margin-bottom: 67px;
}

.info-ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 65px;
    max-width: 1368px;
    margin: 0 auto;
    text-align: center;
}

.info-ul li {
    flex: 1 0 25%;
    margin-bottom: 60px;
}

.info-ul li h6 {
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 23px;
}

.info-ul li>p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 32px;
    font-family: var(--Raleway-Medium);
}

.info-icons {
    width: 75px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 23px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.info-icons img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.own-path-btn {
    display: inline-block;
    border: 2px solid var(--black);
    border-radius: 13px;
    font-size: 18px;
    padding: 0 20px;
    line-height: 47px;
    color: var(--black);
    font-family: var(--Raleway-Medium);
    transition: all 0.5s;
    margin-top: auto;
}

.own-path-btn:hover {
    background-color: var(--black);
    color: var(--fade-white);
}

.own-path .info-ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ================= GET PREPARED AREA ==============  */
.get-prepared-main {
    background-color: #FAFBFB;
    padding-top: 113px;
}

.get-prepared {
    text-align: center;
    position: relative;
    padding-bottom: 113px;
    border-bottom: 1px solid #D7DADA;
}

.get-prepared .title-area {
    margin-bottom: 32px;
}

.get-prepared p {
    font-size: 20px;
    font-family: var(--Raleway-Medium);
    color: var(--black);
    max-width: 980px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.get-prepared p strong {
    font-family: var(--Raleway-SemiBold);
}

.form-main-area {
    background-color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    border-radius: 18px;
    box-shadow: 0px 3px 6px #00000021;
    margin-bottom: 35px;
    position: relative;
    z-index: 999;
}

.form-main-area .input-area input {
    padding: 3px 23px;
    border: none;
    border-right: 1px solid #F7F7F7;
    outline: none;
    width: 243px;
}

.form-main-area .input-area input[type='email'] {
    width: 320px;
}

.form-main-area .input-area input::placeholder {
    font-size: 18px;
    color: var(--black);
    opacity: 0.5;
    font-family: var(--Raleway-Medium);
}

.form-main-area .submit-btn-area .submit-btn {
    background-color: var(--theme-color);
    padding: 0 40px;
    border: 2px solid var(--theme-color);
    line-height: 47px;
    border-radius: 13px;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    cursor: pointer;
    transition: all 0.5s;
    color: var(--black);
}

.form-main-area .submit-btn-area .submit-btn:hover {
    background-color: var(--theme-color-mad);
    color: var(--fade-white);
    border-color: var(--theme-color-mad);
}



.get-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 806px;
    margin: 0 auto;
}

.get-bottom-area span {
    font-family: var(--Raleway-Medium);
    font-size: 18px;
}

.join-photo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.join-photo-area img {
    width: 203px;
    height: 48px;
    margin-right: 25px;
}

.join-photo-area span {
    font-family: var(--Raleway-Bold);
}

.get-prepared .img {
    position: absolute;
}

.get-prepared .img-one {
    bottom: 18%;
    left: 0;
}

.get-prepared .img-two {
    top: 32px;
    right: 0;
}

.get-prepared .img-three {
    bottom: 9%;
    right: 9%;
}

.get-prepared .img-four {
    top: 15%;
    left: 6%;
}

.get-prepared-main-two .get-prepared {
    border: none;
}

/* ================= LEVEL UP AREA ==============  */
.level-up-main {
    padding: 113px 0;
    background-color: #FAFBFB;
}

.level-up-top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 54px;
}

.level-up-top-area .title-area {
    width: 73%;
    text-align: start;
}

.level-up .title-area {
    margin-bottom: 0;
}

.see-all-btn {
    font-size: 20px;
    font-family: var(--Raleway-ExtraBold);
    color: var(--black);
    text-decoration: underline;
    line-height: 65px;
    transition: all 0.5s;

}

.see-all-btn:hover {
    color: var(--theme-color);
}

.level-up-box {
    background-color: #211E34;
    border-radius: 13px;
    color: #F6F6F6;
    padding: 75px 66px 85px;
}

.level-up-box .box-row {
    justify-content: space-between;
    align-items: center;
}

.box-img {
    width: 100%;
    max-width: 556px;
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-details {
    padding-left: 10px;
}

.box-details>p {
    margin-bottom: 31px;
    font-size: 18px;
    line-height: 30px;
}

.date-area-row {
    align-items: center;
}

.date_main,
.time_main {
    font-size: 16px;
    display: flex;
    align-items: center;
    font-family: var(--OpenSans-Regular);
    line-height: normal;
    margin-bottom: 31px;
}

.date_main img,
.time_main img {
    margin-right: 11px;
}

.box-details h3 {
    font-size: 48px;
    font-family: var(--Raleway-SemiBold);
    margin-bottom: 28px;
}

.box-btn {
    border: 2px solid #F6F6F6;
    padding: 0 26px;
    color: #F6F6F6;
    border-radius: 13px;
    line-height: 47px;
    transition: all 0.5s;
    font-size: 18px;
}

.box-btn:hover {
    background-color: var(--fade-white);
    border-color: var(--fade-white);
    color: var(--black);
}

/* ================= ACCESS AREA ==============   */

.access-main {
    background-color: #141126;
    padding: 168px 0 60px;
    color: #F6F6F6;
}

.access h2 {
    font-size: 82px;
    font-family: var(--Raleway-Bold);
    line-height: 106px;
    color: #F6F6F6;
    letter-spacing: -2px;
    position: relative;
    margin-bottom: 199px;
}

.access h2::after {
    content: " ";
    width: 547px;
    height: 172px;
    background-image: url('../img/green-ovel-2.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 99999;
    position: absolute;
    top: -39px;
    right: 226px;
}

.access .info-ul {
    text-align: start;
}

.access .info-icons {
    width: 76px;
    height: 79px;
    background-color: transparent;
    margin: 0;
    margin-bottom: 32px;
}

.explore-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 71px;
}

.explore-area .second-card {
    background-color: #211E34;
    border-radius: 13px;
    width: 58.3%;
    text-align: center;
    padding: 0 100px 100px;
}

.explore-area .second-card .info-icons {
    margin: 0 auto;
    width: 55px;
    height: 89px;
    margin-top: -13px;
    margin-bottom: 44px;
}

.explore-area .own-path-btn {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: var(--black);
    font-family: var(--Raleway-Bold);
    padding: 0 30px;
}

.explore-area .own-path-btn:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background-color: transparent;
}

.explore-area .second-card p {
    font-size: 26px;
    font-family: var(--Raleway-Medium);
    margin-bottom: 37px;
}

.explore-area .first-card {
    width: 35%;
}

.explore-area .first-card h6 {
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 32px;
}

.explore-area .first-card p {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--Raleway-Medium);
}

.access .info-ul li {
    flex: 1 0 25%;
}

.access .info-ul {
    column-gap: 155px;
}

.access .info-ul li p {
    margin-bottom: 0;
}

.access .info-ul li {
    margin-bottom: 102px;
}

/* .access .info-ul li:nth-child(4n) , .access .info-ul li:nth-child(5n){
    width: 45%;
} */

/* ================= REVIEW AREA ==============  */
.reviews-main {
    padding: 143px 0 222px;
    background-color: #fff;
}

.reviews .title-area {
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 128px;
}

.slider-main-area {
    text-align: center;
    position: relative;
}

.slider-main-area .profile-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.slider-main-area .profile-area img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 100%;
    margin-right: 23px;
    flex: 0 0 auto;
}

.slider-main-area .swiper {
    box-shadow: 0px 16px 48px #0000001F;
    border-radius: 13px;
    max-width: 1088px;
    position: relative;
    background-color: #FAFBFB;
}

.slider-main-area .swiper-slide {
    height: unset;
}

.slider-main-area::before {
    content: ' ';
    width: 243px;
    height: 182px;
    position: absolute;
    top: -80px;
    left: 65px;
    z-index: 1;
    background-image: url('../img/p-qoute.svg');
    background-size: contain;
    background-repeat: no-repeat;

}

.slider-main-area::after {
    content: ' ';
    width: 243px;
    height: 182px;
    position: absolute;
    bottom: -80px;
    right: 84px;
    background-image: url('../img/b-quote.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.slider-content {
    padding: 104px 139px 137px;
    background-color: #FAFBFB;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.slider-content>p {
    font-size: 26px;
    font-family: var(--Raleway-SemiBold);
    margin-bottom: 39px;
    color: var(--black);
}

.slider-content .naming {
    text-align: start;
}

.slider-content .naming p {
    margin-bottom: 5px;
    line-height: 1;
    color: var(--black);
}

.slider-content .naming span {
    font-size: 18px;
    display: block;
    font-family: var(--Raleway-SemiBold);
    color: var(--black);
}

.arrow {
    top: unset;
    bottom: 42px;
    z-index: 99;
}

.arrow::after {
    font-size: 25px;
    color: #70787D;
    stroke: #70787D;
    display: none;
}

.arrow-next {
    width: 21px;
    height: 31px;
    background-repeat: no-repeat;
    background-image: url('../img/next.svg');
    background-size: contain;
    right: 124px;
}

.arrow-prev {
    width: 21px;
    height: 31px;
    background-repeat: no-repeat;
    background-image: url('../img/prev.svg');
    background-size: contain;
    left: 124px;
}

.slider-main-area .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 46px;
    z-index: 9;
}

.slider-main-area .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #26BB74;
}

/* ============ WHAT IS AREA =========== */
.what-is-main {
    padding-bottom: 146px;
    padding-top: 45px;
}

.what-is-area {
    padding: 10px;
    background-color: #F3F6FD;
    border-radius: 5px;
}

.what-is {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #E6F0FA;
    border-radius: 5px;
    padding: 0 142px;
}

.what-is-text-area {
    width: 39%;
    padding: 50px 0;
}

.what-is-text-area h2 {
    font-size: 36px;
    line-height: 1;
    padding-bottom: 42px;
    font-family: var(--Raleway-Bold);
    display: flex;
    align-items: center;
}

.what-is-text-area h2 img {
    max-width: 231px;
    margin: 0 8px;
    object-fit: scale-down;
}

.what-is-text-area p {
    padding-bottom: 30px;
    font-size: 18px;
}

.what-is-text-area p span {
    font-family: var(--Raleway-Bold);
}

.what-is-text-area p:last-child {
    padding: 0;
}

.what-is-main .what-is-video {
    width: 54.5%;
    max-width: 746px;
    position: relative;
    top: -75px;
}

.what-is-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.play-btn {
    background: none;
    width: 74px;
    height: 74px;
    background-color: #ffffffc7;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn i {
    font-size: 32px;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

/* ============== SERVICES AREA =============== */

.services-main {
    background-color: var(--black);
    background-image: url('../img/service-bg.png');
    background-repeat: no-repeat;
    height: 690px;
    background-size: 100% 100%;
    position: relative;
}


.services-main .container {
    position: relative;
    height: 100%;
}

.services {
    width: 100%;
    position: relative;
    bottom: -147px;
}

.title-area {
    text-align: center;
    margin-bottom: 54px;
}

.title-area h3 {
    color: var(--theme-color);
    font-size: 20px;
    font-family: var(--ARIALNB);
    letter-spacing: 4.44px;
    padding-bottom: 31px;
    text-transform: uppercase;
}

.title-area h2 {
    font-size: 48px;
    font-family: var(--Raleway-Bold);
    margin: 0 auto;
    color: var(--fade-black);
    line-height: 65px;
}

.services-main .title-area {
    max-width: 912px;
}

.services-main .title-area h2 {
    color: #FCFCFC;
}

.service-card {
    text-align: center;
}

.card-ul {
    display: flex;
    column-gap: 32px;
    text-align: start;
}

.card-ul li {
    width: 25%;
}

.card-ul li a {
    display: block;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
    padding: 28px 33px 33px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-ul li a h5 {
    font-size: 24px;
    font-family: var(--Raleway-Bold);
    padding-bottom: 24px;
    color: var(--fade-black);
    align-self: start;
}

.card-ul li a .top-img {
    width: 100%;
}

.card-ul li a .top-img img {
    width: 100%;
    max-width: 321px;
    height: 160px;
    border-radius: 5px;
    margin-bottom: 29px;
    object-fit: cover;
}

.btn-text-area {
    display: flex;
    align-items: center;
    align-self: flex-end;
    margin-top: auto;
}

.btn-text-area p {
    text-align: end;
}


.text-area p {
    color: #444648;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}

.learn-more-btn {
    display: inline-block;
    width: unset;
    height: unset;
    background-color: var(--black);
    padding: 17px 42px;
    background-color: var(--theme-color);
    border-radius: 5px;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    color: #fff;
    transition: all 0.5s;
    margin-top: auto;
}

.btn-text-area .arrow {
    width: 57px;
    height: 57px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: all 0.5s;
    flex: 0 0 auto;
}

.btn-text-area .arrow img {
    width: 24px;
    height: 24px;
}

.btn-text-area .arrow:hover {
    background-color: var(--theme-color);
}

.btn-text-area .arrow:hover {
    background-color: var(--theme-color);
}

.learn-more-btn {
    padding: 17px 42px;
    background-color: var(--theme-color);
    border-radius: 5px;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    color: #fff;
    transition: all 0.5s;
}

.learn-more-btn:hover {
    background-color: var(--theme-color-mad);
}

.gray-design img {
    position: absolute;
    top: 0;
    right: 0;
}

/* ============== PODCAST AREA ================ */

.podcast-main {
    padding-top: 318px;
    padding-bottom: 145px;
    background-color: #FCFCFC;
}

.podcast-area {
    background-color: #fff;
    box-shadow: 0px 0px 15px #0000000F;
    border-radius: 5px;
}

.podcast {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 72px;
    max-width: 1512px;
    margin: 0 auto;
}

.podcast .title-area {
    text-align: start;
    width: 54%;
}

.podcast-img {
    width: 37%;
}

.podcast-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.podcast .title-area h3 {
    padding-bottom: 23px;
}

.podcast .title-area {
    margin-bottom: 32px;
}

.podcast .title-area p {
    padding-bottom: 47px;
    font-size: 24px;
    color: var(--black);
}

.podcast .apply-learn-area {
    display: block;
}

.podcast .apply-learn-area a {
    background-color: var(--black);
    color: #fff;
    font-family: var(--Raleway-Regular);
}

.podcast .apply-learn-area a:hover {
    background-color: transparent;
    color: var(--black);
}

/* ============== SPECIALIZATION AREA ================ */

.specialization-main {
    padding-top: 318px;
    padding-bottom: 119px;
}

.specialization-area {
    background-color: #F3F6FD;
    padding: 10px;
    border-radius: 5px;
}

.specialization {
    background-color: #E5EBFA;
    padding: 83px 148px;
    border: 2px solid #ADC3F1;
    border-radius: 5PX;
}

.specialization .title-area h3 {
    padding-bottom: 15px;
}



.s-details-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 55px;
}

.s-details-area .what-is-video {
    width: 44%;
    position: relative;
    margin-bottom: 40px;
}

.get-btn-area {
    text-align: center;
}

.get-btn-area a {
    padding: 18px 42px;
    background-color: var(--black);
    color: #fff;
    border-radius: 5px;
    font-family: var(--Raleway-Bold);
    font-size: 18px;
    transition: all 0.5s;
    border: 2px solid var(--black);
}

.get-btn-area a:hover {
    background-color: transparent;
    color: var(--black);
}

/* ============== LISTEN AREA ================ */

.listen-main {
    background-color: #FAFBFB;
    padding: 131px 0 63px;
    position: relative;
    overflow: hidden;
}

.listen {
    max-width: 1368px;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
}

.l-details-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.listen-main .title-area {
    text-align: start;
    margin-bottom: 87px;
}

.listen-main .title-area h2 {
    font-size: 82px;
    line-height: 106px;
    color: var(--black);
    margin: 0;
    padding: 0;
}

.listen-card {
    display: block;
    padding: 62px 74px;
    background-color: #fff;
    border-radius: 13px;
    width: 40.5%;
    box-shadow: 0px 3px 6px #00000029;
    text-align: center;
    font-weight: normal;
}

.listen-card h6 {
    font-size: 22px;
    font-family: var(--Raleway-Bold);
    color: var(--fade-black);
    line-height: 38px;
    margin-bottom: 20px;
}

.listen-card p {
    font-size: 18px;
    font-family: var(--Raleway-Medium);
    color: var(--black);
    margin-bottom: 38px;
}

.btn-text-area {
    align-items: center;
}

.btn-text-area p {
    font-size: 24px;
    font-family: var(--Raleway-Bold);
    text-align: end;
    padding-right: 13px;
    margin-bottom: 0;
    color: var(--black);
}

.id-area {
    max-width: 386px;
    padding-bottom: 27px;
}

.id-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.id-details-area {
    border-radius: 13px;
    width: 57.4%;
}

.id-details-area .info-ul {
    text-align: left;
}

.icon-area {
    display: flex;
    align-items: center;
}

.id-details-area .info-ul li h6 {
    margin-bottom: 0;
}

.id-details-area .info-icons {
    display: inline-block;
    margin: 0;
    margin-right: 32px;
}

.id-details-area .info-ul li {
    width: 100%;
    background-color: #fff;
    border-radius: 13px;
    box-shadow: 0px 3px 6px #00000029;
    padding: 52px 129px 82px;
    margin-bottom: 31px;
}

.id-details-area .info-ul li:last-child {
    margin-bottom: 0;
}

.id-details-area .info-ul li p,
.id-details-area .info-ul li a {
    margin-left: 109px;
}

.id-ul li {
    background-color: #F3F6FD;
    box-shadow: 0px 3px 6px #00000029;
    padding: 30px 40px;
    margin-bottom: 34px;
    border-radius: 13px;
}

.id-ul li:last-child {
    margin-bottom: 0;
}

.id-ul li span {
    display: block;
    color: var(--theme-color);
    font-size: 18px;
    padding-bottom: 2px;
}

.id-ul li p {
    font-size: 20px;
    font-family: var(--Raleway-Bold);
}

.l-design {
    position: absolute;
    top: 121px;
    right: -383px;
}

/* ================= LEADERS AREA ==============  */

.leaders-main {
    padding: 140px 0 169px;
}

.leaders {
    background-color: #E5EBFA;
    border-radius: 17px;
    padding: 95px 138px 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.leaders .title-area {
    text-align: start;
    width: 52.5%;
}

.leaders .title-area h3 {
    padding-bottom: 23px;
}

.leaders .title-area {
    margin-bottom: 32px;
}

.leaders .title-area p {
    font-size: 18px;
    padding-bottom: 47px;
    line-height: 28px;
}

.apply-learn-area {
    display: flex;
}


.apply-learn-area a {
    padding: 0 34px;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    border: 2px solid var(--black);
    border-radius: 5px;
    color: var(--black);
    transition: all 0.5s;
    line-height: 54px;
}

.apply-learn-area a:hover {
    background-color: var(--black);
    color: var(--fade-white);
}

.apply-learn-area .apply-btn {
    background-color: var(--black);
    color: #fff;
    margin-right: 34px;

}

.apply-learn-area .apply-btn:hover {
    background-color: transparent;
    color: var(--black);
}

.leaders .members-img {
    width: 44.7%;
}

.leaders .members-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ================= PEOPLE BEHIND AREA ==============  */
.people-behind-main {
    background: linear-gradient(75deg, #F3F6FD 0%, #CBD9F7 59%, #9CB6EF 173%);
}

.people-behind {
    display: flex;
    flex-wrap: wrap;
}

.behind-photo {
    width: 50%;
    margin-top: -106px;
}

.behind-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom;
}

.behind-info {
    width: 50%;
    padding-top: 48px;
    padding-bottom: 70px;
}

.behind-info h3 {
    font-size: 36px;
    font-family: var(--Raleway-Bold);
    color: var(--fade-black);
    padding-bottom: 16px;
    display: flex;
    align-items: center;
}

.behind-info h3 img {
    max-width: 246px;
    margin: 0 10px;
    object-fit: scale-down;
}

.behind-info p {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 21px;
}

.meet-btn {
    padding: 0 47px;
    border: 2px solid var(--black);
    background-color: var(--black);
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    transition: all 0.5s;
    line-height: 54px;
}

.meet-btn:hover {
    background-color: transparent;
    color: var(--black);
}


/* ================= JOIN AREA ==============  */

.join-main {
    position: relative;
    z-index: 9999;
    padding-bottom: 143px;
}

.join {
    text-align: center;
    max-width: 1368px;
    background-image: url('../img/form-bg-main.png');
    background-repeat: no-repeat;
    margin: 0 auto;
    background-size: cover;
    padding: 98px 0 90px;
    color: #F8FAFD;
    margin-top: -60px;
    border-radius: 17px;
}

.join h3 {
    font-size: 44px;
    font-family: var(--Raleway-Bold);
    padding-bottom: 21px;
}

.join p {
    font-size: 18px;
    line-height: 28px;
    max-width: 710px;
    margin: 0 auto;
    padding-bottom: 51px;
}

.form-main {
    display: flex;
    flex-wrap: wrap;
    max-width: 814px;
    margin: 0 auto;
    column-gap: 16px;
}

.form-main .input-area {
    width: 49%;
    padding-bottom: 20px;
}

.form-main .input-area input {
    width: 100%;
    padding: 18px 34px;
    border-radius: 5px;
    height: 56px;
    border: none;
}

.form-main .input-area input:focus-visible {
    outline: none;
}

.get-prepared-main .wpcf7 {
    max-width: 803px;
    margin: 0 auto;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted {
    border-color: #ff0000;
    border-radius: 5px;
    margin-bottom: 20px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--theme-color);
    border-radius: 5px;
    margin-bottom: 20px;
}

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin-top: 10px;
}


.wpcf7 form .wpcf7-response-output {
    margin: 0;
}



.form-main .input-area input::placeholder {
    font-size: 18px;
    color: var(--fade-black);
    opacity: 0.5;
}

.form-main .input-area .submit {
    padding: 10px 34px;
    background-color: var(--theme-color);
    width: 100%;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    color: #fff;
    border-radius: 5px;
    transition: all 0.5s;
    border: none;
    height: 55px;
}

.form-main .input-area .submit:hover {
    background-color: var(--theme-color-mad);
}

.wpcf7-spinner {
    background-color: #b1b4b7;
    margin: 10px 24px;
    background-color: #b1b4b7;
    margin: 0 24px !important;
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

/* ================= FOOTER AREA ==============  */

.footer-main {
    background-color: #F8F8F9;
    padding: 87px 0;
}

.total-footer {
    max-width: 1368px;
    margin: 0 auto;
}

.footer {
    display: flex;
    justify-content: space-between;
}

.total-nav {
    width: 72%;
}

.main-footer-nav {
    display: flex;
    border-bottom: 1px solid #A6A6A6;
    padding-bottom: 12px;
    margin-bottom: 35px;
    padding-top: 50px;
    justify-content: space-between;
}

.footer-nav-area {
    width: 23%;
}

.footer-logo-main {
    width: 28%;
    padding-right: 20px;
}

.footer .contact-btn a {
    padding: 0 25px;
}



.footer-nav-area h6 {
    font-size: 20px;
    color: var(--fade-black);
    font-family: var(--Raleway-Bold);
    margin-bottom: 23px;
    text-transform: uppercase;
}

.footer-logo-main .footer-nav-ul {
    padding-bottom: 0;
}

.footer-logo-main .footer-nav-ul li a {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
}

.footer-nav {
    margin-bottom: 38px;
}

.footer-nav-ul li a {
    font-size: 18px;
    color: var(--fade-black);
    line-height: 36px;
    transition: all 0.5s;
    font-family: var(--Raleway-Medium);
}

.footer-nav-ul li a:hover {
    color: var(--theme-color);
}

.lower-footer-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-btn-area {
    width: 38%;
}

.footer-btn-area .contact-btn .btn-one {
    background-color: var(--black);
    color: #F6F6F6;
    border-color: var(--black);
}

.footer-btn-area .contact-btn .btn-one:hover {
    background-color: transparent;
    color: var(--black);
}

.footer-btn-area .contact-btn .btn-two {
    background-color: var(--theme-color);
    color: var(--black);
    border-color: var(--theme-color);
    margin-right: 0;
}

.footer-btn-area .contact-btn .btn-two:hover {
    border-color: var(--theme-color);
    background-color: transparent;
    color: var(--theme-color);
}

/* .footer-logo-area a{
    max-width: 273px;
    padding-bottom: 30px;
} */
.footer-logo-area a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.footer-logo-main>a {
    max-width: 273px;
    margin-bottom: 32px;
}

.footer-logo-main a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.footer-logo-main p {
    font-size: 16px;
    color: var(--fade-black);
    line-height: 28px;
    transition: all 0.5s;
    margin-bottom: 33px;
    font-family: var(--Raleway-Medium);
}

.footer-logo-main p span {
    display: block;
}

.flag-area {
    display: flex;
    align-items: center;
    padding-bottom: 27px;
}

.flag-area p {
    font-size: 18px;
    line-height: 28px;
}

.flag-area img {
    margin-right: 29px;
}

.social-icons {
    display: flex;
}

.social-icons p {
    font-size: 18px;
    color: var(--fade-black);
    line-height: 32px;
    transition: all 0.5s;
    font-family: var(--Raleway-Bold);
    margin-right: 15px;
}

.social-ul {
    display: flex;
    align-items: center;
}

.social-ul li {
    margin-right: 27px;
}

.social-ul li a {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 100%;
    transition: all 0.5s;
}

.social-ul li a:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.social-ul li a i {
    font-size: 16px;
    color: var(--black);
    transition: all 0.5s;
}

.social-ul li a:hover i {
    color: var(--fade-white);
}

.copyright-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.sitemap-ul {
    display: flex;
}

.sitemap-ul li {
    padding-right: 20px;
    position: relative;
}

.sitemap-ul li a {
    color: var(--fade-black);
    font-size: 18px;
}

.sitemap-ul li::after {
    content: "|";
    position: absolute;
    right: 9px;
    color: var(--fade-black);
}

.sitemap-ul li:last-child:after {
    display: none;
}

.bottom-area-name {
    background-color: var(--black);
    color: #F8FAFD;
    text-align: center;
    font-size: 16px;
    padding: 19px;
}

.powered-by-area p {
    font-size: 16px;
    color: var(--fade-black);
    line-height: 32px;
    transition: all 0.5s;
    display: inline-block;
    background-color: #F3F5F5;
    border-radius: 5px;
    padding: 2px 20px;
    font-family: var(--Raleway-Bold);
}

.powered-by-area p a {
    color: var(--fade-black);
}


/* JOIN US PAGE  */
/* JOIN US PAGE  */
/* JOIN US PAGE  */
/* JOIN US PAGE  */
/* JOIN US PAGE  */

/* BANNER AREA OF JOIN US  */

.join-banner-main {
    position: relative;
    overflow: hidden;
    padding-top: 128px;
    padding: 137px 0;
}

.join-banner-main .banner-area::before {
    display: none;
}

.join-banner-main .join-banner-area {
    position: relative;
    z-index: 999;
}

.join-banner-main .heading-area {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 214px;
}

.join-banner-main .heading-area .title-area {
    text-align: start;
    width: 60%;
}

.join-banner-main .heading-area .title-area {
    margin-bottom: 0;
}

.toggle-btn-area {
    position: relative;
    margin-right: 25px;
}

.annual-billing-area p {
    font-size: 26px;
    font-family: var(--Raleway-Medium);
}

.annual-billing-area p span {
    position: relative;
    display: inline-block;
    color: var(--theme-color);
    font-family: var(--Raleway-Bold);
}

.annual-billing-area p span::after {
    content: ' ';
    width: 130px;
    height: 12px;
    background-image: url('../img/under-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -10px;
    left: -10px;
}

.toggle-btn-area input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.join-banner-area .annual-billing-area {
    width: 31%;
}

.annual-billing-area {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.toggle-btn-area label {
    cursor: pointer;
    text-indent: -9999px;
    width: 52px;
    height: 26px;
    background: #E7E9E9;
    display: block;
    border-radius: 100px;
    position: relative;
}

.toggle-btn-area label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 100%;
    transition: 0.3s;
    transform: translateY(-50%);
}

.toggle-btn-area input:checked+label {
    background: var(--theme-color);
}

.toggle-btn-area input:checked+label:after {
    left: calc(100% - 5px);
    transform: translate(-100%, -50%);
}

/* .toggle-btn-area label:active:after {
    width: 10px;
} */

.price-card-area {
    margin-bottom: 68px;
}

.price-card-area .row {
    row-gap: 105px;
}

.price-card-area .row>* {
    padding: 0 15px;
}

.price-card-area .row>.col-lg-6 {
    flex-grow: 1;
}

.price-card {
    background-color: #141126;
    padding: 62px 55px;
    border-radius: 13px;
    position: relative;
    height: 100%;
}

.card-head-area {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
}

.card-head-icon-area {
    width: 62px;
    height: 58px;
    margin-right: 32px;
    flex: 0 0 auto;
}

.card-head-icon-area img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.card-head-details h6 {
    color: var(--theme-color);
    font-size: 16px;
    font-family: var(--Raleway-SemiBold);
    margin-bottom: 15px;
    line-height: 27px;
}

.card-head-details h3 {
    color: #F6F6F6;
    font-size: 30px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 19px;
}

.card-head-details p {
    color: #F6F6F6;
    font-size: 26px;
    font-family: var(--Raleway-Medium);
}

.price-yearly {
    display: none;
}

.card-head-details p span {
    font-size: 16px;
}

.card-description-area {
    margin-bottom: 24px;
}

.card-description-area p {
    color: #F6F6F6;
    font-size: 16px;
    text-align: center;
    font-family: var(--Raleway-Medium);
    margin-bottom: 20px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 76px;
}

.card-btn-area {
    margin-bottom: 64px;
}

.card-btn-area a {
    background-color: #E9E8E8;
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    color: var(--black);
    display: block;
    line-height: 48px;
    border-radius: 13px;
    text-align: center;
    padding: 0 15px;
    border: 1px solid transparent;
    transition: all 0.5s;
}

.card-btn-area a:hover {
    background-color: transparent !important;
    border-color: #E9E8E8;
    color: #E9E8E8;
}

.benefits {
    max-width: 465px;
    margin: 0 auto;
    margin-bottom: 85px;
}

.benefits h6 {
    color: #F6F6F6;
    font-family: var(--Raleway-Bold);
    font-size: 16px;
    margin-bottom: 51px;
    text-align: center;
}

.benefits-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 35px;
    margin-bottom: 35px;
}

.benefits-ul li {
    width: 48%;
}

.b-point {
    display: flex;
    align-items: center;
}

.benefits-icon {
    width: 49px;
    height: 49px;
    margin-right: 19px;
    flex: 0 0 auto;
}

.benefits-icon img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}



.benefits-details p {
    color: #F6F6F6;
}



.see-list-button-area a {
    display: block;
    text-align: center;
    color: #F6F6F6;
    text-decoration: underline;
    font-size: 18px;
}

.name-and-star p {
    font-size: 18px;
    font-family: var(--Raleway-Bold);
    color: #F6F6F6;
}

.price-review {
    background-color: #211E34;
    border-radius: 13px;
    padding: 59px 46px 110px;
    position: relative;
    min-height: 405px;
}

.p-review-content q,
.p-review-content p {
    color: #F6F6F6;
    font-size: 16px;
    font-family: var(--Raleway-Medium);
    line-height: 28px;
    margin-bottom: 36px;
    text-align: center;
}

.price-review-profile-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 53px;
}

.review-profile {
    width: 50px;
    height: 50px;
    margin-right: 25px;
    border-radius: 100%;
    flex: 0 0 auto;
}

.review-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-ul {
    display: flex;
    margin-bottom: 5px;
}

.star-item {
    margin-right: 5px;
}

.star-item i {
    color: #FFC107;
    font-size: 16px;
}

.not-sure-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-sure-icon {
    width: 72px;
    height: 72px;
    margin-right: 28px;
    flex: 0 0 auto;
}

.not-sure-icon img {
    width: 100%;
    height: 100%;
}

.not-sure-text h6 {
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 10px;
    color: var(--black);
}

.not-sure-text p {
    font-size: 18px;
    font-family: var(--Raleway-Medium);
    color: var(--black);
}

.not-sure-text p a {
    text-decoration: underline;
    color: var(--theme-color);
    font-family: var(--Raleway-SemiBold);
}

.most-popular-area {
    width: 526px;
    height: 442px;
    margin: 0 auto;
    background-color: #FFD873;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    top: -65px;
    z-index: -1;
    left: 0;
    right: 0;
}

.most-popular-area p {
    font-size: 20px;
    color: var(--black);
    font-family: var(--Raleway-ExtraBold);
    padding-top: 20px;
    padding-right: 20px;
}

.most-popular-area img {
    width: 59px;
    height: 65px;
    position: absolute;
    top: -12px;
    right: 140px;
}

.most-popular-post .card-btn-area a {
    background-color: var(--theme-color);
}

.join-us-reviews-main {
    background-color: #fafbfb;
}


/* TABLE AREA */
/* TABLE AREA */
/* TABLE AREA */

.price-chart-area-main {
    padding: 150px 0 110px;
}

.table-area table {
    width: 100%;
    border-top: 1px solid #CCCFD0;
}

.table-area tr th,
.table-area tr td {
    border-right: 1px solid #CCCFD0;
    border-bottom: 1px solid #CCCFD0;
}

.table-area tr td {
    padding: 12px 0;
    padding-right: 10px;
}

.table-area tr th:first-child {
    width: 50%;
}

.table-area tr th:nth-child(2) {
    width: 30%;
}

.table-area tr th:nth-child(3) {
    width: 20%;
}

.membership-made-for-you {
    padding: 120px 0;
}

.membership-made-for-you h3 {
    font-size: 34px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 25px;
    color: var(--black);
}

.price-show-area {
    text-align: center;
    padding: 10px 50px;
}

.price-show-area img {
    width: 62px;
    height: 58px;
    margin-bottom: 21px;
}

.price-show-area h4 {
    color: var(--black);
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 13px;
}

.price-show-area p {
    font-size: 20px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 20px;
}

.price-show-area p span {
    font-size: 16px;
    font-family: var(--Raleway-Regular);
}

.join-apply-btn {
    line-height: 47px;
    background-color: var(--black);
    color: #F6F6F6;
    padding: 0 30px;
    border-radius: 13px;
    font-family: var(--Raleway-Bold);
    font-size: 18px;
    border: 2px solid transparent;
    transition: all 0.5s;
}

.join-apply-btn:hover {
    border-color: var(--black);
    color: var(--black);
    background-color: transparent;
}

.join-apply-now {
    background-color: var(--theme-color);
    color: var(--black);
}

.table-sub-heading {
    padding: 45px 0 17px;
}

.table-sub-heading h5 {
    font-size: 18px;
    color: var(--black);
    font-family: var(--Raleway-Bold);
}

.sub-heading-details p {
    font-size: 18px;
    font-family: var(--Raleway-Medium);
}

.table-features-enable-icon {
    text-align: center;
}

.table-features-enable-icon i {
    width: 29px;
    height: 29px;
    margin: 0 auto;
    border-radius: 100%;
    background-color: #caf2df;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--theme-color);
    font-size: 16px;
}

.table-features-enable-icon i.fa-xmark {
    background-color: #ffebed;
    color: #FF4B5E;
}

.table-area table tbody:last-child tr:last-child td:first-child {
    border-bottom: none;
}


/* FAQS AREA  */
/* FAQS AREA  */
/* FAQS AREA  */
/* FAQS AREA  */
/* FAQS AREA  */

.faqs-area-main {
    background-color: #FAFBFB;
    padding: 120px 0;
}

.faqs-area .accordion-container {
    position: relative;
    max-width: 1088px;
    margin: 0 auto;
}

.faqs-area .accordion-container>h2 {
    font-size: 48px;
    color: var(--black);
    font-family: var(--Raleway-Bold);
    text-align: center;
    margin-bottom: 60px;
}

.faqs-area .set {
    position: relative;
    width: 100%;
    height: auto;
}

.faqs-area .set>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 5px;
    font-size: 20px;
    font-family: var(--Raleway-Bold);
}

.faqs-area .set>a i {
    flex: 0 0 auto;
    margin-left: 20px;
}

.faqs-area .set>a.active {
    background-color: var(--theme-color);
    color: #fff;
}

.faqs-area .content {
    background-color: #fff;
    display: none;
    border-radius: 10px;
    margin-bottom: 5px;
}

.faqs-area .content p {
    padding: 10px 15px;
    margin: 0;
    color: #333;
    font-size: 18px;
}

/* READY TO FIND AREA  */
/* READY TO FIND AREA  */
/* READY TO FIND AREA  */
/* READY TO FIND AREA  */

.ready-to-area-main {
    padding: 150px 0;
}

.ready-to-area {
    max-width: 1015px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.ready-to-area::before {
    content: ' ';
    width: 245px;
    height: 400px;
    background-image: url('../img/left-pp.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -60px;
    left: -20%;
}

.ready-to-area::after {
    content: ' ';
    width: 245px;
    height: 400px;
    background-image: url('../img/right-pp.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -60px;
    right: -20%;
}

.ready-to-area h2 {
    font-size: 82px;
    color: var(--black);
    font-family: var(--Raleway-ExtraBold);
    margin-bottom: 35px;
    line-height: 106px;
    position: relative;
}

.ready-to-area h2::after {
    content: ' ';
    width: 354px;
    height: 117px;
    background-image: url('../img/ready-to-find-circle.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 250px;
}

.ready-to-area p {
    font-size: 20px;
    font-family: var(--Raleway-Medium);
    max-width: 575px;
    margin: 0 auto;
    margin-bottom: 36px;
    color: var(--black);
}

.join-the-board {
    line-height: 47px;
    background-color: var(--theme-color);
    border-radius: 13px;
    padding: 0 24px;
    color: var(--black);
    font-family: var(--Raleway-Bold);
    font-size: 18px;
    transition: all 0.5s;
    border: 2px solid transparent;
}

.join-the-board:hover {
    border-color: var(--theme-color);
    background-color: transparent;
    color: var(--theme-color);
}

/* ======================
        BLOG US PAGE 
=========================*/

/* BLOG BANNER SECTION  */

.blog_banner_main {
    padding: 110px 0 65px;
    overflow: hidden;
    position: relative;
}

.right-img2 {
    position: absolute;
    top: -80%;
    right: -20%;
    z-index: -1;
    max-width: 100%;
}

.newsletter_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
}

.newsletter_area p {
    font-size: 20px;
    font-family: var(--Raleway-Medium);
    color: var(--black);
}

.blog_banner .form-main-area .input-area input {
    width: auto;
}

.blog_banner .get-prepared {
    border: none;
    padding: 0;
    width: 51%;
}



.blog_banner h1 {
    font-family: var(--Raleway-Bold);
    font-size: 82px;
    line-height: 1.3;
    margin-bottom: 50px;
    max-width: 1155px;
}


.blog_banner .get-bottom-area {
    column-gap: 10px;
}

.blog_banner .join-photo-area {
    width: 48%;
}

.search_area_main {
    flex: 0 0 auto;
    width: 33%;
}

.search_area {
    box-shadow: 0px 3px 6px #00000021;
    background: #F8F8F8;
    padding: 16px 25px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    column-gap: 28px;
    align-items: center;
    max-width: 450px;
    margin-left: auto;
}

.search_area .search_input {
    border: none;
    background-color: transparent;
    width: 100%;
    border-right: 1px solid #C1C1C1;
    outline: none;
}

.search_area img {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    cursor: pointer;
}

/* BLOG SLIDER AREA  */
/* BLOG SLIDER AREA  */

.blog_slider_area_main {
    background: linear-gradient(to bottom, #fff 60%, #fafbfb 50%);
    padding: 70px 0 100px;
}

.blog_slider_area_main .slider-main-area .swiper {
    max-width: unset;
    box-shadow: none;
    background-color: transparent;
}

.blog_slider_area_main .slider-content {
    flex-direction: unset;
    background-color: #211E34;
    border-radius: 13px;
    color: var(--soft-white);
    padding: 95px 140px;
    box-shadow: 0px 16px 48px #0000001F;
    position: relative;
    max-width: 1388px;
    margin: 0 auto;
    column-gap: 130px;
}

.blog_slider_area_main .slider-content::before {
    content: " ";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 280px;
    height: 216px;
    background-color: #8B78FE;
    border-radius: 13px;
    z-index: -1;
}

.blog_slider_area_main .slider-content::after {
    content: " ";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 280px;
    height: 216px;
    background-color: #6AD7EF;
    border-radius: 13px;
    z-index: -1;
}

.blog_slider_area_main .arrow-prev {
    left: 30%;
    bottom: 0;
}

.blog_slider_area_main .arrow-next {
    right: 30%;
    bottom: 0;
}

.blog_slider_area_main .slider-content>p {
    margin: 0;
}

.blog_slider_area_main .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 5px;
}

.blog_slider_area_main .slider-main-area .swiper-slide {
    background-color: transparent;
    padding: 30px;
    padding-bottom: 125px;
}

.blog_slider_area_main .slider-main-area::before {
    display: none;
}

.blog_slider_area_main .slider-main-area::after {
    display: none;
}

.blog_slider_area_main .slider-main-area .swiper-pagination-bullet {
    background-color: #70787D;
}

.blog_post_photo_area {
    width: 256px;
    height: 256px;
    flex: 0 0 auto;
}

.blog_post_photo_area img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.blog_date_info_area {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.blog_details_area {
    width: 68%;
    width: calc(100% - 256px);
}

.blog_details_area .date_main {
    margin-bottom: 30px;
}

.blog_details_area h3 {
    font-size: 48px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 25px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.blog_details_area>p {
    font-size: 18px;
    color: var(--soft-white);
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: var(--Raleway-Medium);
}

.blog_details_area .own-path-btn {
    border-color: var(--soft-white);
    color: var(--soft-white);
    padding: 0 32px;
}

.blog_details_area .own-path-btn:hover {
    background-color: var(--soft-white);
    color: var(--black);
}

.blog_info_item {
    position: relative;
    margin-right: 20px;
}

.blog_info_item:last-child::after {
    display: none;
}

.blog_info_item::after {
    content: "|";
    position: absolute;
    top: 0;
    right: -10px;
}

.blog_info_item span,
.blog_info_item p {
    font-size: 16px;
    line-height: normal;
}

.date_area {
    display: flex;
    align-items: center;
}

.date_area i {
    font-size: 16px;
    margin-right: 10px;
}

.blog_slider_area_main .slider-main-area {
    text-align: start;
}


/* BLOG SHOWCASE AREA  */
/* BLOG SHOWCASE AREA  */
/* BLOG SHOWCASE AREA  */

.blog_showcase-main {
    background-color: #fff;
    color: var(--black);
    padding: 100px 0;
}

.blog_showcase-main .access h2 {
    color: var(--black);
    margin-bottom: 70px;
    font-size: 50px;
    line-height: 1.5;
}

.blog_showcase-main .access h2::after {
    display: none;
}

.blog_showcase-main .access .info-ul li>p {
    margin-bottom: 25px;
}

.blog_showcase-main .info-ul li {
    flex: 0 0 30%;
    margin-bottom: 0;
}

.blog_showcase-main .id-details-area {
    width: 100%;
}

.blog_showcase-main .info-ul {
    column-gap: 40px;
    row-gap: 60px;
}

/* RECENT ARTICLES AREA  */
/* RECENT ARTICLES AREA  */
/* RECENT ARTICLES AREA  */

.recent_article_main {
    padding: 100px 0;
    background-color: #fafbfb;
}


.recent_article h2 {
    font-size: 48px;
    font-family: var(--Raleway-SemiBold);
    margin-bottom: 70px;
    color: var(--black);
}

.new_grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 65px;
    max-width: 1368px;
    margin: 0 auto;
    column-gap: 40px;
    row-gap: 60px;
    margin-bottom: 80px;
}

.article_item {
    flex: 0 0 48%;
    margin-bottom: 0;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 13px;
    background-color: #fff;
    padding: 65px 72px;
}

.article_item h6 {
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 25px;
}

.article_item>p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: var(--Raleway-Medium);
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article_item .date_main {
    margin-bottom: 20px;
}

.recent_article .pagination {
    justify-content: center;
    column-gap: 18px;
}

.recent_article .page-item .page-link {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    padding: 0;
    border: none;
    background-color: #E9E9E9;
    color: var(--black);
    font-family: var(--Raleway-Medium);
}

.recent_article .active>.page-link,
.recent_article .page-link.active {
    background-color: var(--black);
    color: var(--soft-white);
}

/* ===========================
        PODCAST PAGE  
        PODCAST PAGE  
        PODCAST PAGE  
        PODCAST PAGE  
 =============================*/

/* PODCAST BANNER AREA  */
/* PODCAST BANNER AREA  */
/* PODCAST BANNER AREA  */

.podcast_banner_area_main {
    padding: 110px 0 85px;
    position: relative;
    overflow: hidden;
}

.podcast_details .common_heading {
    margin-bottom: 30px;
}

.podcast_poster {
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.podcast_poster>.row {
    align-items: center;
}

.podcast_details .with_whom {
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    margin-bottom: 57px;
}

.podcast_image {
    width: 100%;
    height: 394px;
    max-width: 394px;
}

.podcast_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.list_area {
    display: flex;
    gap: 20px 15px;
    flex-wrap: wrap;
}

.podcast_bottom_area>.row {
    align-items: center;
}

.podcast_links:hover {
    background-color: var(--black);
    color: var(--soft-white);
}

/* PODCAST SLIDER AREA  */
/* PODCAST SLIDER AREA  */
/* PODCAST SLIDER AREA  */
.podcast_slider_area_main .common_sub_section_heading {
    margin-bottom: 30px;
}

.podcast_slider_area_main .common_sub_section_heading h2 {
    font-family: var(--Raleway-Bold);
}

.podcast_slider_area_main .slider-content {
    position: relative;
    z-index: 1;
}

.podcast_slider_area_main .slider-content::after,
.podcast_slider_area_main .slider-content::before {
    display: none;
}

.podcast_slider_area_main .blog_post_photo_area {
    width: 217px;
    height: 217px;
    position: relative;
}

.podcast_slider_area_main .blog_post_photo_area::before {
    content: " ";
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #76daf2;
    position: absolute;
    left: -10px;
    top: -5px;
    z-index: -1;
}

.podcast_slider_area_main .blog_post_photo_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.podcast_organizer {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 38px;
}

.podcast_organizer img {
    width: 37px;
    height: 37px;
    object-fit: cover;
    border-radius: 100%;
}

.podcast_organizer span {
    display: inline-block;
    font-size: 18px;
    color: var(--black);
    font-family: var(--Raleway-SemiBold);
}

/* =========================
        BLOG DETAILS PAGE
        BLOG DETAILS PAGE
        BLOG DETAILS PAGE
    ======================  */

.blog_details_banner_area_main {
    background-color: #141126;
    color: var(--soft-white);
    padding: 95px 0;
    position: relative;
    overflow: hidden;
}

.blog_details_banner_area_main .right-img2 {
    z-index: 1;
    top: -30%;
}

.blog_details_banner_area .common_heading {
    margin-bottom: 45px;
}

.blog_details_banner_area .common_heading h2 {
    color: var(--soft-white);
}

.blog_details_banner_area .common_para p {
    color: var(--soft-white);
    font-size: 18px;
    margin-bottom: 1.1em;
    line-height: 1.5;
    max-width: 1088px;
}

.blog_details_content_area_main {
    background-color: #FAFBFB;
    padding: 43px 0 20px;
}

.details_content_area>p {
    font-size: 18px;
    line-height: 1.9;
    font-family: var(--Raleway-Medium);
    margin-bottom: 2.2em;
    margin-top: 2.2em;
}

.details_content_area :is(h1, h2, h3, h4, h5, h6) {
    font-size: 48px;
    line-height: 1.3;
    margin: 1.6em 0 0.9em 0;
    font-family: var(--Raleway-Bold);
}

.details_content_area img {
    width: 100%;
    border-radius: 15px;
}

.details_content_area ul {
    list-style: disc;
    list-style-position: inside;
}

.details_content_area ul li {
    font-size: 18px;
    font-family: var(--Raleway-Medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.details_content_area ul li a {
    color: #005E31;
    text-decoration: underline;
}

/* =========================
    PODCAST DETAILS PAGE
    PODCAST DETAILS PAGE
    PODCAST DETAILS PAGE
    ======================  */


.podcast_details_poster{
    margin-bottom: 0;
}
.write_and_date_area {
    display: flex;
    align-items: center;
    column-gap: 108px;
    margin-bottom: 25px;
}

.write_and_date {
    position: relative;
}

.write_and_date::after {
    content: "|";
    position: absolute;
    right: -54px;
    top: 50%;
    transform: translateY(-50%);
}

.write_and_date:last-child::after {
    display: none;
}

.write_and_date_area .podcast_organizer {
    margin-bottom: 0;
}

.write_and_date_area .podcast_organizer span {
    color: var(--soft-white);
}

.write_and_date_area .date_main {
    margin-bottom: 0;
}

/* PODCAST TRANSRIPT  */
/* PODCAST TRANSRIPT  */
/* PODCAST TRANSRIPT  */
.podcast_details_content_area_main{
    background-color: #FAFBFB;
    padding: 80px 0;
}

.transcript_area_main{
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 12px;
}
.transcript_area_main .common_sub_section_heading{
    background-color: #F1F2F2;
    padding: 20px 50px;
    border-radius: 12px 12px 0 0;
}
.transcript_area_main .common_sub_section_heading h2{
    font-size: 26px;
    font-family: var(--Raleway-ExtraBold);
}
.transcript_area{
    padding: 20px 50px;
    height: 800px;
    overflow-y: scroll;
}

.transcript_area p{
    font-size: 16px;
    margin-bottom: 24px;
    font-family: var(--Raleway-Medium);
}
.transcript_area h4{
    font-size: 18px;
    color: var(--theme-color);
    font-family: var(--Raleway-Bold);
    margin-bottom: 10px;
}
.transcript_area h3{
    font-size: 26px;
    margin-bottom: 30px;
    font-family: var(--Raleway-ExtraBold);
    color: var(--fade-black);
}

/* MORE PODCAST PLATFORM CONTENT  */
/* MORE PODCAST PLATFORM CONTENT  */
/* MORE PODCAST PLATFORM CONTENT  */

.podcast_in_other_platform_area{
    background-color: #FAFBFB;
    padding: 80px 0;
}
.podcast_in_other_platform_area .podcast_banner_area{
    border-top: 2px solid var(--black);
    padding-top: 86px;
}
.podcast_poster .blog_details_area{
    width: 100%;
}
.podcast_poster .blog_details_area h3{
    margin-bottom: 20px;
}
.podcast_in_other_platform_area .podcast_image{
    height: 330px;
    max-width: 330px;
}
/* .podcast_in_other_platform_area .list_area{
    justify-content: center;
} */

/* MIGHT YOU ALSO LIKE CONTENT  */
/* MIGHT YOU ALSO LIKE CONTENT  */
/* MIGHT YOU ALSO LIKE CONTENT  */
.might_you_also_area_main{
    background-color: #FAFBFB;
    padding: 70px 0 63px;
}
.episode_content{
    box-shadow: 0px 3px 6px #00000029;
    padding: 50px;
    border-radius: 13px;
    background-color: #fff;
}
.episode_content a{
    font-size: 26px;
    font-family: var(--Raleway-Bold);
    color: var(--black);
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.episodes_area > .row{
    margin: 0 -24px;
}
.episodes_area > .row > *{
    padding: 0 24px;
}
.might_you_also_area .common_sub_section_heading{
    margin-bottom: 65px;
}
.might_you_also_area .common_sub_section_heading h2{
    font-family: var(--Raleway-Bold);
}