.services-container{
    padding: 2rem;
}

.services-content{
     width: 100%;
     
}

/* =================Billboard Ads======================== */
.billboard-title, .title{
    margin-top: 6rem;
}

/* Hovering title of Billboard */
.billboard{
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.billboard-hov{
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.714);
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

/* 👇 Show title when hovering the image/card */
.billboard:hover .billboard-hov {
    opacity: .9;
    transform: translateY(0);
}
.billboard span{
    display: block;
    font-size: 1rem;
    font-weight: 100;
    opacity: .9;
}


.services-billboard-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(380px,1fr));
    gap: 1rem;
    width: 100%;
    
    margin-left: -1rem;
    background-color: #00000015;
    margin-bottom: 2rem;
    cursor: pointer;

    max-height: 480px;  /* adjust this*/
    overflow-y: auto;

    /* Firefox */
    scrollbar-width: none;

    /* IE / Edge */
    -ms-overflow-style: none;
} 

/* Chrome, Safari, Edge */
.services-billboard-grid::-webkit-scrollbar {
    display: none;
}
/* ================================================ */


/* =============================================== */

.services-container h2{
    color: #0b3961;
    font-size: 2.5rem;
    text-align: center;
    margin-top: -1rem;
    margin-bottom: .5rem;
}

.services-container h1{
    background-color:#0b3961;
    color: #fff;
    padding: .2rem;
    text-align: center;
    margin:auto;
    margin-bottom: 2rem;
    max-width: 25%;
    object-fit: cover;
    border-radius: 1rem;
    overflow: hidden;
    font-size: 1.5rem;
    font-weight: 500;
}
.services-container p{
    font-size: 1.5rem;
    font-weight: 500;
}

.services-transit-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    /* place-items: center; */
    gap: 2rem;
    width: 100%;
}

.transit{
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.services-streetbanner-grid,
.services-mall-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
    gap: 2rem;
    width: 100%;
    cursor: pointer;
}

/* ==================Street Ads========================= */
/*==========Images Sizes located in transit.js, street.js, billboard.js =========*/
.services-image, .transit-image{
    display: block;
    width: 100%;
    object-fit: cover;
    max-height: 80vh;
    /* border-radius: 1rem; */
    margin-bottom: -1rem;
    transition: opacity 0.3s ease;
}

.mall,.street{
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.street-image , .mall-image{
    display: block;
    max-width: 100%;
    max-height: 60vh;
    object-fit: cover;
    background-position: center;
    border-radius: 1rem;
    margin: auto;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.street-main-grid p{
    font-size: 1rem;
    text-align: justify;
    width: 50%;
    margin: auto;
}
/* ===================================================== */

.carousel-btn {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #0b3961;
  color: white;
  border: none;
  padding: 7px 15px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 100;
  transition: all .3s ease-in-out;
  &:hover{
    background-color: rgba(255, 49, 49, 0.822);
  }
}

.Sprev { left: 10px; }
.Snext { right: 10px; }


.street-prev { left: 10px; }
.street-next { right: 10px; }

/* ===================Malls Ads=========================== */
.mall-main-grid p{
    font-size: 1.5rem;
    width: 50%;
    margin: auto;
    text-align: center;
}
/* ======================================================= */


/* =================Airport Section Ads====================*/

.airport-main-grid p{
    font-size: 1.1rem;
    width: 50%;
    margin: auto;
    text-align: justify;
}
.services-airport-grid{
    overflow: hidden;
    margin-bottom: 1rem;
}
.airport-container{
    flex: 0 0 auto;
    margin-right: 20px;
}

.airport-image{
   display: block;
   width: clamp(400px, 25vw, 800px); /*  /* min: 220px | fluid: 20vw | max: 500px */
} 

.airport-track{
    display: flex;
    width: max-content;
    cursor: pointer;
    animation: slideLeft 30s linear infinite;
    &:hover{
        animation-play-state: paused;
    }
}

/* Animation */
@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ======================================================= */


/* ===================Building Section Ads==============*/

.building-main-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    gap: 2rem;
    margin-top: -2rem;
}
.building-main-grid h3{
    font-size: 2rem;
    color: #0b3961;
}

.services-building-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    gap: 1rem;
}

.building-content2 h3, .building-content h3{
  text-align: center;
}


.buiding-content2 p{
    text-align: justify;
}

.building-image, .building-content2 p{
    width: 90%;
    display: block;
    border-radius: .5rem;
    font-size: 1.1rem;
}

.services-content{
    padding: 1rem;
    /* width: 100%; */
}


/* ================Located in building.js hovering title======================= */
.building-container{
    position: relative;
    overflow: hidden;
}

.building-title{
    position: absolute;
    bottom: -1rem;
    width: 90%;
    
    background: #7ec7fb;
    color: #000;
    text-align: center;
   
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.building-container:hover .building-title{
    opacity: .9;
    transform: translateY(0);
    font-size: 1rem;
} 

.building-container span{
    display: block;
    font-size: 1rem;
    font-weight: 100;
    opacity: 1;
}
/* ===================================================== */


/* ================Located in html hovering title==================*/
.building-content p{
    width: 90%;
    font-size: 1.1rem;
    text-align: justify;
}

.building-content-image{
    width: 90%;
    display: block;
    font-size: 1.1rem;
    border-radius: .5rem;
}


.building-content{
    width: 100%;
}

.image-wrapper{
    position: relative;
    overflow: hidden;
}

.wrap-content{
    position: absolute;
    background: #7ec7fb;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    border-radius: .5rem;
    
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.building-content:hover .wrap-content{
    opacity: .9;
    transform: translateY(0);
    font-size: 1rem;
}

.building-content span{
    display: block;
    opacity: 1;
}

/* ====================================================================== */


/* ======================Special Execution Ads=========================== */
.services-main-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 5rem;
    place-items: center;
    margin-bottom: 1rem;
    width: 100%;
    
}

.services-main-grid p{
    text-align: justify;
    font-size: 1.2rem;
    width: 95%;
}

.services-special-grid{
    overflow-y: auto;
    overflow-x: hidden;
    height: 45vh;
    
}

.special-image{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: .5rem;
    cursor: pointer;
    
}
/* ====================================================================== */