       
        .spot-section {
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .spotlight {
            display: flex;
            width: 100%;
            overflow-x: hidden;
        }
        
        .spotlight a {
            text-decoration: none;
            color: black;
        }
        
        .container {
            flex: 0 0 auto;
            width: 80%;
            padding: 10px;
        }
        
        .project {
            display: grid;
            grid-template-columns: 1fr 3fr;
            grid-gap: 20px;
            background-image: url('banners/trip-banner.jpeg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            padding: 0 10px;
        }
        
        .imaging {
            height: 400px; 
            width: 100%;
        }
        
        .builder {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .hidden {
            display: none;
        }
        
        .blur {
            filter: blur(5px);
        }
        
        .next {
            font-size: 30px;
            padding: 10px 18px;
            margin-left: -300px;
            z-index: 7;
            background-color: white;
            border-radius: 50%;
        }
        
        .prev {
            font-size: 30px;
            padding: 10px 18px;
            margin-right: -40px;
            z-index: 2;
            background-color: white;
            border-radius: 50%;
        }
        
        
    @media only screen and (max-width: 700px) {
        
        .spot-section {
            display: none;
        }
        
    }
        