.intro-overlay {
    display: block;
    position: fixed;
    top: 0;
    left:0;
    z-index: 10000;
    height: 100vh;
    width: 100vw;
    background: url('img/intro-bg-2.png');
    background-repeat: repeat;
    animation: fadeOut 2s forwards;
    animation-delay: 2s;
    overflow: hidden !important;
    
}

.inner-container {
    position: absolute;
    height: 300px;
    width: 300px;
    bottom: 300px;
    left: -50px;
   
}

.inner-container img{
    height:400px;
}

@keyframes fadeOut {
    0% {
        display: block;
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        display: none;
        opacity: 0;
    }
}

.open-nav i, .open-nav i:before, .open-nav i:after, .case-study .hero .content h2:before, .featured-works-item .overlay .content span:nth-of-type(2):after, .responsive-nav-container, .footer-details form button:hover, .similar-posts, .journal, .next-project header, .btn:hover, .main-hero, .contact-us .block-1, .btn, .footer-details form button, .contact-form textarea::-webkit-scrollbar-thumb, .services .item, .projects .item span:after {
    background: #1f1f1f;
}

.media-box {
    background: lightslategray;
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
    box-shadow: -2px 3px 10px 6px #d9d9d9;
    border-radius: 8px;
}

.responsive-nav-container {
    background: url('img/chef-nav.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
 
.nav-logo {
    position: absolute;
    top: 25px;
    left: 25px;
}

.responsive-nav ul li a {
    float: left;
    font-family: Montserrat, sans-serif;
    font-size: 1.6875rem;
    font-weight: 100;
    letter-spacing: 5px;
    list-style: none;
    margin-right: 50px;
    text-transform: uppercase;
}

.modal-dialog .modal-content .text {
    display: grid;
    place-items: center;
    padding: 40px;
    background: white;
}

.modal-dialog .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
}
.desktop-only {
    display: none !important;
}

@media (max-width: 850px) {
    .modal-dialog .close-modal {
        color: white;
    } 
    .mobile-only {
        display: none !important;
    }
    .desktop-only {
        display: block !important;
    }
}

