 #article-carousel .mySwiper {
     overflow: hidden;
 }

 #article-carousel .slideItem {
     width: 100% !important;
     height: 500px;
     position: relative;
     padding: 50px;
     color: #fff;
     display: flex;
     align-items: end;
 }

 #article-carousel .slideItem img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     position: absolute;
     top: 0;
     left: 0;
 }

 #article-carousel .slideItem::after {
     content: "";
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
 }

 #article-carousel .slide_content_wrapper {
     position: relative;
     z-index: 2;
     max-width: 620px;
 }

 #article-carousel .slide_category {
     text-transform: uppercase;
     /* color: #004976; */
     color: #9ad1f3;
     font-size: 0.75rem !important;
     letter-spacing: 0.5px !important;
     margin-bottom: 8px !important;
     font-weight: bold !important;
 }

 #article-carousel .article__mySwiper {
     overflow: hidden;
 }

 .slide_title {
     font-family: Roboto !important;
     font-weight: bold !important;
     font-size: 1.25rem !important;
     letter-spacing: 0.5px !important;
     margin-bottom: 0.5rem !important;
     line-height: 1.2 !important;
 }

 @media screen and (min-width: 800px) {
     .slide_title {
         font-family: Roboto !important;
         font-weight: bold !important;
         font-size: 1.5rem !important;
         letter-spacing: 0.5px !important;
         margin-bottom: 0.5rem !important;
         line-height: 1.2 !important;
     }

     .slide_description {
         font-size: 1.125rem !important;
         line-height: 1.5 !important;
     }
 }

 @media screen and (max-width: 799px) {
     #article-carousel .slideItem {
         height: auto;
         padding: 20px;
         flex-direction: column;
         color: #000;
     }

     #article-carousel .slideItem img {
         width: 100%;
         height: 300px;
         object-fit: cover;
         position: unset;
     }

     #article-carousel .slideItem::after {
         display: none;
     }

     #article-carousel .slide_content_wrapper {
         padding: 1rem;
     }

     #article-carousel .slide_category {
         color: #004976;
     }
 }