*{ margin:0; padding: 0; box-sizing: border-box;}
body, html{width:100%; height:100%;
    /* background-image: url("../images/background.webp"); */
    background-attachment: fixed;
    background-size: cover;
    background-position: center; 
    scroll-behavior: smooth;
    background-color: rgb(247, 247, 247);
}
a{text-decoration: none;}  ul{list-style: none;}


.sitehead{
    color:black;
}

#contentroute{
    width:100%;
    /* min-height: 400px; */
    height:auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 40px;
    background-color: rgb(247, 247, 247);
    color: black;
   
}


#contentroute h2{
    width:550px;
    text-align: center;
    font-family: 'Poppins', 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 34px;
    letter-spacing: 2px;
    border-bottom: 1px solid darkorange;
    text-transform: capitalize;
    color: black;
    font-weight: 600;
   
}
#contentroute h3{
    width:100%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    margin-top:10px;
    text-transform: capitalize;
    font-weight: 200;
    color: black;
    
}

#contentroute span{
    width:400px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    margin-top:10px;
    text-transform: capitalize;
    /* font-weight: 200; */
    color: black;
    
}
#contentroute span ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: rgb(46, 46, 46);
}
.routesimg{
    width:80%;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 20px;
}
.routesimgbig{
    width:65%;
    height:300px;
    
    overflow: hidden;
    border-radius: 3px;
}
.routesimgbig img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.routesimgsmall{
    width:30%;
    height:300px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.routesimgsmall1, .routesimgsmall2{
    width:100%;
    height:48%;

}
.routesimgsmall1 img, .routesimgsmall2 img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 3px;
}


@media only screen and (max-width: 640px) { 

    #contentroute h2{
        width:90%;
        font-size: 18px;
        letter-spacing: 1px;
        font-weight: 600;
    }
    #contentroute h3{
        font-size: 16px;
        letter-spacing: 1px;
       
    }

    .routesimg{
        width:90%;
        flex-direction: column;
        height:auto;
        /* background-color: aqua; */
    }
    .routesimgbig{
        width:100%;
        height:50%;
        /* background-color: brown; */
        
    }
    .routesimgsmall{
        width:100%;
        height:150px;
        flex-direction: row;
        /* background-color: blue; */
    }
    .routesimgsmall1{
        width:48%;
        height:100%;
    }
    .routesimgsmall2{
        width:48%; 
        height:100%;
    
    }
    .routesimgsmall1 img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius: 3px;
    }
    #contentroute span{
        width:90%;   
    }
    #contentroute span ul{
        font-size: 12px;
    }
}

