body, html {
    margin:0;
    padding:0;
    overflow-x: hidden;
}

.frontpage_head {
    background-color: #25272a;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

.frontpage_head_content {
    margin: auto;
    display: flex;
    flex-direction: row;
}

.frontpage_head_section_left {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.frontpage_head_section_right {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.frontpage_head_section_content_left {
    margin: auto;
    margin-right: 0;
}

.frontpage_head_image {
}

.frontpage_head_section_content_right {
    margin: auto;
    margin-left: 0;
    max-width: 600px;
}

.frontpage_head_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: white;
    margin-bottom: 20px;
}

.frontpage_head_sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #d5d5d5;
    margin: 10px 0;
}

.frontpage_head_divider {
    margin: 20px 0;
    height: 1px;
    background-color: #4e5052;
}

.frontpage_head_socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.frontpage_head_socials_btn_container {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
    text-decoration: none;
}

.frontpage_head_socials_btn {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: white;
    background-color: #404144;
    border: 1px solid #645b5b;
    padding: 10px 12px;
    display: flex;
    cursor: pointer;
}

.frontpage_head_socials_btn_content {
    margin: auto;
    display: flex;
    flex-direction: row;
    opacity: 0.85;
}

.frontpage_head_socials_btn_content img {
    height: 14px;
    margin: auto 0;
    margin-right: 10px;
}

.frontpage_head_action_container {
    text-decoration: none;
}

.frontpage_head_action {
    background-color: #404144;
    border: 1px solid #645b5b;
    cursor: pointer;
    padding: 20px;
    background-image: url(arrow.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 24px;
    margin: 10px 0;
    padding-right: 46px;
}

.frontpage_head_action_title {
    font-size: 15px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.frontpage_head_action_sub {
    font-size: 15px;
    color: #d5d5d5;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-top: 5px;
}

@media only screen and (max-width: 890px) {
    .frontpage_head_section_left {
        display: none;
    }
}

@media only screen and (max-width: 590px) {
    .frontpage_head_socials {
        flex-direction: column;
    }
}

/* TIMELINE */

.frontpage_tl {
    max-width: 800px;
    margin: auto;
    background-color: white;
    position: relative;
    padding-bottom: 30px;
}

.frontpage_tl_bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    bottom: 10px;
    background-color: #25272a;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.frontpage_tl_item {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
}



.frontpage_tl_item_left {
    width: 60px;
    height: 10px;
    background-color: #25272a;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: auto 0;
    margin-right: 10px;
}

.frontpage_tl_item_right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.frontpage_tl_item_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: black;
}
