:root{
    --main-color: #CF7E00;
    --sec-color: #62BAAC;
    --bg-color: #f1f1f1;
}

body{
    margin: 0;
    box-sizing: border-box;
}

.nav > li > a{
    color: var(--main-color);
    font-weight: bold;
}

.navbar-nav a{
    color: var(--main-color) !important;
}

.parallax {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.parallax-bg {
    background-image: url('../imgs/back scene_1.png');
}

.parallax-fg {
    background-image: url('../imgs/bus and road_1.png');
}

.parallax-content {
    top: 5%;
    left: 20%;
    /*transform: translate(-30%, -50%);*/
}

.parallax-content p{
    font-size: 3rem;
    color: var(--main-color);
}

.header{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
}

.foreground{
    left: 5px;
}

section {
    /*font-size: 2rem;*/
    font-size: 1.4rem;
    padding: 2rem;
    background-color: var(--bg-color);
}

.overlay-section{
    position: relative;
    border-radius: 15px;
    padding: 10px 23px 5px 25px !important;
    margin-top: -70px;
    background-color: var(--bg-color);
}

.slogan{
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
}

#searchForm p{
    color: var(--sec-color);
    font-weight: bold;
}

#searchForm a{
    color: var(--sec-color);
}

#searchForm a:hover{
    color: var(--main-color);
    text-decoration: none;
}

#searchForm input{
    height: 35px;
    width: 100%;
    border-radius: 5px;
}

#nepaliDate4, .select-wrapper{
    margin: 0;
    outline: medium none;
    padding: 4px;
    font-weight: normal;
    border-radius: 5px;
}

.image-box {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.image-box img {
    transition: all 0.3s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}

.image-bus {
    position: relative;
    height: 250px;
    width: 443px;
}

.image-bus img {
    transition: all 0.3s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}

.image-box:hover img {
    transform: scale(1.1);
}



.main-title{
    font-size: 5rem;
    color: var(--main-color);
}

.parallax-content p{
    font-size: 3rem;
    color: var(--main-color);
}

.parallax {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.layer {
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
    top: -0.5%;
}



.select-wrapper{
    background-color: var(--sec-color);
    color: white;
}

section h1{
    color: var(--main-color);
}

.fa{
    color: var(--sec-color) !important;
}

.service-item{
    font-size: 18px;
    padding: 10px;
}

.owl-carousel .owl-item img {
    height: 258px;
}

@media screen and (max-width: 480px) {
    .parallax-content {
        top: 0%;
        left: 0%;
        /*transform: translate(-30%, -50%);*/
    }

    .owl-carousel .owl-item img {
        height: 258px;
        width: 100%;
    }

}