@font-face {
    font-family: 'OpenSans-Regular';
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OpenSans-Light';
    src: url('/fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Fjord-One';
    src: url('/fonts/FjordOne-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'SourceSans3-Regular';
    src: url('/fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SourceSans3-Regular-16';
    src: url('/fonts/SourceSans3-Regular.ttf') format('truetype');
    font-size: 40px;
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SourceSans3-Light';
    src: url('/fonts/SourceSans3-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: rgba(242, 241, 236, 1);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    width: 100vw;
}

.nav-bar-logo {
    width: 10px;
    height: auto;
}


.nav-bar-call-to-action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 45px 0 0;
}

.call-to-action-button{
    padding-left: 40px;
}

.nav-bar-call-to-action-button button,
.call-to-action-button button,
button[type="submit"]
{
    border-radius: 999px;
    box-shadow: #022340 0 10px 20px -10px;
    background-color: white;
    box-sizing: border-box;
    color: #022340;
    cursor: pointer;
    font-family: 'OpenSans-Light';
    font-size: 15px;
    text-shadow: 0.2px 0 #022340, 0 0.2px #022340, -0.2px 0 #022340, 0 -0.2px #022340;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 6px 18px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    border: solid #022340 2px;
}


button:hover { 
    background-color: #022340;
    color: white;
}

/* Popup form styling */
.form-popup {
    display: none; 
    position: fixed;
    z-index: 1000; /* Slightly lower than the popup-message */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.form-header-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 160px;
    height: auto;
    padding: 0 0 10px 0;
}

.form-container {
    font-family: 'SourceSans3-Regular';
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background-color: rgba(242, 241, 236, 1);
    margin: 5% auto;
    padding: 20px 40px;
    width: 35%;
    max-width: 90vw;
    max-height: calc(100vh + 200px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    border-radius: 25px;
    border: 1px solid rgba(211, 211, 211, 0.8);
}

input, textarea {
    font-family: 'SourceSans3-Regular';
    font-size: 16px;
}

textarea {
    height: 75px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 45px;
    cursor: pointer;
    color: #808080;
}

.close-btn:hover {
    color: black;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 5px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container button {
    width: 100%;
}

/* Popup flashmessage styling */
.popup-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1010;
    display: flex; 
    justify-content: center; 
    align-items: center;
}

/* Popup content box */
.popup-content {
    background-color: rgba(242, 241, 236, 1);
    padding: 20px 5px 5px 5px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
}

#popupMessageText {
    margin: 30px 5px 40px 5px;
    font-family: 'SourceSans3-Regular';
    padding: 0px 65px;

}

#closeMessagePopup {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 45px;
    cursor: pointer;
    color: #808080;q1
}

#closeMessagePopup:hover {
    color: black;
}
 



.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.text-and-img-container {
    font-family: 'Fjord-One';
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    padding-left: 50px;
}

.text-container {
    margin-top: 0px;
    position: relative;
    min-height: 150px;
    overflow: hidden;
    width: 100%;
    padding-top: 100px;
}

.first-img-container {
    position: relative;
    top: 50px;
}


.first-img-container img {
    width: 40vw;
    height: auto;
    
}

.static-text {
    font-family: 'SourceSans3-Regular';
    font-size: larger;
    color: #333333;
    padding-left: 40px;
    margin-top: 30px; 
    padding-bottom: 40px;
}

.animated-text {
    padding-left: 40px;
    color: #333333;
    position: relative; 
    top: 0; 
    font-size: 4vw;
    white-space: normal;
    display: block; 
    padding-bottom: 40px;
    height: 20vh;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: black;
    animation: cursor-blink 0.8s steps(2, start) infinite;
    vertical-align: bottom;
}


@keyframes cursor-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.bbe {
    margin: 0;
    padding: 20px 20px 20px 20px;
    font-family: 'SourceSans3-Regular';
    font-size: large;
}

.bbe p {
    margin: 0;
    padding: 0;
}

/* NEW SLIDER
NEW SLIDER
NEW SLIDER */
@keyframes scroll {
    to {
        left: -160px;
    }
}



.logos-slide{
    width: 99%;
    max-width: 100vw;
    margin-inline:auto;
    text-align: center;
    position: relative;
    height:50px;
    overflow:hidden;
    mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
    );
}

