
  
header {
    background: linear-gradient(rgba(0,0,0,0.7) , rgba(0,0,0,0.7) ) , url(/assets/img/gulm.jpg)  !important  ;
    background-size: cover !important;
    background-position: center !important ;    
    height: 100vh;
    /* background-repeat: no-repeat; */
    position: relative !important;
}

.place h1 {
    color: #fff !important; 
    font-family: poppins;
    text-transform: uppercase;
    font-size: 55px;
    font-style: italic;

}

.place {
    display: flex;
    /* justify-content: center; */
    align-items: flex-end;
    height: 70vh;
}

.place small {
    color: rgb(212, 205, 205);
    font-style: italic;
}


.info h1 {
    font-family: opensans,sans-serif;
    color: #333;
    margin-top: 70px;
    font-weight: 700;
}

.info p {
    font-size: 15px;
    color: rgb(119, 116, 116);
}



.dropdown-color {
    background: var(--body-color) !important;
  }
  
  .dropdown-link {
    
    color: var(--dropdown-link-color)!important;
  }
  

/* =======================gallery ===================== */


.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
}
.gallery:hover .gallery__image {
    filter: grayscale(1);
}
.gallery__column {
    display: flex;
    flex-direction: column;
    width: 25%;
}
.gallery__link {
    margin: 2px;
    overflow: hidden;
}
.gallery__link:hover .gallery__image {
    filter: grayscale(0);
}
.gallery__link:hover .gallery__caption {
    opacity: 1;
}
.gallery__thumb {
    position: relative;
}
.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}
.gallery__image:hover {
    transform: scale(1.1);
}
.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
}



.gallery__icon {
    display: flex;
    justify-content: center;
    font-size: 70px;
    color:#222;
    margin: 20px;
}