@font-face {
    font-family: quicksand;
    src: url('./quicksand-font/Quicksand-VariableFont_wght.ttf');
}

body {
    background-color: #000;
    overflow-x: hidden;
    font-family: quicksand;
}

.row {
    margin-right: 0;
}

.bg-blue {
    background-color: #2C3393;
}

.bg-red-1 {
    background-color: #EC1B23;
}

.bg-red-2 {
    background-color: #FBD0D2;
}

.bg-red-3 {
    background-color: #F46A70;
}

.bg-white {
    background-color: #FFF;
}

.bg-black {
    background-color: #000;
}

.font-blue {
    color: #2C3393 !important;
}

.font-red-1 {
    color: #EC1B23 !important;
}

.font-red-2 {
    color: #FBD0D2 !important;
}

.font-red-3 {
    color: #F46A70 !important;
}

.font-white {
    color: #FFF !important;
}

.font-black {
    color: #000 !important;
}

.headline {
    width: 100%;
    position: relative;
    color: #FFF;
}

.headline-container {
    padding: 50px;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.headline-text {
    font-size: 60px;
}

.divider-black {
    border-top: 1.5px solid rgba(0, 0, 0, 0.15);
    width: 70%;
    margin: 0 15%;
}

.divider-white {
    border-top: 1.5px solid rgba(255, 255, 255, 0.15);
    width: 70%;
    margin: 0 15%;
}

.divider-blue {
    border-top: 1.5px solid rgba(44, 51, 147, 0.15);
    width: 70%;
    margin: 0 15%;
}

.line-blue {
    border-top: solid 2px #2C3393;
    padding-bottom: 10px;
}

.line-red {
    border-top: solid 2px #EC1B23;
    padding-bottom: 10px;
}

.banner {
    text-align: center;
    padding: 20px 50px;
}

.banner.left {
    text-align: left;
    left: 0;
}

.tagline {
    padding: 50px 25px;
    font-style: italic;
    letter-spacing: 0.75px;
}

.caption {
    font-size: 24px;
    letter-spacing: 0.25px;
    padding: 20px 0;
    text-align: center;
}

/* NAVBAR */

.navbar {
    padding: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.header {
    font-size: 14px;
    padding: 20px;
    margin: 0 auto;
}

.header ul {
    list-style: none;
    margin-bottom: 0;
    display: inline-block;
    padding: 0;
}

.header li {
    display: inline-block;
}

.header li:not(:last-child) {
    border-right: solid 1px rgba(255, 255, 255, .3);
}

.header li:first-child {
    border: none;
}

.header-link {
    color: #f5f5f7;
    padding: 0 8px;
    text-decoration: none;
}

.header-link:hover {
    color: #4854fa;
}

.header-link.active {
    color: #EC1B23;
    font-weight: 600;
}

.header-link img {
    width: 30px;
}

.header-icon {
    color: #f5f5f7;
    display: none;
}

.header-icon i {
    font-size: 16px;
}

/* FOOTER */

.footer {
    color: #f5f5f7;
    background-image: url('../images/main-bg.jpg');
    background-size: cover;
    width: 100%;
    padding: 20px;
    position: relative;
    text-align: center;
    font-size: 12px;
}

/* CONTENT */

.content {
    width: 100%;
}

.content-container {
    width: 60%;
    margin: 0 auto;
    background-color: #FFF;
}

.section {
    width: 100%;
    position: relative;
    color: #FFF;
    padding: 50px 100px;
}

.section-container {
    width: 100%;
    height: 100%;
}

/* PHOTO SLIDER */

.gallery-cell {
    width: 30%;
    height: 250px;
    margin-right: 10px;
    overflow: hidden;
}

.gallery-cell img {
    width: 100%;
    height: 100%;
}

.gallery-cell picture {
    width: 100%;
    height: 100%;
}

.flickity-page-dots .dot {
    background: #FFF;
}

.carousel {
    height: 100%;
}

.carousel-cell {
    height: 100%
}

.flickity-page-dots {
    bottom: 25px;
}

/* Team Photo */
.full-team,
.one-by-one {
    display: none;
}

/* Default: show Hello on small screens */
@media (max-width: 1199.98px) {
    .one-by-one {
        display: inline;
    }
}

/* Show Hi on xl (≥1200px) screens */
@media (min-width: 1200px) {
    .full-team {
        display: inline;
    }
}