@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,700,700i,900,900i&display=swap');

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    touch-action: none
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .stars {
        width: 600px;
        height: 600px
    }
}

html, body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    background: transparent;
    margin: 0;
    padding: 0;
    text-align: left
}

a, a:link, a:active, a:hover, a:visited, a:focus {
    text-decoration: none;
    border: 0;
    outline: 0;
    transition: all .2s ease-in-out
}

.videoLightbox {
    display: none
}

.cap_content {
    width: 840px;
    height: 780px;
    overflow: hidden;
    position: relative;
    background: black
}

.cap_top {
    width: 100%;
    height: 330px;
    position: relative;
    overflow: visible
}

.cap_top .heroimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0
}

.cap_top h1 {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-weight: 300;
    color: #fff;
    font-style: italic;
    font-size: 26px;
    line-height: 36px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .8);
    letter-spacing: 1px
}

.cap_top h1 strong {
    display: block;
    color: #fff;
    font-style: normal;
    font-size: 50px;
    letter-spacing: 3px
}

.cap_top h2 {
    background: #065c97;
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 20px;
    padding: 5px 30px 5px 10px
}

.cap_top h2:before {
    display: inline-block;
    content: '';
    width: 9px;
    height: 12px;
    margin-right: 10px;
    background: url('../src/img/play.svg') no-repeat left top
}

.cap_top h2 a {
    color: #fff
}

.cap_slides {
    width: 800px;
    height: 375px;
    position: absolute;
    bottom: 30px;
    left: 20px
}

.slide_nav {
    z-index: 10
}

.slide_nav ul {
    display: block;
    position: relative;
    width: 200px;
    z-index: 100
}

.slide_nav li {
    display: block;
    height: 42px;
    width: 100%;
    margin-bottom: 5px;
    transition: all .2s ease-in-out;
    text-align: right;
    background: #2885c6;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.slide_nav li:nth-of-type(odd) {
    background: #59a4da
}

.slide_nav li.on {
    height: 90px;
    pointer-events: none
}

.slide_nav li:before {
    width: 100%;
    height: 20px;
    transition: all .2s ease-out;
    background: #27b34b;
    position: absolute;
    z-index: 0;
    content: '';
    left: 50%;
    top: 50%;
    margin-top: -10px;
    border-radius: 20px;
    transform: scale(0, 0)
}

.slide_nav li.on:before {
    transform: scale(12, 12);
    transition-timing-function: ease-in
}

.slide_nav li span {
    width: 100%;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    padding-right: 25px;
    z-index: 10
}

.slide_nav li span:after {
    display: block;
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: url('../src/img/right.svg') no-repeat top right;
    background-size: auto 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.slide_nav li.on span:after {
    height: 35px
}

.slide_content {
    position: absolute;
    left: 240px;
    top: 0;
    width: 550px;
    z-index: 1;
    transition: all .25s ease-out;
    transform: scale(.8, .8);
    opacity: 0;
    pointer-events: none
}

.slide_content h3 {
    font-style: italic;
    font-weight: 700;
    color: #9ed081
}

.slide_content p {
    margin: 10px 0 15px 0
}

.slide_content.on {
    opacity: 1;
    transform: scale(1, 1);
    pointer-events: auto;
    transition-delay: .3s
}

.slide_content.off {
    animation-name: blowout;
    animation-duration: .3s;
    animation-timing-function: cubic-bezier(.17, .67, .27, .97);
    animation-iteration-count: 1;
    opacity: 0
}

@keyframes blowout {
    0% {
        transform: scale(1, 1);
        opacity: 1
    }
    100% {
        transform: scale(1.3, 1.3);
        opacity: 0
    }
}

.slide_content li {
    display: inline-block;
    width: 175px;
    height: 180px;
    position: relative;
    margin: 0 2px 5px 2px
}

.slide_content.eightup li {
    width: 130px;
    height: 132px
}

.slide_content.eightup li span {
    font-size: 13px;
    line-height: 17px
}

.slide_content li img {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: auto
}

.slide_content li span {
    position: absolute;
    display: block;
    z-index: 10;
    top: 10px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9)
}

