 
#news .swiper-button-prev,
#news .swiper-button-next
 {
 border:2px solid #A8A8A8;
 color:#A8A8A8;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    top: 50%;

	
    font-size:21px;  
    line-height: 1;    
    font-weight: 900;   
 
	
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1 !important;
}

  
 /* =========================
   NEWS CAROUSEL
   ========================= */
   
   
#mynews{
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0 0;
    padding: 20px 0 0 0;
    border-radius: 20px;
    background: #efefef;
    box-sizing: border-box;
    overflow: hidden;	
}

#news {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
    padding: 0 0 40px 0;
    border-radius: 20px;
    background: #efefef;
    box-sizing: border-box;
    overflow: hidden;
}

#news .newsSwiper {
    position: relative;
    width: calc(100% - 100px);
    max-width: 1050px;
    margin: 30px auto 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden !important;
}

#news .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

#news .swiper-slide {
    min-width: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
}

#news section {
    width: 100%;
    max-width: 360px;
    height: 100%;
    margin: 0 auto;
    border: 1px solid #a8a8a8;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

#news section figure {
    width: 100%;
    height: 300px;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
}

#news section figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

#news section > div {
    min-height: 164px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-sizing: border-box;
}

#news section > div a {
    color: #403f45;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

#news section > div > div {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 20px;
}

 

 

#news .swiper-button-prev {
    left: 15px !important;
}

#news .swiper-button-next {
    right: 15px !important;
}

#news .swiper-button-prev::after,
#news .swiper-button-next::after {
    display: none !important;
}

#news .swiper-button-prev::before {
    content: "<";
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

#news .swiper-button-next::before {
    content: ">";
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

 

@media (max-width: 1024px) {
    #news .newsSwiper {
        width: calc(100% - 90px);
        max-width: none;
    }

    #news .swiper-button-prev {
        left: 5px !important;
    }

    #news .swiper-button-next {
        right: 5px !important;
    }
}

 

@media (max-width: 600px) {
 
    #news .newsSwiper {
        width: 100%;
        padding: 0 5px;
    }

    #news .swiper-button-prev,
    #news .swiper-button-next {
        display: none !important;
    }

    #news section {
        max-width: 360px;
    }
	
	#news{
		    padding: 0 0 20px 0;
	}
 
}

 
 
  
   /* =========================
  END NEWS CAROUSEL
   ========================= */
  
