@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@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-secondary-color: #141126;
    --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';
    --Inter: "Inter", sans-serif;
    --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;
}

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

.dropdown-arrow i {
    font-size: 14px;
    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;
}

.nav-ul li ul {
    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);
    border-radius: 5px;
    padding: 8px 10px;
}

.nav-ul li ul li a {
    display: block;
    padding: 5px 12px;
    transition: all 0.5s;
    font-family: var(--Raleway-SemiBold);
    font-size: 14px;
    color: #101112;
    transition: all 0.5s;
    border-radius: 6px;
    margin-bottom: 5px;
}

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

.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 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: 9;
}

.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: 9;
    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: 999;
    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: 9;
}

.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-SemiBold);
    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: 845px;
    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;
    margin-bottom: 10px;
}

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

.footer-nav-ul li a {
    font-size: 18px;
    color: var(--fade-black);
    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);
}

/* PB TITTLE AND CONTENT AREA START  */

.common_title_area {
    margin-left: auto;
    margin-right: auto;
    max-width: 1170px;
}

.common_title_area :is(h2, h3) {
    font-size: 46px;
    color: #0A0A0A;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-family: var(--Raleway-Bold);
}

.common_title_area h4 {
    font-size: 24px;
    color: #0A0A0A;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-family: var(--Raleway-Bold);
}

.common_title_area :is(h5, h6) {
    font-size: 20px;
    color: #060606;
    font-weight: 400;
    margin-bottom: 1em;
    font-family: var(--Raleway-Bold);
}

/* .common_title_area h6 {
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
} */

.common_title_area p {
    font-size: 18px;
    color: var(--fade-black);
    margin-bottom: 1.5em;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.cl_white :is(h2, h3, h4) {
    color: var(--fade-white);
}

.cl_white :is(h5, h6) {
    color: var(--fade-white);
}

.cl_white p {
    color: var(--fade-white);
}

/* END  */

/* COMMON CLASSES  */
.common_padding {
    padding: 110px 0;
}

.common_mb {
    margin-bottom: 100px;
}

.common_btn {
    padding: 0 40px;
    font-family: var(--Raleway-Bold);
    border-radius: 16px;
    line-height: 58px;
    border: 1px solid var(--theme-color);
    font-size: 18px;
    color: var(--black);
    transition: all 0.5s;
    background-color: var(--theme-color);
}

.common_btn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

/* PB BANNER  */
.pb_banner_wrapper {
    padding-bottom: 25px;
}

.pb_banner_wrapper h1 {
    font-size: 60px;
    line-height: 1.1;
    font-family: var(--Raleway-ExtraBold);
}

.pb_banner_wrapper h1 span {
    position: relative;
}

.pb_banner_wrapper h1 span::after {
    content: " ";
    width: 100%;
    height: 200%;
    background-image: url(../img/pb_green_oval.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.pb_banner_wrapper h1::after {
    display: none;
}

.pb_banner_wrapper .banner-area p {
    max-width: 910px;
    line-height: 1.9;
}

.pb_banner_wrapper .banner-area::before {
    bottom: 6px;
    left: 13%;
    z-index: -1;
}

.pb_banner_wrapper .right-img {
    top: -12%;
    right: 8%;
}

.pb_banner_wrapper .banner-area {
    margin-bottom: 10px;
}

.pb_banner_wrapper::after {
    content: "";
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 28%;
    background: var(--theme-secondary-color);
}

/* ================= PB WHY OUR TOOL AREA ==============  */

.pb_why_our_tool_wrapper {
    background-color: var(--theme-secondary-color);
}

.common_padding.pb_why_our_tool_wrapper {
    padding-top: 25px;
}

/* PB CARD AREA  */
.pb_why_ponits_area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 40px 85px;
}


.pb_card_item>* {
    margin-bottom: 30px;
}

.pb_card_item:last-child>*:last-child {
    margin-bottom: 0;
}

.pb_card_item img {
    width: 67px;
    height: 67px;
    object-fit: scale-down;
}

/* ================= PB START STEPS ==============   */
.pb_start_step_wrapper {
    background-color: #f7f7f9;
    overflow-x: hidden;
}

.pb_start_step_wrapper .pb_why_ponits_area {
    column-gap: 165px;
    grid-template-columns: repeat(3, 1fr);
}

.pb_start_step_wrapper .pb_card_item {
    position: relative;
    z-index: 1;
}

.pb_start_step_wrapper .pb_card_item::after {
    content: "";
    position: absolute;
    width: 158%;
    max-width: 550px;
    height: 100px;
    background: url('../img/first_wave.svg') no-repeat;
    background-size: contain;
    top: -22px;
    left: 160px;
    z-index: -1;
}

.pb_start_step_wrapper .pb_card_item:nth-child(2):after {
    background-image: url('../img/second_wave.svg');
    top: 18px;
}

.pb_start_step_wrapper .pb_card_item:last-child:after {
    display: none;
}

.number_count_area {
    width: 75px;
    height: 75px;
    font-size: 26px;
    border-radius: 50%;
    background-color: #fcf1db;
    color: #edb243;
    display: grid;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--Inter);
    font-weight: 700;
}

.pb_card_item:nth-child(2) .number_count_area {
    background-color: #f6dce0;
    color: #d96b7c;
}

.pb_card_item:last-child .number_count_area {
    background-color: #e8eaf8;
    color: #6071d3;
}

/* ================= PB BOARD RESEARCH AREA ==============   */
.large_content_area {
    padding: 20px 25px;
    padding-bottom: 65px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.075);
    border-radius: 29px;
}