#capabilities li {
    text-align: center;
    padding-top: 30px;
    background: rgba(0, 32, 45, .9);
    margin-bottom: 10px
}

#capabilities li img {
    width: auto;
    height: 60px;
    display: inline-block;
    position: relative;
    margin-top: 10px
}

#capabilities li span {
    top: 110px;
    background: transparent;
    font-size: 14px
}

#experts h3 {
    color: #fff;
    font-weight: 300;
    margin-top: 0
}

#experts h3 strong {
    color: #9ed081;
    font-weight: 700
}

#experts li {
    background: #bdc4d2;
    text-align: center
}

#experts li img {
    display: inline-block;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
    position: relative;
    max-height: 80%
}

#experts li span {
    font-size: 11px;
    line-height: 14px;
    text-transform: none;
    bottom: 0;
    top: auto;
    color: #27b34b;
    padding: 5px 0
}

#experts li span strong {
    display: block;
    font-size: 12px;
    color: #fff
}

#experts li span small {
    color: #59a4da;
    font-size: 10px;
    display: block
}

#differentiators li {
    font-size: 20px;
    line-height: 20px;
    display: block;
    height: auto;
    width: 100%;
    margin-bottom: 30px
}

#differentiators li:before {
    display: inline-block;
    width: 20px;
    height: 20px;
    content: '';
    background: url('../src/img/check.svg') no-repeat left center;
    background-size: 100% auto;
    margin: 0 10px 0 0;
    padding-top: -5px;
    vertical-align: bottom
}

#differentiators li div {
    margin: -20px 35px 30px
}

#overview li {
    margin-left: 0;
    height: auto;
    width: 100%;
    position: relative;
    padding-left: .6em
}

#overview li:before {
    color: #fff;
    content: "\2022";
    font-size: 1.385em;
    left: 0;
    position: absolute
}

#overview li div {
    margin: -20px 35px 30px
}

#locations {
    width: 550px;
    height: 375px;
    background: url('../src/img/map_w_dots.svg') no-repeat top left
}

#locations .dot {
    background: #27b34b;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    display: block
}

#locations .dot:after {
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #27b34b;
    border-radius: 100%;
    content: '';
    transform: translate(-25%, -25%)
}

#locations .dot span {
    background: rgba(255, 255, 255, .97);
    padding: 5px 0 10px 15px;
    color: #0f8c44;
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    text-align: left;
    width: 220px;
    position: absolute;
    top: 50%;
    right: 5px;
    transition: all .25s ease-out;
    transition-delay: .25s;
    transform: scale(1.1, 1.1) translateY(-50%);
    opacity: 0;
    pointer-events: none;
    z-index: 1
}

#locations .dot:hover {
    z-index: 10;
    cursor: pointer
}

#locations .dot:hover span {
    transform: scale(1, 1) translateY(-50%);
    opacity: 1;
    transition-delay: 0s
}

#locations .dot span.right {
    right: auto;
    left: 5px
}

#locations .dot span strong {
    color: #065c97;
    font-size: 16px;
    line-height: 26px;
    display: block;
    font-weight: 700
}

.dot.Anaheim {
    left: 5px;
    top: 130px
}

.dot.Auburn {
    left: 80px;
    top: 105px
}

.dot.Bray {
    left: 245px;
    top: 80px
}

.dot.Burlington {
    left: 102px;
    top: 105px
}

.dot.Changhua {
    left: 495px;
    top: 155px
}

.dot.Chartres {
    left: 250px;
    top: 100px
}

.dot.Chengdu {
    left: 450px;
    top: 142px
}

.dot.Chicago {
    left: 65px;
    top: 107px
}

.dot.Chihuahua {
    left: 40px;
    top: 140px
}

.dot.Chula {
    left: 5px;
    top: 130px
}

.dot.Clinton {
    left: 102px;
    top: 105px
}

