* {
    margin: 0;
    padding: 0;
    /*box-sizing: border-box;*/
}

/* unvisited link */
a:link {
    color: whitesmoke;
    font-family: "Segoe UI", Arial;
    font-weight: normal;

}

/* visited link */
a:visited {
    color: lightgrey;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    z-index: 11111;
padding-left: 10vw;
    padding-right: 10vw;

}


@media screen and (max-width: 1024px) {

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 8vh;
        font-family: 'Roboto', sans-serif;
        background-color: white;
        z-index: 11111;
        padding-left: 6vw;
        padding-right: 6vw;

    }

}





h1, h2, h3 {
    font-family: 'Roboto', sans-serif;

}

h1 {
    font-size: 2em;
    color: #444968;
}


.logo {
    color: darkblue;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
    padding-top: 30px;
    z-index: 11111;
    margin-bottom: 1em;

}




.nav-links {
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
    z-index: 11111;

}


.nav-links li {
    list-style: none;
    white-space: nowrap;
}


.nav-links a {
    color: #444968;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 1em;
    white-space: nowrap;
}

.nav-links a.active {

    border-bottom: 3px solid #444968;
    padding-bottom: 8px;


}


.burger {
    display: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #39396f;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {

    .nav-links {
        width: 10%;
    }
}

@media screen and (max-width: 1180px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: whitesmoke;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.2s ease-in;

    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

}

.nav-active {
    transform: translateX(0%);
}


@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


.dropbtn {
    background-color: whitesmoke;
    color: darkgrey;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 1em;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    padding-top: 2px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: rgb(68, 73, 104);
}

.footer {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    /*position: fixed;*/
    width: 100%;
    color: #bababa;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    padding-top: -35px;
    background-color: #444968;
    padding-bottom: 10px;
    border-top: solid #444968 20px;
    background-image: url("images/footer.png");
    z-index: 4;
    font-size: .75em;


}


.footer-content {
    margin-top: 30px;


}


.wrapper {
    padding-top: 35px;
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #FFF;
    flex-wrap: wrap;
    justify-content: center;
    /*background-image: url("images/test-bg.png");*/
    background-position: center;
margin-top: 3em;

}


.content {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;


}

.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/contact-page-banner.svg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

@media screen and (max-width: 480px) {

    .banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: center;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/contact-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }


}


.banner-projects {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 350px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    align-content: start;
    align-items: center;
    background-image: url("images/placeholder_image.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
    /*margin-top: 2em;*/


}

@media screen and (max-width: 480px) {
    .banner-projects {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: center;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/projects-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }
}


.banner-disciplines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/disciplines-banner.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

@media screen and (max-width: 480px) {
    .banner-disciplines {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: center;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/diciplines-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }
}


.banner-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: top;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/servicest-page-banner.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

@media screen and (max-width: 480px) {

    .banner-services {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: top;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/services-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }


}

.banner-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: top;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/placeholder_image3.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

@media screen and (max-width: 480px) {

    .banner-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: top;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/about-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }


}


.banner-techno {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: top;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/tech-page-banner.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

@media screen and (max-width: 480px) {

    .banner-techno {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: top;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/tech-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }


}

.banner-contact-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: top;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/contact-page-banner.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

@media screen and (max-width: 480px) {

    .banner-contact-us {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: top;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/contact-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }


}


@media screen and (max-width: 1050px) {

    .banner-contact-us {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 350px;
        background-color: #ffffff;
        background-position: top;
        background-repeat: no-repeat;
        align-content: center;
        align-items: center;
        background-image: url("images/contact-page-banner-mobile.jpg");
        background-size: cover;
        -webkit-transition: background-image 0.2s ease-in-out;
        transition: background-image 0.2s ease-in-out;

    }


}


.banner-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: top;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    /*background-image: url("images/servicest-page-banner.jpg");*/
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}


.banner-team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    align-content: center;
    align-items: center;
    background-image: url("images/tech-page-banner.jpg");
    background-size: cover;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;

}

/*.banner-tech {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    height: 350px;*/
/*    background-color: #ffffff;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    align-content: center;*/
/*    align-items: center;*/
/*    background-image: url("images/tech-page-banner.svg");*/
/*    background-size: cover;*/
/*    -webkit-transition: background-image 1.2s ease-in-out;*/
/*    transition: background-image 1.2s ease-in-out;*/

