* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
     background: #fff;
}
a{
  text-decoration: none;
  color:#000;
}


.header{
    display: none;
}

.logo a{
    color: white;
    font-size: 26px;
    font-weight: bold;
}
.menu-btn{
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-btn a{
	color:#fff;
	line-height:0;
}
.page-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    margin-top:80px;
}

.container {
    flex: 1;
    display: flex;
    padding: 20px;
    text-align: center;
    min-width: 1000px;
	width:80%;
    margin: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row-reverse;
    align-content: flex-start;
}

.r-box {
    width: 48%;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    background:#36b4ee;
}
.r-box a{
     padding: 15px 15px;
}

.r-box-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid #36b4ee;
	border-radius: 30px;
}
.route-title {
    margin: 0;
    font-size: 20px;
    color:#fff;
}
.route-logo {
    width: 40px;
    height: 40px;
    padding:0 20px;
}
.time {
    color: #ff9a00;
    font-size: 14px;
    margin-left: 10px;
    font-family: 'Arial';
}

.footer {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
	border-top: 1px solid #d8d8d8;
}
.footer .block{
    width: calc(20% - 0px);
    text-align: center;
    border-right: 1px solid #d8d8d8
}
.footer .block:nth-child(5){
    border:none;
}
.c-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    font-size: 24px;
	color:#6a6a6a;
}
.social-name {
    font-size: 0.9rem;
    color: #555;
}
@media (max-width: 600px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #36b4ee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .container{
        min-width: 100%;
        margin-top: 60px;
		margin-bottom:60px;
    }

    .footer {
		background:#f9f9f9;
		
    }
    .social-block {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
    .social-block {
        border-right: none;
        border-bottom: 1px solid #e7e7e7;
    }
    .c-btn {
        width: 100%;
        justify-content: center;
    }
    .social-icon {
        margin-bottom: 0;
    }
    .r-box{
        width:100%;
    }

}