.item{
    position: absolute;
    left: max(calc(140px * 10), 100%);
    animation-name: scroll;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    filter: grayscale(100%);
}

.slider-image-1{
    animation-delay: calc(30s /  10 * (10 - 1) * -1);
    margin-left: -20px;
}

.slider-image-2{
    animation-delay: calc(30s /  10 * (10 - 2) * -1);
    margin-top:10px;   
}

.slider-image-3{
    animation-delay: calc(30s /  10 * (10 - 3) * -1);
    margin-left: -15px;
}

.slider-image-4{
    animation-delay: calc(30s /  10 * (10 - 4) * -1);
}

.slider-image-5{
    animation-delay: calc(30s /  10 * (10 - 5) * -1);
}

.slider-image-6{
    animation-delay: calc(30s /  10 * (10 - 6) * -1);
    margin-left: -25px;
}

.slider-image-7{
    animation-delay: calc(30s /  10 * (10 - 7) * -1);
    margin-left: -15px;
}

.slider-image-8{
    animation-delay: calc(30s /  10 * (10 - 8) * -1);
    margin-left: -60px;
}

.slider-image-9{
    animation-delay: calc(30s /  10 * (10 - 9) * -1);
    margin-left: 20px;
}

.slider-image-10{
    animation-delay: calc(30s /  10 * (10 - 10) * -1);
}

/* NEW SLIDER
NEW SLIDER
NEW SLIDER */

.footer-container-2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:100%;
    padding: 100px 0 0px 0;
    margin:0;
}

.footer-container-2-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:45vw;
    padding-left: 70px;
}

.footer-container-2-left-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 100px 0 0;
}

.footer-container-2-left img {
    width: 150px; 
    height: auto;
}

.footer-container-2-right {
    padding:0 45px 0 0;
    margin:0;
}

.footer-container-2-right p{
    font-family: 'SourceSans3-Regular';
    color: black;
    padding: 0 45px 0 0;
    margin:0;
}

.privacy-policy {
    padding:0;
    margin:0;
}

.privacy-policy a, .careers a, .trademark a, .pipe{ 
    font-family: 'SourceSans3-Regular';
    text-decoration: none;
    color: black; 
    padding: 0 5px 0 5px;
}

.footer-copyright-text{
    padding:0;
    margin:0;
}