/*}*/


.contact {
    /*text-align: center;*/
    width: 100%;

}

.contact-message {
    width: 40%;
    margin-top: 140px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    padding-right: 45px;
    padding-left: 35px;
    color: #A1A1A1;
    font-size: 1.1em;

}

@media screen and (max-width: 480px) {

    .contact-message {
        width: 40%;
        margin-top: 20px;
        font-family: 'Roboto', sans-serif;
        font-style: italic;
        padding-right: 45px;
        padding-left: 35px;
        color: #A1A1A1;
        font-size: 1.1em;

    }


}


.contact-message h2 {
    color: #444968;

}

.below-banner {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 100px;


}


/*/////////////////////////////////////////////////////////////////////////////////////*/


/* MEDIA QUERY */


/*////////////////////////////////////////////////////////////////////////////////////*/


@media screen and (max-width: 1750px) {
    .below-banner {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
        padding-top: 100px;
        align-content: center;


    }

    .contact-icons {
        width: 100%;
        background-color: #FFF;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-content: center;
        color: rgb(69, 73, 103);
        flex-wrap: wrap;
        padding: 20px;
        align-items: flex-start;
        gap: 45px;
    }

    .contact-rows {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;


    }

    .contact-message {
        width: 90%;
        align-self: center;
        justify-self: center;
        font-family: 'Roboto', sans-serif;
        font-style: italic;
        color: #A1A1A1;
        font-size: 1.1em;

        align-content: center;
        text-align: center;

    }

    .central {
        width: 100%;
        display: flex;


    }

    div#message {

        width: 90%;
    }
}


/*/////////////////////////////////////////////////////////////////////////////////////*/


/* MEDIA QUERY END */


/*////////////////////////////////////////////////////////////////////////////////////*/


.contact-icons {
    width: 65%;
    background-color: #FFF;
    height: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
    color: rgb(69, 73, 103);
    flex-wrap: wrap;
    padding: 20px;
    align-items: flex-start;
}




@media screen and (max-width: 1024px) {
    .contact-icons {
        width: 95%;
        background-color: #FFF;
        height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-content: center;
        color: rgb(69, 73, 103);
        flex-wrap: wrap;
        padding: 20px;
        align-items: flex-start;
    }
}



.contact-rows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.contact-rows h2 {
    font-size: large;
    padding-top: 25px;
    padding-bottom: 8px;
}

.white-arc {
    background-image: url("images/arc.svg");
    background-repeat: no-repeat;
    background-position: center;
}


input {
    border-radius: 7px;
}

.field {
    margin: 0 0 20px 0;
    font-size: 17px;
    border-radius: 7px;
}

textarea {
    border-radius: 7px;
    border: 1px solid #A1A1A1;
}

.arc-divider {

    background-image: url("images/ramp-break.svg");
    background-size: cover;
    background-position: center;
    height: 250px;
    margin-bottom: -2px;

}

.arc-divider-blue {

    background-image: url("images/blue-ramp-break.svg");
    background-size: cover;
    background-position: center;
    height: 240px;
    margin-top: -245px;


}

.bottom-grey {
    background-color: #ebebeb;
    flex-direction: row;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-items: center;
}

@media screen and (max-width: 480px) {

    .bottom-grey {
        background-color: #ebebeb;
        flex-direction: row;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        justify-items: center;
        width: 100%;
        /*padding-left: 2em;*/
        text-align: center;
    }


    .bottom-grey p {

        padding: 20px;


    }


}


.questions {
    padding-top: 55px;
    padding-bottom: 55px;
    background-color: #ebebeb;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 90px;
    justify-items: center;
    padding-right: 60px;
    padding-left: 60px;


}


.questions-child {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;


}


.bottom-grey-spacer {
    margin-bottom: 20px;
    background-color: #ebebeb;
    height: 80px;
}

.bottom-grey H1 {


}

.grey-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 70vw;
    justify-items: center;


}

@media screen and (max-width: 1024px) {

    .grey-content {
        display: flex;
        flex-direction: column;
        /*justify-content: space-between;*/
        flex-wrap: wrap;
        width: 100%;
        justify-items: center;


    }
}


