﻿body {
    font-family: 'specter', sans-serif;
    font-weight: 300;
    font-size: 16pt;
    line-height: 24pt;
}

h1 {
    font-family: 'bilo', sans-serif;
    font-weight: 700;
    font-size: 100pt;
    line-height: 110px;
    color: var(--theme-blue);
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 8%;
}

p {
    color: var(--theme-black);
}

.bottom-note {
    font-weight: 500;
    padding-left: 10%;
}

.carousel-control-next, .carousel-control-prev {
    align-items: end !important;
    padding-bottom: 10px !important;
    width: 20% !important;
}

.carousel-control-next {
}

.carousel-control-prev {
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
    filter: none !important;
    height: 3.5rem !important;
    width: 3.5rem !important;
}

.carousel-control-prev-icon {
    background-image: url("/images/left-arrow.png") !important;
}

.carousel-control-next-icon {
    background-image: url("/images/right-arrow.png") !important;
}

.full-width {
    width: 100%;
}

.gallery-img {
    width: 100%;
}

.gallery-img-container {
    width: 100%;
    padding: 40px 50px!important;
}

.gallery-img-container p {
    padding-top: 20px;
}

.highlight {
    color: var(--theme-blue)!important;
}

.info-column {
    display: flex;
    flex-direction: column;
    width: 55%;
}

.info-row {
    display: flex;
    flex-direction: row;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.links-column {
    display: flex;
    flex-direction: column;
    width: 45%;
    text-align: end;
    font-size: 24pt;
    line-height: 34pt;
    font-weight: 500;
}

.links-column a {
    margin-bottom: 0px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--theme-black);
}

.links-column #menu-open {
    display: none;
}

.mobile {
    display: none;
}

#materials-container {
    margin-left: 7%;
    margin-right: 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1300px) {
    .gallery-img-container {
        padding-left: 40px!important;
        padding-right: 40px!important;
    }
}

@media (max-width: 1200px) {
    .bottom-note, .info-row {
        padding-left: 70px;
        padding-right: 70px;
    }

    #materials-container {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 1000px) {
    .gallery-img-container {
        padding-left: 50px!important;
        padding-right: 50px!important;
    }

    #materials-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {
    .gallery-img-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 60pt;
        line-height: 70px;
        margin-bottom: 50px;
    }

    p {
        font-size: 12pt;
        line-height: 18pt;
    }

    .highlight {
        color: var(--theme-pink) !important;
    }

    .info-column {
        width: 100%;
    }

    .info-row {
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .links-column {
        background-color: var(--theme-blue);
        width: 95vw;
        position: fixed;
        align-items: center;
        height: 300px;
        justify-content: space-evenly;
        z-index: 3;
        transition: .2s ease all;
        border-radius: 1.5rem 0rem 0rem 1.5rem;
        left: 5vw;
        top: 80px;
    }

    .links-column.down {
        left: 100vw;
        height: 100px;
    }

    .links-column.down p {
        display: block;
        width: 150px;
        text-align: center;
        color: white !important;
        transform-origin: bottom right;
        transform: rotate(270deg);
        font-size: 12pt;
        line-height: 34pt;
        padding: 8px 10px;
        text-decoration: underline;
        background-color: var(--theme-blue);
        border-radius: 1.5rem 1.5rem 0rem 0rem;
        cursor: pointer;
        text-transform: uppercase;
    }

    .links-column.down #menu-open {
        right: 0;
        position: fixed;
        display: inherit;
    }

    .links-column a {
        color: white;
        font-size: 18pt;
    }

    .mobile {
        display: flex;
    }

    .web {
        display: none;
    }
}

@media (max-width: 600px) {
    .bottom-note, .info-row {
        padding-left: 40px;
        padding-right: 40px;
    }

    #materials-container {
        grid-template-columns: repeat(1, 1fr);
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 380px) {
    h1 {
        margin-left: 10px;
    }
}