@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');

body, html
{
	margin:0;
	padding:0;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-family: 'PT Sans', sans-serif;
	color:#000;
	overflow: hidden;
}

.container
{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 0;
  	margin: 0;
  	list-style: none;
  	width: 100%;
  	height: 100%;
}
.flex-item
{
	width: 50%;
	text-align: center;
}
.content
{
	padding-bottom: 25px;
}
.video
{
	
}
#video-background
{
	width:100%;
	height: auto;
}
.logo
{
	max-width: 45%;
	margin: 0 auto;
	margin-top: 15%;
	margin-bottom: 25px;
}
.info
{
	line-height:2em;
}
img
{
	max-width: 100%
}
.video-overlay
{
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0.7;
	z-index: 0;
}

.download {
    text-align: center;
    margin: 0 auto;
    padding-top: 25px;
}

a
{
	text-decoration: none;
	color: #5a5b5c;
}

#rcorners1 {
    background: white;
    padding: 13px;
    width: 190px;
    text-transform: uppercase;
    height: auto;
    margin: 0 auto;
    font-size: 1.1em;
    letter-spacing: 3px;
    color: #5a5b5c;
    font-family: inherit;
    border: none;
    cursor: pointer;
    line-height: 1.4em;
    font-weight: bold;
}

#rcorners1:hover, a:hover
{
	color: black;
}

.show-mobile
{
	display: none;
}

 /* Add these to your existing CSS file */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
}

.dot.active {
    background: white;
}

@media all and (max-width: 789px)
{
	.container
	{
		background-image: url("../images/leplatine-background.jpg");
		height: 100%;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.content
	{
		position: absolute;
		z-index: 1;
	}
	.show-mobile
	{
		display: block;
	}
	.flex-item
	{
		width: 100%;
	}
	.logo
	{
		margin-top: 20%;
		max-width: 90%;
	}

	.video
	{
		display: none;
	}
}
@media all and (max-width: 340px)
{
	.logo
	{
		margin-top: 15%;
	}

}
