/* GLOBAL TEMPLATE */
.hide {
    display: none;
}

.graphic-seperator::before {
    content: url("../../images/seperator.svg");
}

body .home-page.page .title-2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    line-height: 48px;
    text-align: inherit;
    margin-bottom: 8px;
}

body .home-page.page .title-4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
}

body .home-page.page .title-4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 8px;
}

.home-page .text p {
    font-size: 18px;
    line-height: 32px;
}

.button {
    font-size: 18px;
    line-height: 32px;
    min-width: 218px;
    padding: 6px 24px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
}

.button.green:hover {
    background-color: #165100;
}

.button.green:focus {
    background-color: #DEEDD9;
}

.button.green.empty {
    border: solid 1px #248700;
    color: #248700;
    background: transparent;
    transition: 300ms all ease;
}

.button.green.empty:hover {
    border-color: #165100;
    background-color: #165100;
    color: #fff;
}

.button.green.simple {
    color: #248700;
    font-size: 18px;
    line-height: 32px;
    text-decoration: none;
    display: inline-block;
    background: none;
    font-weight: 400;
    padding: 0;
    min-width: unset;
    white-space: nowrap;
}

.button.green.simple:hover {
    color: #165100;
}

.button.green.simple::after {
    content: url("../../images/button-arrow.svg");
    margin-left: 30px;
    transition: 300ms all ease;
    position: relative;
    left: 0;
}

.button.green.simple:hover::after {
    left: 10px;
}

@media (max-width: 992px) {
    body .home-page.page .title-2 {
        font-size: 28px;
        line-height: 40px;
    }

    .home-page .text p {
        font-size: 16px;
        line-height: 28px;
    }
}

.home-page.page {
    background-color: #F5F5F5;
}

.home-page.page .owl-nav {
    position: absolute;
    bottom: -85px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page.page .owl-nav .nav-btn {
    display: block;
    width: 48px;
    height: 48px;
    background-image: url("../../images/button-active.svg");
}

.home-page.page .owl-nav .disabled .nav-btn {
    background-image: url("../../images/button-disabled.svg");
}

.home-page.page .owl-nav .owl-prev .nav-btn {
    transform: rotate(180deg);
}

.home-page.page .owl-nav .pagenum {
    margin: 0 16px;
}

/* HERO SLIDER */
.hero-block {
    background-color: #fff;
    padding-bottom: 34px;
    border-bottom-right-radius: 230px;
    overflow: hidden;
}

.hero-block .title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 16px;
}

.hero-block .text {
    font-size: 24px;
    line-height: 40px;
}

.hero-block .hero-slider__item {
    background-color: #fff;
    padding-bottom: 32px;
}

.hero-slider__item > .container {
    position: relative;
}

.hero-block .hero-slider__item .text * {
    font-size: 24px;
    line-height: 40px;
}

.hero-block .hero-slider__item::before {
    content: url("../../images/home-hero-shape.svg");
    position: absolute;
    left: 0;
    bottom: 0;
}

.hero-block .hero-slider__item .in-front > * {
    position: relative;
}

.hero-block .profile-button {
    margin-top: 16px;
}

.hero-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-controls .hero-dots {
    display: flex;
    list-style: none;
    margin: 0 24px;
}

.hero-slider-controls .hero-dot {
    width: 12px;
    height: 12px;
    background-color: #BBDAB0;
    border-radius: 9px;
    margin: 0 8px;
    cursor: pointer;
    transition: all 300ms ease;
}

.hero-slider-controls .hero-dot.active {
    width: 32px;
    background-color: #248700;;
}

.hero-slider-controls  button {
    padding: 0;
    background: transparent;
}

.hero-slider-controls .hero-btn {
    width: 48px;
    height: 48px;
    background-image: url("../../images/button-active.svg");
    background-repeat: no-repeat;
    cursor: pointer;
}

.hero-slider-controls .hero-btn.hero-next {
    transform: rotate(180deg);
}

