﻿/* Need to make this local */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

@font-face {
    font-family: Staatliches;
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url("/fonts/Staatliches/staatliches-regular-webfont.woff") format("woff");
}

/*Wave at the top of the footer */
.footer {
    position: relative;
    /*margin-top: 43px;*/
}

    .footer:before {
        content: '';
        position: absolute;
        top: -156px;
        width: 100%;
        height: 10rem;
        left: 0px;
        background-image: url(/img/footer-wave.png) !important;
        background-position: top center !important;
        background-size: cover;
    }

/*Form */
.suppliers {
    display: none;
}

.manufacturing {
    display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


/*Form validation colors */
.input-validation-error {
    border: 1px solid #d10515 !important;
}

    .input-validation-error:focus {
        border: 1px solid #d10515;
    }

.validation-summary-valid {
    display: none;
}

ul.choices {
    list-style-type: none;
    display: block;
    width: 100px;
    cursor: pointer;
}

    ul.choices li {
        position: relative;
        border: solid 1px #737373;
        border-radius: 10px;
        padding: 5px 10px;
        margin-bottom: 5px;
        width: 200px;
    }

        ul.choices li:hover {
            background-color: #e5e5e2;
        }

.selected {
    background-color: #e5e5e2;
}

    .selected::after {
        position: absolute;
        top: 8px;
        right: 10px;
        display: inline-block;
        content: ' ';
        background-image: url('../img/icons/check.svg');
        background-size: 18px 18px;
        height: 18px;
        width: 18px;
    }

/*  Horizontal scroll */
.vertical-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main.horizontal {
    overflow-x: hidden;
    display: flex;
    position: sticky;
    top: 0;
}


section.timeline {
    min-width: 70%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section:nth-child(even) {
}

/*Swiper js navigation override */
.swiper-button-next {
    position: absolute;
    display: flex;
    height: 80px;
    width: 80px;
    top: 408px;
    right: 10px;
    bottom: 0;
    border-radius: 9999px;
    color: #a60411;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #e5e5e2;
    text-align: center;
}

.swiper-button-prev {
    position: absolute;
    display: flex;
    height: 80px;
    width: 80px;
    top: 408px;
    right: 10px;
    bottom: 0;
    border-radius: 9999px;
    color: #a60411;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #e5e5e2;
    text-align: center;
}

.swiper-container-career .swiper-button-next, .swiper-container-career .swiper-button-prev {
    top: 580px;
}

.swiper-container-manu .swiper-button-next, .swiper-container-manu .swiper-button-prev {
    top: 590px;
}

.swiper-container-research .swiper-button-next, .swiper-container-research .swiper-button-prev {
    top: 955px;
}

/*Our Values nav */
.is-active .nav-icon {
    background-color: #D10515;
}

.is-active .nav-label {
    color: white;
}

#sideNav {
    left: -2rem;
    opacity: 0;
}

    #sideNav.is-visible {
        left: 1rem !important;
        opacity: 1 !important;
    }

/* Multiple background images */
.multiple-bg {
    background-image: url(/img/CTA-Blob.svg), url('/img/blobs/BackgroundBlob.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: 25% 100%, right 70%;
}

@media (min-width: 768px) {
    .multiple-bg {
        background-position: 15% 104%, right 70%;
    }
}

@media (min-width: 1024px) {
    .multiple-bg {
        background-position: 15% 111%, right 70%;
        background-size: auto, auto;
    }
}

@media (min-width: 1280px) {
    .multiple-bg {
        background-position: 15% 107%, right 70%;
        background-size: contain, contain;
    }
}

/* Multiple background images */
.manufacturing-multiple-bg {
    background-image: url(/img/CTA-Blob.svg), url('/img/manufacturing/manu-1-blob.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: 25% 100%, right top;
    background-size: auto, auto;
}

@media (min-width: 768px) {
    .manufacturing-multiple-bg {
        background-position: 15% 110%, right top;
    }
}

@media (min-width: 1024px) {
    .manufacturing-multiple-bg {
        background-position: 15% 118%, right top;
      
    }
}

@media (min-width: 1280px) {
    .manufacturing-multiple-bg {
        background-position: 15% 110%, right top;
        background-size: contain, auto;
    }
}
