@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.header {
    margin-top: 43px;
}

.header__content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 3px 7px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 3px 7px 0px rgba(34, 60, 80, 0.2);
    border-radius: 15px;
    padding: 16px 24px;
    background: #fff;
}

.header__content .logo img {
    max-width: 120px;
    height: auto;
}

.header__content .menu {
    margin-right: auto;
    margin-left: 64px;
}

.header__content .menu a {
    text-decoration: none;
    color: #121117;
    font-weight: 500;
    margin-right: 16px;
    transition: all .30s;
}

.header__content .menu a:hover {
    transition: all .30s;
    color: #6743F7;
}

.header__content .to-filter {}

.header__content .to-filter a {
    display: block;
    text-decoration: none;
    background: #6F33FF;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    padding: 8px 12px;
    border: 1px solid #6F33FF;
    transition: all .30s;
}

.header__content .to-filter a:hover {
    transition: all .30s;
    background: #fff;
    color: #6F33FF;
}

.mob-logo, .close-mob-menu, .mob-to-filter, .mob-menu-btn-wrapper {
    display: none;
}
.mob-menu-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000006b;
    z-index: 888;
}
/**********************/
.home-top {
    margin-top: -130px;
    background: url(Background.png) center/cover no-repeat;
    padding: 160px 0 16px 0;
}

.home-top__text {}

.home-top__text img {
    margin-top: 60px;
}

.home-top__text h1 {
    font-size: 48px;
    font-style: italic;
    color: #fff;
    margin-top: 32px;
}
.home-top__text p {
    font-size: 18px;
    font-style: italic;
    color: #fff;
    margin-top: 16px;
}

.home-top__text>a {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
    color: #fff;
    background: #000;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .30s;
}
.home-top__text div {
    margin-top: 16px;
}
.home-top__text div a {
    color: #fff;
}

.home-top__text > a:hover {
    transition: all .30s;
    background: #2c2c2c;
}

.home-top__text a svg {
    margin-left: 8px;
}

.home-top__img img {
    width: 100%;
    height: auto;
}

/***************************/
.home-stats {
    margin-top: 64px;
}

.home-stats__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-stats__item {
    text-align: center;
}

.home-stats__item .stat {
    font-size: 30px;
    font-weight: 500;
}

.home-stats__item .text {
    color: #4D4C5C;
}

/********************/
.home-subjects {
    margin-top: 64px;
}
.home-subjects__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    text-decoration: none;
    border-radius: 4px;
    padding: 24px;
    border: 1px solid #DCDCE5;
    margin-bottom: 30px;
}
.home-subjects__item img {
    width: 32px;
    height: 32px;
}
.home-subjects__item-text {
    margin-left: 16px;
}
.home-subjects__item-text .title {
    color: #121117;
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}
.home-subjects__item-text .count {
    color: #4D4C5C;
    font-size: 14px;
}
.home-subjects__item .arrow {
    margin-left: auto;
}
/************************/
.home-tutor {
    margin-top: 64px;
}
.home-tutor__head {
    text-align: center;
}
.home-tutor__head h2 {
    color: #121117;
    font-size: 60px;
    font-weight: 600;
}
.home-tutor__head p {
    color: #121117;
    font-size: 20px;
    margin-top: 6px;
}
.home-tutor__slider {
    padding: 0 32px;
    margin: 32px auto 0 auto;
}

