/* basic */
html{
    max-width: 100%;
}
body{
    max-width: 100%;
    padding: 0;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* custom */
.page_title{
    position: absolute;
    top: 500px;
    height: 50px;
    line-height: 50px;
    left: 50px;
    color: white;
    font-size: 50px;
}
.navbar{
    position: fixed;
    width: 100%;
    z-index: 998;
    background-color: transparent;
    height: 100px;
}
.navbar_buttons{
    position: relative;
    right: 50px;
    height: 100%;
}
.navbar_button{
    z-index: 999;
    position: relative;
    float: right;
    color: white;
    top: calc(50% - 25px);
    height: 50px;
    background-color: transparent;
    border: none;
    font-size: x-large;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.navbar_button:hover{
    background-color: white;
    color: #c72b20;
}
.top_img_overlay{
    position: fixed;
    z-index: 997;
    width: 100%;
    top: 0;
    left: 0;
    height: 400px;
    object-fit: cover;
    background-color: #c72b20;
    mix-blend-mode: multiply;
}
.img_main{
    position: relative;
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.img_logo{
    z-index: 999;
    position: fixed;
    height: 30px;
    left: 50px;
    top: 35px;
    cursor: pointer;
}
.content_1{
    position: relative;
    width: 100%;
    height: 620px;
}
.content_2{
    position: relative;
    width: 100%;
    height: 500px;
    background-color: white;
}
.content_3{
    position: relative;
    width: 100%;
    height: 1100px;
    background-color: white;
}
.centered{
    position: absolute;
    width: max-content;
    height: max-content;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.footer{
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #c72b20;
}
.footer_stack{
    position: relative;
    float: left;
    margin-right: 30px;
}
.footer_button{
    position: relative;
    font-size: x-large;
    height: 20px;
    line-height: 20px;
    color: white;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.footer_button:hover{
    background-color: white;
    color: #c72b20;
}
.footer_text_large{
    position: relative;
    font-size: x-large;
    color: white;
    line-height: 40px;

}
.footer_text_medium{
    margin-top: 10px;
    position: relative;
    font-size: large;
    color: white;
}
.legal_bar{
    position: relative;
    width: 100%;
    height: 50px;
    background-color: white;
}
.legal_bar_text{
    position: relative;
    height: 30px;
    line-height: 30px;
    float: left;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #c72b20;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.legal_bar_text:hover{
    color: white;
    background-color: #c72b20;
}
.logo_small_red{
    position: relative;
    height: 30%;
    float: left;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 30px;
}
.text_block{
    float: left;
    position: relative;
    width: 60%;
    color: #c72b20;
    font-size: x-large;
    line-break: normal;
    height: min-content;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}