.error-404{
    text-align: center;
}
.error-404 h5{
    font-size: 60px;
    font-weight: 900;
}
.error-404 p{
    font-size: 25px;
    color: red;
}

/* --- Top Bar design --- */
section.topbar div.contact-info div a{
    display: flex !important;
    transition: 100ms;
}
section.topbar div.contact-info div a:hover span{
    text-decoration: underline;
}

@media (max-width: 992px) {
    section.hero div.order-1.order-lg-2 img{
        margin: 0 auto !important;
    }
  }
  
  
/* Header Design */
@media (max-width: 1280px) {
    header nav ul > li.dropdown >div{
        padding: 10px 20px;
    }
}




/* Team Slider Design */
section#team .swiper .swiper-wrapper{
    cursor:grab;
}
section#team .swiper .swiper-wrapper:active{
    cursor:grabbing;
}
section#team .swiper .swiper-wrapper .swiper-slide{
    /* border: 1px solid red; */
    padding: 10px;
    
}

section#team .swiper .swiper-wrapper .swiper-slide .member{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) ;
    padding: 15px;
    text-align: center;
}

section#team .swiper .swiper-wrapper .swiper-slide .member img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
section#team .swiper .swiper-wrapper .swiper-slide .member h4{
    font-size: 20px;
    font-weight: 900;
}
section#team .swiper .swiper-wrapper .swiper-slide .member span{
    font-style: italic;
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}
section#team .swiper .swiper-wrapper .swiper-slide .member div.social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

section#team .swiper .swiper-wrapper .swiper-slide .member div.social a{
    border: 1px solid #a2a2a2;
    color: #a2a2a2;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: grid;
    place-items: center;
    transition: 300ms;
}
section#team .swiper .swiper-wrapper .swiper-slide .member div.social a:hover{
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
section#team .swiper .swiper-wrapper .swiper-slide .member div.social a i{
    font-size: 18px;
}

/* --------------------------------------- Team Slider design End ---------------------------------- */

/* --------------------- Toast message ------------------ */
div.toast-container{
    position: fixed;
    right: 10px;
    bottom: 80px;
}
div.toast-container .toast{
    transition: 500ms;
}
div.toast-container img{
    width: 20px;
    height: 20px;
    object-fit: cover;
}
div.toast-container ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
div.toast-container .toast-body{
    display: flex;
}


/* -------------------- Blog style  ---------------------- */

section#recent-posts .posts p.post-category span:hover{
    text-decoration: underline;
}
section#recent-posts .posts .post .post-img{
    height: 240px !important;
    overflow: hidden;
    display: grid;
    place-items: center;
}
section#recent-posts .posts .post .post-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 200ms;
}
section#recent-posts .posts .post .post-img img:hover{
    width: 108%;
    /* max-width: 105%; */
    height: 108%;
}


/* ------------------------ Services section design ------------------ */
section#services .services-swiper{
    overflow: hidden;
    height: 700px;
}
/* section#services .services-swiper .swiper-wrapper{
    
} */
section#services .services-swiper .swiper-slide{
    width: 100%;
    height: calc((100% - 30px) / 2) !important;
}
section#services .swiper-wrapper .swiper-slide >div{
    height: 100%;
}
section#services .services-swiper .swiper-pagination{
    bottom: -60px;
}

section#services .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
  }
  
  section#services .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
  }


section#services .training-services{
    margin-top: 80px;
}

section#services .training-services-swiper{
    overflow: hidden;
}
section#services .training-services-swiper .swiper-pagination{
    bottom: -60px;
}

section#services  .swiper-slide .service-item{
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
}
section#services  .swiper-slide .service-item h3{
    grid-column: 2/5;
    font-size: 20px;
    
}
section#services .swiper-slide .service-item p{
    grid-column: 1/5;
}
section#services .training-services-swiper .swiper-slide .service-item p{
    
    font-style: italic;
}
@media screen and (max-width: 1200px) {
    section#services .swiper-wrapper .swiper-slide >div .service-item{
        padding: 30px;
    }
    section#services .swiper-wrapper .swiper-slide >div .service-item{
        font-size: 18px;
    }
  }

section#services div.row.gy-4 > h4{
    margin-top:20px;
    /* scroll-margin-top: 80px; */
}

section.portfolio .startup-container{
    /* border: 4px solid red; */
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    section.portfolio .startup-container{ 
        grid-template-columns: repeat(2, 1fr); 
    }
  }
@media (min-width: 1200px) {
    section.portfolio .startup-container{ 
        grid-template-columns: repeat(4, 1fr); 
    }
  }


.grecaptcha-badge{
    /* border: 10px solid green; */
    opacity: 0;
    pointer-events: none;
}