header {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100% ;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.header_container {
    padding-right: 20%;
}
.header_container h1{
    margin-bottom: 1rem;
}
.header_container p {
    margin-bottom: 1.5rem;
}

 /* ---hero-slider */
 .hero-slider {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100% ;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 2rem 0rem;
}
.hero-slider .slide-content{
    text-align: right;
    padding-left: 20%;
}
.slide-content h2{
    margin-bottom: 1rem;
}
.slide-content p {
    margin-bottom: 1.5rem;
}
.mySwiperHero .swiper-pagination{
    bottom: 80px!important;
}
 .swiper-pagination-bullet{
    width: 20px !important;
    height: 20px !important;
    border-radius: 20px !important;
    border:1px solid var(--colory-yellow)!important
}
.swiper-pagination-bullet-active{
    width: 20px !important;
    height: 20px !important;
    border-radius: 10px !important;
    background: var(--colory-yellow)!important;
    border:1px solid var(--colory-yellow)!important
}
.navigationBtn  a{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    font-size:2.2rem;
    color:var(--colory-white);
    cursor: pointer;
}
.navigationBtn .prev-btn{
    left: 4rem;
}
.navigationBtn .next-btn{
    right: 4rem;
}

/* ---- custom-container ---- */
.certificate-container{
    position: relative;
}
.custom-container{
    padding-bottom: 2rem;
}
.custom-container .mySwiper .cards{
    width:100%;
}
.custom-container .mySwiper .cards .cards__image{
    height: 520px;
    padding:1rem 0.5rem;
}
.custom-container .mySwiper .cards .cards__image img{
    object-fit: contain;
}
.custom-container .swiper-slide {
    display: flex;
    align-items: center;
  }

  @media only screen and (max-width: 1280px) {
    header {
        height: 70vh;
    }
 /* ---hero-slider */
     .hero-slider {
        height: 70vh;
    }
    .custom-container .mySwiper .cards .cards__image{
        height: 420px;
    }

  }

  @media only screen and (max-width: 1024px) {
    header {
        height: 60vh;
    }
    /* ---hero-slider */
    .hero-slider {
        height: 60vh;
    }
    .navigationBtn .prev-btn{
        left: 1rem;
    }
    .navigationBtn .next-btn{
        right: 1rem;
    }

  }

  @media only screen and (max-width: 612px) {
    .header_container {
        padding-right: 0%;
    }
    header {
        height: 50vh;
    }
    /* ---hero-slider */
    .hero-slider {
        height: 50vh;
    }
    .hero-slider .slide-content {
        text-align: center;
        padding-left: 0%;
    }
  }