/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    padding: 9% 10% 10% 10%;
}

.main_section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.main_section .main_box {
    position: relative;
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    z-index: 1;
}

.main_section .media_box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 1vw;
    background: var(--color1);
}

.main_section .media_box img {
    width: 55%;
    transform: scale(1.3);
    transform-origin: bottom center;
}

.main_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.main_section h1 {
    color: var(--color2);
    font-size: 4vw;
}

.main_section h1 span {
    color: var(--color1);
}

.main_section p {
    color: var(--color2);
    font-size: 2vw;
    font-weight: 600;
}

.main_section p span {
    color: var(--color1);
}

@media (max-width: 996px) {
    .main_section {
        position: relative;
        padding: 35% 10% 10% 10%;
    }
    .main_section .main_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .main_section .media_box {
        justify-content: flex-end;
        order: 2;
        border-radius: 3vw;
    }
    .main_section .media_box img {
        width: 60%;
        transform: scale(-1.4, 1.4) translateX(15%);
    }
    .main_section .info_box {
        gap: 3vw;
    }
    .main_section h1 {
        font-size: 8vw;
    }
    .main_section p {
        font-size: 4vw;
    }
}


/* ---INFO STYLES--- */

.about_section {
    position: relative;
    padding: 5% 10% 10% 10%;
    background: white;
}

.about_section .blob {
    width: 70%;
    position: absolute;
    top: 10%;
    left: -25%;
    opacity: .5;
}

.about_section .about_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5vw;
    z-index: 1;
}

.about_section .paragraph_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.about_section .grid_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.about_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.about_section .vision_box .info_box {
    order: 2;
}

.about_section h2 {
    color: var(--color2);
    font-size: 3vw;
}

.about_section h2 span {
    color: var(--color1);
}

.about_section p {
    text-align: left;
}

.about_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_section .media_box img {
    width: 100%;
    border-radius: 1vw;
}

@media (max-width: 996px) {
    .about_section {
        padding: 10%;
    }
    .about_section .blob {
        width: 70%;
        top: 10%;
        left: -25%;
    }
    .about_section .about_box {
        gap: 20vw;
    }
    .about_section .paragraph_box {
        gap: 5vw;
    }
    .about_section .grid_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .about_section .info_box {
        gap: 5vw;
    }
    .about_section .vision_box .info_box {
        order: -1;
    }
    .about_section h2 {
        font-size: 8vw;
        text-align: center;
    }
    .about_section p {
        text-align: justify;
    }
    .about_section .media_box {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about_section .media_box img {
        width: 100%;
        border-radius: 1vw;
    }
}


/* ---VALUES STYLES--- */

.values_section {
    padding: 10%;
    background: white;
}

.values_section .values_box {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
}

.values_section .title_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.values_section h2 {
    color: var(--color2);
    font-size: 3vw;
    text-align: center;
}

.values_section h2 span {
    color: var(--color1);
}

.values_section .info_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.values_section .info_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3%;
    width: .2vw;
    height: 120%;
    transform: translateY(-50%);
    background: var(--color1);
}

.values_section p {
    position: relative;
    text-align: left;
}

.values_section p::before {
    content: "";
    position: absolute;
    top: .25vw;
    left: -3%;
    transform: translateX(-35%);
    width: .8vw;
    height: .8vw;
    border-radius: 50%;
    background: var(--color1);
}

@media (max-width: 996px) {
    .values_section {
        padding: 20% 10%;
    }
    .values_section .values_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .values_section h2 {
        font-size: 8vw;
    }
    .values_section .info_box {
        gap: 3vw;
    }
    .values_section .info_box::before {
       display: none;
    }
    .values_section p {
        text-align: justify;
    }
    .values_section p::before {
        display: none;
    }
}