.grey-box {
    width: 45%;
    min-width: 45%;
    padding-bottom: 145px;
    padding-top: 50px;

}


@media screen and (max-width: 1024px) {

    .grey-box {
        width: 300px;
        min-width: 100%;
        /*padding-bottom: 145px;*/
        /*padding-top: 50px;*/

    }

}


.blue-line-divider {
    border-top: solid #444968 20px;
    -webkit-box-shadow: inset 0px 11px 15px -8px rgba(0, 0, 0, 0.28);
    box-shadow: inset 0px 11px 15px -8px rgba(0, 0, 0, 0.28);

}

.blue-line-divider-thin {
    border-top: solid #444968 10px;
    -webkit-box-shadow: inset 0px 11px 15px -8px rgba(0, 0, 0, 0.28);
    box-shadow: inset 0px 11px 15px -8px rgba(0, 0, 0, 0.28);
    margin-bottom: -2px;

}

.footer p {
    font-weight: normal;
    color: #dfdfdf;
    padding-bottom: 5px;
}


.footer h2 {
    font-weight: bold;
    color: #f2f2f2;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    padding-bottom: 10px;
}

.footer h3 {
    font-weight: bold;
    color: #dfdfdf;
    text-space: 15px;
    padding-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
}

.image-box {
    background-image: url("images/5th.jpg");
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    height: 450px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}


.label {
    margin: 2px 0;
}

.field {
    margin: 0 0 20px 0;
}


.central {
    width: 45%;

}

@media screen and (max-width: 480px) {

    .central {
        width: 80%;
        margin-top: 50px;

    }


}


/*.content {width: 960px;margin: 0 auto;}*/

/*div#central {*/
/*    margin: 40px 0px 100px 0px;*/
/*    width: 45%*/
/*}*/

/*@media all and (min-width: 768px) and (max-width: 979px) {*/
/*    .content {*/
/*        width: 750px;*/
/*    }*/
/*}*/

/*@media all and (max-width: 767px) {*/
/*    body {*/
/*        margin: 0 auto;*/
/*        word-wrap: break-word*/
/*    }*/

/*    .content {*/
/*        width: auto;*/
/*    }*/

/*    div#central {*/
/*        margin: 40px 20px 100px 20px;*/
/*    }*/
/*}*/

body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    font-size: initial;
    /*line-height: 1.7em;*/

}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #A1A1A1;
}

button {
    padding: 12px 50px;
    background: rgb(69, 73, 103);
    border: none;
    color: white;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    border-radius: 14px;
    -webkit-box-shadow: 0px 22px 22px -23px #000000;
    box-shadow: 0px 22px 22px -23px #000000;
}

#message {
    /*padding: 0px 40px 0px 0px;*/
}

#mail-status {
    padding: 12px 20px;
    width: 100%;
    display: none;
    font-size: 1em;
    font-family: "Georgia", Times, serif;
    color: rgb(40, 40, 40);
}

.error {
    background-color: #F7902D;
    margin-bottom: 40px;
}

.success {
    background-color: #48e0a4;
}

.g-recaptcha {
    margin: 0 0 25px 0;
}

.banner-titles {


}

hr.solid {
    border-top: 3px solid #bbb;
}

.projects-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;

    align-content: normal;
    width: 50%;
    margin-top: 3em;

}

@media screen and (max-width: 1750px) {
    .projects-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        align-content: center;
        width: 100%;
        margin-top: 3em;

    }


}


.projects-items:nth-child(1) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: start;
    width: 30em;


}

.projects-items:nth-child(2) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    width: 60em;


}


@media screen and (max-width: 1750px) {


    .projects-items:nth-child(1) {

        width: 101%;
        justify-self: center;
        align-content: center;

    }


    .projects-items:nth-child(2) {

        margin-top: 30px;
        width: 80%;
        justify-self: center;
        align-content: center;

    }


}


hr.new1 {
    border-top: 3px solid #454967;
    margin-top: 1em;
    margin-bottom: 1em;
}

H1.new1 {

    color: #444968;


}

.blue-bar {
    height: 3px;
    background-color: #444968;
    width: 650px;


}

