/* Fonts */
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/quicksand-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* BASE */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    margin: 0; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
div {
    display: block;
}
a {
    color: #096c9f;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

/* preloader */
.loader-mask,
.loader-mask__wrapper {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    z-index: 99999;
}
.loader-mask {
    height: 100%;
}
.loader-mask__wrapper {
    height: 0;
    overflow: hidden;
}
.loader-mask__wrapper {
    bottom: 0;
    top: auto;
    transition-duration: 1s;
    transition-property: height;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.42,0,.58,1);
    transition-timing-function: cubic-bezier(.49,.46,.05,.995);
    height: 100%;
}
.loader-mask.active .loader-mask__wrapper {
    bottom: 0;
    top: auto;
    transition-duration: 1s;
    transition-property: height;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.42,0,.58,1);
    transition-timing-function: cubic-bezier(.49,.46,.05,.995);
    height: 100%;
}
.loader-mask.leaving, 
.loader-mask.leaving .loader-mask__wrapper {
    top: 0;
    bottom: auto;
    transition-duration: 1s;
    transition-property: height;
    transition-delay: .1s;
    transition-timing-function: cubic-bezier(.42,0,.58,1);
    transition-timing-function: cubic-bezier(.49,.46,.05,.995);
    height: 0%;
}
.loader-mask__container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
}
.loader-mask__logo {
    transform: translate3d(0,75px,0);
    opacity: 0;
    margin-bottom: 1rem;
}

.loader-mask.active .loader-mask__logo {
    transition-duration: 1s;
    transition-property: transform,opacity;
    transition-delay: .6s;
    transition-timing-function: cubic-bezier(.42,0,.58,1);
    transition-timing-function: cubic-bezier(.49,.46,.05,.995);
    transform: translate3d(0,0,0);
    opacity: 1;
}
.loader-mask.leaving .loader-mask__logo {
    transition-duration: 1s;
    transition-property: transform,opacity;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.42,0,.58,1);
    transition-timing-function: cubic-bezier(.49,.46,.05,.995);
    transform: translate3d(0,-75px,0);
    opacity: 0;
}
 
.loader-mask__line {
    position: relative;
    height: 4px;
    width: 100%;
    max-width: 800px;
    display: block;
    overflow: hidden;
    opacity: 0;
    padding-right: 1000px;
    margin-right: -1000px;
}
.loader-mask.active .loader-mask__line {
    transition-duration: 0s;
    transition-property: opacity;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.42,0,.58,1);
    opacity: 1;
}

.loader-mask__line:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2b2e45;
    transform: translate3d(-100%,0,0);
}
.loader-mask.active .loader-mask__line:after { 
    animation: preloader 2s infinite cubic-bezier(.72,.38,0,.99);
    animation-delay: 1.25s;
}

/* transition */
@keyframes preloader {
    0% {
        transform: translate3d(-100%, 0, 0)
    }
    50% {
        transform: translate3d(0, 0, 0)
    }
    100% {
        transform: translate3d(100%, 0, 0)
    }
}

/* site landing */
.site-landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* backgrounds */
.bg-skyblue {
    background-color: #dae9f1;
}

/* button */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .325rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .375rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
@media (min-width: 992px) {
    .btn {
        font-size: 1.5rem;
        padding: .5rem 1.5rem;
    }
}
.btn-primary {
    color: #fff;
    background-color: #096c9f;
    border-color: #096c9f;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #08618f;
    border-color: #08618f;
}
.btn-secondary {
    color: #fff;
    background-color: #f94c62;
    border-color: #f94c62;
}
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #f72c46;
    border-color: #f72c46;
}
.btn-tertiary {
    color: #fff;
    background-color: #04afa1;
    border-color: #04afa1;
}
.btn-tertiary:hover,
.btn-tertiary:focus {
    background-color: #039d90;
    border-color: #039d90;
}

/* box shadow */
.shadow {
    box-shadow: 2px 2px 4px rgba(0,0,0,.25);
}

/* text align */
.text-right {
    text-align: right;
}
@media (min-width: 992px) {
    .text-lg-right {
        text-align: right!important;
    }
}
.text-center {
    text-align: center;
}

/* images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* height */
.h-50 {
    height: 50%!important;
}
.h-100 {
    height: 100%!important;
}

/* spacing */
.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}
.mt-3, .my-3 {
    margin-bottom: 1rem!important;
}
.mb-5, .my-5 {
    margin-bottom: 3rem!important;
}
.mt-5, .my-5 {
    margin-top: 3rem!important;
}
.p-5 {
    padding: 5% 10%!important;
}
@media (min-width: 992px) {
    .mb-lg-5, .my-lg-5 {
        margin-bottom: 3rem!important;
    }
    .mt-lg-5, .my-lg-5 {
        margin-top: 3rem!important;
    }
}

/* grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col, 
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}


/* flex */
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.flex-fill {
    flex: 1 1 auto !important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.align-items-stretch {
    -ms-flex-align: stretch!important;
    align-items: stretch!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}