.dot.Dublin {
    left: 2px;
    top: 110px
}

.dot.Gotemba {
    left: 520px;
    top: 125px
}

.dot.Guadalajara {
    left: 40px;
    top: 160px
}

.dot.Gurnee {
    left: 65px;
    top: 107px
}

.dot.Hanover {
    left: 65px;
    top: 107px
}

.dot.Hasselt {
    left: 255px;
    top: 90px
}

.dot.Ho {
    left: 455px;
    top: 177px
}

.dot.Hong {
    left: 470px;
    top: 148px
}

.dot.Hsinchu {
    left: 490px;
    top: 157px
}

.dot.Huangpu {
    left: 470px;
    top: 148px
}

.dot.Jena {
    left: 255px;
    top: 90px
}

.dot.Kankaanpaa {
    left: 280px;
    top: 60px
}

.dot.Knittlingen {
    left: 255px;
    top: 90px
}

.dot.Manaus {
    left: 110px;
    top: 207px
}

.dot.Marcianise {
    left: 290px;
    top: 115px
}

.dot.Mebane {
    left: 80px;
    top: 120px
}

.dot.Penang {
    left: 447px;
    top: 190px
}

.dot.Pune {
    left: 396px;
    top: 155px
}

.dot.San {
    left: 2px;
    top: 110px
}

.dot.Shanghai {
    left: 477px;
    top: 128px
}

.dot.Shenzhen {
    left: 470px;
    top: 148px
}

.dot.Petersburg {
    left: 80px;
    top: 135px
}

.dot.Suzhou {
    left: 477px;
    top: 128px
}

.dot.Taichu {
    left: 495px;
    top: 155px
}

.dot.Taichung {
    left: 495px;
    top: 155px
}

.dot.Taipei {
    left: 495px;
    top: 155px
}

.dot.Tianjin {
    left: 462px;
    top: 115px
}

.dot.Tijuana {
    left: 5px;
    top: 130px
}

.dot.Uzhgorod {
    left: 303px;
    top: 90px
}

.dot.Vienna {
    left: 280px;
    top: 92px
}

.dot.Wuhan {
    left: 460px;
    top: 140px
}

.dot.Wuxi {
    left: 477px;
    top: 128px
}

.dot.Yantai {
    left: 462px;
    top: 115px
}

.dot.Pleasant {
    left: 65px;
    top: 107px
}

.dot.Dothan {
    left: 65px;
    top: 117px
}

.dot.Atlanta {
    left: 67px;
    top: 107px
}

.dot.Diego {
    left: 2px;
    top: 112px
}

.dot.Tortosa {
    left: 237px;
    top: 105px
}

.dot.Nagyigmand {
    left: 265px;
    top: 80px
}

.content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all .5s ease-in-out
}

.content div {
    pointer-events: auto
}

.stars {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../src/img/table-bg_052616xl.jpg') repeat top left;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
    transition: all .5s ease-in-out
}

iframe {
    overflow: hidden
}

.draggable {
    width: 840px;
    height: 780px;
    background-color: #000;
    overflow: hidden;
    position: absolute;
    opacity: 0;
    transform: scale(1);
    transform-origin: center
}

.draggable .overlayTop {
    position: absolute;
    right: 0;
    top: 0;
    width: 840px;
    height: 320px;
    background: rgba(100, 0, 0, 0)
}

.draggable .overlayBtm {
    position: absolute;
    left: 220px;
    top: 320px;
    width: 620px;
    height: 460px;
    background: rgba(100, 0, 0, 0)
}

.draggable .noMouse {
    pointer-events: none
}

.closeBtn {
    transition: all .2s ease-in-out
}

.hidden {
    opacity: 0
}

.closeButton {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    background: url('../src/img/close-lite.svg') no-repeat top right;
    background-size: 100% auto
}

.closeButton.dark {
    background: url('../src/img/close-dark.svg') no-repeat top right
}