.home-tutor__slide-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.home-tutor__slide-item>div {
    flex: 1 1 50%;
}
.home-tutor__slide-item .img {
    text-align: center;
}
.home-tutor__slide-item-img {
    position: relative;
}
.home-tutor__slide-item-img img {
    max-width: 320px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.home-tutor__slide-item-img .label-name {
    position: absolute;
    left: 16px;
    bottom: 60px;
    z-index: 1;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    color: #000;
}
.home-tutor__slide-item-img .label-subject {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    background: #673AD4;
    padding: 8px 12px;
    border-radius: 4px;
    color: #fff;
}
.home-tutor__slide-item-img {}
.home-tutor__slide-item .text {}
.home-tutor__slide-item .text h4 {
    font-size: 30px;
    font-weight: 500;
}
.home-tutor__slide-item .text p {
    margin-top: 24px;
    font-weight: 500;
    font-size: 18px;
}
.home-tutor__slide-item .text span {
    display: block;
    margin-top: 8px;
}
/************************/
.home-booking {
    margin-top: 64px;
}
.home-booking__head {
    margin-bottom: 32px;
}
.home-booking__head h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 130%;
}
.home-booking__head h2 span {
    color: #673AD3;
    font-weight: bold;
}
.home-booking__item {
    border-radius: 30px;
    overflow: hidden;
    height: calc(100% - 20px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home-booking__item h4 {
    margin-top: 25px;
    padding: 0 12px;
}
.home-booking__item p {
    padding: 0 12px;
    margin-top: 12px;
    font-size: 17px;
    line-height: 150%;
    margin-bottom: auto;
}
.home-booking__item-1 {
    background: #673AD3;
}
.home-booking__item-1 img {
    width: 100%;
    height: auto;
    margin-bottom: -4px;
}
.home-booking__item-1 h4 {
    color: #fff;
}
.home-booking__item-1 p {
    color: #fff;
}
.home-booking__item-2 {
    border: 3px solid #6536D6;
}
.home-booking__item-2 img {
    max-width: 220px;
    width: 100%;
    display: block;
    margin: 12px auto;
}
.home-booking__item-3 {
    background: #673AD3;
}
.home-booking__item-3 h4 {
    color: #fff;
}
.home-booking__item-3 p {
    color: #fff;
}
.home-booking__item-3 img {
    width: 100%;
    margin-top: 12px;
}
.home-booking__item-4 {
    border: 3px solid #6536D6;
}
.home-booking__item-4 img {
    margin-bottom: -8px;
}
/*********************/
.home-free {
    margin-top: 64px;
    padding: 64px 0;
    background: url(home-free-bg.png) center/cover no-repeat;
    text-align: center;
    color: #fff;
}
.home-free h2 {
    font-size: 60px;
    font-weight: 500;
}
.home-free p {
    font-size: 24px;
    margin-top: 30px;
    line-height: 130%;
}
/************************/
.home-quiz {
    margin-top: 64px;
}
.home-quiz__wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.home-quiz__wrapper .img {
    flex: 1 1 40%;
    height: 100%;
}
.home-quiz__wrapper .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-quiz__wrapper .text {
    flex: 1 1 60%;
    height: 100%;
    background: url(home-select-tutor-bg.png) center/cover no-repeat;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 64px;
    margin-left: -4px;
}
.home-quiz__wrapper .text h2 {
    font-size: 45px;
    color: #fff;
    font-weight: 500;
}
.home-quiz__wrapper .text p {
    margin-top: 24px;
    font-size: 16px;
    color: #fff;
    line-height: 150%;
}
.home-quiz__wrapper .text ul {
    margin-top: 32px;
    padding-left: 24px;
}
.home-quiz__wrapper .text ul li {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}
.home-quiz__wrapper .text a {
    margin-top: 24px;
    color: #fff;
    background: #121117;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
}
/***************************/
.home-reviews {
    margin-top: 64px;
}
.home-reviews__head {}
.home-reviews__head h2 {
    font-size: 45px;
    font-weight: 500;
}
.home-reviews__progress {
    margin-top: 12px;
}
.home-reviews__progress p {
    font-size: 16px;
    font-weight: 500;
}
.home-reviews__progress-items-wrapper {
    margin-top: 8px;
    max-width: 430px;
    width: 100%;
    margin-bottom: 24px;
}
.home-reviews__progress-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 6px;
    width: 100%;
    align-items: center;
    gap: 10px;
}
.home-reviews__progress-item .progress_name {
    width: 145px;
}
.home-reviews__progress-item .progress-line {
    max-width: 300px;
    width: 100%;
    background: #eee;
    height: 18px;   
}
.home-reviews__progress-item .progress-bg {
    background: #FACA15;
    height: 100%;
}
.home-reviews__progress-item .progress_point {
    width: 26px;
}
.home-reviews__item {
    background: #F8F8F8;
    padding: 12px 20px;
    border-radius: 14px;
    -webkit-box-shadow: 0px 5px 6px -2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 6px -2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 6px -2px rgba(34, 60, 80, 0.2);
    margin-bottom: 24px;
}
.home-reviews__item h4 {
    font-size: 18px;
    font-weight: bold;
}
.home-reviews__item .home-reviews__item-stars {
    margin-top: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: center;
    gap: 8px;
}
.home-reviews__item p {
    margin-top: 6px;
}
.home-reviews__item span {
    display: block;
    margin-top: 16px;
}
.home-reviews__item {}
.home-reviews__ratings-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}
.home-reviews__rating img {
    width: 100%;
    height: auto;
}
.home-reviews__trustpilot svg {
    width: 100%;
    height: auto;
}
.home-text {
    margin-top: 64px;
}
.main-text-wrapper {}
.main-text-wrapper h2 {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: bold;
}
.main-text-wrapper p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 150%;
}
.footer {
    margin-top: 64px;
    background: #121117;
    padding: 36px 0;
}
.footer-logo img {
    max-width: 160px;
    height: auto;
    width: 100%;
}
.footer-menu {
    margin-top: 24px;
}
.footer-menu a {
    display: block;
    color: #eee;
    margin-bottom: 12px;
}
.footer-lang {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.footer-lang a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    font-size: 12px;
    border-radius: 50%;
    color: #eee;
    border: 1px solid #eee;
    text-decoration: none;
}
.footer-lang .active-lang {
    background: #eee;
    color: #000;
}
.footer-lang {}
.tutor-popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #0000007a;
    z-index: 1000;
    width: 100%;
    height: 100%;
}
.tutor-popup-content {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    max-width: 500px;
    width: 100%;
    position: relative;
}
.close-tutor-popup {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.tutor-popup-content h4 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
.tutor-popup-content form {
    margin-top: 24px;
}
.tutor-popup-content form input {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    border: 1px solid #837f8f;
    margin-bottom: 12px;
}
.tutor-popup-content form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    background: #7846ee;
    border-radius: 40px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 22.4px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    margin: 28px auto 0 auto;
    padding: 28px 30px;
}

