/* SECTION 1 */
.about-sec-1, .service-sec-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    gap: 4rem;
    video {
        max-width: 735px;
        border-radius: 20px;
    }
}

.sec-1-header {
    display: inherit;
    flex-direction: column;
    max-width: 500px;
    gap: 2rem;
    h1 {
        color: var(--green);
    }
    span {
        font-weight: 300;
    }
    p {
        font-weight: 300;
        color: var(--green);
    }
}

/* SECTION 2  */
.about-sec-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4rem 1rem;
    background-color: var(--cream);
    img {
        max-width: 735px;
    }
}

.mvp-wrapper {
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    p {
        color: var(--blue);
        margin: 0;
        transition: all 0.2s ease;
    }
}

.item-header:hover {
    p {
        color: var(--orange);
        font-weight: bold;
    }
}

.item-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 1.6rem;
    height: 1.6rem;
    position: relative;
    padding: 0;
}

.toggle-icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.15rem;
    background-color: var(--green);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.toggle-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.15rem;
    height: 1.6rem;
    background-color: var(--green);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.item-toggle.active .toggle-icon::before {
    transform: translate(-50%, -50%) scaleY(0);
}

.list-item {
    max-width: 400px;
    h3 {color: var(--green);}
    ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        color: var(--blue);
    }
    li {font-size: 20px;}
}

/* SECTION 3  */
.about-sec-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
}

.sec-3-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    h3 {
        color: var(--green);
    }
}

.sec-3-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.row-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 270px;
    img {
        height: 40px;
        width: 40px;
    }
}

/* SECTION 4   */
.about-sec-4 {
    padding: 2rem;
}

.sec-4-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/bg2.png");
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    padding: 3rem;
    gap: 2rem;
    a {
        font-weight: bold;
        text-align: center;
        padding: 1rem 2rem;
        color: black;
        width: max-content;
        background-color: var(--teal);
        border-radius: 50px;
        transition: all 0.2s ease;
        margin: 1rem 0;
    }
    a:hover {
        color: white;
        background-color: var(--green);
    }
}

.box-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.box-wrapper > * {
    height: stretch;
    flex: 1;
}

.box-group {
    display: flex;
    flex-direction: column;
}

.grid-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    outline: 1px solid white;
    height: stretch;
    padding: 2rem;
    gap: 1rem;
    img {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 1024px) {


    
}

@media (max-width: 768px) {



}

@media (max-width: 546px) {



}