.hero-slider-controls  button.disabled .hero-btn {
    background-image: url("../../images/button-disabled.svg");
    cursor: default;
}

@media (max-width: 991px) {
    .hero-block {
        border-bottom-right-radius: 150px;
    }

    .hero-block .hero-slider__item::before {
        content: none;
    }

    .hero-block .hero-button {
        display: block;
        width: 169px;
        min-width: 0;
        margin: 0 auto;
    }

    .hero-block .title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-block .hero-slider__item .text * {
        font-size: 16px;
        line-height: 28px;
    }
}



/* PROGRESS BLOCK */
.progress-block {
    padding: 38px 0 41px;
}

.progress-block .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
}

.progress-block .text {
    font-size: 18px;
    line-height: 32px;
}

.progress-block .left-side .text {
    font-weight: 500;
}

.progress-block .progress-bar {
    width: 300px;
    height: 8px;
    background: #E0E0E0;
    border-radius: 17px;
    margin-bottom: 8px;
}

.progress-block .progress-bar .fill {
    height: 100%;
    background: #333333;
    border-radius: 17px;
}

.progress-block .progress-text {
    font-size: 14px;
    line-height: 24px;
}

.progress-block .right-side-content {
    position: relative;
    padding: 32px;
    background-color: #fff;
    box-shadow: 0 24px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.progress-block .right-side {
    position: relative;
}

.progress-block .right-side::before {
    content: '';
    background-image: url("../../images/checklist-bottom.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -25px;
    left: -138px;
    display: block;
    width: 500px;
    height: 196px;
}

.progress-block .right-side-button {
    margin-top: 16px;
}

@media (max-width: 992px) {
    .progress-block .left-side {
        margin-bottom: 60px;
    }

    .progress-block .right-side::before {
        width: calc( 100% + 160px );
        left: -120px;
        right: -40px;
        background-size: 100%;
        top: -90px;
        height: 360px;
    }

    .progress-block .title {
        font-size: 20px;
        line-height: 32px;
    }

    .progress-block .text {
        font-size: 14px;
        line-height: 24px;
    }

    .progress-block .right-side-button {
        font-size: 16px;
    }
}



/* COURSES TABS */
.courses-tabs {
    background-color: #fff;
    padding-bottom: 16rem;
}

.courses-tabs .nav-tabs {
    display: flex;
    justify-content: space-between;
    margin: 0 -16px 32px;
    border: none;
}

.courses-tabs .nav-tabs .nav-item {
    padding: 0 16px;
    margin: 0;
}

.courses-tabs .nav-tabs .nav-item .nav-link {
    border: none;
    background: transparent;
    text-transform: none;
    font-size: 18px;
    line-height: 32px;
    color: #333;
    text-decoration: none;
    padding: 0;
}

.courses-tabs .nav-tabs .nav-item .nav-link.active {
    color: inherit;
    font-weight: 700;
}

.courses-tabs .nav-tabs .nav-item .nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    border: solid 3px red;
    border-color: inherit;
    border-radius: 10px;
    margin-top: 8px;
}

.courses-tabs .tab-content .tab-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.courses-tabs .tab-content .pr_bar {
    width: 300px;
    margin: 24px 0 16px;
}

.courses-tabs .tab-content .ambit-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    padding: 3px 16px;
    color: #fff;
    border-radius: 31px;
    margin-right: 16px;
}

.courses-tabs .tab-content .completed-text {
    font-size: 16px;
    line-height: 28px;
    position: relative;
    top: 2px;
}

.courses-tabs .tab-content .tab-info .button {
    display: block;
}

.courses-tabs .tab-content .single-course {
    border-bottom: 8px solid #F79009;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.courses-tabs .tab-content .slide_image {
    height: 264px;
}

.courses-tabs .tab-content .slide_image img {
    object-fit: cover;
    height: 100%;
}

.courses-tabs .tab-content .slide-content {
    padding: 24px 24px 72px 24px;
    
}

.courses-tabs .tab-content .slide-text {
    min-height: 120px;
}