.logading-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000069;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all .30s;
    z-index: 9999;
}
.loading-box__wrapper {
    height: 100px;
    width: 100px;
}
.loading-box__wrapper svg {
    width: 100%;
    height: 100%;
}

.logading-box__active {
    visibility: visible;
    opacity: 1;
    transition: all .30s;
}
/*****************************/
/*****************************/
/*****************************/
/*****************************/
/*****************************/
/*****************************/
.filter-page-bg {
    background: #FBF9F6;
}
.list-filter {
    margin-top: 32px;
}
.filter-wrapper {}
.filter-wrapper form {}
.filter-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.filter-row .filter-block {
    background: #fff;
    width: 100%;
    border: 1px solid #d4c7f4;
    position: relative;
    border-radius: 15px;
    flex: 1 1 30%;
}
/*.filter-row .filter-block:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.filter-row .filter-block:last-child {
    border: none;
}*/
.filter-row .filter-block .title {
    text-align: center;
    padding: 16px;
    cursor: pointer;
    font-weight: bold;

}
.filter-row .filter-block .list {
    position: absolute;
    background: #fff;
    top: 56px;
    width: 100%;
    padding: 12px;
    z-index: 100;
    max-height: 300px;
    overflow: auto;
    border-radius: 4px;
    display: none;
    -webkit-box-shadow: 0px 0px 6px -2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 6px -2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 6px -2px rgba(34, 60, 80, 0.2);
}
.filter-row .filter-block .list-item {
    margin-bottom: 2px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all .30s;
    border-radius: 4px;
}
.filter-row .filter-block .list-item:hover {
    transition: all .30s;
    background: #eee;
}
.filter-row .filter-block .list-item img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}
.filter-wrapper form button {
    display: block;
    max-width: 120px;
    width: 100%;
    border: 1px solid #6F33FF;
    outline: none;
    background: #6536D6;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    border-radius: 15px;
    transition: all .30s;
}
.filter-wrapper form button:hover {
        transition: all .30s;
    background: #fff;
    color: #6F33FF;
}
.filter-to-quiz {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    max-width: 260px;
    width: 100%;
    background: #6536D6;
    color: #fff;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: none;
}
/**************************************/
.list-result {
    margin-top: 32px;
}
.list-result-item {
    background: #fff;
    margin-bottom: 24px;
    border-radius: 12px;
    padding: 22px 41px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    border: 1px solid #6536d647;
}
.list-result-item .avart {
    margin-right: 16px;
}
.list-result-item .avart .img {
    text-align: center;
}
.list-result-item .avart .img a {
    display: block;
    text-align: center;
}
.list-result-item .avart img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.list-result-item .avart .name {
    text-align: center;
    margin-top: 12px;
}
.list-result-item .avart .tutor-rating {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}
.list-result-item .avart .tutor-rating svg {
    margin-right: 4px;
}
.list-result-item .avart .name a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.list-result-item .avart .name svg {
    vertical-align: bottom;
}
.list-result-item .about {
    margin-right: auto;
}
.list-result-item .about .ablout-item {
    margin-bottom: 4px;
}
.list-result-item .about .ablout-item p {
    display: inline-block;
    font-weight: bold;
}
.list-result-item .about .ablout-item span {
    font-weight: normal;
}
.list-result-item .about .about-text {
    margin-top: 12px;
    line-height: 150%;
}
.list-result-item .about .about-more-info {
    margin-top: 16px;
}
.list-result-item .about .about-more-info a {
    background: #6536d6;
    color: #fff;
    padding: 8px 12px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    max-width: 200px;
    width: 100%;
    border: 1px solid #6F33FF;
    transition: all .30s;
}
.list-result-item .about .about-more-info a svg {
    height: 18px;
    width: 18px;
}
.list-result-item .about .about-more-info a:hover {
    transition: all .30s;
    background: #fff;
    color: #6F33FF;
}
.list-result-item .booking a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-radius: 15px;
    width: 220px;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 8px;
}
.list-result-item .booking .city {
    text-align: center;
    margin-bottom: 24px;
    font-size: 18px;
}
.list-result-item .booking a svg {
    width: 24px;
    height: 24px;
}
.list-result-item .booking button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 1px solid #6F33FF;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    color: #fff;
    background: #6536D6;
    border-radius: 15px;
    width: 220px;
    padding: 10px;
    cursor: pointer;
    transition: all .30s;
    font-weight: 500;
}
.list-result-item .booking button svg {
    width: 24px;
    height: 24px;
}
.list-result-item .booking button:hover {
    transition: all .30s;
    background: #fff;
    color: #6F33FF;
}
.list-result-item .booking .price {
    text-align: center;
    font-weight: 500;
    margin-top: 6px;
}
.main-pagination {}
.main-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-pagination .nav-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 1px solid #cbcbcb;
    background: #fff;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
