.content .title {
    font-family: 'Sansation';
    font-weight: bold;
    font-size: 15px;
    color: var(--main-font-active-color);
    padding-bottom: 25px;
}

.content .heading {
    font-family: 'Sansation';
    font-weight: bold;
    font-size: 45px;
    padding-bottom: 25px;
    min-width: 320px;
}

.content .subheading {
    font-size: 34px;
}

.content .subtitle {
    color: var(--main-subtitle-color);
    padding-bottom: 15px;
    font-size: 20px;
}

.content .center {
    text-align: center;
}
.content .normal {
    font-size: 15px;
}

.content .first-col {
    padding-top: 120px;
}

.content .second-col {
    margin-top: -70px;
}

.content .card {
    width: 330px;
    padding-right: 30px;

    display: flex;
    flex-direction: column;
}

.content .card-end {
    padding-right: 0px;
}

.content .card .card-image {
    background-color: white;
    height: 180px;
    width: 330px;
    border-radius: 5px;
    margin-bottom: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.content .card .card-content {
    font-size: 12px;
    line-height: 23px;
}

.content .overlapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: none;
}

.content .hands-content {
    position: absolute;
    max-width: var(--max-width);
    min-width: 700px;
    width: 44%;
    height: 55vw;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 1;
}

.content .hands-bg {
    width: 100vw;

    -webkit-clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
    clip-path: polygon(0 15%, 100% 0%, 100% 85%, 0% 100%);
}

.content .window-content {
    position: absolute;
    max-width: var(--max-width);
    min-width: 700px;
    width: 80%;
    height: 40vw;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: -1;
}

.content .window-bg {
    width: 100vw;
    z-index: -2;
}

.content .window-heading {
    width: 85%;
    max-width: var(--max-width);
    min-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

.content .dark {
    color: var(--secondary-font-color);
}

.content .normal-title {
    font-size: 24px;
    padding-bottom: 25px;
}

.content .normal-card {
    display: flex;
    flex-direction: column;
    width: 23%;
    min-width: 200px;
}

.content .normal-card .card-head {
    color: var(--main-font-active-color);
    font-size: 24px;
    padding-bottom: 25px;
}

.content .mission {
    border-bottom: 1px solid var(--main-line-color);
    margin-bottom: 55px;
    padding-bottom: 35px;
}

.content .grey {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: none;
    background: #EFEFEF;
    padding-bottom: 0;
}

.content .grey-content {
    position: absolute;
    max-width: var(--max-width);
    height: 50vw;

    display: flex;
    align-items: center;

    z-index: 1;
}

.content .grey-heading {
    height: 50%;
}

.content .grey-bg {
    width: 100vw;
    height: 55vw;

    background: var(--main-footer-background);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
}

.content .white {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: none;
    background: #EFEFEF;
    padding-bottom: 0;
}

.content .white-content {
    color: black;
    width: var(--container-width);

    position: absolute;
    max-width: var(--max-width);
    height: 30vw;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    z-index: 1;
}

.content .white-bg {
    width: 100vw;
    height: 30vw;

    background: #EFEFEF;
}

.content .title-black {
    font-size: 45px;
    font-weight: bold;
    font-family: 'Sansation';
}

.content .small-link {
    color: black;
    font-weight: bold;
}

.content .mt--xl {
    margin-top: -90px;
}