@font-face {
    font-family: 'Calibri';
    src: local('Calibri Light'), local('Calibri-Light'),
        url('../../fonts/Calibri-Light.woff2') format('woff2'),
        url('../../fonts/Calibri-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Calibri';
    src: local('Calibri Bold'), local('Calibri-Bold'),
        url('../../fonts/Calibri-Bold.woff2') format('woff2'),
        url('../../fonts/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
html {
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0000;
}
body {
    display: flex;
    height:100vh;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #0000;
    align-items: center;
}
#background-1, #background-2 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
}
#background-1 {
    background-image: url('../../img/background-1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
}
#background-2 {
    background-image: url('../../img/background-2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    animation: changebg-2 20s infinite ease;
    opacity: 0;
}
html {
    height:100%;
    background-color: #ffff;

}
#page {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
body, body p{
    font-family: 'Calibri';
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2em;
    color:#333;
}
strong {
    font-family: 'Calibri';
    font-weight: bold;
}
a, a:visited, a:hover, a:active {
	color: #fff;
	text-decoration: none;
	padding: 10px 12px;
	background: #319f49;
}
#content {
    width: 100%;
}

.logo {
	align-items: center;
	justify-content: center;
	display: flex;
}
.header {
    width: 100%;
}
.header .row {
    align-items: center;
    background-color: #fff;
    padding: 30px 30px 40px;
}
.header p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 20px;
}
.header h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.header a {
    margin-bottom: 30px;
}
.header .col-12 {
    align-items: center;
}
.header .row img {
    display: block;
    margin: 0 auto;
}
@keyframes changebg-2 {
    0% {
      opacity: 0;
    }
    33% {
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    98% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@media screen and (max-width:980px) {
    body {
        display: block;
        background-image: url('../../img/background-1.webp');
        height: auto;
        background-attachment: fixed;
}
    #background-1, #background-2 {
        opacity: 0;
        animation: none;
    }
}
@media screen and (max-width:767px) {
    .logo {
        margin-bottom: 40px !important;
    }
}