.main-pagination .nav-links a svg {
    width: 16px;
    height: 16px;
}
.main-pagination .nav-links span.current {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 1px solid #6536d6;
    background: #6536d6;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
.about-category-text__text {
    margin-top: 36px;
}
/********************************************/
/********************************************/
/********************************************/
.breadcrumbs {
    margin-top: 32px;
}
.breadcrumbs {
    color: #949494;
    font-weight: 500;
}
.breadcrumbs a {
    color: #949494;
    text-decoration: underline;
}
.breadcrumbs {}
.breadcrumbs {}
.breadcrumbs {}
.breadcrumbs {}
/********************************************/
/********************************************/
/********************************************/

.single-page {
    margin-top: 32px;
}
.single-page__content {}
.single-page__content .tutor-info {
    border-radius: 15px;
    border: 1px solid #C4C4C4;
    padding: 21px 27px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background: #fff;
}
.single-page__content .tutor-info .avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}
.single-page__content .tutor-info .text {
    width: 100%;
    margin-left: 24px;
}
.single-page__content .tutor-info .text h1 {
    font-size: 22px;
 
}
.single-page__content .tutor-info .text .city {
    margin-bottom: 12px;
}
.single-page__content .tutor-info .text h1 svg {
    vertical-align: text-top;
}
.tutor-info-label {
 
    background: #27ba27;
    padding: 4px 10px;
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
}
.tutor-labels-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.verified-tutor {
    background: #6536d7;
    display: flex;
    padding: 4px 10px;
    color: #fff;
    border-radius: 15px;
    font-size: 14px;
    align-items: center;
    gap: 4px;
    height: 25px;
}
.verified-tutor svg {
    height: 16px;
    width: 16px;
    object-fit: contain;
}
.single-page__content .tutor-info .text .about-item {
    margin-bottom: 4px;
}
.single-page__content .tutor-info .text .about-item p {
    font-weight: bold;
    display: inline;
}
.single-page__content .tutor-info .text .about-item span {
    font-weight: normal;
}
.single-page__content .tutor-info .booking button {
    display: block;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 18px;
    color: #fff;
    background: #6536D6;
    border-radius: 15px;
    width: 220px;
    padding: 12px;
    cursor: pointer;
}
.single-page__content .tutor-info .booking .price {
    text-align: center;
    font-weight: 500;
    margin-top: 6px;
}

