.hfSlider
{
	max-height:80vh;
	overflow:hidden;
	display:flex;
}
.hfSliderWrapper
{
    width: 100%;
    overflow: hidden;
    position: relative;
	flex:1;
}

.hfSliderContainer
{
    display: flex;
    flex-wrap: nowrap;
    transition: all 500ms;
	height:calc(100% - 8px);
	position:relative;
}

.hfSliderItem
{
    position: relative;
    overflow: hidden;
}

.hfSliderItem img.desktop
{
    width: 100%;
    display: block;
}
.hfSliderItem img.mobile
{
	display:none;
	width:100%;
}

.hfSliderNavigator
{
    display: flex;
    flex-wrap: nowrap;
}

.hfSliderNavElement
{
    background-color: #fff;
    height: 8px;
    width: 100%;
    cursor: pointer;
}

.hfSliderNavElement.active
{
    background-color: #e70;
}

.circle
{
    width: 100vw;
    min-width:max(100vh, 800px);
    height: 100vw;
    min-height:max(100vh, 800px);
    background-color: #ee770099;
    position: absolute;
    border-radius: 50%;
    left:0;
    top:0;
    opacity:0;
}
.circle1
{
    transform:translate(-100%, -50%);
    transition: all 1500ms 150ms;
}
.circle1.show
{
    transform:translate(-50%, -70%);
    opacity:1;
}
.circle2
{
    transform:translate(-100%, 50%);
    transition: all 1500ms 100ms;
}
.circle2.show
{
    transform:translate(-40%, 0%);
    opacity:1;
}

.hfSliderOverlay
{
    position:absolute;
    left:10%;
	max-width:600px;
	width:calc(40vw - 10%);
	min-width:calc(320px - 20%);
    top:60%;
    transform:translateY(-50%);
    z-index:1;
    color:#fff;
    opacity:0;
    transition:all 1000ms 1000ms;
}
.hfSliderOverlay.show
{
    top:50%;
    opacity:1;
}
.hfSliderOverlay h3
{
    font-size:32px;
    font-weight:bold;
    margin:0;
    margin-bottom:32px;
    color:#fff;
}
.hfSliderOverlayButton a
{
    display:inline-block;
    border:2px solid #fff;
    border-radius:100px;
    padding:12px 40px;
    text-decoration:none;
    color:#fff;
    font-size:20px;
}

@media only screen and (max-width: 1200px)
{
	.hfSliderOverlay h3
	{
		font-size:28px;
	}
	.hfSliderOverlayButton a
	{
		padding:8px 24px;
		font-size:18px;
	}
}

@media only screen and (max-width: 1080px)
{
	.hfSliderOverlay h3
	{
		font-size:26px;
	}
	.hfSliderItem img.desktop
	{
		display:none;
	}
	.hfSliderItem img.mobile
	{
		display:block;
	}
}

@media only screen and (max-width: 640px)
{
	.hfSliderOverlay h3
	{
		font-size:24px;
	}
}

@media only screen and (max-width: 400px)
{
	.hfSliderOverlay h3
	{
		font-size:22px;
	}
}