.closeContainer {
    position: fixed;
    left: auto;
    z-index: 10;
    width: 100%;
    text-align: center;
    height: 5%;
    bottom: 10px;
    padding-bottom: 0
}

.closeContainer h2 {
    font-size: 100%;
    margin: auto
}

.closeContainer img {
    height: 35px;
    width: auto;
    line-height: 35px;
    text-align: center
}

.floatingIcons {
    width: 100%;
    display: block;
    position: absolute
}

.floatingIcons.TopIcons {
    top: 20%
}

.floatingIcons.BtmIcons {
    bottom: 22%
}

.floatingIcons ul {
    width: auto;
    display: block;
    text-align: center;
    margin: 0 0 0 175px
}

.floatingIcons ul.row:nth-of-type(odd) {
    margin: 0 0 152px -175px
}

.floatingIcons li {
    display: inline-block;
    margin: 0 25px;
    position: relative
}

.floatingIcons .iconObj img {
    height: 120px;
    width: auto;
    max-width: 180px
}

.floatingIcons .iconObj span {
    position: absolute;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    display: inline-block;
    text-align: center;
    width: auto;
    min-width: 100%;
    padding: 10px 25px;
    background: rgba(0, 12, 32, .7);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    top: 110px;
    left: 0;
    transition: all .2s ease-in-out;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .4)
}

.iconObj {
    transition: all .2s ease-in-out;
    opacity: 1;
    -webkit-filter: blur(0);
    pointer-events: auto
}

.iconObj.open {
    pointer-events: none;
    opacity: .2;
    transition: all .3s ease-in-out
}

.iconObj.dim {
    opacity: .25;
    transform: scale(.8, .8);
    pointer-events: none
}

.iconObj.lit {
    transform: scale(1.1, 1.1);
    pointer-events: auto
}

.iconObj.lit span {
    background: rgba(89, 164, 218, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .8)
}

.iconObj.litdesign span {
    background: rgba(107, 170, 215, 1)
}

.iconObj.litdevelop span {
    background: rgba(39, 132, 197, 1)
}

.iconObj.litindust span {
    background: rgba(3, 68, 114, 1)
}

.iconObj.litmanufac span {
    background: rgba(0, 114, 89, 1)
}

.iconObj.litdeliver span {
    background: rgba(0, 147, 114, 1)
}

.chevDesign {
    fill: rgba(107, 170, 215, 1)
}

.chevDevelop {
    fill: rgba(39, 132, 197, 1)
}

.chevIndustrialize {
    fill: rgba(3, 68, 114, 1)
}

.chevManufacture {
    fill: rgba(0, 114, 89, 1)
}

.chevDeliver {
    fill: rgba(0, 147, 114, 1)
}

.chevron.faded {
    opacity: .25;
    transition: all .2s ease-in-out
}

.chevronContainer {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.chevronContainer .chevron {
    display: inline-block;
    width: 20%;
    height: 116px;
    padding: 0 60px 0 60px;
    position: relative;
    vertical-align: top;
    overflow: visible;
    margin-left: -45px
}

.chevronContainer .chevReset {
    display: inline-block;
    width: 200px;
    height: 116px;
    position: relative;
    overflow: hidden
}

.chevronContainer h2 {
    position: absolute;
    z-index: 10;
    width: 100%;
    font-weight: 300;
    font-size: 22px;
    line-height: 22px;
    height: 22px;
    left: 0;
    top: 50%;
    margin-top: -10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .8)
}

.chevronContainer h2 strong {
    text-transform: uppercase;
    font-size: 40px;
    display: block;
    font-weight: 300
}

.chevronShape {
    position: absolute;
    height: 116px;
    width: 470px;
    top: 0;
    left: 0;
    z-index: 0
}

.floatingIcons {
    width: 100%;
    display: block;
    position: absolute
}

.logo {
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: 0;
    height: 10%;
    padding-top: 3%;
    text-align: center;
    display: block;
    transition: all .35s ease-in-out
}

.logo img {
    transition: all .35s ease-in-out
}