.single-page__content .tutor-video {
    margin-top: 32px;
}
.single-page__content .tutor-video iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}
.single-page__content .tutor-menu {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: center;
    height: 100%;
}
.single-page__content .tutor-menu a {
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #C4C4C4;
    text-align: center;
    width: 100%;
    height: 100%;
}
.singe-page__text {
    margin-top: 32px;
}
.singe-page__text p {
    line-height: 150%;
    margin-bottom: 16px;
}
.single-page__features {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.single-page__features .label {
    padding: 8px 12px;
    color: #6536D6;
    font-weight: 500;
    border-radius: 15px;
    background: #fbf9f6;
    border: 1px solid #6536D6;
}
.single-page__reviews {
    margin-top: 32px;
}
.single-page__reviews h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}
.single-add-review {
    margin-top: 32px;
}
.single-add-review h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}
.single-add-review-form {

}
.single-add-review-form h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}
.single-add-review-form input {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    border: 1px solid #837f8f;
    margin-bottom: 12px;
}
.single-add-review-form textarea {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    border: 1px solid #837f8f;
    margin-bottom: 12px;
    min-height: 200px;
    height: 100%;
}
.single-add-review-form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    background: #7846ee;
    border-radius: 40px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 22.4px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    margin: 28px auto 0 auto;
    padding: 28px 30px;
}
.single-add-review-form {}
.single-add-review-form {}
.single-page__reviews__list {
    display: flex;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
}


