#about > h2 {
    background-color: var(--bg2);
    color: var(--fg2);
    text-align: center;
    padding: 10px;
}

#about > div {
    display: flex;
    justify-content: space-between;
}

.about-content {
    flex: 1.5;
    margin-right: 20%;
    margin-right: 15%;
}

.about-content h2 {
    margin-top: 100px;
}

.about-content h2:first-of-type {
    margin-top: 24px;
}

#about img {
    min-width: 0;
    flex: 1;
    width: 64px;
    height: 64px;
}

#about video {
    display: block;
    width: 100%;
    height: 100%;
    margin-bottom: -1px;
}

.about-video-container {
    border: 4px solid var(--fg4);
    width: 40%;
    height: min-content;
    box-sizing: border-box;
    margin: 0 0 150px 0;
}

#logistics {
    display: flex;
    flex-direction: column;
    margin-top: -100px;
}

#logistics .logistic {
    position: relative;
    flex: 1;
    margin: 0 30px;
}

#logistics .logistic:first-of-type {
    margin-left: 0px;
}

#logistics .logistic:last-of-type {
    margin: 0 -10px 0 0;
}

#logistics .logistic h1,
#logistics .logistic h2,
#logistics .logistic h3,
#logistics .logistic h4 {
    color: var(--fg3);
    font-size: 24px;
    text-align: center;
}

#logistics .logistic p {
    font-size: 16px;
}

#logistics .logistic img {
    margin: 0 auto;
}

#logistic-arrow {
    color: var(--bg4);
}

#logistics .hex-border {
    position: absolute;
    top: -3%;
    left: 50%;
    transform: translate(-50%, 0);
    
    --b: 2px;
    height: 90px;
    aspect-ratio: 1/cos(30deg);
    clip-path: 
      polygon(0 50%,50% -50%,100% 50%,50% 150%,0 50%,
      var(--b) 50%,
      calc(25% + var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
      calc(75% - var(--b)*cos(60deg)) calc(100% - var(--b)*sin(60deg)),
      calc(100% - var(--b)) 50%,
      calc(75% - var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
      calc(25% + var(--b)*cos(60deg)) calc(var(--b)*sin(60deg)),
      var(--b) 50%);
    background: var(--bg2);
}

#capabilites {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#capabilites svg {
    cursor: pointer;
    padding: 5px;
    margin-bottom: 10px;
    width: 20px;
    height: 20px;
}

#statement {
    width: 100%;
    display: grid;
    transition: grid-template-rows 0.5s ease-out;
    grid-template-rows: 0fr;
}

#statement * {
    overflow: hidden;
    margin: 0 auto;
    width: 75% !important;
    height: auto !important;
}

@media only screen and (max-width: 700px) {

    #about > div {
        flex-direction: column-reverse;
    }

    #logistic-arrow {
        display: none;
    }    

    #logistics {
        margin-top: 50px;
    }

    .about-content h2 {
        margin-top: 50px;
    }

    #logistics .hex-border {
        height: 60px;
    }

    #about img {
        width: 34px;
        height: 34px;
    }

    #logistics > div {
        flex-direction: column;
    }

    #about {
        margin: 0 auto;
    }

    #logistics .logistic {
        margin: 0 !important;
    }

    .about-video-container {
        width: 100%;
        margin: 0;
    }

    #capabilites {
        flex-direction: column !important;
    }

    #statement * {
        width: 95% !important;
    }
}