@media (max-width: 1200px) {

    html, body{
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-bar-call-to-action-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
    .nav-bar-call-to-action-button button,
    .call-to-action-button button {
        border-radius: 999px;
        box-shadow: #022340 0 10px 20px -10px;
        box-sizing: border-box;
        color: #022340;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        opacity: 1;
        outline: 0 solid transparent;
        padding: 8px 18px;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        width: fit-content;
        word-break: break-word;
        border: solid #022340 2px;
    }

    .nav-bar-call-to-action-button,
    .call-to-action-button {
        padding: 0px;
    }

    .form-header-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        width: 140px;
        padding: 0 0 10px 0;
    }
    
    .form-container {
        padding: 20px 30px 20px 20px;
        width: 80%;
    }
    

    button:hover {
        background-color: unset;
        color: unset;
    }
    
    input{
        font-family: 'SourceSans3-Regular';
        height: 25px;
        font-size: 16px;
    }
    
    textarea {
        height: 75px;
        font-size: 16px;
    }

    .close-btn {
        position: absolute;
        top: 5px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: #808080;
    }

    .close-btn:hover {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: black;
    }

    #popupMessageText {
        font-size: 16px;
    }

    .text-container{
        margin-top: 0px;
        position: relative;
        min-height: 150px;
        overflow: hidden;
        width: 100%;
        padding-top: 0px;
    }

    .call-to-action-button{
        display: flex;
        align-content: center;
        justify-content: center;
    }

    .text-and-img-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding:10px;
        margin:10px;
    }

    .first-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .first-img-container img {
        width: 90vw;
        height: auto;
        padding-bottom: 0px;
    }
    
    /* .text-container {
        margin-top: 0px;
        padding-top: 0px;
        overflow: hidden;
        width: 100%;
    } */

    .static-text {
        font-size: larger;
        padding: 10% 5% 0 5%;
        margin-top: 0px;

    }

    .animated-text {
        top: 0; 
        font-size: 6vw;
        padding: 0 5% 0 5%;
        height: 15vh;
    }

    .bbe {
        margin: 0;
        padding: 20px;
        font-family: 'SourceSans3-Regular';
        font-size: larger;
 
    }

    .footer-container-2{
        width:100vw;
        padding: 0;
    }

    .footer-container-2-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width:65vw;
        padding: 0px 0px;
    
    }
    
    .footer-container-2-left-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0 0 5% 5%; 
    }
    
    .footer-container-2-left-links p {
        margin: 0; 
        padding: 0; 
    }

    .footer-container-2-left img {
        display: none;
    }
    
    .footer-container-2-right {  
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0% 2% 0; 
        margin:0;
        width: 35vw;
    }
    
    .footer-container-2-right p{
        font-family: 'SourceSans3-Regular';
        color: black;
        font-size: medium;
        padding:0;
        margin:0;
        padding: 0 0 5% 0; 
    }
        
    
    .privacy-policy a, .careers a, .trademark a, .pipe{ 
        display: flex;
        justify-content: center;
        font-family: 'SourceSans3-Regular';
        text-decoration: none;
        color: black; 
        padding: 0 5px 0 5px;
        font-size: 22px;
        white-space: normal;
    }
}

@media (max-width: 992px) {

    html, body{
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-bar{
        padding: 0 7% 0 2%;
    }

    .nav-bar-call-to-action-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
    .nav-bar-call-to-action-button button,
    .call-to-action-button button {
        border-radius: 999px;
        box-shadow: #022340 0 10px 20px -10px;
        box-sizing: border-box;
        color: #022340;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        opacity: 1;
        outline: 0 solid transparent;
        padding: 10px 20px;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        width: fit-content;
        word-break: break-word;
        border: solid #022340 2px;
    }


    .nav-bar-call-to-action-button,
    .call-to-action-button {
        padding: 0px;
    }

    
    button:hover {
        background-color: unset;
        color: unset;
    }

    .form-header-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        width: 120px;
        padding: 0 0 10px 0;
    }

    input{
        font-family: 'SourceSans3-Regular';
        height: 25px;
        font-size: 16px;
    }
    
    .form-container {
        padding: 20px 30px 20px 20px;
        width: 80%;
        max-height: calc(100vh + 400px);

    }

    textarea {
        height: 75px;
        font-size: 16px;
    }

    .close-btn {
        position: absolute;
        top: 5px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: #808080;
    }
    
    .close-btn:hover {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: black;
    }

    #popupMessageText {
        font-size: 16px;
    }

    .text-container{
        margin-top: 0px;
        position: relative;
        min-height: 150px;
        overflow: hidden;
        width: 100%;
        padding-top: 100px;
    }

    .call-to-action-button{
        display: flex;
        align-content: center;
        justify-content: center;
    }

    .text-and-img-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding:10px;
        margin:10px;
    }

    .first-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .first-img-container img {
        width: 90vw;
        height: auto;
        padding-bottom: 0px;
    }
    
    .text-container {
        margin-top: 0px;
        padding-top: 0px;
        overflow: hidden;
        width: 100%;
    }

    .static-text {
        font-size: larger;
        padding: 15% 5% 0 5%;
        margin-top: 0px;

    }

    .animated-text {
        top: 0; 
        font-size: 6vw;
        padding: 10% 5% 0 5%;
        height: 20vh;
    }

    .bbe {
        margin: 0;
        padding: 20px;
        font-family: 'SourceSans3-Regular';
        font-size: larger;
    }

    .footer-container-2{
        width:100vw;
        padding: 0;
    }

    .footer-container-2-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width:65vw;
        padding: 0px 0px;
    
    }
    
    .footer-container-2-left-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0 0 5% 5%; 
    }
    
    .footer-container-2-left-links p {
        margin: 0; 
        padding: 0; 
    }

    .footer-container-2-left img {
        display: none;
    }
    
    .footer-container-2-right {  
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0% 2% 0; 
        margin:0;
        width: 35vw;
    }
    
    .footer-container-2-right p{
        font-family: 'SourceSans3-Regular';
        color: black;
        font-size: medium;
        padding:0;
        margin:0;
        padding: 0 0 5% 0; 
    }
        
    
    .privacy-policy a, .careers a, .trademark a, .pipe{ 
        display: flex;
        justify-content: center;
        font-family: 'SourceSans3-Regular';
        text-decoration: none;
        color: black; 
        padding: 0 5px 0 5px;
        font-size: 18px;
        white-space: normal;
    }
}

