@font-face {
    font-family: QuicksandRegular;
    src: url('../fonts/Quicksand-Regular.ttf');
}

@font-face {
    font-family: QuicksandBookOblique;
    src: url('../fonts/Quicksand_Book_Oblique.otf');
}

body {
    font-family: QuicksandRegular;
}

.color-black {
    color: #000000;
}

.color-white {
    color: #FFFFFF;
}

.color-grey {
    color: #808080;
}

.color-cyan {
    color: #71C8B7;
}

.page {
    padding-top: 50px;
    padding-bottom: 50px;
}

.page-title {
    padding-top: 20px;
    padding-left: 20px;
    font-size: 30px;
    line-height: 35px;
}

h1.page-title,
h2.page-title {
    margin: 0;
    font-weight: normal;
}

.home-h1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 42%;
    z-index: 2;
    margin: 0;
    padding: 0 1.5rem;
    text-align: center;
    color: #ffffff;
    font-family: QuicksandRegular, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    line-height: 1.3;
    font-weight: normal;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.section-h1 {
    margin: 0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: QuicksandRegular, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.35;
    font-weight: normal;
}

.section-h1.color-on-dark {
    color: #71C8B7;
}

.section-h1.color-on-light {
    color: #000000;
}

.menu-border {
    border-right: 1px solid #71C8B7;
}

#banner .scroll-down {
    position: absolute;
    bottom: 90px;
    z-index: 1;
    left: 50%;   
}

.down-arrow:hover {
    opacity: .5;
}

.down-arrow span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb07 2s infinite;
    animation: sdb07 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

.down-arrow span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.down-arrow span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}
.down-arrow span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}