/* ============================ ACHIEVEMENTS ============================
.about__achievements {
    margin-top: 3rem;
}

.about__achievements-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 5rem;
}

.about__achievements-right > p {
    margin: 1.6rem 0 2.5rem;
}

.achievements__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.achievement__card {
    background: var(--color-bg);
    padding: 1.6rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
}

.achievement__card:hover {
    background: var(--color-bg2);
    box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.3);
} 

.achievement__icon {
    background: var(--color-danger);
    padding: 0.6rem;
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.achievement__card:nth-child(2) .achievement__icon {
    background: var(--color-success);
}

.achievement__card:nth-child(3) .achievement__icon {
    background: var(--color-primary);
}

.achievement__card p {
    margin-top: 1rem;
}
*/
/* ============================ ABOUT US WORD ============================*/

.about_us {
    margin-right: 0;
    padding: 0;
}

.about_us img {
    opacity: 35%;
}

.about_us-word  {
    top: 0;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.about_us-word h1 {
    top: 4rem;
    margin-left: 10%;
    position: absolute;
    padding-top: 6%;
}

.about_us-word p {
    top: 8rem;
    padding-top: 5%;
    position: absolute;
    margin-left: 10%;
    margin-right: 40%;
}

/* ============================ WHAT WE ARE ============================*/
.what_we_are {
    margin-top: 0;
    background: var(--color-bg);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}

#vertical-line {
    width: 1px;
    min-height: 110px;
    background: rgb(238, 228, 44);
}

.what_we_are-container {
    display: grid;
    grid-template-columns: 30% 2% 68%;
}


/* ============================ WHY WE START THIS PLATFORM ============================*/
.why_start_sindamkol {
    margin-top: 0;
    background: var(--color-bg1);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}

.why_start_sindamkol-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 6rem;
    
}

.why_start_sindamkol-left img{
    padding-left: 0;
    margin-left: 0;
}

.why_start_sindamkol-right h1 {
    margin-right: 5rem;
}

.why_start_sindamkol-right li {
    margin: 1.6rem 5rem 1rem 0;
    list-style: circle;
}




/* ============================ WORD FROM FOUNDER ============================*/
.word_from_founder {
    margin-top: 1rem;
}

.word_from_founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.word_from_founder-right > p {
    margin: 1.6rem 4.8rem 2.5rem 0;
}

.word_from_founder-right h1 {
    margin-right: 4rem;
}

.word_from_founder-right h4 {
    margin: 0;
}

.word_from_founder-right h5 {
    margin-top: 1rem;
}

.horizontal-line {
    height: 10px;
    width: 10%;
    border-style: none;
    color: rgb(252, 241, 21);
    border: 1px;
    background: rgb(242, 211, 12);
}

/* ============================ OUR VISION ============================*/
.our_vision {
    margin-top: 0;
    background: var(--color-bg1);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}

.our_vision-container {
    display: grid;
    grid-template-columns: 30% 70%;
}

.our_vision-right li h4 {
    margin: 1.6rem 1rem 2.5rem 0;
}

.our_vision-left h4 {
    padding-bottom: 1rem;
}

.our_vision-right h3 {
    padding-bottom: 2rem;
    font-family: 'Bad Script', cursive;
    text-align: left;
    font-size: 1.5rem;
    color: rgb(22, 245, 119);
}

/* ============================ TEAM ============================*/
.team {
    background: var(--color-bg);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.5);
}

.team__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team__member {
    background: var(--color-bg2);
    padding: 2rem;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team__member:hover {
    background: transparent;
    border-color: var(--color-primary);
}

.team__member-image img {
    filter: saturate(0);
}

.team__member:hover img {
    filter: saturate(1);
}

.team__member-info * {
    text-align: center;
    margin-top: 1.4rem;
}

.team__member-info p {
    color: var(--color-light);
}

.team__member-socials {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100%;
    display: flex;
    flex-direction: column;
    background: var(--color-primary);
    border-radius: 1rem 0 0 1rem;
    box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.team__member:hover .team__member-socials {
    right: 0;
}

.team__member-socials a {
    padding: 1rem;
}

/* ============================ MEDIA QUESRIES(TABLETS) ============================*/
@media screen and (max-width: 1024px) {
 /*   .about__achievements {
        margin-top: 2rem;
    }

    .about__achievements-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about__achievements-left {
        width: 80%;
        margin: 0 auto;
    }
    */

    /* ============================= ABOUT US ================================ */

    .about_us-word h1 {
        margin-left: 3rem;
    }

    .about_us-word p {
        margin-left: 3rem;
    }

    /* ============================= WHAT WE ARE ================================ */

    .what_we_are-container {
        gap: 1rem;
    }

    .what_we_are-right li {
        margin-right: 2rem;
    }
    

    /* ============================= WHY WE START THIS PLATFORM ================================ */

    .why_start_sindamkol-container {
        gap: 3rem;
        
    }

    .why_start_sindamkol-left img{
        padding-left: 0;
        margin-left: 0;
    }
    .why_start_sindamkol-right li {
        margin: 1.3rem 4rem 1rem 0;
        grid-template-columns: 45% 55%;
        padding: 0;
    }

    
    /* ============================= WORD FROM FOUNDER ================================ */

    .word_from_founder-container {
        gap: 2rem;
    }

    .word_from_founder-right h1 {
        margin-right: 2rem;
    }

    .word_from_founder-right > p {
        margin: 1.6rem 0 2.5rem 0;
    }

    /* ============================= OUR VISION ================================ */

    .our_vision-container {
        padding: 1rem;
    }

    /* ============================= TEAM ================================ */

    .team__container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .team__member{
        padding: 1rem;
    }
}

/* ============================ MEDIA QUESRIES(PHONES) ============================*/

@media screen and (max-width: 600px) {
 /*   .achievements__cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }
*/
    /* ============================= ABOUT US ================================ */
    .about_us {
        height: 60vh;
    }

    .about_us-word h1 {
        height: 60vh;
    }

    /* ============================= WHAT WE ARE ================================ */

    .what_we_are-container {
        grid-template-columns: 100%;
    }
    
    #vertical-line {
        display: none;
    }

    /* ============================= WHY WE START THIS PLATFORM ================================ */

    .why_start_sindamkol-container {
        grid-template-columns: 1fr;
    }

    .why_start_sindamkol-right li {
        margin: 1.6rem 1rem 1rem 1rem;
    }

    /* ============================= WORD FROM FOUNDER ================================ */

    .word_from_founder-container {
        grid-template-columns: 1fr;
    }

    .word_from_founder-right > p {
        margin: 1.6rem 2rem 2.5rem 0;
    }

    /* ============================= OUR VISION ================================ */

    .our_vision-container {
        grid-template-columns: 1fr;
    }

    /* ============================= TEAM ================================ */

    .team__container {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }

    .team__member {
        padding: 0;
    }

    .team__member p {
        margin-bottom: 1.5rem;
    }
}