@media (max-width: 768px) {

    html, body{
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-bar{
        padding: 0 7% 0 5%;
    }

    .nav-bar-call-to-action-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
    .nav-bar-call-to-action-button button,
    .call-to-action-button button,
    button[type="submit"] {
        border-radius: 999px;
        box-shadow: #022340 0 10px 20px -10px;
        box-sizing: border-box;
        color: #022340;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        opacity: 1;
        outline: 0 solid transparent;
        padding: 8px 18px;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        width: fit-content;
        word-break: break-word;
        border: solid #022340 2px;
    }

    .nav-bar-call-to-action-button,
    .call-to-action-button {
        padding: 0px;
    }

    
    /* Popup form styling */
    /* Popup form styling */
    /* Popup form styling */

    .form-header-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        width: 100px;
        padding: 0 0 10px 0;
    }

    .form-container {
        padding: 20px 30px 20px 20px;
        width: 50%;
        max-width:65%;
    }

    .form-container button {
        width: 100%;
    }

    input {
        font-family: 'SourceSans3-Regular';
        height: 25px;
        font-size: 16px;
    }
    
    textarea {
        height: 75px;
        font-size: 16px;
    }

    .close-btn {
        position: absolute;
        top: 0px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: #808080;
    }
    
    .close-btn:hover {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: black;
    }
    
    
    /* Popup form styling */
    /* Popup form styling */
    /* Popup form styling */

    #popupMessageText {
        font-size: 16px;
    }

    .text-container{
        margin-top: 0px;
        position: relative;
        min-height: 150px;
        overflow: hidden;
        width: 100%;
        padding-top: 100px;
    }

    .call-to-action-button{
        display: flex;
        align-content: center;
        justify-content: center;
    }

    .text-and-img-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding:10px;
        margin:10px;
    }

    .first-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .first-img-container img {
        width: 90vw;
        height: auto;
        padding-bottom: 0px;
    }
    
    .text-container {
        margin-top: 0px;
        padding-top: 0px;
        overflow: hidden;
        width: 100%;
    }

    .static-text {
        font-size: larger;
        padding: 10% 5% 0 5%;
        margin-top: 0px;

    }

    .animated-text {
        top: 0; 
        font-size: 8vw;
        padding: 10% 5% 0 5%;
        height: 20vh;
    }

    .bbe {
        margin: 0;
        padding: 20px;
        font-family: 'SourceSans3-Regular';
        font-size: larger;
    }

    .footer-container-2{
        width:100vw;
        padding: 0;
    }

    .footer-container-2-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width:65vw;
        padding: 0px 0px;
    
    }
    
    .footer-container-2-left-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0 0 5% 5%; 
    }
    
    .footer-container-2-left-links p {
        margin: 0; 
        padding: 0; 
    }

    .footer-container-2-left img {
        display: none;
    }
    
    .footer-container-2-right {  
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0% 2% 0; 
        margin:0;
        width: 35vw;
    }
    
    .footer-container-2-right p{
        font-family: 'SourceSans3-Regular';
        color: black;
        font-size: small;
        padding:0;
        margin:0;
        padding: 0 0 5% 0; 
    }
        
    
    .privacy-policy a, .careers a, .trademark a, .pipe{ 
        display: flex;
        justify-content: center;
        font-family: 'SourceSans3-Regular';
        text-decoration: none;
        color: black; 
        padding: 0 5px 0 5px;
        font-size: 14px;
        white-space: normal;
    }
}