.ar-mode .logo {
    top: 35%
}

.ar-mode .logo img {
    width: 400px
}

.ar-overlay {
    width: 100%;
    height: 100%;
    background-color: #eeeff0;
    transition: all .5s ease-in-out;
    pointer-events: none
}

.hidden {
    display: none
}

.contentArea {
    position: relative;
    width: 100%;
    height: 83%;
    top: 10%;
    margin: auto;
    transition: visibility 0s linear, opacity .5s linear
}

.ar-mode .contentArea, .ar-mode .closeContainer {
    opacity: 0;
    visibility: hidden
}

.contentArea .floatingIcons, .contentArea .chevronContainer {
    position: relative;
    top: auto
}

.contentArea .floatingIcons.TopIcons {
    margin-top: 2%
}

.contentArea .chevronContainer {
    top: auto;
    transform: scale(0.6);
    left: auto;
    display: flex
}

.contentArea .chevronContainer .chevron {
    flex: 1 1 7%;
    margin-left: -20px
}

.contentArea .chevronShape {
    width: 100%
}

.contentArea .chevronContainer .chevron, .contentArea .chevronShape {
    height: 90px
}

.contentArea .floatingIcons.BtmIcons {
    bottom: auto
}

.contentArea .floatingIcons ul {
    width: 100%;
    margin: 0 0 75px 40px
}

.contentArea .floatingIcons ul.row:nth-of-type(odd) {
    margin: 0 0 120px -90px
}

.blue1 {
    fill: #00a5e1
}

.blue2 {
    fill: #0070bf
}

.blue3 {
    fill: #005695
}

.green1 {
    fill: #003a68
}

.green2 {
    fill: teal
}

.draggable .overlayTop {
    height: 40%;
    width: 100%;
    -ms-transform: matrix(1, 0.1, 0, 1, 1, 0);
    -webkit-transform: matrix(1, 0.1, 0, 1, 1, 0);
    transform: matrix(1, 0.1, 0, 1, 1, 0);
    margin-top: -40px
}

.draggable .overlayBtm {
    height: 60%;
    top: 40%;
    width: 73%;
    left: 27%
}

.cap_content {
    width: 100%;
    height: 100%
}

.cap_top {
    height: 35%
}

.cap_top .heroimg {
    max-height: 100%
}

.cap_slides {
    width: 100%;
    height: 60%;
    bottom: 5px
}

.slide_content li {
    width: 165px;
    height: 170px
}

#capabilities li img {
    max-width: 90%
}

.contentArea .floatingIcons ul {
    display: flex
}

.contentArea .floatingIcons li {
    flex: 1 7%;
    width: auto
}

@media screen and (min-width: 1024px) {
    .contentArea {
        transform: scale(0.8);
        -webkit-transform: scale(0.8)
    }

    .contentArea .floatingIcons {
        transform: scale(1);
        -webkit-transform: scale(1)
    }

    .contentArea .floatingIcons.TopIcons {
        margin-top: -2%
    }

    .contentArea .floatingIcons .iconObj img {
        max-width: 100%;
        height: 100px;
        transform: scale(0.7)
    }

    .contentArea .floatingIcons .iconObj span {
        font-size: 9px
    }

    .contentArea .floatingIcons ul.row:nth-of-type(odd) {
        margin: 0 0 70px -90px
    }

    .contentArea .floatingIcons ul {
        margin: 0 0 50px 0
    }

    .contentArea .chevronContainer {
        transform: scale(0.8);
        -webkit-transform: scale(0.8)
    }

    .chevronContainer h2 strong {
        font-size: 24px
    }

    .logo img {
        width: 170px
    }
}

@media screen and (min-width: 1024px) and (max-height: 768px) {
    .contentArea .floatingIcons.TopIcons {
        margin-top: -4%
    }

    .logo img {
        width: 150px
    }
}