.single-reviews__item {
    background: #F8F8F8;
    padding: 12px 20px;
    border-radius: 14px;
    -webkit-box-shadow: 0px 5px 6px -2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 5px 6px -2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 5px 6px -2px rgba(34, 60, 80, 0.2);
    border: 1px solid #eee;
    flex: 1 1 100%;
}
.single-reviews__item h4 {
    font-size: 18px;
    font-weight: bold;
}
.single-reviews__item .single-reviews__item-stars {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: center;
    gap: 8px;
}
.single-reviews__item p {
    margin-top: 6px;
}
.single-reviews__item span {
    display: block;
    margin-top: 16px;
}
.single-page__certificate {
    margin-top: 32px;
}
.single-page__certificate h3 {
    font-size: 24px;
    font-weight: 500;
}
.single-page__certificate__list {
    margin-top: 24px;
    display: flex;
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap;
}
.single-page__certificate__item {
    flex: 1 1 35%;
}
.single-page__certificate__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.single-page__tutor-form {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    background: url(home-free-bg.png) center/cover no-repeat;
    border-radius: 15px;
    padding: 30px;
    position: relative;
}
.single-page__tutor-form:before {
    content: '';
    background: url(big-ban.png) center/cover no-repeat;
    width: 53px;
    height: 112px;
    position: absolute;
    top: -27px;
    left: -16px;
    display: block;
}
.single-page__tutor-form:after {
    content: '';
    background: url(as-team.png) center/cover no-repeat;
    width: 111px;
    height: 67px;
    position: absolute;
    bottom: -27px;
    left: -30px;
    display: block;
}
.single-page__tutor-form__text {
    flex: 1 1 49%;
}
.single-page__tutor-form__text h4 {
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 150%;
    margin-bottom: 24px;
}
.single-page__tutor-form__text p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 150%;
}
.single-page__tutor-form__form {
    flex: 1 1 49%;
    width: 100%;
}
.single-page__tutor-form__form input {
    display: block;
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    color: #000;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    padding: 8px 12px;
    margin-bottom: 12px;
}
.single-page__tutor-form__form button {
    display: block;
    width: 100%;
    border: 3px solid #fff;
    background: #8043F9;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    outline: none;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 12px;
}
.single-page__tutor-form__form {}
.single-page__tutor-form__form {}
/**************************/
.single-page__aside {}
.book-lesson-block {
    background: url(home-select-tutor-bg.png) center/cover no-repeat;
    padding: 15px;
    border-radius: 15px;
}
.book-lesson-block h3 {
    text-align: center;
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}
.book-lesson-block .item {
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.book-lesson-block .item svg {
    vertical-align: middle;
    height: 32px;
    width: 32px;
    flex: 0 0 40px;
}
.book-lesson-block button {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    background: #fff;
    border-radius: 15px;
    display: block;
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    cursor: pointer;
}
/************************************/
.single-aside-all-tutors {
    margin-top: 24px;
    
}
.single-aside-all-tutors a {
    color: #fff;
    text-decoration: none;
    display: block;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 18px;
    color: #fff;
    background: #6536D6;
    border-radius: 15px;
    /* width: 220px; */
    padding: 12px;
    cursor: pointer;
    text-align: center;
}
/************************************/
/************************************/
/************************************/
/************************************/
.page-error {
    margin-top: 64px;
}
.page-error p {
    font-size: 24px;
    text-align: center;
}
.page-error a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 8px;
    color: #fff;
    background: #6F33FF;
    margin: 24px auto;
    max-width: 120px;
    text-align: center;
    width: 100%;
}
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
.become-tutor {
    margin-top: 32px;
}
.become-tutor-wrapper {}
.become-tutor-wrapper h1 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
.become-tutor-wrapper a {
    display: inline-block;
    text-decoration: none;
    background: #6F33FF;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    padding: 8px 12px;
    border: 1px solid #6F33FF;
}
.become-tutor-wrapper form {
    
    max-width: 600px;
    width: 100%;
        background: #89acff4a;
    padding: 20px;
    border-radius: 16px;
}
.become-tutor-wrapper form input {
    display: block;
    margin-bottom: 16px;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    color: #000;
    border: 1px solid #d5d5d5;
    width: 100%;
    border-radius: 8px;
}
.become-tutor-wrapper form select {
    display: block;
    margin-bottom: 16px;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    color: #000;
    border: 1px solid #d5d5d5;
    width: 100%;
    border-radius: 8px;
}
.become-tutor-wrapper form textarea {
    display: block;
    margin-bottom: 16px;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    color: #000;
    border: 1px solid #d5d5d5;
    width: 100%;
    min-height: 200px;
    height: 100%;
}
.become-tutor-wrapper form button {
    display: block;
    text-decoration: none;
    background: #6F33FF;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    padding: 8px 12px;
    border: 1px solid #6F33FF;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    margin-top: 12px;
}
.become-tutor-form-text {
    margin-bottom: 24px;
}
.become-tutor-form-text h2 {
    font-size: 36px;
    font-weight: 500;
}
.become-tutor-form-text p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 150%;
}
.become-tutor-features {
    margin-top: 36px;
}
.become-tutor-features__text {
    margin-top: 24px;
}
.become-tutor-features__text h2 {
    font-size: 22px;
    font-weight: 500;
}
.become-tutor-features__text p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 150%;
}
.become-tutor-features__img {
    margin-top: 24px;
}
.become-tutor-features__img img {
    width: 100%;
    height: auto;
}
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
.blog-list {
    margin-top: 32px;
}
.blog-list__header {
    margin-bottom: 32px;
}
.blog-list__header h1 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
.blog-list {}
.blog-list article {
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}
.blog-list article h2 {
    font-size: 20px;
    font-weight: 500;
    padding: 0 15px;
}
.blog-list-text {
    font-size: 16px;
    line-height: 120%;
    padding: 0 15px;
    margin-top: 6px;
    color: #6f6f6f;
}
.blog-list-text a {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #6f33ff;
    padding-bottom: 16px;
}
.blog-list-img {}
.blog-list-img a {
    text-decoration: none;
}
.blog-list-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
.blog-list-info {
    display: flex;
    gap: 10px;
    padding: 15px;
    color: #9e9e9e;
}
.blog-list-info a {
    color: #9e9e9e;
}
.blog-list-info svg {
    height: 16px;
    width: 16px;
}
.blog-list-info svg path {
    stroke: #9e9e9e;
}
.blog-categories {
    margin-bottom: 32px;
}
.blog-categories h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}
.blog-categories a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #5b5b5b;
}
.blog-categories {}
/*****************************/
/*****************************/
/*****************************/
/*****************************/
/*****************************/
.single-blog-post {
    margin-top: 32px;
}
.single-blog-post__item {

}
.single-blog-post__item h1 {
    font-size: 32px;
    font-weight: 500;
    color: #000;
}
.single-blog-post__item .about {
    display: flex;
    gap: 10px;
    padding: 15px 15px 15px 0;
    color: #9e9e9e;
}
.single-blog-post__item .about a {
    color: #9e9e9e;
}
.single-blog-post__item .about svg {
    height: 16px;
    width: 16px;
}
.single-blog-post__item .about svg path{
    stroke: #9e9e9e;
}
.single-blog-post__item .about {}
.single-blog-post__item figure {}
.single-blog-post__item figure img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.single-blog-post__item-text {
    margin-top: 32px;
}

