@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color: #0a74bd;
    --secondary-color: #032338;
    --black: #01121d;
    --text-primary: #5f5f5f;
    --soft-primary: #0a75bd42;
    --shadow: #63636369;
}


body {
    color: var(--black);
}

p {
    line-height: 23px;
}

.description,
.rewards {
    height: auto;
    width: 100%;
    padding: 10px 150px;
}


.head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eeeeee;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.head h1 {
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 400;
}

.head .back {
    background-color: var(--primary-color);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    transition: 0.5s ease;
    cursor: pointer;
}

.back span {
    margin-left: 10px;
    display: none;
}

.back:hover {
    background-color: var(--secondary-color);
}

.back:hover span {
    display: inline-block;
}

.back a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.body {
    background-color: #eeeeee;
    border-radius: 20px;
    padding: 50px;
    overflow: hidden;
}

.picture-box1,
.picture-box2,
.picture-box3 {
    margin-top: 20px;
    border-radius: 10px;
    background-color: white;
    padding: 10px;
}

.pic-box {
    display: flex;
    gap: 30px;
}

.pic-box .text,
.pic-box2 .text,
.text {
    width: 100%;
    height: auto;
    background: var(--black);
    color: white;
    border-radius: 10px;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.text h1 {
    font-size: 50px;
    font-weight: 400;
}

.picture-box1 .pic1 img {
    border-radius: 10px;
    height: 650px;

}

.picture-box1 .pic2 {
    margin-top: 20px;
}

.picture-box2 {
    margin-bottom: 20px;
}

.picture-box1 .pic2 img {
    border-radius: 10px;
    width: 100%;
}

.secondp {
    padding: 10px;
    border-radius: 10px;
    margin: 20px 0;
}

.picture-box2 .pic3 img {
    border-radius: 10px;
    width: 100%;
}

.picture-box3 .pic-box2,
.picture-box3 .pic-box3 {
    display: flex;
    gap: 50px;
}

.pic-box2 .pic4 img {
    height: 800px;
    border-radius: 10px;
}

.pic-box3 .pic5 img,
.pic6 img {
    width: 100%;
    border-radius: 10px;
}

.pic-box3 .pic5 {
    margin: 20px 0;
}

.picture-box3 .text {
    margin-bottom: 20px;
    padding: 20px;
}

.picture-box3 .text h1 {
    text-align: center;
}

.rewards {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.rewards h1 {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}

.rewards h1 span {
    color: var(--primary-color);
}

.best {
    width: fit-content;
    margin: 20px 0;
    background-color: #eeeeee;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 20px;
}

.best .person {
    background-color: white;
    border-radius: 10px;
    display: flex;
    width: 350px;
    padding: 20px;
}

.person .pic {
    height: 100px;
    width: 100px;
    border: 4px solid var(--primary-color);
    border-radius: 50px;
    margin-right: 20px;
    overflow: hidden;
}
.person .pic img{
    height: 100%;
}

.person .details {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.person .details .name {
    display: flex;
    align-items: center;
}

.person .details span {
    display: inline-block;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 50px;
    background-color: #ffe60040;
    color: #cfbb00;
    font-weight: 600;
    font-size: 11px;
    margin-top: 5px;
}

.person .details p {
    color: var(--text-primary);
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.person .badge {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    display: flex;
    margin-left: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50px;
}

.person .badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentors {
    width: 100%;
    margin: 20px 0;
    background-color: #eeeeee;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 20px;

}

.mentors .person .pic {
    margin: 0;
    margin-bottom: 10px;
}

.mentors .person {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}

.mentors .person .details {
    align-items: center;
}

section:nth-child(1) h1 {
    font-size: 40px;
    margin-top: 20px;
}

p {
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 1024px) {

    .description,
    .rewards {
        padding: 10px 20px;
    }

    .head h1 {
        font-size: 35px;
    }

    h1 {
        font-size: 25px !important;
    }

    .picture-box1 .text h1 {
        font-size: 30px;
    }

    .body {
        padding: 50px 20px;
    }

    .mentors .person .details h4 {
        font-size: 12px;
    }

    .mentors .person .details p {
        font-size: 12px;
    }
}

@media (max-width: 720px) {

    .description,
    .rewards {
        padding: 10px 0px;
    }

    .head h1 {
        font-size: 20px !important;
        margin-bottom: 10px;
    }

    .head,
    .rewards .best {
        flex-direction: column;
    }

    h1 {
        font-size: 25px !important;
    }

    .picture-box1 .text h1 {
        font-size: 30px;
    }

    .body {
        padding: 50px 10px;
    }

    .body p {
        text-align: justify;
        flex-direction: column;
    }

    .pic-box,
    .pic-box2 {
        flex-direction: column;
        align-items: center;

    }

    .pic-box .pic1 img {
        width: 100%;
    }

    .mentors {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}