@media (max-width: 576px) {

    html, body{
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-bar{
        padding: 0 7% 0 0;
    }

    .nav-bar-call-to-action-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
    .nav-bar-call-to-action-button button,
    .call-to-action-button button,
    #popupForm .form-container form .form-button[type="submit"]
    {
        font-size: 14px;
        font-weight: 700;
        padding: 8px 18px;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
    }
    
    

    .nav-bar-call-to-action-button,
    .call-to-action-button{
        padding: 0px;
        user-select: none;
        -webkit-user-select: none;
    }

    button:hover {
        background-color: unset;
        color: unset;
    }
    


    /* Popup form styling */
    /* Popup form styling */
    /* Popup form styling */

    .form-container{
        margin: 15% auto;
    }
    
    .form-header-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        width: 100px;
        padding: 0 0 10px 0;
    }

    .form-container {
        padding: 20px 30px 20px 20px;
        width: 80%;
    }

    .form-container button {
        width: 100%;
    }

    input{
        font-family: 'SourceSans3-Regular';
        height: 25px;
        font-size: 16px;
    }
    
    textarea {
        height: 75px;
        font-size: 16px;
    }

    .close-btn {
        position: absolute;
        top: 0px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: #808080;
    }
    
    .close-btn:hover {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: black;
    }

    #popupMessageText {
        font-size: 15px;
        padding: 0px 75px;
    }
    
    
    .text-container{
        margin-top: 0px;
        position: relative;
        min-height: 150px;
        overflow: hidden;
        width: 100%;
        padding-top: 100px;
    }

    .call-to-action-button{
        display: flex;
        align-content: center;
        justify-content: center;
    }


    .text-and-img-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding:10px;
        margin:10px;
    }

    .first-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .first-img-container img {
        width: 90vw;
        height: auto;
        padding-bottom: 0px;
    }
    
    .text-container {
        margin-top: 0px;
        padding-top: 0px;
        overflow: hidden;
        width: 100%;
    }


    .static-text {
        font-size: large;
        padding: 7% 5% 0 5%;
        margin-top: 35px;
    }

    .animated-text {
        top: -30px; 
        font-size: 11vw;
        padding: 0 5% 0 5%;
        height: 20vh;
        margin-bottom:0;
        font-weight: 500;
    }

    .bbe {
        margin: 0;
        padding: 20px;
        font-family: 'SourceSans3-Regular';
        font-size: large;
    }

    .footer-container-2{
        width:100vw;
        padding: 0;
    }

    .footer-container-2-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width:65vw;
        padding: 0;
    }
    
    .footer-container-2-left-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0; 
        padding: 0 0 5% 5%; 

    }

    .footer-container-2-left-links p {
        margin: 0; 
        padding: 0; 
    }
    
    .footer-container-2-left img {
        display: none;
    }
    
    .footer-container-2-right {  
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0% 2% 0; 
        margin:0;
        width: 35vw;
    }
    
    .footer-container-2-right p{
        font-family: 'SourceSans3-Regular';
        color: black;
        font-size: xx-small;
        padding:0;
        margin:0;
        padding: 0 0 5% 0; 

    }
        
    
    .privacy-policy a, .careers a, .trademark a, .pipe{ 
        display: flex;
        justify-content: center;
        font-family: 'SourceSans3-Regular';
        text-decoration: none;
        color: black; 
        padding: 0 5px 0 5px;
        font-size: 10px;
        white-space: normal;
    }

}


