:root{
   
    --transition: all 0.5s ease-in-out;
}
*{
    font-family: 'Hind Siliguri', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}



/* setup & reusable stylings */

a{
    text-decoration: none;
    color: black;    
}
li{
    list-style-type: none;
}

.container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
h1, h2, h3, h4, h5, h6{
    margin: 0.6rem 0;
    line-height: 1.25;
    font-weight: 400;
    text-transform: capitalize;
}
h1{
    font-family: 'Hind Siliguri', sans-serif;
        
}
h2{
font-family: 'Hind Siliguri', sans-serif;
   
}
p{
   font-family: 'Hind Siliguri', sans-serif;
        font-size: 20px;    
}
.text{
    margin: 0.6rem 0;
    opacity: 0.8;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
section{
    padding: 0 0;
}

.travel {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 50px;
}

.video{
   
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: black;
    text-align: center;
}
.video a{
    font-size: 2.2rem;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--mount-meadow);
    padding-left: 7px;
    margin: 0 auto;
}

/* team */
.team .row{
    margin-top: 0.5rem;
}
.team-item{
    margin: 2rem 0;
}
.team-img{
    position: relative;	
}

.team-img:hover {
    opacity: 1;
}
.team-info{
    text-align: center;
    padding: 1.5rem;
    line-height: 1;
}
.team-info h3{
    font-size: 1.4rem;
    color: var(--night-rider);
}
.team-info span{
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.7;
}

/* #### Media Queries #### */

@media screen and (min-width: 768px){
    
    .video h2{
        font-size: 2.6rem;
    }
    .video p{
        font-size: 1.2rem;
        width: 75%;
        margin: 0 auto;
    }
    .team-item{
        margin: 0;
    }

    .date {
        margin-top: 10px;
        font-size: 30px;
        font-weight: lighter;
        font-style: italic;
        
    }

    .title {
        margin-bottom: 10px;
        font-size: 40px;
        margin-top: auto;
    }

.prodesc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    width: 80%;
    text-align: left;
    padding-bottom: 200px;
    padding-top: 200px;
}

.travel{
width: 90%;
margin: auto;
padding-top: 50px;
    padding-bottom: 50px;
}

.travel a {
text-decoration: none;
color: rgb(0, 0, 0);
padding: 7px 10px;
border-radius: 4px;
font-size: 19px;
}
    
}

@media screen and (min-width: 992px){
    
    .video p{
        width: 60%;
    }
}

