:root {
    --cream: #f8f7f4;
    --cream-edge: #F4EFE8;
    --ink: #2B2621;
    --ink-soft: #6B6259;
    --hairline: rgba(43, 38, 33, 0.10);
    --accent: #FF5E1F;
}






/* About section */
.about-dots {
    background-color: #bfbfbf;
    mask: url("https://framerusercontent.com/images/SRgtzt7BowKmDZHMmRwBrW3rA.svg?width=16&height=16") left top / 6px 6px alpha;
    height: 100%;
    width: 100%;
    opacity: 1;
    position: absolute;
}

.aboutSection {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;

    & .content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-right: 80px;
        padding-left: 80px;
        margin-bottom: 20px;
        padding-top: 30px;

        & h2 {
            margin: 0;
        }
    }

    & .accordion-item {
        position: relative;
    }

    & .accordion-item--panel {
        height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    & .accordion-item--title {
        width: 100%;
        font-size: 18px;
        text-transform: capitalize;
        padding-right: 25px;
        padding-left: 80px;
        border-top: 1px solid var(--e-global-color-6606447);
        border-bottom: 1px solid var(--e-global-color-6606447);
        display: flex;
        height: 57px;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        color: inherit;
        cursor: pointer;
        text-align: left;
        font: inherit;
        outline: none;
        border-left: 0;
        border-right: 0;

        &:hover,
        &:focus,
        &:active {
            color: inherit;
        }
    }

    & .accordion-item:first-child .accordion-item--title {
        border-bottom: none;
    }

    & .accordion-item.is-open .accordion-item--title {
        border-bottom: 1px solid var(--e-global-color-6606447);
    }

    & .accordion-item--title:focus-visible {
        background: rgba(255, 94, 31, 0.06);
    }

    & .accordion-item--label {
        display: inline-block;
        padding-right: 16px;
        font-size: 18px;
        font-weight: 500;
        color: black;
    }

    & .accordion-item--panel-inner {
        padding: 15px 80px 18px;
    }

    & .accordion-item--icon {
        position: absolute;
        left: 5%;
        width: 25px;

        & svg {
            width: 100%;
            height: auto;
        }
    }

    & .accordion-item--trigger {
        flex: 0 0 auto;
        height: 15px;
        width: 15px;
        transform: rotate(45deg);
        border: 1px solid var(--e-global-color-d49ac81);
        background: white;
    }

    & p {
        font-size: 19px;
        line-height: 27px;
        /* opacity: 0.7; */
        margin: 0;
    }

    & p br {
        margin-bottom: 6px;
    }
}

@media (max-width:768px) {
    .aboutSection {
        grid-template-columns: 1fr;

        & .left {
            border-right: 1px solid var(--e-global-color-6606447);

        }

        & .content {

            padding-right: 25px;
            padding-left: 25px;

        }
    }
}

.about-section--right {
    position: relative;
    display: flex;
    /* background: black; */
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 50px 0;
    border: 1px solid var(--e-global-color-6606447);

    & svg {
        width: 55%;
        height: auto;
        z-index: 5;
    }
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgb(227 226 222);
    border-right: none;
    /* background: linear-gradient(135deg, rgba(248, 247, 244, 0.92), rgba(255, 255, 255, 0.78)); */
    box-shadow: 0 18px 40px rgba(43, 38, 33, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    border-top: none;
}

.experience-badge--value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    padding: 14px 18px 14px 16px;
    border-right: 1px solid #c9c9c9;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24); */
}

.experience-badge--text {
    max-width: 126px;
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
}

@media (max-width: 900px) {
    .experience-badge {
        top: 18px;
        right: 18px;
        padding: 12px 1px 12px 5px;
        gap: 10px;
    }

    .experience-badge--value {
        min-width: 46px;
        height: 30px;
        font-size: 28px;
    }

    .experience-badge--text {
        max-width: 112px;
        font-size: 11px;
    }
}

@media (max-width: 720px) {
    .experience-badge {
        right: 14px;
        top: 14px;
        width: fit-content;
        justify-content: center;
    }
}

.about-section--left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--e-global-color-6606447);
}

.indicator {
    position: absolute;
    display: flex;
    width: 100%;
    z-index: 5;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    left: 49%;

    &.one {
        top: 24.5%;

    }

    &.two {
        top: 36%;
    }

    &.three {
        top: 57%;
    }

    &.four {
        top: 73%;
    }

    & .line {
        width: 20%;
        height: 1px;
        background: #c2c2c2;
        /* margin-left: -6px; */
    }

    & .text {
        margin-left: 10px;
    }

    & .square {
        width: 12px;
        height: 12px;
        /* margin-right: 10px; */
        border: 1px solid #c2c2c2;
        background: white;
        transform: rotate(45deg);
    }
}