.two-column-holder {

    display: flex;
    flex-direction: row;
    width: 70%;
    flex-wrap: wrap;
    justify-content: center;

}


.disciplines-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
    /*padding-top: 5em;*/

}

.about-container {
    max-width: 1200px;


}


.tech-container {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
    padding-top: 5em;
    width: 100%;
}

.tech-container-2 {

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 4em;
    padding-top: 1em;
    width: 80%;

}

@media screen and (max-width: 1010px) {

    .tech-container-2 {

        display: none;


    }

}


.tech-mobile {

    display: none;

}

@media screen and (max-width: 1010px) {


    .tech-mobile {

        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 4em;
        padding-top: 1em;
        width: 100%;
        margin-left: 3em;


    }

}


.team-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
    padding-top: 5em;


}

.disciplines-container-child {
    display: flex;
    flex-direction: row;
    width: 451px;
    gap: 55px;

    justify-content: space-around;


}

@media screen and (max-width: 480px) {

    .disciplines-container-child {
        display: flex;
        flex-direction: row;
        width: 351px;
        gap: 55px;
        justify-content: space-around;
        padding-left: 40px;
        padding-right: 40px;
    }


}


.disciplines-container-child, h2 {
    padding-bottom: 20px;


}

.banner-top {
    position: absolute;
    display: flex;
    flex-direction: row;
    background-size: contain;
    width: 100vw;
    margin-top: -25px;
    margin-bottom: 40px;
    z-index: 9999;


}

.banner-bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    background-size: contain;
    width: 100vw;
    margin-top: -65px;
    margin-bottom: -2px;
    z-index: 9999;

}


@media screen and (max-width: 1080px) {
    .banner-bottom {
        display: none;

    }

    .banner-top {
        display: none;

    }
}


.test-slider {
    width: 100%;
    height: 450px;
    background-color: #A1A1A1;

}


/*//////////////////////////////////////////////////////////////////
[ RS Revo Slide ]*/

/*------------------------------------------------------------------
[ arrow ]*/
.persephone.tparrows {
    cursor: pointer;
    background: rgba(5, 35, 58, 0.3);
    position: absolute;
    display: block;
    z-index: 100;
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: background 0.2s, border-color 0.2s;
    -o-transition: background 0.2s, border-color 0.2s;
    -moz-transition: background 0.2s, border-color 0.2s;
    transition: background 0.2s, border-color 0.2s;
}

.persephone.tparrows:hover {
    background: rgba(5, 35, 58, 1);
    border-color: rgba(255, 255, 255, 0.8);
}

/*------------------------------------------------------------------
[ Slider ]*/
.rev_slider_3 .tp-caption,
.rev_slider_2 .tp-caption,
.rev_slider_1 .tp-caption {
    white-space: normal !important;
}

/*---------------------------------------------*/
#rev_slider_3 .caption-1,
#rev_slider_2 .caption-1,
#rev_slider_1 .caption-1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 15px;
    font-size: 4em;
}

/*---------------------------------------------*/
#rev_slider_3 .caption-2,
#rev_slider_2 .caption-2,
#rev_slider_1 .caption-2 {
    font-family: 'Raleway', sans-serif;
}

/*---------------------------------------------*/
#rev_slider_3 .btn2,
#rev_slider_3 .btn1,
#rev_slider_2 .btn2,
#rev_slider_2 .btn1,
#rev_slider_1 .btn2,
#rev_slider_1 .btn1 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em !important;
    text-transform: uppercase;

    width: 250px;
    height: 150px;
    padding: 10px 20px !important;
    margin: 5px !important;

    -webkit-transition: all 0.2s !important;
    -o-transition: all 0.2s !important;
    -moz-transition: all 0.2s !important;
    transition: all 0.2s !important;


}


#rev_slider_3 .btn1,
#rev_slider_2 .btn1,
#rev_slider_1 .btn1 {
    background-color: #444968;
    color: #fff;
    border-radius: 30px;
    -webkit-box-shadow: 0px 65px 25px -14px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 45px 25px -14px rgba(0, 0, 0, 0.32);
    text-align: center;
    padding-top: 30px;
    padding-left: 30px;

}


