@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: #fffbf5;
    color: #190041;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: #190041;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    font-size: 24px;
}

.menu-control {
    display: none;
    background: #fffbf5;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fffbf5;
    border-bottom: 2px solid #e9e9e9;
    font-weight: 600;
    max-width: 1200px;
    width: 100%;
    position: fixed;
    z-index: 999;
}

.menu .left,
.menu .middle,
.menu .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu a {
    padding: 10px 20px;
    border-radius: 5px;
}

.menu a:hover {
    background: #f8f4ec;
    text-decoration: none;
}

.menu .btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #190041;
}

.menu .btn.signup {
    background: #190041;
    color: #fff;
}

.menu .btn.signup:hover {
    background: #290269;
}

.menu-control .logo,
.menu .left img {
    cursor: pointer;
}

.menu-control .logo {
    height: 24px;
}

.menu-control .logo:hover,
.menu .left img:hover {
    opacity: 0.8;
}

.footer {
    padding: 40px 20px;
}

.footer .top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ebebeb;
    align-items: center;
}

.footer .top h4 {
    font-size: 34px;
}

.footer .top .links {
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.footer .middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer .text-1 {
    font-size: 12px;
    font-weight: 600;
}

.footer .text-2 {
    font-size: 12px;
}

.footer .middle .left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer .middle .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 200px;
}

.footer .middle .right p {
    text-align: right;
}

.footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.content {
    padding: 20px 20px 20px 20px;
}