@media screen and (min-width: 1280px) {
    .logo img {
        width: 200px
    }

    .contentArea {
        transform: scale(1);
        -webkit-transform: scale(1)
    }

    .contentArea .floatingIcons.TopIcons {
        margin-top: -1%
    }

    .contentArea .floatingIcons, .contentArea .chevronContainer {
        transform: scale(0.8);
        -webkit-transform: scale(0.8)
    }

    .contentArea .chevronContainer {
        width: 70%;
        margin: auto
    }

    .contentArea .floatingIcons .iconObj span {
        font-size: 11px;
        line-height: 16px
    }

    .contentArea .floatingIcons .iconObj img {
        transform: scale(0.6)
    }
}

@media screen and (min-width: 1440px) {
    .contentArea .floatingIcons .iconObj span {
        font-size: 14px
    }

    .chevronContainer h2 strong {
        font-size: 19px
    }
}

@media screen and (min-width: 1920px) {
    .logo {
        height: 15%;
        padding-top: 5.5%
    }

    .contentArea {
        top: 15%
    }

    .logo img {
        width: 230px
    }

    .contentArea .floatingIcons.TopIcons {
        margin-top: 0
    }

    .contentArea .floatingIcons .iconObj span {
        padding: 10px
    }

    .contentArea .floatingIcons .iconObj img {
        height: 120px
    }

    .contentArea .chevronContainer {
        width: 70%;
        margin: auto
    }

    .chevronContainer h2 strong {
        font-size: 24px
    }

    .contentArea .chevronContainer .chevron {
        margin-left: -25px
    }

    .floatingIcons li {
        margin: 0 15px
    }
}

@media screen and (min-width: 3840px) {
    .logo {
        height: 20%
    }

    .contentArea {
        top: 20%;
        width: 85%
    }

    .logo img {
        width: 480px
    }

    .contentArea .chevronContainer {
        width: 66%;
        margin: 5% auto 4% auto
    }

    .contentArea .floatingIcons .iconObj img {
        transform: scale(1);
        -webkit-transform: scale(1);
        height: 120px;
        width: auto;
        max-width: 180px
    }

    .contentArea .floatingIcons, .contentArea .chevronContainer {
        transform: scale(1);
        -webkit-transform: scale(1)
    }

    .contentArea .floatingIcons .iconObj span {
        top: 135px;
        font-size: 20px;
        padding: 10px 25px;
        line-height: 26px
    }

    .contentArea .chevronContainer .chevron, .contentArea .chevronShape {
        height: 116px
    }

    .contentArea .chevronContainer .chevron {
        margin-left: -45px
    }

    .chevronContainer h2 strong {
        font-size: 40px
    }

    .contentArea .floatingIcons ul {
        margin-left: 85px
    }

    .contentArea .floatingIcons ul.row:nth-of-type(odd) {
        margin-bottom: 150px
    }

    .floatingIcons li {
        margin: 0 25px
    }
}

@media screen and (orientation: landscape) {
    .ui-mobile, .ui-mobile .ui-page {
        height: 100%
    }
}

.blue0 {
    fill: #65d6f7
}

.blue1 {
    fill: #00a5e1
}

.blue2 {
    fill: #0070bf
}

.blue3 {
    fill: #005695
}

.green1 {
    fill: #003a68
}

.green2 {
    fill: teal
}

.iconObj.blue0 span {
    background: #65d6f7
}

.iconObj.blue1 span {
    background: #00a5e1
}

.iconObj.blue2 span {
    background: #0070bf
}

.iconObj.blue3 span {
    background: #005695
}

.iconObj.green1 span {
    background: #003a68
}

.iconObj.green2 span {
    background: teal
}

