@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
*
{	
	box-sizing: border-box
}

body
{
	background: linear-gradient(0.25turn, #b3ffc2, #ccffd6, #e6ffeb, #ccffd6, #b3ffc2);
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	
}

a
{
	text-decoration: none;
}

p
{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	text-indent: 30px;
}

p.img-description
{
	width: 90%;
	text-align: center;
	text-indent: 0px;
}

header
{
	text-align: center;
}

h4
{
	text-align: center;
}

h3
{
	font-size: 1.6em;
	text-align: center;
}

main
{
	margin-left: auto;
	margin-right: auto;
}

h2
{
	font-size: 2em;
}

ul
{
	/* list-style-type: none; */
	column-count: 3;
	line-height: 1.5;
	/* text-align: center; */
}

.img-circle
{
	border-radius: 50%;
	margin: 0 auto;
    display:block;
}

.offer
{
	display: inline-block;
	width: 33%;
	text-align: center;
	vertical-align: top;
}

#address
{
	text-align: center;
}

#left_address, #right_address
{
	width: 45%;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
}

footer
{
	text-align: center;
	clear: both;
	padding: 50px 50px 0px 50px;
}

/* Slider */
.slider-container
{
	max-width: 750px;
	height: 200px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.slides {
	display: none;
}

.prev, .next
{
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 30px;
	transition: 0.6s ease;
	user-select: none;
}

.prev
{
	left: 0;
	border-radius: 0 3px 3px 0;
}

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

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

.slide-img
	{
		width: 100%;
		height: 200px;
	}

.slider-text
{
	font-weight: bold;
	background-color: #d5e9e9;
	font-size: 25px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

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

.active
{
	background-color: #717171;
}

.fade
{
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade
{
	from {opacity: .4}
	to {opacity: 1}
}

@keyframes fade
{
	from {opacity: .4}
	to {opacity: 1}
}

/* Responsive */
@media (max-width: 1280px)
{
	body
	{
		width: 90%;
	}
	p
	{
		width: 90%;
	}
	ul
	{
		column-count: 2;
		line-height: 1.5;
	}
	.slider-container
	{
		max-width: 100%;
		height: 400px;
	}
	.slide-img
	{
		width: 100%;
		height: 400px;
	}
	.offer
	{
		display: inline;
		text-align: center;
	}
}

@media (max-width: 1024px)
{
	body
	{
		width: 100%;
	}
	p
	{
		width: 95%;
	}
	ul
	{
		list-style-type: none;
		column-count: 1;
		line-height: 1.5;
	}
	.slider-container
	{
		max-width: 100%;
		height: 350px;
	}
	.slide-img
	{
		width: 100%;
		height: 350px;
	}
	.offer
	{
		display: inline;
		text-align: center;
	}
	#left_address, #right_address
	{
		width: 90%;
		display: inline;
		margin-left: auto;
		margin-right: auto;
		line-height: 1.5;
	}
}

@media (max-width: 720px)
{
	
	.slide-img
	{
		width: 100%;
		height: 250px;
	}
	.slider-container
	{
		max-width: 100%;
		height: 250px;
	}
}

@media (max-width: 480px)
{
	.slide-img
	{
		width: 100%;
		height: 200px;
	}
	.slider-container
	{
		max-width: 100%;
		height: 200px;
	}
}