#rev_slider_3 .btn2,
#rev_slider_2 .btn2,
#rev_slider_1 .btn2 {
    background-color: #fff;
    color: #666;
    border-radius: 30px;
    -webkit-box-shadow: 0px 65px 25px -14px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 45px 25px -14px rgba(0, 0, 0, 0.32);
}

#rev_slider_3 .btn2:hover,
#rev_slider_3 .btn1:hover,
#rev_slider_2 .btn2:hover,
#rev_slider_2 .btn1:hover,
#rev_slider_1 .btn2:hover,
#rev_slider_1 .btn1:hover {
    background-color: #1d263a;
    color: #fff;
}


/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.rs1-select2 .select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

.rs1-select2 .select2-container .select2-selection--single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
    height: 50px;
    background-color: #fff;
    border-radius: 0px;
    position: relative;


}

/*------------------------------------------------------------------
[ in select ]*/
.rs1-select2
.select2-container
.select2-selection--single
.select2-selection__rendered {
    font-family: Roboto-Regular;
    font-size: 16px;
    color: #666;
    line-height: 1.2;
    padding-left: 20px;
    background-color: transparent;
}

.rs1-select2
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    width: 20px;
    height: 100%;
    top: 0;
    right: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs1-select2
.select2-container--default
.select2-selection--single
.select2-selection__arrow::after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 16px;
    color: #666;
}

.rs1-select2
.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow::after {
    content: "\f106";
}

.rs1-select2
.select2-container--default
.select2-selection--single
.select2-selection__arrow
b {
    display: none;
    border-top-color: #333;
}

.rs1-select2
.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow
b {
    display: none;
    border-bottom-color: #333;
}

/*------------------------------------------------------------------
[ Dropdown option ]*/
.rs1-select2 .select2-container--open .select2-dropdown {
    z-index: 1251;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 0px;
    overflow: hidden;
    background-color: white;
    left: 0px;

    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.rs1-select2 .select2-dropdown--above {
    top: -2px;
}

.rs1-select2 .select2-dropdown--below {
    top: 2px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected="true"] {
    background: #f2f2f2;
    color: #555;
    font-family: 'Raleway', sans-serif;
}

.rs1-select2
.select2-container
.select2-results__option--highlighted[aria-selected] {
    background: #444968;
    color: white;
}

.rs1-select2 .select2-results__options {
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #666;
    line-height: 1.2;
}

.rs1-select2 .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Roboto-Regular;
    font-size: 15px;
    color: #666;
    line-height: 1.2;
}

/*------------------------------------------------------------------
[ rs2-select2 ]*/
.rs2-select2 .select2-container .select2-selection--single {
    height: 30px;
    border: 1px solid #444968;
}

.rs2-select2
.select2-container
.select2-selection--single
.select2-selection__rendered {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #555;
}

.rs2-select2
.select2-container--default
.select2-selection--single
.select2-selection__arrow::after {
    content: "\f0d7";
    font-family: FontAwesome;
    font-size: 18px;
    color: #444968;
}

.rs2-select2
.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow::after {
    content: "\f0d8";
}

.rs2-select2 .select2-container--open .select2-dropdown {
    border: 1px solid #444968;
}

.rs2-select2 .select2-container .select2-results__option[aria-selected] {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
}

.rs2-select2 .select2-results__options,
.rs2-select2 .select2-search--dropdown .select2-search__field {
    font-size: 14px;
}

/*------------------------------------------------------------------
[ rs3-select2 ]*/
.rs3-select2 .select2-container .select2-selection--single {
    height: 40px;
}

.rs3-select2
.select2-container
.select2-selection--single
.select2-selection__rendered {
    font-family: Roboto-Medium;
    font-size: 18px;
    color: #555;
    padding-left: 10px;
}

.rs3-select2
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    right: 5px;
}

.rs3-select2 .select2-container .select2-results__option[aria-selected] {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
}

.rs3-select2 .select2-results__options {
    font-family: Roboto-Medium;
    font-size: 18px;
    color: #555;
}

/*------------------------------------------------------------------
[ rs4-select2 ]*/
.rs4-select2 .select2-container .select2-selection--single {
    height: 40px;
    border: 1px solid #ccc;
}