@media (max-width: 320px) {

    html, body{
        margin: 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-bar{
        padding: 0 7% 0 0;
    }

    .nav-bar-call-to-action-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
    .nav-bar-call-to-action-button button,
    .call-to-action-button button,
    button[type="submit"] {
        font-size: 10px;
        padding: 0.5px 10px;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
    }
    

    .nav-bar-call-to-action-button,
    .call-to-action-button,
    button[type="submit"] {
        padding: 0px;
        user-select: none;
        -webkit-user-select: none;
    }

    button:hover {
        background-color: unset;
        color: unset;
    }

    /* Popup form styling */
    /* Popup form styling */
    /* Popup form styling */

    .form-header-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        width: 100px;
        padding: 0 0 10px 0;
    }

    .form-container {
        padding: 20px 30px 20px 20px;
        width: 80%;
    }

    .form-container button {
        width: 100%;
        font-size: 16px;
    }

    input{
        font-family: 'SourceSans3-Regular';
        height: 25px;
        font-size: 16px;
    }
    
    textarea {
        height: 75px;
        font-size: 16px;
    }

    .close-btn {
        position: absolute;
        top: 0px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: #808080;
    }
    
    .close-btn:hover {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: black;
    }
    
    
    
    /* Popup form styling */
    /* Popup form styling */
    /* Popup form styling */




    .text-container{
        margin-top: 0px;
        position: relative;
        min-height: 150px;
        overflow: hidden;
        width: 100%;
        padding-top: 100px;
    }

    .call-to-action-button{
        display: flex;
        align-content: center;
        justify-content: center;
    }


    .text-and-img-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding:10px;
        margin:10px;
    }

    .first-img-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .first-img-container img {
        width: 90vw;
        height: auto;
        padding-bottom: 0px;
    }
    
    .text-container {
        margin-top: 0px;
        padding-top: 0px;
        overflow: hidden;
        width: 100%;
    }

    .static-text {
        font-size: small;
        padding: 0 5% 0 5%;
        margin-top: 0px;
    }

    .animated-text {
        top: -10px; 
        font-size: 9.1vw;
        padding: 7% 5% 0 5%;
        height: 18vh;
    }

    .bbe {
        margin: 0;
        padding: 20px;
        font-family: 'SourceSans3-Regular';
        font-size: large;
    }

    .footer-container-2{
        width:100vw;
        padding: 0;
    }

    .footer-container-2-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width:65vw;
        padding: 0;
    }
    
    .footer-container-2-left-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0; 
        padding: 0 0 5% 5%; 

    }

    .footer-container-2-left-links p {
        margin: 0; 
        padding: 0; 
    }
    
    .footer-container-2-left img {
        display: none;
    }
    
    .footer-container-2-right {  
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0% 2% 0; 
        margin:0;
        width: 35vw;
    }
    
    .footer-container-2-right p{
        font-family: 'SourceSans3-Regular';
        color: black;
        font-size: xx-small;
        padding:0;
        margin:0;
        padding: 0 0 5% 0; 

    }
        
    
    .privacy-policy a, .careers a, .trademark a, .pipe{ 
        display: flex;
        justify-content: center;
        font-family: 'SourceSans3-Regular';
        text-decoration: none;
        color: black; 
        padding: 0 5px 0 5px;
        font-size: 8px;
        white-space: normal;
    }

}