.lfTextslide {
  font-family: 'Roboto Slab', serif;
  font-weight: 300 !important;
  font-size: calc(38px + (98 - 38) * ((100vw - 320px) / (1600 - 320))) !important;
    text-align: center;
    line-height: normal;
    white-space: nowrap;
    color: #ffffff;
}

.lfButton {
  font-family: 'Roboto Slab', serif;
  font-weight: 300 !important;
  font-size: calc(26px + (48 - 26) * ((100vw - 320px) / (1600 - 320))) !important;
	background-color: hsla(315,63%,39%,1.0);
	padding: 0.2rem !important;
	color: #fff;
	line-height: 1.2 !important;
	border-radius: 0.2em;
	border: 2px solid #fff;
}

.lfButton:hover,
.lfButton2:hover {
	background-color: hsla(315,63%,39%,0.6);
	color: #fff;
	text-decoration: none;
}

.lfButton2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 300 !important;
  font-size: calc(26px + (48 - 26) * ((100vw - 320px) / (1600 - 320))) !important;
	background-color: hsla(315,63%,39%,1.0);
	padding: 0.5rem !important;
	color: #fff;
	line-height: 1.2 !important;
	border-radius: 0.2em;
	border: 2px solid #fff;
}


.lfLogo {
	min-width: 250px; 
	height: auto !important;
}





.animated-mouse .ms-wheel-icon {
    -webkit-animation: scroll-wheel 1.3s ease-out infinite forwards;
    -moz-animation: scroll-wheel 1.3s ease-out infinite forwards;
    animation: scroll-wheel 1.3s ease-out infinite forwards;
}

@-webkit-keyframes scroll-wheel {
    0% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: translateY(10px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 0;
    }
}

@-moz-keyframes scroll-wheel {
    0% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
    50% {
        -moz-transform: translateY(10px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateY(0);
        opacity: 0;
    }
}

@keyframes scroll-wheel {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 0;
    }
}