@media all and (orientation: portrait) {
    .logo {
        padding-top: 6%;
        height: 10%
    }

    .logo img {
        width: 380px
    }

    .contentArea {
        top: 10%;
        transform: scale(1);
        -webkit-transform: scale(1)
    }

    .stars {
        background-position: center center !important
    }

    .contentArea .floatingIcons.TopIcons {
        margin: 0
    }

    .contentArea .floatingIcons ul {
        flex-wrap: wrap;
        padding: 0;
        width: 90%
    }

    .contentArea .floatingIcons li {
        flex: 1 auto;
        margin: 2.25vh 25px
    }

    .contentArea .floatingIcons ul, .contentArea .floatingIcons ul.row:nth-of-type(odd) {
        margin: 0
    }

    .contentArea .floatingIcons ul.row {
        position: relative;
        top: auto
    }

    .contentArea .floatingIcons ul.row:nth-of-type(odd) {
        left: 0
    }

    .contentArea .floatingIcons ul.row:nth-of-type(even) {
        left: 10%
    }

    .contentArea .floatingIcons .iconObj span {
        font-size: 9px;
        top: 70px;
        padding: 5px 20px
    }

    .contentArea .floatingIcons .iconObj img {
        height: 60px;
        max-width: 120px
    }

    .chevronContainer h2 strong {
        font-size: 24px
    }

    .contentArea .chevronContainer {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        top: 1vh
    }

    .contentArea .floatingIcons ul.row {
        margin: 10px 0
    }

    .contentArea .contentAreaIcons[icon-count="32"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="30"] .floatingIcons ul.row {
        margin: .3vh 0
    }

    .contentArea .contentAreaIcons[icon-count="28"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="27"] .floatingIcons ul.row {
        margin: 1.5vh 0
    }

    .contentArea .contentAreaIcons[icon-count="24"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="21"] .floatingIcons ul.row {
        margin: 2.7vh 0
    }

    .contentArea .contentAreaIcons[icon-count="20"] .floatingIcons ul.row {
        margin: 2vh 0 6vh 0
    }

    .contentArea .contentAreaIcons[icon-count="18"] .floatingIcons ul.row {
        margin: 3vh 0
    }

    .contentArea .contentAreaIcons[icon-count="16"] .floatingIcons ul.row {
        margin: 7vh 0
    }

    .contentArea .contentAreaIcons[icon-count="15"] .floatingIcons ul.row {
        margin: 4.5vh 0
    }

    .contentArea .contentAreaIcons[icon-count="12"] .floatingIcons ul.row {
        margin: 7.5vh 0
    }

    @media screen and (max-width: 768px) and (max-height: 1024px) {
        .logo img {
            width: 150px
        }

        .logo {
            padding-top: 3%;
            height: 6%
        }

        .contentArea {
            top: 6%;
            height: 87%
        }

        .contentArea .floatingIcons li {
            margin: 2.25vh 10px
        }

        .contentArea .floatingIcons .iconObj img {
            height: 40px;
            max-width: 120px
        }

        .contentArea .floatingIcons .iconObj span {
            font-size: 6px;
            top: 50px
        }

        .contentArea .chevronContainer .chevron {
            margin-left: -15px
        }

        .chevronContainer h2 strong {
            font-size: 18px
        }
    }
    @media screen and (min-width: 1024px) and (min-height: 1280px) {
        .contentArea .floatingIcons .iconObj img {
            height: 50px;
            max-width: 110px
        }

        .contentArea .floatingIcons .iconObj span {
            font-size: 11px;
            top: 60px
        }
    }
    @media screen and (min-width: 1080px) and (min-height: 1920px) {
        .contentArea .floatingIcons li {
            margin: 2.5vh 25px
        }

        .contentArea .floatingIcons .iconObj img {
            height: 80px;
            max-width: 140px
        }

        .contentArea .floatingIcons .iconObj span {
            font-size: 14px;
            top: 90px
        }
    }
    @media screen and (min-width: 1081px) and (min-height: 1921px) {
        .contentArea .floatingIcons, .contentArea .chevronContainer {
            transform: scale(1);
            -webkit-transform: scale(1)
        }

        .contentArea .floatingIcons li {
            margin: 2.25vh 25px
        }

        .contentArea .floatingIcons .iconObj img {
            height: 100px;
            max-width: 160px
        }

        .contentArea .floatingIcons .iconObj span {
            font-size: 14px;
            top: 110px;
            padding: 10px 20px
        }
    }
    @media screen and (min-width: 1441px) and (min-height: 2161px) {
        .contentArea .floatingIcons li {
            margin: 2vh 25px
        }

        .contentArea .floatingIcons .iconObj img {
            height: 120px;
            max-width: 180px;
            transform: scale(1);
            -webkit-transform: scale(1)
        }

        .contentArea .floatingIcons .iconObj span {
            font-size: 21px;
            top: 140px;
            padding: 10px 25px;
            line-height: 26px
        }
    }
    @media screen and (min-width: 1600px) and (min-height: 2560px) {
        .contentArea .contentAreaIcons[icon-count="32"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="30"] .floatingIcons ul.row {
            margin: .9vh 0
        }

        .contentArea .contentAreaIcons[icon-count="28"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="27"] .floatingIcons ul.row {
            margin: 2vh 0
        }

        .contentArea .contentAreaIcons[icon-count="24"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="21"] .floatingIcons ul.row {
            margin: 3.5vh 0
        }

        .contentArea .contentAreaIcons[icon-count="20"] .floatingIcons ul.row {
            margin: 4vh 0 6vh 0
        }

        .contentArea .contentAreaIcons[icon-count="18"] .floatingIcons ul.row {
            margin: 3.5vh 0
        }

        .contentArea .contentAreaIcons[icon-count="16"] .floatingIcons ul.row {
            margin: 8vh 0
        }

        .contentArea .contentAreaIcons[icon-count="15"] .floatingIcons ul.row {
            margin: 5.5vh 0
        }

        .contentArea .contentAreaIcons[icon-count="12"] .floatingIcons ul.row {
            margin: 7.5vh 0
        }
    }
    @media screen and (min-width: 2160px) and (min-height: 3840px) {
        .contentArea .floatingIcons li {
            margin: 2.5vh 25px
        }

        .contentArea .contentAreaIcons[icon-count="32"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="30"] .floatingIcons ul.row {
            margin: 1.5vh 0
        }

        .contentArea .contentAreaIcons[icon-count="28"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="27"] .floatingIcons ul.row {
            margin: 2.5vh 0
        }

        .contentArea .contentAreaIcons[icon-count="24"] .floatingIcons ul.row, .contentArea .contentAreaIcons[icon-count="21"] .floatingIcons ul.row {
            margin: 4vh 0
        }

        .contentArea .contentAreaIcons[icon-count="20"] .floatingIcons ul.row {
            margin: 3vh 0 7vh 0
        }

        .contentArea .contentAreaIcons[icon-count="18"] .floatingIcons ul.row {
            margin: 4.5vh 0
        }

        .contentArea .contentAreaIcons[icon-count="16"] .floatingIcons ul.row {
            margin: 9vh 0
        }

        .contentArea .contentAreaIcons[icon-count="15"] .floatingIcons ul.row {
            margin: 6vh 0
        }

        .contentArea .contentAreaIcons[icon-count="12"] .floatingIcons ul.row {
            margin: 8vh 0
        }

        .contentArea .contentAreaIcons[icon-count="20"] .floatingIcons.BtmIcons, .contentArea .contentAreaIcons[icon-count="12"] .floatingIcons.BtmIcons {
            margin-top: 1vh
        }
    }
}

@media all and (orientation: landscape) {
    .contentArea .floatingIcons ul {
        flex-wrap: wrap;
        position: relative;
        padding: 0
    }

    .contentArea .floatingIcons ul, .contentArea .floatingIcons ul.row:nth-of-type(odd) {
        margin: 0 0 5px -50px !important
    }

    .contentArea .floatingIcons ul.row:nth-of-type(odd) {
        left: 0
    }

    .contentArea .floatingIcons ul.row:nth-of-type(even) {
        left: 6%
    }

    .contentArea .floatingIcons li {
        margin: 2vh 25px 2.3vw 25px
    }

    .contentArea .floatingIcons .iconObj span {
        padding: 5px 20px !important
    }
}