.courses-tabs .tab-content .slide-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    position: absolute;
    bottom: 32px;
    left: 0;
    padding: 0 24px;
    width: 100%;
}

.courses-tabs .tab-content .slide-bottom .button {
    min-width: 180px;
    font-size: 18px;
    line-height: 32px;
}

@media (max-width: 992px) {
    .nav-wrapper {
        position: relative;
    }

    .nav-wrapper::after {
        content: url("../../images/arrow-green.png");
        position: absolute;
        top: 16px;
        right: 24px;
        pointer-events: none;
    }

    .nav-wrapper .active-tab {
        width: 100%;
        border: 1px solid #919191;
        border-radius: 8px;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 700;
        line-height: 28px;
        color: inherit;
        margin-bottom: 40px;
    }

    .nav-wrapper .nav-tabs {
        display: none;
        flex-direction: column;

        border: 1px solid #919191;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top: none;

        margin: 0;
        padding-bottom: 10px;
        position: absolute;
        top: 90%;
        z-index: 99;
        background-color: white;
        width: 100%;
    }

    .nav-wrapper.show .nav-tabs {
        display: flex;
    }

    .nav-wrapper .nav-tabs .nav-item {
        padding: 0 24px;
        margin-bottom: 10px;
    }

    .nav-wrapper .nav-tabs li.active {
        display: none;
    }

    .nav-wrapper .nav-tabs .nav-item .nav-link {
        width: 100%;
        text-align: left;
    }

    .courses-tabs .tab-content .tab-info {
        flex-direction: column;
        text-align: center;
    }

    .courses-tabs .tab-content .tab-info .left-side {
        margin-bottom: 30px;
    }

    .courses-tabs .tab-content .pr_bar {
        margin: 24px auto 16px;
    }
}



/* FAQ CARDS BLOCK */
.faq-cards-block {

}

.faq-cards-block .faq-cards {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
}

.faq-cards-block .faq-cards .card {
    border: none;
    perspective: 5000px;
    background: transparent;
}
.faq-cards-block .faq-cards .card:hover .card-front p {
    display: none;
}

