body {
    font-family: "Open Sans", sans-serif;
    color: #444;
}

a {
    text-decoration: none;
    color: #4f92af;
}

a:hover {
    color: #5eb8df;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Raleway", sans-serif;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #000;
    transition: all .6s ease-out;
    width: 100%;
    height: 100vh;
}

.preloader:before,
.preloader:after {
    content: "";
    position: absolute;
    border: 4px solid #FFF;
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, .2, .8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, .2, .8, 1) infinite;
}

.preloader:after {
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s;
}

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0
    }
}

#header {
    height: 80px;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

#header .contact-link a {
    color: #fff;
    padding-right: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .contact-link a:hover {
    text-decoration: underline;
}

@media (max-width:768px) {
    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0
    }
}

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/giphy.webp") top center;
    background-size: cover;
    position: relative;
    margin-top: -80px;
    z-index: 9
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero h2,
#hero h3 {
    color: #eee;
    margin-bottom: 30px;
    font-size: 24px;
}

#hero h3 {
    opacity: .7;
}

#hero img {
    width: 40%;
    height: 40%;
    animation: up-down 1s ease-in-out infinite alternate-reverse both;
    margin-bottom: 1.2rem;
}

#hero .countdown {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 56px;
    margin: 30px 0 60px 0;
}

@-webkit-keyframes up-down {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@keyframes up-down {
    0% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@media (min-width:1024px) {
    #hero {
        background-attachment: fixed
    }
}

@media (max-width:768px) {
    #hero {
        background: url("../img/giphy.gif") top center;
        background-size: cover
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px
    }

    #hero img {
        width: 70%;
        height: 20%
    }
}

@media (max-width:575px) {
    #hero .countdown {
        font-size: 32px;
        line-height: 38px
    }
}

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f7fafc;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.section-title p {
    margin-bottom: 0;
}