@media screen and (max-width: 1000px) {
    .menu-control .control {
        height: 24px;
    }
    
    .menu-control .open {
        display: block;
    }
    
    .menu-control .close {
        display: none;
    }
    
    .menu {
        flex-direction: column;
        align-items: flex-start;
        align-items: center;
        gap: 10px;
        position: fixed;
        width: 100%;
        top: 55px;
        left: 0;
        transition: top 0.3s ease-in-out;
    }
    
    .menu.hidden {
        top: -500px;
    }
    
    .menu .left,
    .menu .middle,
    .menu .right {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        width: 100%;
    }
    
    .menu .left {
        display: none;
    }

    .menu-control {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    .menu a {
        width: 100%;
        text-align: center;
    }

    .menu-control {
        position: fixed;
        top: 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 2px solid #e9e9e9;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .footer .top h4 {
        text-align: center;
        width: 100%;
    }

    .footer .top {
        flex-direction: column;
    }

    .footer .top .links {
        flex-direction: column;
        align-items: center;
    }

    .footer .top {
        border: none;
    }

    .footer .middle {
        flex-direction: column;
    }

    .footer .middle .right,
    .footer .middle .left {
        align-items: center;
        max-width: unset;
    }

    .footer .bottom {
        flex-direction: column;
    }

    .footer .middle .right p,
    .footer .text-1,
    .footer .text-2 {
        text-align: center;
    }

    .content {
        padding: 100px 20px 20px 20px;
    }
}

/* content */

a.btn {
    display: inline-block;
    color: #190041;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #190041;
}

a.btn:hover {
    background: #f8f4ec;
    text-decoration: none;
}

a.btn.v2 {
    display: inline-block;
    color: #fff;
    background-color: #190041;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

a.btn.v2:hover {
    text-decoration: none;
    background-color: #290269;
}

/* content */

/* experts */

.experts {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-direction: column;
    align-content: center;
}

.experts h1 {
    font-size: 110px;
    text-align: center;
    line-height: 1.3;
}

.experts h1 span {
    background-color: #c9b9ff;
}

.experts .text-1 {
    font-size: 24px;
    text-align: center;
    max-width: 800px;
}

.experts .text-2 {
    margin: 150px 0;
    font-size: 32px;
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
}

.experts img {
    margin-top: 30px;
    max-width: 100%;
}

@media screen and (max-width: 1000px) {
    .experts  { 
        margin-top: 0px;
    }
    .experts h1 {
        font-size: 60px;
    }
    .experts .text-2 {
        font-size: 24px;
        margin: 0;
    }
}

/* experts */

/* professionals */

.professionals .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.professionals .cards .item {
    background-color: #f5f5f5;
    margin-right: 10px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.professionals .cards .item .top {
    display: flex;
    height: 70px;
    gap: 10px;
}

.professionals .cards .item .top .photo {
    height: 48px;
    width: 48px;
    position: relative;
    background-size: contain;
    border-radius: 100%;
}

.professionals .cards .item .top .photo .status {
    position: absolute;
    height: 14px;
    width: 14px;
    border-radius: 100%;
    bottom: 0;
    right: 0;
    border: none;
    background: grey;
}

.professionals .cards .item .top .photo .text {
    color: grey;
    position: absolute;
    bottom: -20px;
    font-size: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.professionals .cards .item .top .photo .status.online {
    background: #00C851;
}

.professionals .cards .item .top .photo .text.online {
    color: #00C851;
}

.professionals .cards .item .top .info .name {
    font-weight: 600;
} 

.professionals .cards .item .top .info .totals {
    font-size: 12px;
    color: grey;
} 

.professionals .cards .item.i1 .photo {
    background-image: url('./img/amanda_p.avif');
}

.professionals .cards .item.i2 .photo {
    background-image: url('./img/jenifer_l.avif');
}

.professionals .cards .item.i3 .photo {
    background-image: url('./img/jessica_b.avif');
}

.professionals .cards .item.i4 .photo {
    background-image: url('./img/michael_r.avif');
}

.professionals .cards .item .middle {
    display: flex;
    gap: 3px;
    font-size: 12px;
    flex-wrap: wrap;
}

.professionals .cards .item .middle .field {
    background: #ffffff;
    padding: 0px 10px;
    border-radius: 100px;
    border: 1px solid #c5c5c5;
}

.professionals .cards .item .bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.professionals .cards .item .bottom .circle {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 2px solid #ffaf48;
    padding: 5px 10px;
    border-radius: 100px;
    height: 50px;
    width: 50px;
    position: relative;
}

.professionals .cards .item .bottom .circle .star {
    height: 24px;
    width: 24px;
    background-image: url('./img/star7.svg');
    background-size: contain;
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.professionals .cards .item .bottom .circle .rate {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #9d9d9d;
    font-size: 11px;
    bottom: -6px;
}

.professionals .cards .item .bottom .reviews {
    font-size: 12px;
    color: grey;
    flex: 1;
}

.professionals .slider button {
    display: none !important;
}

.professionals .controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.professionals .controls div {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: #190041 !important;
    border: 1px solid #dddddd;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.professionals .controls div:hover {
    background-color: #290269 !important;
}

.professionals .controls .back {
    background: url('./img/back.svg') no-repeat center;
}

.professionals .controls .forward {
    background: url('./img/forward.svg') no-repeat center;
}

.professionals  .title h2 {
    font-size: 64px;
    line-height: 1.2;
}

@media screen and (max-width: 1000px) {
    .professionals .title h2 {
        font-size: 40px;
        text-align: center;
    }

    .professionals .cards .item .bottom {
        justify-content: flex-start;
    }

    .professionals .controls {
        display: none;
    }
}

/* professionals */

/* popular */

.popular {
    margin: 150px 0;
    display: flex;
    align-items: center;
}

.popular h3 {
    font-size: 64px;
    margin-bottom: 20px;
    font-size: 64px;
    line-height: 1.2;
}

.popular .left .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.popular .left .item img {
    padding-top: 7px;
}

.popular .left .item .text h4 {
    font-size: 24px;
    font-weight: 600;
}

.popular .left .item .text p {
    font-size: 16px;
}

@media screen and (max-width: 1000px) {
    .popular {
        flex-direction: column;
        gap: 50px;
        margin: 50px 20px;
    }

    .popular h3 {
        font-size: 40px;
        text-align: center;
    }

    .popular .left .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .popular .left .item img {
        padding-top: 0px;
    }
}

/* popular */


/* how-it-works */

.how-it-works {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.how-it-works h2 {
    font-size: 64px;
}

.how-it-works img {
    margin: 50px 0;
    max-width: 100%;
}

.how-it-works .steps {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.how-it-works .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works .steps .step .number {
    font-size: 45px;
    font-weight: bold;
}

.how-it-works .steps .step p {
    font-size: 24px;
    text-align: center;
    max-width: 300px;
    font-weight: 600;
}

@media screen and (max-width: 1000px) {
    .how-it-works h2 {
        font-size: 40px;
        text-align: center;
    }

    .how-it-works .steps {
        flex-direction: column;
        gap: 10px;
    }

    .how-it-works img {
        display: none;
    }
}

/* how-it-works */

/* good-company */

.good-company {
    margin: 150px 0;
}

.good-company h3 {
    font-size: 64px;
    margin-bottom: 20px;
    font-size: 64px;
    line-height: 1.2;
    text-align: center;
}

.good-company .text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.good-company .customers .item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d3d3d3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 250px;
    margin-right: 20px;
}

.good-company .customers .item .customer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.good-company .customers .item .info .name {
    font-weight: bold;
    font-size: 14px;
}

.good-company .customers .item .info .date {
    font-size: 14px;
}

.good-company .customers .item .review {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}

@media screen and (max-width: 1000px) {
    .good-company {
        margin: 50px 10px;
    }

    .good-company h3 {
        font-size: 40px;
    }

    .good-company .customers .item {
        height: auto;
        margin-right: 0px;
        margin-bottom: 20px;
    }
}

/* good-company */

/* academic-success */

.academic-success {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #fdf4e6;
    padding: 40px 20px;
    border-radius: 10px;
    gap: 20px;
    margin-bottom: 150px;
}

.academic-success h3 {
    font-size: 64px;
    text-align: center;
    line-height: 1.2;
}

@media screen and (max-width: 1000px) {
    .academic-success h3 {
        font-size: 40px;
    }

    .academic-success {
        margin: 0;
    }
}

/* academic-success */


