* {box-sizing: border-box}
.container-slideshow {display: none}
img {vertical-align: middle;}



.container-slideshow {
    display: flex;
    margin: 0 auto;
    background: #003e5a;
  	max-width: 1200px;
    position: relative;
  	margin-bottom: 10px;
}

.container-slideshow > .container-image {
    width: 60%;
    object-fit: contain;
    align-self: flex-start;
    
}

.container-slideshow > .container-text {
    flex: 1 1 auto;
    padding: 5px;
    position: relative;
    
}

.container-text  p {
    color: #ffffff;
    font-size: 16px;
	padding-left: 20px;
	padding-right: 50px;
}

.container-text  h3 {
    color: #ffffff;
    font-size: 18px;
	padding-left: 20px;
	padding-right: 50px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #023b59;
	 background-color: #e0bc4c;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.Carousel-dots {
    text-align: center;
  	margin-bottom: 30px;
}


.next {
    right: 0;
    border-radius: 6px 0 0 6px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
	color: white;
}





@media only screen and (max-width: 900px) {
    .prev, .next{font-size: 16px}
    
    .container-text  p h3 {
        color: #ffffff;
        font-size: 14px;
		padding-left: 40px;
    }
	
	.container-slideshow > .container-image {
    width: 0%;
    object-fit: contain;
    align-self: flex-start;
    
}

    .dot {
        cursor: pointer;
        height: 10px;
        width: 10px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }
}