.single-blog-post__item-text > *{
margin-bottom: 16px;}
.single-blog-post__item-text p {
    margin-bottom: 16px;
}
.single-blog-post__item-text hr {
    margin-bottom: 16px;
    border: 1px solid #e8e8e8;
}
.single-blog-post__item-text ul, .single-blog-post__item-text ol {
    padding-left: 20px;
}
.single-blog-post__item-text {}
.single-blog-post__item-text {}
.single-blog-post__item-text {}
/* TABLE */

.single-blog-post__item-text .TyagGW_tableContainer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* щоб таблиця не стискалась */
.single-blog-post__item-text .TyagGW_tableContainer table {
    min-width: 600px;
}


.single-blog-post__item-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #e5e7eb;
    background: #fff;
    overflow-x: auto;
}

/* HEADER */
.single-blog-post__item-text table thead {
    background: #f3f4f6;
}

.single-blog-post__item-text table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    color: #111827;
    border: 1px solid #e5e7eb;
}

/* CELLS */
.single-blog-post__item-text table td {
    padding: 12px 14px;
    color: #374151;
    border: 1px solid #e5e7eb;
}

/* ROW STRIPES */
.single-blog-post__item-text table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* HOVER */
.single-blog-post__item-text table tbody tr:hover {
    background: #f1f5f9;
}

/* FIRST COLUMN */
.single-blog-post__item-text table td:first-child {
    font-weight: 500;
    color: #111;
}