.faq-cards-block .faq-cards .card-wrapper {
    position: relative;
    height: 400px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.faq-cards-block .faq-cards .card:hover .card-wrapper {
    transform: rotateY(180deg);
}

.faq-cards-block .faq-cards .card-front,
.faq-cards-block .faq-cards .card-back {
    background-color: #F5F5F5;
    border-radius: 16px;
    perspective: 1000px;
    padding: 24px;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-cards-block .faq-cards .card-front::before,
.faq-cards-block .faq-cards .card-back::before {
    content: '';
    display: block;
    position: absolute;
    width: 404px;
    height: 404px;
    border: solid 50px #fafafa;
    border-radius: 50%;
    top: -6px;
    left: -250px;
    z-index: -1;
}

.faq-cards-block .faq-cards .card-front::after,
.faq-cards-block .faq-cards .card-back::after {
    content: '';
    display: block;
    position: absolute;
    width: 432px;
    height: 432px;
    background-color: #fafafa;
    border-radius: 50%;
    top: -6px;
    left: 150px;
    z-index: -1;
}

.faq-cards-block .faq-cards .card.dark .card-front::before,
.faq-cards-block .faq-cards .card.dark .card-back::before {
    border-color: #e6e6e6;
}

.faq-cards-block .faq-cards .card.dark .card-front::after,
.faq-cards-block .faq-cards .card.dark .card-back::after {
    background-color: #e6e6e6;
}

.faq-cards-block .faq-cards .card.dark .card-front,
.faq-cards-block .faq-cards .card.dark .card-back {
    background-color: #EBEBEB;
}

.faq-cards-block .faq-cards .card-front {
    background-color: inherit;
}

.faq-cards-block .faq-cards .card-back {
    background-color: inherit;
    transform: rotateY(180deg);
}

.faq-cards-block .faq-cards .card-back .text * {
    font-size: 20px;
    line-height: 32px;
}

.faq-cards-block .faq-cards .flip_status {
    width: auto;
    height: auto;
}

.faq-cards-block .faq-cards .card-back .flip_status {
    right: auto;
    left: 15px;
    transform: rotateY(180deg);
}

.faq-cards-block .faq-cards .flip_status::before {
    content: url("../../images/Arrow_Undo_Up_Left.svg");
}

.faq-cards-block .faq-cards .text,
.faq-cards-block .faq-cards .text * {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
}

.faq-cards-block .faq-cards .card-ambit {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 0 16px;
    border-radius: 31px;
}

@media (max-width: 992px) {
    .faq-cards-block .faq-cards {
        grid-template-columns: repeat( 2, 1fr );
    }
}

@media (max-width: 768px) {
    .faq-cards-block .faq-cards {
        grid-template-columns: 1fr;
    }
}



/* LATEST NEWS BLOCK */
.news-block {
    padding-bottom: 16rem;
    position: relative;
    overflow: hidden;
}

.news-block::before {
    content: url("../../images/reccomendations_bg.svg");
    position: absolute;
    left: 0;
    bottom: -10px;
}

.news-block .top-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.news-block .top-content .all-news-btn {
    margin-left: 50px;
}

.news-block .news-item {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.news-block .news-item a {
    text-decoration: none;
    color: #333;
}

.news-block .news-item .image {
    border-radius: 16px;
    width: 100%;
    height: 207px;
    overflow: hidden;
}

.news-block .news-item .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-block .news-item .news-item-content {
    padding: 16px 24px;
}

.news-block .news-item .terms-and-date {
    margin-bottom: 8px;
}

.news-block .news-item .terms a {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    padding: 0 16px;
    border-radius: 31px;
    display: inline-block;
    margin-right: 8px;
    background-color: #333333;
    text-decoration: none;
}

.news-block .news-item .date {
    white-space: nowrap;
    display: block;
    margin: 5px 0 0 0;
    font-size: 14px;
}

.news-block .news-item .text {
    max-height: 84px;
    overflow: hidden;
}

.news-block .owl-stage {
    display: flex;
}

.news-block .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.home-page.page .news-block .owl-nav {
    bottom: -100px;
}

@media (max-width: 992px) {
    .news-block::before {
        content: none;
    }
}



/* WHY REGISTER BLOCK */
.why-register-block {
    overflow: hidden;
}

.why-register-block .top-text-container {
    text-align: center;
    max-width: 1070px;
    margin: 0 auto 30px;
}

.why-register-block .icons-and-text {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 32px 0 rgba(0, 0, 0, 0.10);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 32px;
    padding: 40px 12px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-register-block .icons-and-text .item {

}

.why-register-block .icons-and-text .item img {
    display: block;
    margin: 0 auto 30px;
    height: 60px;
    object-fit: contain;
}

.why-register-block .icons-and-text .item .text {
    font-size: 16px;
    line-height: 28px;
    color: #919191;
}

.why-register-block .bottom-block {
    margin-top: 96px;
    display: flex;
    position: relative;
}

.why-register-block .bottom-block::before {
    content: url("../../images/why-register-bg.svg");
    position: absolute;
    right: -80px;
    top: -270px;
}

.why-register-block .bottom-block .text-container {
    max-width: 520px;
    position: relative;
}

.why-register-block .bottom-block .text-container .button {
    margin-top: 22px;
}

.why-register-block .bottom-block .bottom-text {
    margin-top: 60px;
}

.why-register-block .bottom-block .bottom-text ul {
    list-style: none;
    margin: 0;
}

.why-register-block .bottom-block .bottom-text ul li {
    position: relative;
    padding-left: 24px;
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 32px;
}

.why-register-block .bottom-block .bottom-text ul li::before {
    content: '';
    display: block;
    width: 12px;
    height: 4px;
    background-color: #2B78FF;
    position: absolute;
    left: 0;
    top: 12px;
}

.why-register-block .bottom-block .bottom-block-image {
    position: relative;
}

@media (max-width: 992px) {
    .why-register-block .icons-and-text {
        grid-template-columns: repeat( 2, 1fr );
    }

    .why-register-block .bottom-block {
        flex-direction: column;
        margin-top: 60px;
    }

    .why-register-block .bottom-block .text-container {
        order: 2;
    }

    .why-register-block .bottom-block::before {
        content: '';
        background-image: url("../../images/why-register-bg-mobile.svg");
        background-repeat: no-repeat;
        background-size: 110%;
        left: -160px;
        top: -130px;
        right: 0;
        bottom: 0;
    }

    .why-register-block .bottom-block .bottom-block-image {
        margin-bottom: 120px;
    }

    .why-register-block .bottom-block .bottom-text {
        margin-top: 40px;
    }

    .why-register-block .bottom-block .bottom-text ul li {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .why-register-block .icons-and-text {
        grid-template-columns: 1fr;
    }
}


/* USER ATTRIBUTES BLOCK */
.user-attributes {
    background-color: #fff;
    overflow: hidden;
    padding: 160px 0 128px;
}

.user-attributes > .container {
    position: relative;
    z-index: 1;
}

.user-attributes > .container::before {
    content: url("../../images/user-attributes-bg.svg");
    position: absolute;
    top: -370px;
    right: -200px;
    z-index: -1;
}

.user-attributes-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 32px 24px;
}

.user-attributes-wrapper .info-card {
    position: relative;
    top: -40px;
}

.user-attributes-wrapper .info-card .text {
    margin-top: 16px;
}

.user-attributes-wrapper .info-card .button {
    margin-top: 40px;
}

.user-attributes-wrapper .item {
    display: flex;
    flex-direction: column;
}

.user-attributes-wrapper .item-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 4px 25px;
    display: block;
    height: 80px;
}

.user-attributes-wrapper .item-wrap {
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.05);
    padding: 0 25px;
    margin-top: 28px;
    position: relative;
    height: 100%;
}

.user-attributes-wrapper .item-wrap::before {
    content: url("../../images/user-attributes-icon.svg");
    position: absolute;
    left: 25px;
    top: -28px;
}

.user-attributes-wrapper .item-content {
    padding: 23px 0;
}

.user-attributes-wrapper .item-content .text {
    line-height: 28px;
    /* max-height: 84px; */
    /* overflow: hidden; */
    margin: 0;
}

.user-attributes-wrapper .step-circle-wrapper {
    margin-top: 96px;
    display: flex;
}

.user-attributes-wrapper .step-circle {
    background-color: #2B78FF;
    border-radius: 16px;
    box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.05);
    padding: 26px 15px 8px 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.user-attributes-wrapper .step-circle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("../../images/user-attributes-circle-bg.svg");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100%;
}

.user-attributes-wrapper .step-circle * {
    position: relative;
}

.user-attributes-wrapper .step-circle .step_circle img {
    display: block;
    width: 235px;
    height: 190px;
    margin: 0 auto;
    object-fit: cover;
}

.user-attributes-wrapper .step-circle .step_circle span {
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    width: 90px;
    color: #2B78FF;
    left: 50%;
    top: 49%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 1199px) {
    .user-attributes-wrapper {
        grid-template-columns: repeat( 3, 1fr );
    }

    .user-attributes-wrapper .info-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .user-attributes-wrapper {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }

    .user-attributes > .container::before {
        content: url("../../images/user-attributes-bg-mobile.svg");
        top: auto;
        left: 0;
        right: auto;
        bottom: 0;
    }

    .user-attributes-wrapper .step-circle-wrapper {
        margin: 0;
    }

    .user-attributes-wrapper .item-content .text {
        font-size: 14px;
        line-height: 24px;
        max-height: unset;
    }

    .user-attributes-wrapper .step-circle-wrapper .text {
        font-size: 14px;
        line-height: 24px;
    }
}

.tabs_bg .owl-stage{
    display: flex;
}