/* Search section CSS*/
.search-section .section-innerdiv{
    height:100vh;
}
.searchbar{
    font-family: "Open Sans";
    font-size:20px;
    font-weight:100;
    background-color: var(--transparent-white);
    width:70%;
    min-height: 50px;
    margin-bottom:50px;
    border-radius:18px;
    padding:20px;
    display: flex;
    justify-content: space-around;
}
.search-input{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-grow:1;
    border: none;
    padding: 7px 0 7px 10px;
    width: 80%;
    background-color:white;
    border-radius:10px 0 0 10px;
}
.search-input input{
    font:inherit;
    color: var(--gray);
    border: none;
    width:100%;
    border-right:1px solid var(--light-gray);
    border-radius:10px 0 0 10px;
}
.search-input input::placeholder{
    color:var(--gray)
}
.search-button {
    font:inherit;
    flex-grow:1;
    padding:0 8px;
    text-align:center;
    color: var(--gray);
    background-color: white;
    border: none;
    border-radius:0 10px 10px 0;
    box-shadow: none;
}
.search-button:hover{
    color: #fff;
    padding:0 15px;
    background-color: var(--red); 
    box-shadow: none;
    border-radius:0 10px 10px 0;
}
/* About section CSS */
.about-section h3{
    padding:30px 0 35px;
}
.about-section p{
    font-weight:300;
    padding:40px;
    text-align: justify;
    color:white;
}
.about-section span{
    border:1px solid var(--light-gray);
    height:280px;
}
.about-us{
    padding:15px 30px;
    font-size:22px;
}
/* Discover section CSS */
.discover-section .section-innerdiv{
    background-color: #546575   ;
    border-radius:30px;
    padding:40px;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.9);
    margin-top:10px;
    margin-bottom:10px;
}
.discover-section .innerdiv-inner{
    padding:40px 0;
}
.discover-section h2, .discover-section p{
    color:white;
}
.discover-left, .discover-right{
    width:50%;
    display:flex;
    flex-direction:column;
    justify-content: space-evenly;
    align-items: center;

}
.discover-left img{
    max-width:80%;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.5);
}
.discover-right p{
    font-size:20px;
    font-weight:300;
    text-align:justify;
    padding:0 60px;
}
.view-bus-lines{
    background-color:var(--light-gray);
    color:var(--gray);
    border:1px solid var(--red);
    margin:50px;
    padding:15px;
    width:50%;
    font-size:22px;
}
.view-bus-lines:hover{
    background-color:var(--red);
    color:var(--light-gray);
    border:1px solid var(--light-gray);
}
/* Downlad section CSS */
.download-section .section-innerdiv{
    flex-direction: row;
}
.phone-wrapper{
    max-width:30%;
}
.phone-wrapper img{
    max-width:100%;
}
.download-title h2{
    color:black;
}
.stores{
    display: flex;
    padding:30px 0;
    justify-content: space-between;
    width:60%;
}