.rs4-select2
.select2-container
.select2-selection--single
.select2-selection__rendered {
    font-family: Roboto-Regular;
    font-size: 14px;
    color: #555;
    padding-left: 10px;
}

.rs4-select2
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    right: 5px;
}

.rs4-select2 .select2-container .select2-results__option[aria-selected] {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
}

.rs4-select2 .select2-results__options {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #555;
}

/*------------------------------------------------------*/
/*------------------------------------------------------*/
/*------------------------------------------------------*/

.IconContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    background-color: #ffffff;
    /*height: 22vh;*/
    overflow: auto;
    flex-direction: row;
    z-index: 999999;
    gap: 20px;

    padding-bottom: 4em;


}
@media screen and (max-width: 1030px) {
    .IconContainer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-self: center;
        align-items: flex-start;
        align-content: flex-start;
        width: 100%;
        background-color: #ffffff;
        /*height: 22vh;*/
        overflow: auto;
        flex-direction: row;
        z-index: 999999;
        gap: 60px;
        padding-top: 4em;
        padding-bottom: 2em;


    }
}
@media screen and (max-width: 992px) {
    .IconContainer {
        display: none;
    }
}


.IconContainer div {
    width: auto;
    height: auto;
    /*margin: 19px;*/
    /*margin-bottom: 20px;*/
    background-color: rgba(255, 255, 255, 0);
    margin-bottom: 9em;


}

.iconBlocks {
    -webkit-box-shadow: 0px 65px 25px -14px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 45px 25px -14px rgba(0, 0, 0, 0.22);
    z-index: 2222;
    border: #444968 solid 5px;
    cursor: pointer;
    margin-top: 1.5em;
}

.iconBlocks:hover {
    transform: translate(0, -20px);
    transition-timing-function: ease;
    transition: .4s;


}

.contain-this {
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%;
    justify-content: center;
    justify-items: center;
    margin-bottom: -300px;
    margin-top: 20px;
}

.contain-this-child {
    width: 60%;
    height: 300px;
    padding: 3em;
    text-align: justify;
    font-size: 1.2em;
    color: #555555;
    line-height: 1.7em;

}

@media screen and (max-width: 480px) {

    .contain-this-child {
        width: 80%;
        padding: .5em;
        text-align: left;
        font-size: 1em;

    }
}


a[data-tool-tip] {
    position: relative;
}

a[data-tool-tip]::after {
    content: attr(data-tool-tip);
    display: block;
    position: center;
    background-color: #444968;
    /*padding: .5em 1.5em;*/
    color: white;
    /*border-radius: 10px;*/
    font-size: .8em;
    /*width: 150px;*/
    /*height: 150px;*/
    bottom: 0;

    white-space: nowrap;
    transform: scale(0);
    transition: transform ease-out 200ms,
    bottom ease-out 150ms;
    z-index: 2121;
    margin-bottom: -20px;
    margin-top: -145px;
    text-align: center;
    padding: 10px;
    text-decoration: none;


}

a[data-tool-tip]:hover::after {
    transform: scale(1);
    bottom: 100%;

}

.spacer-blank {
    height: 10em;

}

/*Simple Object Center */
.center-me {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
    align-content: center;

}


.center-me, .btn1 {
    padding: 2em;
    margin: 2em;


}

a {
    text-decoration: none;


}


/*.center-me, .btn1{*/

.flex-col-wr-c-s, .flex-col-wr-c-c, .flex-col-wr-c-e, .flex-col-wr-c-st,
.flex-colrev-wr-c-s, .flex-colrev-wr-c-c, .flex-colrev-wr-c-e, .flex-colrev-wr-c-st,
.flex-row-wr-c-s, .flex-row-wr-c-c, .flex-row-wr-c-e, .flex-row-wr-c-st,
.flex-rowrev-wr-c-s, .flex-rowrev-wr-c-c, .flex-rowrev-wr-c-e, .flex-rowrev-wr-c-st,
.flex-wr-c-s, .flex-wr-c-c, .flex-wr-c-e, .flex-wr-c-st,
.flex-col-c-s, .flex-col-c-c, .flex-col-c-e, .flex-col-c-st,
.flex-colrev-c-s, .flex-colrev-c-c, .flex-colrev-c-e, .flex-colrev-c-st,
.flex-row-c-s, .flex-row-c-c, .flex-row-c-e, .flex-row-c-st,
.flex-rowrev-c-s, .flex-rowrev-c-c, .flex-rowrev-c-e, .flex-rowrev-c-st,
.flex-c-s, .flex-c-c, .flex-c-e, .flex-c-st,
.jus-c {
    justify-content: center;
}