.large_content_area>img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/1.9;
    margin-bottom: 65px;
}

.large_content_area>p {
    font-size: 24px;
    line-height: 1.7;
    font-family: var(--Raleway-Medium);

}

.small_tool_points_area ul {
    margin-bottom: 65px;
}

.small_tool_points>*:last-child {
    margin-bottom: 0;
}

.small_tool_points {
    padding: 50px 54px;
    gap: 35px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.075);
    border-radius: 29px;
    margin-bottom: 20px;
}

.small_tool_points img {
    width: 81px;
    height: 81px;
    object-fit: scale-down;
    flex: 0 0 auto;
}

/* ============ PB GET PREPARED AREA =========== */
.get-prepared-main.pb_prepared_wrapper {
    background-color: #fff;
}

.pb_prepared_wrapper .common_title_area p {
    font-size: 22px;
    max-width: 1060px;
    font-family: var(--Raleway-SemiBold);
}

.pb_prepared_wrapper .get-prepared .img-two {
    top: 220px;
}

.pb_prepared_wrapper .get-prepared .img-three {
    bottom: 50px;
    right: 90px;
    max-width: 530px;
}

.pb_prepared_wrapper .get-prepared {
    padding-bottom: 200px;
}

.pb_prepared_wrapper .get-prepared .img-one {
    bottom: 170px;
    left: 30px;
}

.pb_prepared_wrapper .form-main-area .input-area input {
    width: 300px;
}

.pb_prepared_wrapper .form-main-area {
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.075);
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.075);
}

.pb_prepared_wrapper .form-main-area .input-area input {
    border-right: 1px solid #d6d6d6;
    font-size: 16px;
}

/* ================= PB FOOTER AREA ==============  */
.pb_footer_wrapper {
    padding-bottom: 40px;
}

.pb_footer_wrapper .footer-nav-ul li a {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1;
}

.pb_footer_wrapper .footer-nav-ul li:not(:last-child) {
    margin-bottom: 20px;
}

.icon_design_area::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #c3c7d1;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.icon_design_area .social-icons {
    background-color: #f8f8f9;
}

.copywrite_area>p {
    font-size: 14px;
    color: #686868;
}



/* 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 button {
    border: none;
    background-color: transparent;
}

.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: cover;
    border-radius: 100%;
}

.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;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_details_area>p {
    font-size: 18px;
    color: var(--soft-white);
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: var(--Raleway-Medium);
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.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;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.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;
    min-height: 88px;
}

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

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

.recent_article .page-numbers {
    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 .prev.page-numbers,
.recent_article .next.page-numbers {
    display: none;
}

.recent_article .page-numbers.dots {
    background-color: transparent;
}

.recent_article .active>.page-link,
.recent_article .page-numbers.current {
    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);
}



/* MULTISTEP FORM  */

