@font-face {
    font-family: 'Klavika';
    font-weight: bold;
    src: url("klavika-bold.otf") format("opentype");
}

* {
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.main_container {
    width: 100%;
    height: 700px;
    position: relative;
}

.bg_image {
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/O92K.png');
    background-size: cover;
    background-position: center;
    position: absolute;
}

.bg_filter {
    z-index: 9;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3b3b3bd1;
}

.content_container {
    position: absolute;
    width: 900px;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1.headline {
    font-family: 'Klavika', sans-serif;
    font-size: 80px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

.headline_container {
    display: flex;
    gap: 30px;
}

h1.tram_number {
    font-size: 58px;
    margin: 0px;
    height: 96px;
    width: 96px;
    text-align: center;
    background: #F44336;
    display: block;
    border-radius: 50%;
    line-height: 96px;
    font-family: 'Klavika';
    color: #fff;
}

p.description {
    width: 700px;
    color: #f3f3f3;
    font-family: 'Klavika';
    font-size: 20px;
}

.menu {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0px;
    z-index: 99999999;
    background: #04040400;
}

.menu_container {
    width: 900px;
    height: 100%;
    margin: 0px auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

img.logo {
    height: 60px;
}

.menu_items_container {
    width: fit-content;
    display: flex;
    gap: 20px;
}

a.menu_item {
    font-size: 17px;
    color: #c5c3c3;
    font-family: Ubuntu;
    font-weight: 800;
    text-decoration: none;
    transition: .3s;
}

a.menu_item:hover {
    color: #fff;
}

a.button {
    background: #f44336;
    color: #fff;
    padding: 25px 34px;
    text-transform: uppercase;
    margin-top: 30px;
    display: block;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Ubuntu';
    font-weight: 800;
    border-radius: 8px;
}

.next_event {
    position: relative;
    width: 900px;
    margin: 0px auto;
    display: flex;
    gap: 50px;
    padding: 150px 0px 100px 0px;
}

.event_info {
    width: 500px;
    text-align: right;
}

img.event_image {
    width: 400px;
    margin: 20px 0px;
    border-radius: 8px;
}

h1.event_name {
    margin: 0px;
    font-size: 60px;
    font-family: 'Klavika';
}

p.event_long_name {
    margin-top: 0px;
    font-family: 'Ubuntu';
    font-size: 20px;
}

.event_description {
    font-family: 'Ubuntu';
    margin: 20px 0px;
}

.route {
    padding: 15px 20px;
    width: 100%;
    box-shadow: 0px 0px 20px 0px #b5b5b538;
    border-radius: 8px;
    /* border: 1px solid #e5e5e5; */
    margin-bottom: 30px;
}

.route_header {
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.event_route {
    width: 400px;
}

.route_sub_header {
    display: flex;
    gap: 15px;
    margin-top: 16px;
    align-items: center;
}

.sub_header_icon > img.icon {
    width: 34px;
}

.route_name {
    color: #F44336;
    font-weight: 700;
    font-family: 'Klavika';
    font-size: 16px;
}

.route_route {
    font-family: 'Ubuntu';
    font-size: 15px;
}

.route_times {
    margin-top: 13px;
    margin-bottom: 10px;
    position: relative;
}

.route_item {
    display: flex;
    padding: 3px 0;
    font-size: 15px;
    padding-left: 49px;
    position: relative;
}

b.route_item_time {
    width: 50px;
}

.route_hr {
    height: 100%;
    width: 1px;
    background: #d3d3d3;
    position: absolute;
    left: 16px;
    top: 0px;
}

.route_row {
    display: flex;
    gap: 0px;
}

.route_bullet {
    position: absolute;
    width: 10px;
    height: 10px;
    left: 11.5px;
    background: #ffffff;
    border: 2px solid #a9a9a9;
    border-radius: 50%;
    top: 50%;
    transform: translate(0px, -50%);
}

.end_stop {
    background-color: #F44336;
    border: 2px solid #f44336;
}

.start_stop {
    background-color: #4CAF50;
    border: 2px solid #4CAF50;
}

.wating_stop {
    background-color: #FFC107;
    border: 2px solid #FFC107;
}

a.event_buy_ticket {
    background: #f44336;
    color: #fff;
    padding: 14px 28px;
    text-transform: uppercase;
    margin-top: 0px;
    display: block;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Ubuntu';
    font-weight: 800;
    border-radius: 8px;
    font-size: 15px;
    float: right;
    border: 2px solid #f44336;
    transition: .3s;
}

a.event_buy_ticket:hover {
    background: #fff;
    color: #f44336;
}