:root {
    /*nok9 red*/
    --nok9-red: #ea0000;
    /*light gray*/
    --light-gray: #f8f8f8;
    /*medium gray*/
    --medium-gray: #ededed;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 25px;
}

    * h1, * h2, * h3, * h4, * h5, * h6 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

.red-box-text {
    padding: 2px 5px;
    border-radius: 30px;
    background: var(--nok9-red);
    color: white;
}

.red-circle {
    width: 16px;
    height: 16px;
    background-color: var(--nok9-red);
    border-radius: 8px;
}

.red-circle-around {
    background-color: var(--nok9-red);
    text-align: center;
    display: flex;
    width: 20px !important;
    height: 20px !important;
    border-radius: 100%;
    font-size: 12px;
    margin-right: 5px;
}

    .red-circle-around p {
        margin: auto;
    }

.data-sheet-text {
    width: 200px;
    font-size: 12px;
    margin: 5px 10px;
    padding: 0 10px !important;
}

.cart-container {
    /*    display: none;
    position: sticky;
    top: auto;
    bottom: auto;*/
    /*    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);*/
    /*    display: none;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(2px);
    position: fixed;
    z-index: 10000;*/
    display: none;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    position: fixed;
    transform: translate(-50%, -50%);
    z-index: 100000;
    background-color: transparent;
    max-width: 700px;
    width: 100%;
}

.cart {
    display: block;
    margin: auto;
    max-width: 700px;
    padding: 10px;
    max-height: 100vh;
    overflow-y: auto;
    min-height: 300px;
    width: 100%;
    /*    border-radius: 9999px;
    padding: 50px;
    background-color: white;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
    /*    position: relative;
    display: inline-block;*/
}

.cart-product-area {
    max-height: 40vh;
    overflow-y: auto;
}

    .cart-product-area::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    .cart-product-area::-webkit-scrollbar {
        width: 12px;
        background-color: #F5F5F5;
    }

    .cart-product-area::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #555;
    }

.quantity {
    position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.quantity input {
    width: 45px;
    height: 42px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    border: 1px solid #eee;
}

    .quantity input:focus {
        outline: 0;
    }

.quantity-nav {
    float: left;
    position: relative;
    height: 42px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border-left: 1px solid #eee;
    width: 20px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "Trebuchet MS", Helvetica, sans-serif !important;
    line-height: 1.7;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        top: 0;
        border-bottom: 1px solid #eee;
    }

    .quantity-button.quantity-down {
        position: absolute;
        bottom: -1px;
        height: 50%;
    }

.fo-checkbox, .tpr-checkbox, .tpt-checkbox {
    cursor: pointer;
}

.arrow-right {
    margin-left: 10px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ea0000;
    display: inline-block;
    margin-left: 10px;
}

.save-cart-btn {
    width: max(calc(100% - 60px), 180px);
    padding: 10px 1px;
    background-color: var(--nok9-red);
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    margin: 15px auto;
    text-align: center;
    display: block;
    color: white;
}

.go-to-cart-btn {
    width: max(calc(100% - 100px), 160px);
    padding: 10px 1px;
    background-color: var(--medium-gray);
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    margin: 15px auto;
    text-align: center;
    display: block;
    color: black;
}

.container-sm {
    max-width: 500px;
    margin: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}

.container-lg {
    max-width: 1800px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 10px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.background {
    background-color: #ededed;
}

a {
    text-decoration: none;
}

.red-line {
    color: #ea0000;
    margin-bottom: 10px;
}

/*GRIDS*/
.grid, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
    display: -ms-grid;
    display: grid;
}

.grid-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    -ms-grid-columns: repeat 5, 1fr;
    grid-template-columns: repeat 5, 1fr;
}

.grid-6 {
    -ms-grid-columns: repeat 6, 1fr;
    grid-template-columns: repeat 6, 1fr;
}

.grid-7 {
    -ms-grid-columns: repeat 7, 1fr;
    grid-template-columns: repeat 7, 1fr;
}

.grid-8 {
    -ms-grid-columns: repeat 8, 1fr;
    grid-template-columns: repeat 8, 1fr;
}

.grid-9 {
    -ms-grid-columns: repeat 9, 1fr;
    grid-template-columns: repeat 9, 1fr;
}

/*MARGINS*/
.my-1 {
    margin: 1rem 0;
}

.my-2 {
    margin: 1.5rem 0;
}

.my-3 {
    margin: 2rem 0;
}

.my-4 {
    margin: 3rem 0;
}

.my-5 {
    margin: 4rem 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 1.5rem;
}

.m-3 {
    margin: 2rem;
}

.m-4 {
    margin: 3rem;
}

.m-5 {
    margin: 4rem;
}

/*PADDING*/
.py-1 {
    padding: 1rem 0;
}

.py-2 {
    padding: 1.5rem 0;
}

.py-3 {
    padding: 2rem 0;
}

.py-4 {
    padding: 3rem 0;
}

.py-5 {
    padding: 4rem 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 1.5rem;
}

.p-3 {
    padding: 2rem;
}

.p-4 {
    padding: 3rem;
}

.p-5 {
    padding: 4rem;
}