/* ------------------------------------------------------------------------------
*
*  # Steps wizard
*
*  An all-in-one wizard plugin that is extremely flexible, compact and feature-rich
*
*  Version: 1.2
*  Latest update: Aug 10, 2016
*
* ---------------------------------------------------------------------------- */
.wizard {
    width: 100%;
}

.wizard>.steps .current-info,
.wizard>.content>.title {
    position: absolute;
    left: -99999px;
}

.wizard>.content {
    position: relative;
    width: auto;
    padding: 0;
}

.wizard>.content>.body {
    padding: 0 40px;
}

.wizard>.content>iframe {
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard>.steps {
    position: relative;
    display: block;
    width: 100%;
}

.wizard>.steps>ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wizard>.steps>ul>li {
    display: table-cell;
    width: auto;
    vertical-align: top;
    text-align: center;
    position: relative;
    font-family: 'AvenirNextDemiBold', 'Helvetica', 'Arial', sans-serif !important;
}

.wizard>.steps>ul>li a {
    position: relative;
    padding-top: 48px;
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
}

.wizard>.steps>ul>li:before,
.wizard>.steps>ul>li:after {
    content: '';
    display: block;
    position: absolute;
    top: 58px;
    width: 50%;
    height: 2px;
    background-color: var(--theme-color);
    z-index: 9;
}

.wizard>.steps>ul>li:before {
    left: 0;
}

.wizard>.steps>ul>li:after {
    right: 0;
}

.wizard>.steps>ul>li:first-child:before,
.wizard>.steps>ul>li:last-child:after {
    content: none;
}

.wizard>.steps>ul>li.current:after,
.wizard>.steps>ul>li.current~li:before,
.wizard>.steps>ul>li.current~li:after {
    background-color: #eeeeee;
}

.wizard>.steps>ul>li.current>a {
    color: var(--theme-color);
    cursor: default;
}

.wizard>.steps>ul>li.current.error>a {
    color: #ff0000;
}

.wizard>.steps>ul>li.current .number {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

ul[aria-label="Pagination"] li[aria-disabled="true"].disabled {
    display: none;
}

/*.wizard > .steps > ul > li.current .number:after {
    content: '\e913';
    font-family: 'icomoon';
    display: inline-block;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 34px;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }*/
.wizard>.steps>ul>li.disabled a,
.wizard>.steps>ul>li.disabled a:hover,
.wizard>.steps>ul>li.disabled a:focus {
    color: #A5AEB7;
    cursor: default;
}

.wizard>.steps>ul>li.done a,
.wizard>.steps>ul>li.done a:hover,
.wizard>.steps>ul>li.done a:focus {
    color: var(--theme-color);
}

.wizard>.steps>ul>li.done .number {
    font-size: 0;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.wizard>.steps>ul>li.done .number:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 16px;
    line-height: 34px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.wizard>.steps>ul>li.error .number {
    border-color: #F44336;
    color: #F44336;
}



.wizard>.steps .number {
    background-color: #fff;
    color: #A5AEB7;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -19px;
    width: 38px;
    height: 38px;
    border: 2px solid #eeeeee;
    font-size: 14px;
    border-radius: 50%;
    z-index: 10;
    line-height: 34px;
    text-align: center;
}

.panel-flat>.wizard>.steps>ul {
    border-top: 1px solid #ddd;
}

.wizard>.actions {
    position: relative;
    display: block;
    text-align: right;
    padding: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.wizard>.actions>ul {
    float: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wizard>.actions>ul:after {
    content: '';
    display: table;
    clear: both;
}

.wizard>.actions>ul>li {
    float: left;
    margin-right: 10px;
}


.wizard>.actions>ul>li>a {
    background: var(--theme-color);
    color: var(--black);
    display: block;
    padding: 10px 25px;
    /* font-family: 'AvenirNextDemiBold', 'Helvetica', 'Arial', sans-serif !important; */
    font-family: var(--Raleway-Bold);
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--theme-color);
    border-radius: 10px;
    transition: all 0.5s;
}

.wizard>.actions>ul>li>a:hover {
    color: var(--theme-color);
    background-color: transparent;
}

.wizard>.actions>ul>li>a[href="#previous"] {
    background-color: #fff;
    color: #4A4A49;
    border: 2px solid #EDEDED;
}

.wizard>.actions>ul>li.disabled>a,
.wizard>.actions>ul>li.disabled>a:hover,
.wizard>.actions>ul>li.disabled>a:focus {
    background-color: #fff;
    color: #4A4A49;
    border: 2px solid #EDEDED;
}

.wizard>.actions>ul>li.disabled>a[href="#previous"],

.wizard>.actions>ul>li.disabled>a[href="#previous"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wizard>.actions>ul>li.disabled>a[href="#previous"]:hover {
    background-color: #EDEDED;
}
@media only screen and (max-width: 768px) {
    .wizard>.steps>ul {
        margin-bottom: 20px;
    }

    .wizard>.steps>ul>li {
        display: block;
        float: left;
        width: 100%;
        display: none;
    }

    .wizard>.steps>ul>li.current {
        display: block;
    }

    .wizard>.content>.body {
        padding: 0;
    }

    .wizard>.actions {
        padding: 15px 0;
    }


    .wizard>.steps>ul>li>a {
        margin-bottom: 0;
    }

    .wizard>.steps>ul>li:first-child:before,
    .wizard>.steps>ul>li:last-child:after {
        content: '';
    }

    .wizard>.steps>ul>li:last-child:after {
        background-color: #00BCD4;
    }

    .wizard>.actions>ul>li>a {
        padding: 8px 25px;
    }
    .wizard>.actions {
        padding: 10px 0;
    }

    /* FORM INPUTS RESPONSIVE  */

    .contact_form_area_main :is(.input_area, .select_area) {
        margin-bottom: 20px;
    }

    .contact_form_area_main :where(.input_area, .select_wrapper, .radio_area, .mutiple_choices_wrapper) label {
        font-size: 16px;
    }

    .contact_form_area_main .select_wrapper {
        margin-bottom: 20px;
    }

    .select2-container .select2-selection--multiple {
        padding: 8px 6px;
    }

}

@media only screen and (max-width: 480px) {
    .wizard>.steps>ul>li {
        width: 100%;
    }


}
label {
    display: block;
}

label.error {
    color: red;
}





.contact_form_area_main {
    padding: 50px 0;
}

.contact_form_area_main :is(.input_area, .select_area) {
    position: relative;
    margin-bottom: 30px;
}

.checkbox_area {
    margin-bottom: 20px;
}

.contact_form_area_main .input_area:has(textarea) {
    margin-bottom: 18px;
}

.contact_form_area_main .input_area textarea {
    width: 100%;
    height: 130px;
    resize: none;
    outline: 0;
    padding: 10px 20px;
    border: 1px solid #6e6e6e91;
    border-radius: 7px;
    font-size: 16px;
}

.contact_form_area_main .input_area input {
    width: 100%;
    padding: 5px 20px;
    height: 46px;
    border: none;
    outline: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 1px solid #6e6e6e91;
    border-radius: 7px;
    font-size: 16px;
}

.contact_form_area_main .select_area select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 8px 50px 8px 23px;
    background-color: #fff;
    color: var(--theme-black);
    cursor: pointer;
    outline: 0;
    height: 46px;
    border: 1px solid #6e6e6e91;
    border-radius: 7px;
    font-size: 16px;
}

.contact_form_area_main :where(.radio_area, .checkbox_area, .radio_input) input {
    /* accent-color: #2cdd88; */
    accent-color: var(--black);
    width: 18px;
    height: 18px;
}

.contact_form_area_main label {
    font-size: 18px;
    color: #272727;
}

.contact_form_area_main .radio_area {
    margin-bottom: 30px;
}

.contact_form_area_main .select_area {
    position: relative;
}

.contact_form_area_main :where(.input_area, .select_wrapper, .radio_area, .mutiple_choices_wrapper) label {
    font-size: 18px;
    color: #272727;
    margin-bottom: 8px;
    font-family: var(--Raleway-SemiBold);
}

.contact_form_area_main :where(.input_area, .select_wrapper, .radio_area, .mutiple_choices_wrapper) label.error {
    color: #ff0000;
}

label span {
    font-size: inherit;
}

.contact_form_area_main .select_wrapper {
    margin-bottom: 30px;
}

.contact_form_area_main .checkbox_area {
    font-size: 16px;
    color: #272727;
}

.contact_form_area_main .checkbox_area label {
    margin-bottom: 0;
}

.contact_form_area_main .mutiple_choices_wrapper {
    margin-bottom: 30px;
    position: relative;
}

.contact_form_area_main .mutiple_choices_wrapper>label {
    margin-bottom: 15px;
}

.radio_input {
    margin-bottom: 20px;
}

.contact_form_area_main .common_btn {
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 10px;
    text-transform: uppercase;

}

.contact_form_area_main .common_btn:hover {
    color: var(--theme-color);
}

.contact_form_area_main .uacf7-prev,
.contact_form_area_main .uacf7-next {
    font-size: 16px;
    border-radius: 7px;
    line-height: 36px;
    border: 1px solid #2690d3;
    color: #ffffff;
    padding: 0 15px;
    background-color: #2690d3;
    transition: all 0.5s;
    font-weight: 300;
    box-shadow: 0px 3px 6px #00000029;
}

.contact_form_area_main .common_title_area {
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: var(--theme-color);
    border-radius: 10px;
}


.contact_form_area_main .common_title_area :is(h5, h6):last-child {
    margin: 0;
}



.contact_form_area_main .remove_exp_area svg {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background-color: var(--theme-color);
    border-radius: 50%;
}



.contact_form_area_main .checkbox_area .wpcf7-list-item {
    margin: 0;
}

.contact_form_area_main .radio_area .wpcf7-list-item {
    display: block;
}

.contact_form_area_main .select_area::after,
.contact_form_area_main .select_area::before {
    --size: 6px;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none
}

.contact_form_area_main .select_area::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid #000;
    top: 20px;
}

.contact_form_area_main .submit_button_area {
    margin-bottom: 30px;
}

.contact_form_area_main .submit_button_area .common_btn {
    border-radius: 7px;
}

.contact_form_area_main .submit_button_area .common_btn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.contact_form_area_main .submit_button_area {
    display: flex;
    align-items: center
}

.cw_company_end_date_area {
    display: none;
}

.wizard>.steps>ul>li.move_previous.done .number:after {
    font-size: 0;
}

.wizard>.steps>ul>li.move_previous.done .number {
    background-color: #fff;
    font-size: 14px;
    border: 2px solid #c1c1c1;
    color: #818181;
}

.wizard>.steps>ul>li.move_previous.done a,
.wizard>.steps>ul>li.move_previous.done a:hover,
.wizard>.steps>ul>li.move_previous.done a:focus {
    color: #818181;
}

.multiselect_area select {
    width: 100%;
    min-height: 100px;
    border-radius: 3px;
    border: 1px solid #444;
    padding: 10px;
    color: #444444;
    font-size: 14px;
}

.select2-container {
    display: block !important;
}

.select2-results__option--selected {
    background-color: #ebebeb;
}

.area_hide {
    display: none;
}

/* CD CSS  */
.select2.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: var(--theme-color);
    color: #fff;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 4px 4px 0 0;
    padding: 0 6px 0 22px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    margin: 0;
    text-align: center;
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
    vertical-align: middle !important;
}

.select2-container .select2-selection--multiple {
    min-height: unset;
    padding: 14px 6px !important;
    border-radius: 7px;
}

.contact_form_area_main .select_area:has(.select2-hidden-accessible)::after {
    display: none;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
    margin: 0px 4px 0 8px;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 24px !important;

}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--theme-color);
}

.btn_loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

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

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

.thank-you-message {
    color: #4CAF50;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.contact_form_area>.thank-you-message {
    padding: 0 40px;
}

.contact_form_area>.loader_wrapper {
    padding: 0 40px;
}

label.error {
    margin: 0;
    position: absolute;
    bottom: -27px;
}