.carousel_beach{
position: absolute;
    right: 50px;
    top: 10%;
    background: #fff;
    width: 280px;
    padding: 20px;
    height: 80%;
    overflow: hidden;
}
h2{margin-top: 0px;}
.carousel_beach .item{
	margin-bottom: 15px;
}
.carousel_beach .img {
    display: block;
    height: 100px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
    border-radius: 6px;
}
.carousel_beach .item img{
	width: 100%;
	transition: all 1s ease;
    object-fit: cover;
}
.carousel_beach .item:hover img{
	-moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.carousel_beach_wrapper{height: 100%;}
.carousel_beach_wrapper a{
    color: #6192df;
    font-size: 14px;
    line-height: 1.2em;
}