
body{
    background-color: #fff;
    font: Inter, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header{
    width: 100%;
    height: 160px;
    background: #4370d8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.header img.logo{
    width: 200px;
    height: 60px;
    margin-left: 10px;
}

.header .phone_call, 
.header .phone_number{
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    letter-spacing: 0%;
    color: white;
}

.header .left,
.header .right{
    display: flex;
    flex-direction: row;
    height: 100%;
    margin-left: 10px;
    gap: 20px;    
    align-items: center;
}
.header .right{
    justify-content: flex-end;
}

.header a.link{
    font-family: Inter;
    font-weight: 500;
    font-size: 22px;
    color: white;
    text-decoration: none;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header a.button{
    border: 2px solid #FFFFFF;
    width: 160px;
    height: 60px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 22px;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header a.button:hover{
    background: #FFFFFF26;
}

.container{
    width: 1560px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 960px)  and (max-width: 1600px) {   /* optional: avoid catching huge tablets */ /* 100% guarantee: this is a phone forcing desktop mode */
    .container{
        width: 100%;
        min-width: 960px
    }

    .header .phone_call{
        display: none;
    }

    .header a.link{
        width: min-content;
    }

}






.background-bus{
    height: 676px;
    background-image: url("/img/bus.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto !important;
    margin-top: 134px !important;
}