/* ALL */
.about-title {
    color: white;
    text-align: center;
    font-size: 40px;
    padding: 120px 0;
    font-weight: bold;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

    .about-title h1 {
        line-height: 80px;
    }

    .about-title img {
        -ms-flex-line-pack: center;
        align-content: center;
        width: 50px;
        margin-top: 30px;
    }

.about-undertitle {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin: 70px 0;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

    .about-undertitle h3 {
        line-height: 50px;
    }

.link {
    color: #ea0000;
    font-size: 1.1rem;
    border-bottom: 0.5px solid #ea0000;
}

@media screen and (max-width: 668px) {
    .about-title {
        font-size: 30px;
    }

        .about-title img {
            margin-top: 20px;
        }

    .about-undertitle {
        font-size: 2.5rem;
    }
}

/* ABOUT WIRELESS POWER */
/*QI*/
.qi {
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
    margin-top: -40px;
}

    .qi div {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .qi img {
        width: 550px;
        margin-right: -50px;
        float: right;
    }

    .qi .qi-text {
        margin-left: -50px;
        border-left: white 1px solid;
        padding-left: 40px;
        float: left;
    }

    .qi h2 {
        margin-bottom: 15px;
    }

    .qi p {
        max-width: 600px;
        margin-bottom: 20px;
    }

/*BENEFITS*/
.benefits {
    text-align: center;
    gap: 40px;
}

    .benefits .benefit1 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        grid-column-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    .benefits .benefit2 {
        -ms-grid-column: 2;
        grid-column-start: 2;
        grid-column-end: 3;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    .benefits .benefit3 {
        -ms-grid-column: 3;
        grid-column-start: 3;
        grid-column-end: 4;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    .benefits .benefit4 {
        -ms-grid-column: 4;
        grid-column-start: 4;
        grid-column-end: 5;
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    .benefits i {
        color: white;
        font-size: 4rem;
        margin-bottom: 30px;
    }

    .benefits h3 {
        margin-bottom: 15px;
        color: white;
    }

/*WIRELESS POWER IS HERE*/
.stay {
    margin-top: 30px;
}

    .stay div {
        max-width: 100%;
    }

    .stay img {
        max-width: 100%;
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
        height: 700px;
    }

    .stay h2 {
        margin: 10px 0;
        font-size: 120%;
    }

    .stay p {
        margin-bottom: 10px;
        max-width: 1200px;
    }

    .stay .stay-container {
        position: relative;
        width: 100%;
        background-color: white;
    }

    .stay .stay-text {
        margin: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 0;
    }

/*HOW DOES IT WORK*/
.work {
    margin-bottom: 0px;
}

    .work .work-text {
        max-width: 1000px;
        margin: auto;
        padding: 40px;
    }

        .work .work-text h2 {
            margin-top: 50px;
            margin-bottom: 15px;
        }

        .work .work-text p {
            margin-bottom: 15px;
        }

    .work .work-illustration {
        padding: 5px;
        max-width: 1500px;
        margin: auto;
        margin-bottom: 15px;
    }

    .work .work-illustration-small {
        display: none;
        padding: 5px;
        margin-bottom: 15px;
    }

.service-work {
    margin-top: 100px;
    margin-bottom: 0px;
}

@media screen and (max-width: 1312px) {
    .qi {
        margin-right: 100px;
    }

        .qi img {
            margin-top: -20px;
        }

    .work-text {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 992px) {
    .qi {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: auto;
    }

        .qi img {
            width: 300px;
            border-left: none;
            margin: auto;
            margin-bottom: 20px;
        }

        .qi .qi-text {
            border-left: none;
            margin: auto auto 60px auto;
            background-color: white;
            padding: 40px;
            margin-bottom: 30px;
        }

            .qi .qi-text a {
                text-align: center;
            }

            .qi .qi-text .qi-text-p {
                margin-bottom: 70px;
            }

    .benefits {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
        margin-bottom: 200px;
    }

        .benefits .benefit1 {
            -ms-grid-column: 1;
            grid-column-start: 1;
            grid-column-end: 2;
            -ms-grid-row: 1;
            grid-row-start: 1;
        }

        .benefits .benefit2 {
            -ms-grid-column: 2;
            grid-column-start: 2;
            grid-column-end: 3;
            -ms-grid-row: 1;
            grid-row-start: 1;
        }

        .benefits .benefit3 {
            -ms-grid-column: 1;
            grid-column-start: 1;
            grid-column-end: 2;
            -ms-grid-row: 2;
            grid-row-start: 2;
        }

        .benefits .benefit4 {
            -ms-grid-column: 2;
            grid-column-start: 2;
            grid-column-end: 3;
            -ms-grid-row: 2;
            grid-row-start: 2;
        }

        .benefits p {
            padding: 5px 15px;
        }

    .stay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: -250px;
    }

        .stay .stay-container {
            background-color: transparent;
        }

        .stay .stay-text {
            margin-top: 150px;
            margin-bottom: -150px;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 40px;
            position: relative;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            display: inline-block;
        }

            .stay .stay-text p {
                max-width: 800px;
                margin: 10px auto 30px auto;
            }

            .stay .stay-text .stay-text-p {
                margin-bottom: 70px;
            }

        .stay img {
            margin-top: -780px;
            height: 600px;
            width: 100%;
        }

    .work p {
        max-width: 800px;
    }

    .work .work-illustration {
        display: none;
    }

    .work .work-illustration-small {
        display: block;
    }
}

@media screen and (max-width: 668px) {
    .benefits {
        grid: none;
    }

        .benefits .benefit1 {
            -ms-grid-column: 1;
            grid-column-start: 1;
            grid-column-end: 2;
            -ms-grid-row: 1;
            grid-row-start: 1;
        }

        .benefits .benefit2 {
            -ms-grid-column: 1;
            grid-column-start: 1;
            grid-column-end: 2;
            -ms-grid-row: 2;
            grid-row-start: 2;
        }

        .benefits .benefit3 {
            -ms-grid-column: 1;
            grid-column-start: 1;
            grid-column-end: 2;
            -ms-grid-row: 3;
            grid-row-start: 3;
        }

        .benefits .benefit4 {
            -ms-grid-column: 1;
            grid-column-start: 1;
            grid-column-end: 2;
            -ms-grid-row: 4;
            grid-row-start: 4;
        }

    .stay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: -350px;
    }

        .stay .stay-text {
            margin-bottom: 0px;
            background-color: white;
        }

        .stay img {
            display: none;
        }

    .work {
        margin-top: -500;
    }

        .work .work-text {
            padding: 20px;
        }

        .work .work-illustration-small {
            width: 105%;
        }
}

/* ABOUT NOK9 */
/*BACKGROUND IMAGE*/
.about-nok9-background {
    background-image: url(../images/photos/vastra.hamnen.jpg);
    background-size: 100%;
    background-position: center right;
    background-attachment: fixed;
}

    .about-nok9-background .take-space {
        height: 5px;
    }

@media screen and (max-width: 2100px) {
    .about-nok9-background {
        background-size: cover;
    }
}

/*INTRO*/
.about-nok9-intro {
    -webkit-animation: transitionIn 2s ease-in-out;
    animation: transitionIn 2s ease-in-out;
    max-width: 900px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 50px;
    margin-top: 100px;
    background-color: rgba(255, 255, 255, 0.8);
    overflow: auto;
}

    .about-nok9-intro p {
        padding: 0 40px 0 40px;
        max-width: 800px;
        margin: 5px auto 40px auto;
        font-size: 1.1rem;
        line-height: 20pt;
    }

    .about-nok9-intro h2 {
        padding-bottom: 10px;
        font-size: 150%;
        margin: 0;
    }

/*OUR MISSION GRID*/
.our-mission {
    -webkit-animation: transitionIn 2s ease-in-out;
    animation: transitionIn 2s ease-in-out;
    text-align: center;
    gap: 40px;
    margin: 80px auto 10px auto;
    max-width: 1500px;
}

    .our-mission h2 {
        color: white;
        margin-bottom: 10px;
    }

    .our-mission .mission {
        max-width: 400px;
    }

    .our-mission img {
        height: 65px;
        margin-bottom: 15px;
    }

    .our-mission i {
        font-size: 50px;
        color: white;
        margin-bottom: 30px;
    }

/*PROACTIVE NOT REACTIVE*/
.proactive {
    margin-top: 30px;
}

    .proactive div {
        max-width: 100%;
    }

    .proactive .proactive-container {
        position: relative;
        width: 100%;
        background-color: white;
    }

    .proactive .proactive-text {
        max-width: 800px;
        margin: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .proactive .pointing {
        max-width: 100%;
        display: block;
        height: 700px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
    }

    .proactive h3 {
        margin: 10px 0;
    }

    .proactive p {
        margin-bottom: 40px;
    }

.certifications {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    text-align: center;
    margin-bottom: 30px;
}

    .certifications .certification {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .certifications img {
        width: 80px;
        margin: auto;
    }

    .certifications .cert-text {
        margin-top: -10px auto 30px auto;
    }

/*AT THE HEART OF INNOVATION*/
.heart {
    margin-top: 30px;
}

    .heart img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        height: 800px;
    }

    .heart h3 {
        margin: 10px 0;
    }

    .heart p {
        margin-bottom: 20px;
    }

    .heart .heart-container {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%;
        background-color: white;
    }

    .heart .heart-text {
        position: absolute;
        top: 50px;
        right: 220px;
        max-width: 800px;
        margin: auto;
        background-color: white;
    }

    .heart img {
        display: block;
    }

.world-map {
    margin-top: 60px;
    text-align: center;
}

    .world-map embed {
        max-width: 95%;
    }

.about-nok9-contact {
    text-align: center;
    padding-bottom: 100px;
}

    .about-nok9-contact h2 {
        margin-bottom: 30px;
    }

    .about-nok9-contact a {
        color: #ea0000;
        line-height: 30px;
        font-size: 1.1rem;
    }

    .about-nok9-contact div {
        background-color: white;
        border-radius: 999px;
        padding: 20px;
        max-width: 280px;
        margin: auto;
    }

@media screen and (max-width: 1312px) {
    .heart-text {
        left: 40px;
    }
}

@media screen and (max-width: 992px) {
    .heart img {
        height: 900px;
    }

    .about-nok9-contact {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 930px) {
    .proactive {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .proactive .pointing {
            height: 500px;
            margin-bottom: 0px;
        }

        .proactive .proactive-text {
            position: relative;
            padding: 30px;
            background-color: white;
            margin: 300px auto -300px auto;
            max-width: 100%;
        }

    .certifications {
        margin: auto;
    }

        .certifications img {
            width: 50px;
        }

        .certifications .cert-text {
            font-size: 80%;
        }

    .heart {
        background-color: transparent;
        background-image: url(../images/photos/houses.jpg);
        background-position: center center;
    }

        .heart .heart-container {
            background-color: transparent;
        }

        .heart .heart-text {
            max-width: 90%;
            background-color: white;
            position: relative;
            margin: 30px auto 50px auto;
            left: 0px;
            padding: 20px;
        }

        .heart img {
            display: none;
        }
}

@media screen and (max-width: 750px) {
    .our-mission {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        justify-items: center;
    }
}

/*CONTACT US*/
.contact-fade-in {
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

/*BACKGROUND*/
.gradient-background {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(white));
    background-image: linear-gradient(#ededed, white);
}

/*SUN NEVER SETS ON NOK9*/
.sun {
    text-align: center;
    color: white;
    margin-bottom: 80px;
    padding-left: 10px;
    padding-right: 10px;
}

/*CONTACTS*/
.contacts {
    max-width: 1500px;
    justify-items: center;
    margin: auto;
    padding: 30px 0;
}

    .contacts div {
        margin-bottom: 30px;
    }

    .contacts .contact {
        width: 300px;
    }

    .contacts .country {
        background-color: white;
        padding: 20px;
    }

    .contacts h2 {
        margin-bottom: 25px;
        font-size: 2.2rem;
    }

    .contacts h4 {
        margin-top: 20px;
    }

    .contacts a {
        color: #ea0000;
        border-bottom: 1px solid #ea0000;
    }

    .contacts p {
        margin: 30px 0;
    }

/*LET's CONNECT*/
.connect {
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 60px;
    background-color: white;
    border-bottom: 1px solid #ededed;
    padding: 80px;
}

    .connect .phone-number {
        color: black !important;
        text-decoration: none;
    }

    .connect div {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .connect .connect-1 {
        max-width: 400px;
        -ms-grid-column-align: end;
        justify-self: end;
        margin-right: 30px;
    }

        .connect .connect-1 h3, .connect .connect-1 p {
            margin-bottom: 30px;
        }

        .connect .connect-1 h4 {
            margin-bottom: 20px;
        }

    .connect .connect-2 input, .connect .connect-2 select, .connect .connect-2 textarea {
        width: 400px;
        margin: 5px 0 10px 0;
    }

    .connect .connect-2 textarea {
        height: 150px;
    }

    .connect .connect-2 .submit {
        background-color: #ea0000;
        border: none;
        color: white;
        padding: 10px;
        margin-top: 10px;
        font-size: 1rem;
    }

    .connect .connect-2 span {
        color: #ea0000;
    }

@media screen and (max-width: 1300px) {
    .sun h3 {
        line-height: 70px;
    }

    .contacts {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 668px) {
    .contacts {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .connect {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .connect .connect-2 input, .connect .connect-2 select, .connect .connect-2 textarea {
            width: 250px;
            margin: 5px 0 10px 0;
        }
}

.service-title {
    color: white;
    text-align: center;
    font-size: 40px;
    padding: 120px 0;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

.service-undertitle {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin: 70px 0;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

    .service-undertitle h2 {
        font-size: 110%;
        line-height: 60px;
    }

.service-calibration {
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

.service-container {
    /*text-align: center;*/
    background-color: white;
    padding: 60px;
    margin-bottom: 50px;
}

.service-text {
    max-width: 900px;
    margin: auto;
}

.service h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.service h3 {
    margin-bottom: 10px;
    font-size: 110%;
    line-height: 2rem;
    margin-top: 40px;
}

.service p {
    margin-bottom: 20px;
}

.service ul {
    list-style-position: inside;
    text-align: left;
    color: #ea0000;
    display: inline-block;
}

    .service ul span {
        color: black;
    }

.service table {
    margin: auto;
    border-collapse: collapse;
    margin-top: 50px;
    width: 80%;
}

    .service table th, .service table td {
        text-align: center;
        padding: 10px;
        border: 1px solid #ededed;
    }

    .service table tr:nth-child(even) {
        background-color: #f8f8f8;
    }

@media screen and (max-width: 900px) {
    .service-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    table {
        width: 100%;
        font-size: 70%;
        margin: 0;
        padding: 0;
        overflow: scroll;
    }

        table th, table td {
            margin: 0px;
            padding: 0px;
        }
}

.customer-service {
    text-align: center;
    padding-bottom: 80px;
}

    .customer-service p {
        padding: 10px 0 10px 0;
    }

    .customer-service .customer-image {
        position: relative;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .customer-service .customer-image img {
            max-width: 1200px;
            overflow: hidden;
            -o-object-fit: cover;
            object-fit: cover;
        }

    .customer-service .customer-text {
        left: 0;
        position: absolute;
        text-align: center;
        top: 50px;
        width: 100%;
    }

@media screen and (max-width: 1312px) {
    .customer-service img {
        max-width: 800px;
        margin-top: 10px;
        overflow: hidden;
    }
}

@media screen and (max-width: 668px) {
    .service-title {
        font-size: 30px;
    }

    .service-undertitle {
        font-size: 30px;
    }

        .service-undertitle h2 {
            line-height: 40px;
        }

    .customer-service img {
        height: 600px;
    }

    .customer-service .customer-text {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*GENERAL FOR HARDWARE*/
.hardware-title {
    text-align: center;
    padding: 100px 80px 50px 80px;
    font-size: 400%;
    opacity: 1;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
    line-height: 130%;
}

.hardware-undertitle {
    text-align: center;
    margin-bottom: 80px;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

.hardware-facts {
    background-color: white;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: (minmax(240px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding-left: 70px;
    padding-right: 70px;
    position: relative;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

    .hardware-facts .small-border1, .hardware-facts .small-border2, .hardware-facts .small-border3, .hardware-facts .small-border4 {
        height: 30px;
        width: 80px;
        border-right: 1px solid #ea0000;
        position: absolute;
    }

    .hardware-facts .small-border1 {
        right: 78%;
    }

    .hardware-facts .small-border2 {
        right: 60%;
    }

    .hardware-facts .small-border3 {
        right: 40%;
    }

    .hardware-facts .small-border4 {
        right: 22%;
    }

.hardware-fact {
    padding: 30px;
    max-width: 250px;
    margin: auto;
}

.hardware-fact-column-border {
    color: #ea0000;
    display: none;
}

.center {
    text-align: center;
}

.hardware-title-image {
    width: 70%;
    display: block;
    margin: auto;
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

@media screen and (max-width: 1400px) {
    .hardware-facts .small-border1, .hardware-facts .small-border2, .hardware-facts .small-border3, .hardware-facts .small-border4 {
        display: none;
    }
}

@media screen and (max-width: 1360px) {
    .hardware-facts {
        padding-left: 20px;
        padding-right: 20px;
    }

        .hardware-facts .hardware-fact {
            padding: 10px;
        }
}

@media screen and (max-width: 1260px) {
    .hardware-facts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .hardware-facts .hardware-fact {
            max-width: 80%;
        }

    .hardware-fact-column-border {
        display: block;
    }

    .hardware-title-image {
        width: 90%;
    }
}

/*FIRST TEXT*/
.hardware-first-text {
    padding: 50px;
    margin: 70px auto 0 auto;
    max-width: 1000px;
    font-size: 110%;
}

    .hardware-first-text h2 {
        /*text-align: center;*/
        padding-bottom: 15px;
        line-height: 120%;
    }

    .hardware-first-text ul {
        text-align: center;
        list-style-position: inside;
        margin: auto;
    }

    .hardware-first-text h3 {
        text-align: center;
        margin: 20px 0 10px 0;
    }

    .hardware-first-text p {
        margin-bottom: 10px;
    }

/*COMPLETE SYSTEM IMAGE*/
.complete-system-image {
    margin-bottom: 50px;
    text-align: center;
}

    .complete-system-image img {
        width: 70%;
    }

    .complete-system-image p {
        text-align: center;
        margin-bottom: 50px;
        margin: auto;
        max-width: 1000px;
        padding: 10px;
    }

.complete-system-image-2 {
    margin: auto;
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
}

    .complete-system-image-2 img {
        width: 100%;
        margin: 0 15px;
    }

    .complete-system-image-2 p {
        text-align: center;
        margin: 0 15px 50px 15px;
    }

@media screen and (max-width: 1200px) {
    .complete-system-image img {
        width: 100%;
    }

    .complete-system-image-2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 80%;
    }
}

/*PROBLEM USER FEATURES*/
.problem-user-features {
    margin: 50px auto 100px auto;
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 150px;
}

    .problem-user-features div {
        padding: 0px;
    }

    .problem-user-features h2 {
        margin-top: 60px;
        font-size: 140%;
    }

    .problem-user-features p {
        max-width: 600px;
        padding-right: 60px;
    }

    .problem-user-features ul {
        margin-top: 40px;
        list-style-position: inside;
        color: #ea0000;
        max-width: 400px;
        padding-right: 20px;
    }

        .problem-user-features ul span {
            color: black;
        }

        .problem-user-features ul li {
            margin-bottom: 5px;
        }

    .problem-user-features embed {
        max-width: 100%;
    }

@media screen and (max-width: 1010px) {
    .problem-user-features {
        display: block;
        margin: auto;
    }

        .problem-user-features div {
            padding: 20px;
        }
}

/*DOUBLE CONTAINER*/
.hardware-double-container {
    text-align: center;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 100px;
}

    .hardware-double-container .hardware-double-contains {
        background-color: white;
        padding: 50px;
        margin-right: 10px;
    }

        .hardware-double-container .hardware-double-contains p {
            margin-top: 30px;
        }

/*SYSTEM OVERVIEW*/
.system-overview-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 150px;
}

    .system-overview-container h2 {
        margin-bottom: 50px;
    }

    .system-overview-container .right {
        text-align: right;
        padding-right: 30px;
    }

    .system-overview-container .left {
        text-align: left;
        padding-left: 50px;
    }

    .system-overview-container embed {
        margin-bottom: 10px;
        width: 80%;
    }

    .system-overview-container p {
        margin-bottom: 20px;
    }

    .system-overview-container .embed-right {
        text-align: right;
    }

    .system-overview-container .embed-left {
        text-align: left;
    }

    .system-overview-container .red-line {
        margin-bottom: 50px;
    }

    .system-overview-container .system-line {
        margin: 20px 0 50px 0;
        color: #ea0000;
    }

@media screen and (max-width: 750px) {
    .system-overview-container .system-line {
        display: none;
    }

    .system-overview-container embed {
        width: 100%;
    }

    .system-overview-container .left {
        padding-left: 30px;
    }
}

/*PURCHASE IN WEBSHOP*/
.purchase-webshop {
    text-align: center;
    margin-bottom: 100px;
    margin-top: 50px;
}

/*BST & MDT BUTTONS*/
.mdt-bst {
    text-align: center;
    margin: auto;
    padding-bottom: 100px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ededed));
    background-image: linear-gradient(#f8f8f8, #ededed);
    padding-top: 50px;
}

    .mdt-bst .mdt-bst-buttons {
        max-width: 1000px;
        margin: auto;
        overflow: auto;
    }

        .mdt-bst .mdt-bst-buttons .mdt-bst-button {
            color: black;
            display: inline-block;
            font-size: 150%;
            position: -webkit-sticky;
            position: sticky;
            bottom: 20px;
        }

            .mdt-bst .mdt-bst-buttons .mdt-bst-button .mdt-bst-button-span {
                font-size: 60%;
            }

            .mdt-bst .mdt-bst-buttons .mdt-bst-button img {
                width: 5%;
            }

    .mdt-bst h3 {
        margin-bottom: 80px;
    }

    .mdt-bst span {
        margin: auto;
        font-size: 85%;
        color: darkgray;
    }

/*MDT & BST*/
.mdt-bst-title {
    text-align: center;
    padding: 120px 0 80px 0;
    font-size: 300%;
}

.mdt-bst-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 10px;
    padding: 40px;
}

    .mdt-bst-container h2, .mdt-bst-container h3, .mdt-bst-container h4 {
        padding-left: 60px;
    }

    .mdt-bst-container h2 {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .mdt-bst-container h3, .mdt-bst-container h4 {
        margin-top: 5px;
    }

    .mdt-bst-container p {
        padding: 0px 60px 10px 60px;
    }

    .mdt-bst-container .red-line {
        padding-left: 60px;
    }

.control-unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}

    .control-unit div {
        width: 50%;
    }

    .control-unit h3 {
        margin-bottom: 10px;
        font-size: 130%;
    }

    .control-unit .text {
        padding-top: 70px;
    }

    .control-unit img {
        width: 100%;
        padding: 40px;
        display: inline-block;
    }

@media screen and (max-width: 800px) {
    .control-unit {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 30px;
    }

        .control-unit div {
            width: 100%;
        }

        .control-unit .text {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
            padding-top: 40px;
        }

        .control-unit img {
            padding-bottom: 5px;
        }

    .mdt-bst-container p {
        padding: 0 10px 10px 10px;
    }

    .mdt-bst-container h2, .mdt-bst-container h3, .mdt-bst-container h4 {
        padding-left: 10px;
    }
}

.hardware-fod h3 {
    margin-bottom: 20px;
}

.hardware-fod .images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 100px;
}

    .hardware-fod .images img {
        max-width: 33%;
        padding-left: 10px;
        padding-right: 10px;
    }

/*BST*/
.bst-content {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1 ease-in-out;
    transition: opacity 1 ease-in-out;
}

/*MDT*/
.mdt-content {
    display: none;
    -webkit-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1 ease-in-out;
    transition: opacity 1 ease-in-out;
}

/*FIRST IMAGE BST/MDT*/
.first-image-bst-mdt {
    width: 100%;
    margin-bottom: 100px;
}

@media screen and (max-width: 1200px) {
    .first-image-bst-mdt img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        display: block;
        height: 500px;
    }
}

@media screen and (max-width: 620px) {
    .first-image-bst-mdt img {
        height: 330px;
    }
}

/*MDT/BST FIRST TEXT*/
.mdt-bst-first-text {
    margin: 0 auto 0px auto;
    max-width: 1200px;
}

    .mdt-bst-first-text p {
        max-width: 900px;
        margin: auto;
        padding: 10px;
        font-size: 120%;
        text-align: center;
    }

/*SOFTWARE SOLUTIONS*/
.hardware-software {
    max-width: 1200px;
    margin: auto;
    background-color: white;
    padding: 60px;
    margin-bottom: 50px;
}

    .hardware-software h2 {
        padding-left: 60px;
    }

    .hardware-software .red-line {
        padding-left: 60px;
    }

    .hardware-software .hardware-software-solutions {
        padding: 30px;
    }

        .hardware-software .hardware-software-solutions h4 {
            margin-bottom: 20px;
        }

        .hardware-software .hardware-software-solutions p {
            margin-bottom: 20px;
        }

        .hardware-software .hardware-software-solutions li {
            margin-bottom: 5px;
        }

        .hardware-software .hardware-software-solutions .hardware-software-solution {
            max-width: 400px;
            margin: auto;
            margin-top: 0px;
        }

            .hardware-software .hardware-software-solutions .hardware-software-solution:nth-child(1) {
                margin-right: 30px;
            }

            .hardware-software .hardware-software-solutions .hardware-software-solution:nth-child(2) {
                margin-left: 30px;
            }

.hardware-software-images {
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
    margin-bottom: 100px;
}

    .hardware-software-images img {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hardware-software-images p {
        margin-bottom: 30px;
        margin-top: 10px;
        text-align: center;
    }

/*TECHNICAL SPECIFICATIONS*/
.technical-specifications {
    max-width: 1200px;
    margin: auto;
    margin-top: 50px;
    padding: 40px;
    padding-bottom: 60px;
    position: relative;
    margin-bottom: 50px;
}

    .technical-specifications ul {
        list-style-position: inside;
    }

    .technical-specifications .hardware-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .technical-specifications h2 {
        text-align: center;
        padding: 20px;
    }

    .technical-specifications h3 {
        margin: 40px 0 30px 0;
    }

    .technical-specifications h4 {
        margin: 20px 0 10px 0;
    }

    .technical-specifications .li-push-right {
        margin-left: 20px;
        margin-bottom: 5px;
    }

    .technical-specifications .vertical-line {
        border-left: 1px solid #ea0000;
        height: 700px;
        position: absolute;
        left: 50%;
        top: 55%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .technical-specifications .technical-specifications-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .technical-specifications .technical-specification {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .technical-specifications .vertical-line-base {
        border-left: 1px solid #ea0000;
        height: 200px;
        position: absolute;
        left: 50%;
        top: 55%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .technical-specifications .ul-push-right {
        margin-left: 30px;
        list-style-type: circle;
        font-size: 90%;
    }

@media screen and (max-width: 1000px) {
    .technical-specifications-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }

        .technical-specifications-container .technical-specification {
            margin: auto;
            max-width: 300px;
        }

        .technical-specifications-container .vertical-line {
            display: none;
        }

        .technical-specifications-container .vertical-line-base {
            display: none;
        }
}

/*DOWNLOAD*/
.hardware-download {
    text-align: center;
    margin-top: 100px;
    padding-bottom: 100px;
}

    .hardware-download h2 {
        margin-bottom: 50px;
    }

    .hardware-download a {
        color: #ea0000;
        line-height: 30px;
        font-size: 1.1rem;
    }

    .hardware-download .know-more {
        max-width: 1000px;
        margin: auto;
    }

        .hardware-download .know-more .download-button {
            background-color: white;
            margin: 10px;
            border-radius: 999px;
            padding: 10px;
        }

    .hardware-download .know-more-single .download-button {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hardware-download .hardware-contact {
        position: absolute;
        margin-left: -68px;
        margin-top: 8px;
        background-color: white;
        border-radius: 999px;
        padding: 10px;
    }

    .hardware-download .hardware-contact-single {
        position: absolute;
        margin-left: -140px;
        margin-top: 70px;
        background-color: white;
        border-radius: 999px;
        padding: 20px 80px;
    }

    .hardware-download h3 {
        margin-top: 40px;
    }

    .hardware-download .red-line {
        margin-bottom: 20px;
    }

    .hardware-download .grid-2 {
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        justify-items: center;
        max-width: 700px;
    }

        .hardware-download .grid-2 .download-button {
            width: 300px;
        }

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .popup p, .cart p {
        color: #ea0000;
        line-height: 30px;
        font-size: 1.1rem;
    }

    .popup .popup-text {
        visibility: hidden;
        max-width: 1000px;
        background-color: white;
        border-radius: 9999px;
        position: absolute;
        z-index: 1;
        bottom: -450px;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        padding: 50px;
        -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    }

.cart .popup-text {
    width: 100%;
    background-color: white;
    border-radius: 9999px;
    z-index: 1;
    padding: 100px 50px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

    .popup .popup-text input, .cart .popup-text input {
        margin: 5px;
    }

    .popup .popup-text .popup-submit, .cart .popup-text .popup-submit {
        font-size: 105%;
        padding: 15px;
        border-radius: 999px;
        border: white;
        margin: 40px;
        cursor: pointer;
    }

    .popup .popup-text .close-popup, .cart .popup-text .close-popup {
        border: none;
        font-size: 140%;
        cursor: pointer;
        padding: 40px;
        background-color: white;
    }

    .popup .popup-text span, .cart .popup-text span {
        color: #ea0000;
    }

    .popup .popup-text .interested, .cart .popup-text .interested {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .popup .popup-text .popup-text-checkboxes, .cart .popup-text .popup-text-checkboxes {
        text-align: left;
    }

        .popup .popup-text .popup-text-checkboxes span, .cart .popup-text .popup-text-checkboxes span {
            color: black;
            margin-left: 27px;
        }

    .popup .popup-text .terms, .cart .popup-text .terms {
        margin-top: 15px;
        color: darkgray;
        font-size: 12px;
        /*line-height: 60%;*/
    }

        .popup .popup-text .terms a, .cart .popup-text .terms a {
            color: darkgray;
            font-size: 12px;
            /*line-height: 60%;*/
            text-decoration: underline;
            text-align: center;
        }

    .popup .popup-text .terms-push-data, .cart .popup-text .terms-push-data {
        margin-top: 50px;
        text-align: center;
    }

    .popup .popup-text .terms-push-brochure, .cart .popup-text .terms-push-brochure {
        margin-left: 10px;
        margin-bottom: 30px;
        margin-top: 50px;
        text-align: center;
    }

.popup .show, .cart .show {
    visibility: visible;
    display: block;
    -webkit-animation: fadeInPopup 1s;
    animation: fadeInPopup 1s;
}

@-webkit-keyframes fadeInPopup {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInPopup {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (max-width: 1000px) {
    .hardware-download .grid-2, .cart .grid-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .hardware-download .grid-3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .hardware-download .grid-3 .download-button {
            width: 300px;
            margin: auto;
            margin-top: 30px;
            padding: 20px;
        }

        .hardware-download .grid-3 .hardware-contact {
            position: relative;
            margin-left: auto;
            margin-right: auto;
            width: 300px;
            margin-top: 30px;
            padding: 20px;
        }
}

@media screen and (max-width: 1000px) {
    .popup .grid-2, .grid-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .popup .popup-text-checkboxes {
        margin-left: 10%;
        margin-bottom: 30px;
    }
}

/*CATS II*/
.catsii-stats {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .catsii-stats div {
        padding: 0 50px 100px 50px;
    }

    .catsii-stats h3 {
        font-size: 300%;
    }

/* EVA II */
.resonant-tank {
    margin-top: 50px;
}

    .resonant-tank h3, .resonant-tank h4 {
        margin-bottom: 10px;
        text-align: center;
    }

    .resonant-tank table {
        margin: auto;
        margin-bottom: 40px;
    }

        .resonant-tank table th, .resonant-tank table td {
            padding: 7px 10px;
        }

        .resonant-tank table th {
            text-decoration: none;
            text-align: left;
        }

        .resonant-tank table tr:nth-child(odd) {
            background-color: #f8f8f8;
        }

    .resonant-tank ul {
        list-style-position: inside;
    }

    .resonant-tank .evaii-center-ul-1 {
        max-width: 170px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .resonant-tank .evaii-center-ul-2 {
        max-width: 470px;
        margin-left: auto;
        margin-right: auto;
    }

/*EVA III*/
.evaiii-scheme {
    margin: auto;
    max-width: 800px;
    margin-bottom: 100px;
}

    .evaiii-scheme img {
        width: 100%;
    }

.evaiii-mdt-bst {
    padding-top: 50px;
    padding-bottom: 50px;
    margin: auto;
    max-width: 1000px;
    justify-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 50px;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
}

    .evaiii-mdt-bst div {
        max-width: 80%;
    }

    .evaiii-mdt-bst li {
        color: #ea0000;
        margin-bottom: 5px;
    }

    .evaiii-mdt-bst span {
        color: black;
    }

@media screen and (max-width: 1200px) {
    .evaiii-mdt-bst {
        grid-auto-flow: row;
        gap: 30px;
    }

        .evaiii-mdt-bst div {
            max-width: 70%;
        }
}

.hardware-heading {
    text-align: center;
    font-size: 40px;
    padding: 120px 0;
    color: white;
}

.hardwares-container {
    width: 60%;
    margin: auto;
    padding: 50px;
}

    .hardwares-container h2 {
        padding-top: 30px;
        font-size: 180%;
    }

    .hardwares-container h3 {
        text-align: center;
    }

    .hardwares-container a {
        color: black;
        margin-left: 20px;
        display: inline-block;
        margin: auto;
        width: 150px;
        margin-bottom: 15px;
        text-align: center;
    }

        .hardwares-container a:hover {
            color: #ea0000;
        }

    .hardwares-container .hardware-mini-container {
        max-width: 150px;
        margin-right: 100px;
    }

    .hardwares-container .rerx-container {
        margin-left: -40px;
    }

    .hardwares-container .rerx-heading {
        margin-bottom: 40px;
    }

    .hardwares-container .flex-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .hardwares-container .base-svg {
        margin-top: -40px;
    }

    .hardwares-container .hardware-border {
        width: 100%;
        border-bottom: 1px solid #ea0000;
        padding-top: 50px;
        margin-bottom: 40px;
    }

    .hardwares-container embed {
        pointer-events: none;
    }

.take-place {
    height: 100px;
}

.services-background {
    background-color: #ededed;
}

.services-background-fade {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ededed));
    background-image: linear-gradient(#f8f8f8, #ededed);
}

.services-title {
    margin-bottom: 50px;
}

.services-double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .services-double h3 {
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .services-double img {
        width: 50%;
        display: block;
        margin: auto;
    }

    .services-double .text-container {
        position: relative;
        width: 50%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ededed));
        background-image: linear-gradient(#f8f8f8, #ededed);
    }

    .services-double .text {
        padding-left: 40px;
        padding-right: 40px;
        margin: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .services-double .text p {
            margin-bottom: 20px;
            max-width: 800px;
        }

        .services-double .text ul {
            margin-left: 15px;
            margin-bottom: 20px;
        }

.consulting {
    -webkit-animation: transitionIn 1.2s ease-in-out;
    animation: transitionIn 1.2s ease-in-out;
}

.research-lab li {
    color: #ea0000;
}

    .research-lab li span {
        color: black;
    }

.research-lab .take-space {
    display: none;
}

@media screen and (max-width: 1430px) {
    .services-background {
        background-color: #ededed;
        background-image: none;
    }

    .services-double {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .services-double h2 {
            padding-top: 40px;
        }

        .services-double img {
            width: 100%;
        }

        .services-double .text-container {
            width: 100%;
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
        }

            .services-double .text-container .text {
                position: relative;
                -webkit-transform: translateY(0%);
                transform: translateY(0%);
            }

    .consulting {
        margin-bottom: 80px;
    }

    .research-lab .take-space {
        display: block;
    }

    .research-lab img {
        margin-top: 20px;
    }
}

.linkedin-posts {
    margin: auto;
    max-width: 2000px;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-column-count: 4;
    column-count: 4;
    padding-bottom: 100px;
    text-align: center;
}

/* The Masonry Brick */
iframe {
    border: none;
    padding: 10px;
}

/* Masonry on medium-sized screens */
@media only screen and (max-width: 2000px) {
    .linkedin-posts {
        -webkit-column-count: 3;
        column-count: 3;
        max-width: 1500px;
    }
}

/* Masonry on small screens */
@media only screen and (max-width: 1500px) {
    .linkedin-posts {
        -webkit-column-count: 2;
        column-count: 2;
        max-width: 1000px;
    }
}

/* Masonry on small screens */
@media only screen and (max-width: 1010px) {
    .linkedin-posts {
        -webkit-column-count: 1;
        column-count: 1;
        max-width: 500px;
    }

        .linkedin-posts iframe {
            max-width: 90%;
        }
}

.slide-up-fade-in {
    -webkit-animation: slide-up-fade-in ease 2s;
    animation: slide-up-fade-in ease 2s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: slide-up-fade-in ease 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: slide-up-fade-in ease 1s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: slide-up-fade-in ease 1s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: slide-up-fade-in ease 1s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
    opacity: 1;
    opacity: 1\9;
}

@keyframes slide-up-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, 40px);
        transform: translate(0px, 40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes slide-up-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, 40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
    }
}

.thank-you {
    padding-left: 25%;
    padding-bottom: 150px;
}

    .thank-you h1 {
        margin-bottom: 25px;
        padding-top: 200px;
        font-size: 300%;
    }

    .thank-you p {
        margin-bottom: 150px;
    }

@media screen and (max-width: 1200px) {
    .thank-you {
        padding-left: 10%;
    }

        .thank-you h1 {
            font-size: 200%;
        }
}

.terms-conditions {
    padding-left: 25%;
    padding-bottom: 200px;
}

    .terms-conditions h1 {
        margin-bottom: 100px;
        padding-top: 200px;
        font-size: 300%;
        line-height: 4rem;
    }

    .terms-conditions a {
        font-size: 120%;
        margin-top: 20px;
        text-decoration: underline;
        color: #ea0000;
        line-height: 200%;
    }

    .terms-conditions p {
        margin-top: 70px;
    }

@media screen and (max-width: 1200px) {
    .terms-conditions {
        padding-left: 10%;
    }

        .terms-conditions h1 {
            font-size: 200%;
        }
}

.map-container .map {
    height: 1200px;
}

.map-info-container .map-info {
    z-index: 9999999;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    max-width: 800px;
    margin: auto;
    left: 0;
    right: 0;
    top: 60%;
    padding: 50px 150px;
}

    .map-info-container .map-info h2 {
        margin-bottom: 20px;
    }

    .map-info-container .map-info p {
        margin-bottom: 30px;
    }

    .map-info-container .map-info a {
        cursor: pointer;
        color: white;
        font-size: 110%;
    }

    .map-info-container .map-info .map-button {
        margin: auto;
        background-color: #ea0000;
        padding: 10px 30px;
        border-radius: 99px;
        max-width: 200px;
        text-align: center;
    }

.marker {
    max-width: 500px;
}

.rfq-form {
    position: relative;
    margin: auto;
    /*.ATL:hover {
        transform: scale(1.02);
    }

    .rfq-part-labs:hover .ATL:not(:hover) {
        opacity: 0.65;
        transform: scale(0.95);
    }*/
}

    .rfq-form .fixed-atls h1 {
        padding: 60px 0 20px 0;
    }

    .rfq-form .rfq-parts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 100px;
        background-color: white;
        max-width: 900px;
        border-radius: 9999px;
        margin: auto;
    }

    .rfq-form label {
        cursor: pointer;
        margin-right: 3px;
    }

    .rfq-form .rfq-part {
        margin-top: 50px;
    }

        .rfq-form .rfq-part h3 {
            margin-bottom: 20px;
        }

        .rfq-form .rfq-part input {
            margin-bottom: 30px;
            margin-right: 15px;
            margin-top: 5px;
        }

        .rfq-form .rfq-part .spec-versions {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }

    .rfq-form .potential-power {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .rfq-form .potential-power .potential-power-label {
            margin-top: 6px;
            margin-right: 5px;
        }

    .rfq-form .button {
        text-align: center;
        margin: 60px auto;
        background-color: #ea0000;
        color: white;
        font-size: 105%;
        padding: 10px 20px;
        width: 300px;
        border-radius: 9999px;
        border: none;
        cursor: pointer;
        display: block;
    }

    .rfq-form .rfq-submit {
        position: fixed;
        bottom: 50px;
        z-index: 9999;
        background-color: #8dc63f;
        border: none;
        padding: 25px;
        color: white;
        border-radius: 999px;
        font-size: 110%;
        cursor: pointer;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: none;
    }

    .rfq-form .rfq-part-labs {
        padding: 50px;
        gap: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .rfq-form .rfq-part-labs h3 {
            margin-bottom: 20px;
        }

        .rfq-form .rfq-part-labs h4 {
            margin-bottom: 10px;
            margin-top: 30px;
        }

        .rfq-form .rfq-part-labs input {
            margin-right: 15px;
        }

        .rfq-form .rfq-part-labs .ATL {
            padding: 30px 20px;
            width: 270px;
            background-color: white;
            height: 245px;
            display: block;
        }

            .rfq-form .rfq-part-labs .ATL h4 {
                line-height: 20px;
            }

            .rfq-form .rfq-part-labs .ATL p {
                margin-bottom: 20px;
            }

            .rfq-form .rfq-part-labs .ATL .atl-logo {
                height: 45px;
            }

        .rfq-form .rfq-part-labs .ATL-checkbox {
            width: 20px;
            height: 20px;
        }

    .rfq-form .uncheck-all p {
        cursor: pointer;
        margin-bottom: 10px;
    }

    .rfq-form .check-all p {
        cursor: pointer;
        margin-bottom: 10px;
    }

    .rfq-form .labs-applicable {
        text-align: center;
        color: #646464;
        margin-top: 5px;
    }

@media screen and (max-width: 1020px) {
    .rfq-parts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0;
    }

        .rfq-parts .rfq-part-one {
            width: 500px;
        }

        .rfq-parts .rfq-part {
            margin-top: 10px;
        }

    .rfq-form .rfq-part-labs {
        max-width: 500px;
        margin: auto;
        gap: 20px;
    }

        .rfq-form .rfq-part-labs .ATL {
            width: 500px;
        }

    .rfq-form .grid-3 {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .check-all {
        max-width: 500px;
        margin: auto;
    }

    .uncheck-all {
        max-width: 500px;
        margin: 10px auto;
    }
}

.bpp-epp-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1000px;
    margin: auto;
}

    .bpp-epp-buttons div {
        margin: auto;
    }

        .bpp-epp-buttons div .bpp-epp-button {
            padding: 20px 60px;
            background-color: white;
            border-radius: 999px;
            color: #ea0000;
            font-size: 150%;
            width: 200px;
        }

        .bpp-epp-buttons div p {
            text-align: center;
            margin-top: 25px;
        }

#epp-content {
    display: none;
}

#bpp-content {
    display: none;
}

.bpp-epp-content {
    margin-top: 100px;
    max-width: 1000px;
    margin: auto;
}

::-moz-selection {
    background: #ea0000;
}

::selection {
    background: #ea0000;
}

::-moz-selection {
    color: white;
}

::selection {
    color: white;
}

/* NAVBAR */
.navbar {
    background-color: #f8f8f8;
    height: 60px;
    /*.catsi-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }
    
    .catsii-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }

    .base-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }

    .evai-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }

    .evaii-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }

    .evaiii-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }

    .rerx-svg:hover {
        filter: invert(14%) sepia(71%) saturate(7318%) hue-rotate(352deg) brightness(83%) contrast(126%);
    }*/
}

    .navbar .ul-large-screen {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        list-style-type: none;
        list-style: none;
    }

        .navbar .ul-large-screen .nok9-logo-large-header {
            z-index: 9999999;
        }

    .navbar img {
        height: 60px;
        margin-top: 0;
        margin-right: 150px;
        z-index: 100000;
    }

    .navbar .li-large-screen {
        margin: 10px;
        padding: 10px 15px;
    }

    .navbar .arrow-down {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ea0000;
    }

    .navbar .arrow-up {
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #ea0000;
    }

    .navbar a {
        color: black;
        display: inline-block;
    }

    .navbar .dropdown {
        position: relative;
        display: inline-block;
    }

    .navbar span {
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
    }

    .navbar .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f8f8f8;
    }

        .navbar .dropdown-content a:hover {
            color: #ea0000;
        }

    .navbar .outlined-prod {
        height: 100px;
        margin: 0 20px;
        pointer-events: none;
    }

    .navbar .header-svg {
        background-color: #f8f8f8;
    }

    .navbar a:hover .dropdown-content {
        display: block;
        position: fixed;
        overflow: auto;
        padding: 20px 10px 10px 10px;
    }

    .navbar a:hover .dropdown-content-hardware {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[7];
        grid-template-columns: repeat(7, 1fr);
        position: fixed;
        overflow: auto;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        /*margin-top: 2px;*/
        left: 0;
        right: 0;
        z-index: 999;
    }

.dropdown:hover .dropdown-content {
    display: block;
    position: fixed;
    overflow: auto;
    padding: 20px 10px 10px 10px;
}

.dropdown:hover .dropdown-content-hardware {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
    position: fixed;
    overflow: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /*margin-top: 2px;*/
    left: 0;
    right: 0;
    z-index: 999;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-small-screen {
    display: none;
}

.js-is-hidden {
    display: none;
}

@media screen and (max-width: 1400px) {
    .navbar .li-large-screen {
        display: none !important;
    }
}

@media screen and (max-width: 1380px) {
    .navbar img {
        margin-right: 30px;
    }
}

@media screen and (max-width: 1400px) {
    .navbar {
        /* MENU ICON ANIMATION */
        /* DROPDOWN IN MENU ANIMATION */
    }



        .navbar img {
            position: absolute;
            left: 20px;
        }

        .navbar .nav-small-screen {
            display: block;
        }

        .navbar #open-menu {
            width: 30px;
            position: absolute;
            right: 30px;
            top: 13px;
            z-index: 9999;
            overflow: hidden;
        }

        .navbar #line-1, .navbar #line-2, .navbar #line-3 {
            rotate: 0deg;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

        .navbar #line-1 {
            transform-origin: 100% 100%;
            -webkit-transform-origin: 100% 100%;
            -moz-transform-origin: 100% 100%;
            -o-transform-origin: 100% 100%;
        }

        .navbar #line-3 {
            transform-origin: 100% 0%;
            -webkit-transform-origin: 100% 0%;
            -moz-transform-origin: 100% 0%;
            -o-transform-origin: 100% 0%;
        }

        .navbar .rotated45 {
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar .rotated-45 {
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar .ul-small-screen {
            z-index: 9998;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            text-align: center;
            width: 100%;
            position: absolute;
            top: -400px;
            right: 0px;
            background-color: #f8f8f8;
            opacity: 0.95;
            padding: 30px 60px 30px 60px;
            list-style: none;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

            .navbar .ul-small-screen li {
                margin-top: 10px;
            }

        .navbar .dropdown-content-small-container {
            position: relative;
        }

        .navbar .dropdown-content-small {
            font-size: 90%;
            margin: 10px 0 20px 0;
            position: absolute;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

            .navbar .dropdown-content-small a {
                color: #ea0000;
                margin-top: 20px;
            }

                .navbar .dropdown-content-small a:hover {
                    color: black;
                }

        .navbar .dropdown-content-small-hardware {
            top: 100px;
            visibility: hidden;
            opacity: 0%;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar .dropdown-content-small-about {
            top: 100px;
            opacity: 0%;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar #margin-hardware, .navbar #margin-about {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar .transform-hardware {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar .transform-active-up-hardware {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid #ea0000;
        }

        .navbar .transform-active-down-hardware {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #ea0000;
        }

        .navbar .transform-about {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .navbar .transform-active-up-about {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid #ea0000;
        }

        .navbar .transform-active-down-about {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #ea0000;
        }
}

/*WE SET THE STANDARD*/
.gray-fade {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ededed));
    background-image: linear-gradient(#f8f8f8, #ededed);
}

.landing-header-background {
    background-color: #f8f8f8;
}

.landing-first {
    padding-bottom: 50px;
    position: relative;
}

    .landing-first img {
        width: 100%;
        padding-top: 130px;
    }

    .landing-first h1 {
        font-size: 5rem;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        top: 130px;
    }

    .landing-first p {
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        bottom: 70px;
    }

@-webkit-keyframes transitionIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes transitionIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#index-title {
    -webkit-animation: transitionIn 4s ease-in-out;
    animation: transitionIn 4s ease-in-out;
}

#index-image {
    -webkit-animation: transitionIn 4s ease-in-out;
    animation: transitionIn 4s ease-in-out;
}

@media screen and (max-width: 1700px) {
    .landing-first h1 {
        font-size: 4rem;
        top: 110px;
    }
}

@media screen and (max-width: 990px) {
    .landing-first h1 {
        font-size: 3rem;
        top: 120px;
    }

    .landing-first img {
        padding-top: 160px;
    }

    .landing-first p {
        max-width: 80%;
        bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .landing-first h1 {
        font-size: 2.1rem;
        top: 80px;
        line-height: 2.5rem;
    }

    .landing-first P {
        bottom: -20px;
    }

    .landing-first img {
        padding-top: 160px;
    }
}

/*STATS*/
.stats {
    text-align: center;
    max-width: 80%;
    margin: auto;
    padding-bottom: 100px;
}

    .stats h3 {
        font-size: 40px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .stats .stat {
        padding-left: 70px;
        padding-right: 70px;
    }

.unique {
    color: darkgray;
    font-size: 70%;
    margin-top: 40px;
    text-align: center;
    padding: 10px;
}

@media screen and (max-width: 990px) {
    .stats {
        padding-top: 50px;
    }

        .stats .stat {
            padding-left: 5px;
            padding-right: 5px;
        }
}

@media screen and (max-width: 600px) {
    .stats {
        padding-top: 90px;
        padding-bottom: 110px;
    }

        .stats h3 {
            font-size: 25px;
        }

        .stats .stat {
            padding-left: 5px;
            padding-right: 5px;
        }
}

/*CUSTOMER LOGOS*/
.customer-logos {
    margin-left: auto;
    margin-right: auto;
    max-width: 1370px;
    padding: 50px;
    text-align: center;
}

    .customer-logos .customers {
        max-width: 100%;
        display: block;
    }

    .customer-logos .customers-small {
        display: none;
    }

    .customer-logos h2 {
        font-size: 180%;
        margin-bottom: 50px;
        margin-top: 50px;
    }

.take-space {
    height: 100px;
}

.fade-in-scroll {
    opacity: 0;
}

@media screen and (max-width: 1000px) {
    .customer-logos {
        padding: 10px;
    }

        .customer-logos h2 {
            margin-bottom: 50px;
            font-size: 150%;
        }
}

@media screen and (max-width: 700px) {
    .customer-logos .customers-small {
        display: block;
        max-width: 95%;
        margin: auto;
    }

    .customer-logos h2 {
        display: none;
    }

    .customer-logos .customers {
        display: none;
    }

    .unique {
        margin-bottom: 50px;
    }
}

/*IMAGES WITH LINKS*/
.links {
    color: #fff;
}

    .links h3 {
        margin-bottom: 10px;
    }

    .links .img-container {
        position: relative;
        text-align: center;
    }

    .links img {
        width: 400px;
        margin: 0 10px;
    }

    .links .img-text {
        left: 0;
        position: absolute;
        text-align: center;
        top: 50px;
        width: 100%;
    }

    .links a {
        color: white;
    }

    .links .index-a {
        color: #fff;
        border-bottom: solid 1px #ea0000;
    }

@media screen and (max-width: 1280px) {
    .links .grid-3 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .links img {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .links img {
        width: 90%;
    }
}

/*FOOTER*/
footer {
    background-color: #fff;
    height: 300px;
    margin-bottom: 30px;
    font-size: 90%;
    position: relative;
}

    footer img {
        height: 60px;
        margin: 30px 0;
    }

    footer p {
        margin-bottom: 20px;
    }

    footer i {
        color: #ea0000;
    }

    footer a {
        color: black;
        margin-left: 7px;
    }

        footer a:hover {
            color: #ea0000;
            border-bottom: 0.5px solid #ea0000;
        }

    footer .copyright {
        background-color: #f8f8f8;
        padding: 20px 0px 3px 0px;
        margin-top: 40px;
    }

        footer .copyright p {
            text-align: center;
            font-size: 95%;
        }

    footer .footer-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 2000px;
        margin: auto;
    }

        footer .footer-container .footer-first-column {
            padding-left: 10%;
            padding-right: 10%;
        }

        footer .footer-container .footer-second-column {
            position: absolute;
            top: 200px;
            left: 50%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            footer .footer-container .footer-second-column .footer-second-column-border {
                border-left: #ea0000 solid 0.5px;
            }

        footer .footer-container .footer-third-column {
            position: absolute;
            left: 70%;
            top: 150px;
        }

            footer .footer-container .footer-third-column .footer-third-column-border {
                border-left: #ea0000 solid 0.5px;
            }

        footer .footer-container .footer-fourth-column {
            position: absolute;
            left: 88%;
            top: 160px;
        }

            footer .footer-container .footer-fourth-column .footer-fourth-column-border {
                border-left: #ea0000 solid 0.5px;
            }

        footer .footer-container .fa-phone-alt {
            padding-left: 1px;
            padding-right: 8px;
        }

        footer .footer-container .fa-envelope {
            padding-left: 1px;
            padding-right: 5px;
        }

        footer .footer-container .fa-tools {
            padding-left: 1px;
            padding-right: 5px;
        }

        footer .footer-container .fa-file-invoice-dollar {
            padding-left: 3px;
            padding-right: 7px;
        }

        footer .footer-container .fa-truck {
            padding-right: 3px;
        }

        footer .footer-container .fa-info {
            padding-left: 5px;
            padding-right: 10px;
        }

        footer .footer-container .fa-linkedin {
            padding-left: 2px;
            padding-right: 7px;
        }

@media screen and (max-width: 1246px) {
    .footer-second-column-border {
        display: none;
    }

    .footer-third-column {
        display: none;
    }

    .footer-fourth-column {
        display: none;
    }
}
/*# sourceMappingURL=style.css.map */
