@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}
section{
    padding: 100px 0;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
section{
    padding: 100px 20px;
    width: 100%;
    height: auto;
    margin: auto;
}
span{
    font-family: 'Montserrat', sans-serif;
}
hr{
    width: 10%;
   
    border: 1px solid #00000059;
    
}
/*=================== wide navbar =================*/
.navbar-brand img{
    width: 110px;
    height: auto;
}

.navbar{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    padding: 20px  10px;
    transition: background-color 0.3s, color 0.3s;
    background: transparent !important;
}
.navbar.scrolled {
    background: rgba(23, 23, 23, 0.667) !important;
}
.nav.scrolled{
    background: rgba(23, 23, 23, 0.667) !important;
}
.nav-link{
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    margin: 0 15px;
    transition: .3s ease;
    &:hover{
        color: #fefefeb1 !important;
    }
}

/*=================== banner =================*/
.TopBanner{
    position: relative;
    background: url(images/banner/anywhere-we-roam-cover.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    z-index: 1;
    top: 0;
    .banner-content{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 600px;
        h1{
            color: #ffffff;
            font-size: 50px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            @media screen and (max-width: 768px) {
                font-size: 30px;
                
            }
        }
        h4{
            color: #d4d4d4;            
            text-align: center;
            font-size: 20px;
            font-weight: 400;
        }
    }
}
.TopBanner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.284);
}

/*=================== about =================*/
.about_content{
    h1{
        font-size: 30px;
        margin-bottom: 40px;
    }
    p{
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 20px;
        font-family: "Montserrat", serif;
    }
    a{
        font-weight: 600;
    }
 
}
/*=================== destinations =================*/
.destinations_imgs div h4{
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    position: absolute;
    Bottom: 10%;
    left: 10%;
    
}
.destinations_imgs div{
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 10px;
}
.destinations_imgs div img{
    transition: .3s ease;
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
    z-index: -100;
}
.destinations_imgs div img:hover{
    transform: scale(1.05);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.SecBanner{
    position: relative;
    background: url(images/banner/cristina-gottardi-p5JVzahHku0-unsplash.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    z-index: 1;
    top: 0;
    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.501);
    }
    div{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 600px;
        h1{
            color: #ffffff;
            font-size: 35px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            @media screen and (max-width: 768px) {
                font-size: 25px;
                
            }
        }
    }
}










#blog{
    background: #f5f5f5;
}
.card-title{
    font-size: 14px;
    font-weight: 400;
    color: rgba(109, 114, 118, 0.781);
}
.card{
    border: none;
    overflow: hidden;
    padding: 5px;
    border-radius: 5px;
    
    
    &:hover img{

        transform: scale(0.97);

    }
    img{
        border-radius: 5px;
        transition: .3s ease;
       
    }
}
.card-text{
    font-size: 16px;
    color: rgba(0, 0, 0, 0.778);
    font-weight: 500;
}
.read{
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}