.principles-parent {

    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #ebebeb;
}

.principles-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    background-color: #ebebeb;
    height: auto;
    gap: 3em;
    justify-items: center;
    align-items: center;
    width: 75%;

}

.principles-card {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 400px;
    justify-self: center;
    align-items: center;
    text-align: center;
    cursor: pointer;

}

@media screen and (max-width: 480px) {
    .principles-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #ebebeb;
        height: auto;
        gap: 3em;
        justify-items: center;
        align-items: center;

    }
}

@media screen and (max-width: 480px) {

    .principles-card {
        display: flex;
        flex-direction: column;
        width: 200px;
        height: 400px;
        justify-self: center;
        align-items: center;
        text-align: center;
        cursor: pointer;

    }

}


.principles-card, h2 {
    color: #444968;

}

.principles-card, p {
    color: grey;

}

.hide {
    display: none;
}

.myDIV:hover + .hide {
    display: block;
    color: red;
    transition-timing-function: ease-in;
    animation: fadeIn linear .5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.principles-card:hover {
    transform: translate(0, -20px);
    transition-timing-function: ease;
    transition: .4s;


}

.star {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-bottom: -300px;
    margin-top: 100px;

}

.star-child {

    background-image: url("images/star-300.svg");
    width: 300px;
    height: 300px;
    margin-top: 200px;

}

@media screen and (max-width: 480px) {


    .star-child {

        background-image: url("images/star-300.svg");
        width: 300px;
        height: 300px;
        margin-top: 355px;

    }

}

@media screen and (max-width: 1090px) {


    .star-child {

        background-image: url("images/star-300.svg");
        width: 300px;
        height: 300px;
        margin-top: 455px;

    }

}


.star-child:hover {

    transform: translateY(-15px) scale(1.2);
    transition: transform 250ms;
}


.spacer-blank-grey {
    height: 7em;
    background-color: #ebebeb;
}

.bottom-blue-break {
    width: 100%;
    /*background-image: url("images/blue-ramp-break-bottom.svg");*/
    height: 500px;
    background-repeat: no-repeat;
    margin-bottom: -420px;
    z-index: 99999;

}

.blue-button {

    background-color: #444968;
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 120px;
    color: white;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 55px;
    animation-name: buttton-lift;
    transition: transform 250ms;
    text-align: center;
    cursor: pointer;
    width: 100px;
}

.blue-button:hover {
    -webkit-box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    transform: translateY(-15px) scale(1.2);
    background-color: #7b7b7b;
}

.grey-button {

    background-color: #7b7b7b;
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 120px;
    color: white;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 55px;
    transition: transform 250ms;
    width: 100px;
    cursor: pointer;
    text-align: center;
}

.grey-button:hover {
    -webkit-box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    transform: translateY(-15px) scale(1.2);
    background-color: #444968;

}

.services-cards {
    width: 40%;
    height: auto;
    border-radius: 0 0px 17px 17px;
    -webkit-box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    padding: 20px;
    line-height: 1.8em;
    border: 2px solid #f8f8f8;
    background: rgb(241, 241, 241);
    background: linear-gradient(180deg, rgba(241, 241, 241, 1) 0%, rgba(247, 247, 247, 1) 44%, rgba(255, 255, 255, 1) 100%);
    border-top: 15px solid #444968;


}

@media screen and (max-width: 1180px) {


    .services-cards {
        width: 80%;
        height: auto;
        border-radius: 0 0px 17px 17px;
        -webkit-box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
        box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
        padding: 20px;
        line-height: 1.8em;
        border: 2px solid #f8f8f8;
        background: rgb(241, 241, 241);
        background: linear-gradient(180deg, rgba(241, 241, 241, 1) 0%, rgba(247, 247, 247, 1) 44%, rgba(255, 255, 255, 1) 100%);
        border-top: 15px solid #444968;
        margin-top: -34px;
        margin-bottom: 2em;


    }

}


.services-cards h2 {

    text-align: center;
    padding-bottom: 25px;

}


.service-area {
    display: flex;
    flex-direction: row;
    justify-content: center;

}

ul li {
    list-style-type: none;
    padding-right: 25px;

}

.page-wrap {

    display: flex;
    width: 100%;
    justify-content: center;

}

.page-content {
    margin-top: 45px;
    width: 60%;
    max-width: 1050px;
    align-content: center;


}

@media screen and (max-width: 1510px) {
    .page-content {
        margin-top: 45px;
        width: 90%;
    }

}


.divider-grey {
    padding-top: 1px;
    background-image: url("images/thin-grey.svg");
    background-repeat: no-repeat;
    padding-bottom: 5px;


}

.team-card {
    /* Add shadows to create the "card" effect */

    width: 310px;
    border: 2px solid #f8f8f8;
    transition: 0.3s;
    padding: 20px;
    border-radius: 15px;

}

/* On mouse-over, add a deeper shadow */
.team-card:hover {
    -webkit-box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 35px 36px -9px rgba(0, 0, 0, 0.33);
    border-radius: 25px;
}

/* Add some padding inside the card container */
.container {
    padding: 5px 0px;
}

/*.media-content {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    flex-wrap: nowrap;*/
/*    justify-content: center;*/
/*    justify-items: center;*/
/*    align-items: center;*/
/*}*/
.MediaContainer {


    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    justify-items: center;
    justify-self: center;
    align-items: center;
}

.MediaContainer div {
    /*width: 500px;*/
    /*height: 100px;*/
    margin-top: 65px;
    /*width: 55%;*/
    text-align: center;
    margin-bottom: 45px;
}


.banner-text {

    font-size: 2.5em;
    color: white;
    letter-spacing: 15px;
    padding-bottom: 1em;
}


@media screen and (max-width: 480px) {
    .banner-text {
        font-size: 1.7em;
        color: white;
        letter-spacing: 15px;
        font-weight: bold;
        position: center;
        margin-bottom: 125px;

    }


}


@media screen and (max-width: 1150px) {
    .banner-text {
        font-size: 1.7em;
        color: white;
        letter-spacing: 15px;
        font-weight: bold;
        position: center;
        margin-bottom: 125px;

    }


}


.banner-cover-top {

    width: 100vw;
    position: relative;
    /*position: absolute;*/
    height: 500px;


}

.banner-cover-top-child {

    width: 100vw;

    z-index: 55;

}


.banner-cover-bottom-child {

    width: 100vw;
    align-self: flex-end;
    justify-self: flex-end;
    margin-bottom: -25px;

}


@media screen and (max-width: 1050px) {

    .banner-cover-top-child {
        display: none;

    }

    .banner-cover-bottom-child {

        display: none;
    }


}


@media screen and (max-width: 480px) {


    .slider {
        display: none;
    }
}


.home-mobile {


}


@media screen and (max-width: 480px) {
    .home-mobile {
        background-image: url("images/services-page-banner-mobile.jpg");
        background-size: cover;
        background-position: center;
        height: 321px;

    }
}

.break-container {
    width: 80%;

}


.horizontal-break {

    width: 1050px;


    background-color: #444968;
    height: 3px;
    margin-bottom: 10px;


}


p {
    font-family: 'Segoe UI', sans-serif;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    font-size: 1.2em;
    font-weight: normal;
    line-height: 1.5em;
}


.culture-card-holder {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 250px;


}

@media screen and (max-width: 1050px) {
    .culture-card-holder {
        display: none;
    }
}

.culture-card {
    display: flex;
    flex-direction: row;
    width: 1050px;

    border-top: 3px solid #444968;


}

.some-page-wrapper {
    /*margin: 15px;*/

    width: 100%;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.blue-column {

    height: 100px;
    padding-top: 1.5em;
}

.green-column {

    height: 100px;
    padding-top: 1.5em;
}


.careers-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: #444968 1px;
    height: auto;
    align-content: center;
    text-align: center;
    margin-top: 5em;
    gap: 4em;


}

@media screen and (max-width: 1050px) {
    .careers-icons {
        display: none;


    }
}


.this-class {

    color: #444968;
}