/* RESPONSIVE */
.single-blog-post__item-text {
    overflow-x: auto;
}

.single-blog-post__item-text table {
    min-width: 500px;
}

.single-blog-post__item {}


.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 12px;
}

/******************************/
.blog-list-items {}
.blog-list-items .item {
    border-radius: 16px;
    overflow: hidden;
}
.blog-list-items .item figure {
    height: 200px;
    width: 100%;
}
.blog-list-items .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-list-items .item .item-content {
    padding: 16px;
}
.blog-list-items .item h2 {
    padding: 0;
    margin: 0;
}
.blog-list-items .item h2 a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.blog-list-items .item a {
    text-decoration: none;
}
.blog-list-items .item .item-excerpt {
    margin-top: 8px;
    line-height: 150%;
    font-size: 16px;
}
.blog-list-items .item .item-more-btn {
    display: flex;
    padding: 8px 12px;
    background: #6F33FF;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #fff;
    max-width: 200px;
    margin-top: 12px;
    border-radius: 12px;
}
.blog-list-items .item .item-more-btn svg {
    height: 24px;
    width: 24px;
}
/*************************/
.home-form {
    margin-top: 64px;
}
.home-form-content {
    display: flex;
    gap: 20px;
}
.home-form-content > div {
    flex: 1 1 50%;
}
.home-form-content__text {}
.home-form-content__text h2 {
    font-size: 42px;
    font-weight: 500;
    color: #000;
}
.home-form-content__text p {
    margin-top: 24px;
    font-weight: normal;
    z-index: 16;
    line-height: 150%;
}
.home-form-content__form {
    padding: 24px;
    background: #89acff4a;
    border-radius: 16px;
}
.home-form-content__form p {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
}
.home-form-content__form p span {
    color: red;
    font-size: 12px;
    vertical-align: text-top;
   
}
.home-form-content__form .form-list-subjects {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  
    margin-bottom: 16px;
}
.home-form-content__form .form-list-subjects label {
    display: block;
    padding: 4px 6px;
    border-radius: 8px;
    position: relative;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}
.home-form-content__form .form-list-subjects label.active {
    background: #673ad3;
    color: #fff;
}
.home-form-content__form .form-list-subjects label input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
}
 
.home-form-content__form .form-field {
    margin-bottom: 16px;
}
.home-form-content__form .form-field input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    border: none;
    margin-bottom: 12px;
    background: #fff;
 
}
.home-form-content__form .form-field select {
     display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    border: none;
    margin-bottom: 12px;
    background: #fff;
}
 
.home-form-content__form button {
        display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    background: #7846ee;
    border-radius: 40px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
 
    padding: 28px 30px;
}
/*****************************/
.how-it-works {
    margin-top: 64px;
}
.how-it-works__header {}
.how-it-works__header h2 {
    color: #121117;
    font-size: 60px;
    font-weight: 600;
}
.how-it-works__steps {
    display: flex;
    gap: 20px;
    margin-top: 36px;
}
.how-it-works__steps .item {
    flex: 1 1 30%;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.how-it-works__steps .item .number {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #673ad2;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.how-it-works__steps .item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #121117;
    margin-top: 16px;
}
.how-it-works__steps .item p {
    margin-top: 12px;
    line-height: 150%;
    font-size: 16px;
    margin-bottom: 16px;
}
.how-it-works__steps .item .img {
    margin-top: auto;
    text-align: center;
    background: #8eb1fe;
    border-radius: 16px;
    padding: 20px;
}
.how-it-works__steps .item .img img {}
.how-it-works__steps .item {}


/************************/

.thx-page-header {
    margin-top: 48px;
    text-align: center;
}
.thx-page-header h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}
.thx-page-header h3 {
    font-weight: normal;
    font-size: 18px;
    margin-top: 12px;
}
.thx-page-header a {
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    width: 100%;
    color: #fff;
    background: #000;
    text-align: center;
    padding:10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .30s;
}
.thx-page-tutors {
    margin-top: 36px;
}