@font-face {
    font-family: HortonFont;
    src: url('../fonts/25381880192.ttf');
}

body, html {
    font-family: HortonFont;
    overflow-x: hidden !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    /*font-family: 'Montserrat', sans-serif;*/
}

button {
    transition: all 0.4s;
    border: none;
}

button:focus {
    outline: none;
    border: none;
}
a, a:hover{
    text-decoration: none;
}
img{
    width: 100%;
}

/*Landing Banner*/
.landing-banner{
    background-image: linear-gradient(rgba(36, 38, 84,0.8), rgba(36, 38, 84,0.8)), url('../img/family-in-field.jpg');
    background-size: cover;
    background-position: left;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #acc79a;
    text-align: center;
    text-transform: uppercase;
}
.landing-logo{
    max-width: 400px;
}
.large-text{
    font-size: 40px;
}
.medium-text {
    font-size: 30px;
}

@media screen and (max-width:991px){
    .landing-banner{
        background-image: linear-gradient(rgba(36, 38, 84,0.8), rgba(36, 38, 84,0.8)), url('../img/family-in-field-m.jpg');
        background-position: center;
    }
    .large-text{
        font-size: 26px;
    }
    .medium-text {
        font-size: 22px;
    }
}
/*Landing Banner End*/


/* Preloader */
.preloaderBg {
    position: fixed;
    z-index: 10000;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-wrap{
    position: relative;
    width: 250px;
    height: 250px;
}

.preloader-logo {
    margin: auto;
    background: url(../img/logo.png) no-repeat center;
    background-size: 150px;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
}


.preloader-circle {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #acc79a;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



