/* Unchanged */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::after,
::before {
    box-sizing: inherit;
    min-height: 0;
    min-width: 0;
}

html {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    overflow-x: hidden;
}

body {
    background: transparent radial-gradient(closest-side at 50% 0, #fff 0, #edf1fa 100%) 0 0 no-repeat padding-box;
    min-height: 100vh;
    overflow-x: hidden;
}


/* GRID STYLES */

.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.col-offset-1 {
    margin-left: 8.33%;
}

.col-offset-2 {
    margin-left: 16.66%;
}

.col-offset-3 {
    margin-left: 25%;
}

.col-offset-4 {
    margin-left: 33.33%;
}

.col-offset-5 {
    margin-left: 41.66%;
}

.col-offset-6 {
    margin-left: 50%;
}

.col-offset-7 {
    margin-left: 58.33%;
}

.col-offset-8 {
    margin-left: 66.66%;
}

.col-offset-9 {
    margin-left: 75%;
}

.col-offset-10 {
    margin-left: 83.33%;
}

.col-offset-11 {
    margin-left: 91.66%;
}

.col-offset-12 {
    margin-left: 100%;
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}

@media only screen and (min-width: 600px) {

    /* For tablets: */
    .col-m-1 {
        width: 8.33%;
    }

    .col-m-2 {
        width: 16.66%;
    }

    .col-m-3 {
        width: 25%;
    }

    .col-m-4 {
        width: 33.33%;
    }

    .col-m-5 {
        width: 41.66%;
    }

    .col-m-6 {
        width: 50%;
    }

    .col-m-7 {
        width: 58.33%;
    }

    .col-m-8 {
        width: 66.66%;
    }

    .col-m-9 {
        width: 75%;
    }

    .col-m-10 {
        width: 83.33%;
    }

    .col-m-11 {
        width: 91.66%;
    }

    .col-m-12 {
        width: 100%;
    }

    .col-m-offset-1 {
        margin-left: 8.33%;
    }

    .col-m-offset-2 {
        margin-left: 16.66%;
    }

    .col-m-offset-3 {
        margin-left: 25%;
    }

    .col-m-offset-4 {
        margin-left: 33.33%;
    }

    .col-m-offset-5 {
        margin-left: 41.66%;
    }

    .col-m-offset-6 {
        margin-left: 50%;
    }

    .col-m-offset-7 {
        margin-left: 58.33%;
    }

    .col-m-offset-8 {
        margin-left: 66.66%;
    }

    .col-m-offset-9 {
        margin-left: 75%;
    }

    .col-m-offset-10 {
        margin-left: 83.33%;
    }

    .col-m-offset-11 {
        margin-left: 91.66%;
    }

    .col-m-offset-12 {
        margin-left: 100%;
    }
}

@media only screen and (min-width: 768px) {

    /* For desktop: */
    .col-1 {
        width: 8.33%;
    }

    .col-2 {
        width: 16.66%;
    }

    .col-3 {
        width: 25%;
    }

    .col-4 {
        width: 33.33%;
    }

    .col-5 {
        width: 41.66%;
    }

    .col-6 {
        width: 50%;
    }

    .col-7 {
        width: 58.33%;
    }

    .col-8 {
        width: 66.66%;
    }

    .col-9 {
        width: 75%;
    }

    .col-10 {
        width: 83.33%;
    }

    .col-11 {
        width: 91.66%;
    }

    .col-12 {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {

    /* For tablets: */
    .col-s-1 {
        width: 8.33%;
    }

    .col-s-2 {
        width: 16.66%;
    }

    .col-s-3 {
        width: 25%;
    }

    .col-s-4 {
        width: 33.33%;
    }

    .col-s-5 {
        width: 41.66%;
    }

    .col-s-6 {
        width: 50%;
    }

    .col-s-7 {
        width: 58.33%;
    }

    .col-s-8 {
        width: 66.66%;
    }

    .col-s-9 {
        width: 75%;
    }

    .col-s-10 {
        width: 83.33%;
    }

    .col-s-11 {
        width: 91.66%;
    }

    .col-s-12 {
        width: 100%;
    }

    .col-s-offset-1 {
        margin-left: 8.33%;
    }

    .col-s-offset-2 {
        margin-left: 16.66%;
    }

    .col-s-offset-3 {
        margin-left: 25%;
    }

    .col-s-offset-4 {
        margin-left: 33.33%;
    }

    .col-s-offset-5 {
        margin-left: 41.66%;
    }

    .col-s-offset-6 {
        margin-left: 50%;
    }

    .col-s-offset-7 {
        margin-left: 58.33%;
    }

    .col-s-offset-8 {
        margin-left: 66.66%;
    }

    .col-s-offset-9 {
        margin-left: 75%;
    }

    .col-s-offset-10 {
        margin-left: 83.33%;
    }

    .col-s-offset-11 {
        margin-left: 91.66%;
    }

    .col-s-offset-12 {
        margin-left: 100%;
    }
}

.dx-container {
    max-width: 1148px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.dx-containerFluid {
    width: 100%;
}

.img-responsive {
    width: 100%;
    height: auto;
}

/* HEADER STYLES */

.header {
    background-color: #1d1f48;
    color: #FFF;
    height: 70px;
}

.menuWrapper {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.menuWrapper .inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar1 {
    color: #FFF;
    text-align: right;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 60px;
}

.navbar1 ul {
    list-style: none;
    margin-bottom: 0;
}

.navbar1 li {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
}

.navbar1 li:first-child {
    margin-right: 15px;
}

.navbar1 li:last-child {
    margin-left: 15px;
}

.navbar1 li a {
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.navbar1 li a:hover {
    color: #4bc83d;
    text-decoration: none;
}

.navbar1 li a.navActive {
    color: #4bc83d;
}

.separator1 {
    margin: 0 5px;
}

.navbar1 button {
    background: none;
    border: none;
}

.navbar1 button a {
    background: #4bcd3e;
    padding: 3px 21px;
    border: 2px solid #4bcd3e;
    border-radius: 67rem;
    color: #1d1f48;
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.navbar1 button a:hover {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
}

.navbar-brand {
    margin-left: 60px;
    width: 280px;
    display: inline-block;
    cursor: pointer;
    margin-top: -6px;
}

.header .menu {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}

.menu ul {
    list-style: none;
    margin-bottom: 0;
}

.menu li {
    display: inline;
    margin: 0 10px;
}

.menu li a {
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.menu li a:hover {
    color: #4bc83d;
    text-decoration: none;
}

.menu li a.navActive {
    color: #4bc83d;
}

@media only screen and (max-width:1439px) {
    .header .menu {
        font-size: 14px;
    }

    .navbar1 {
        font-size: 14px;
        margin-right: 40px;
    }

    .navbar1 button a {
        font-size: 14px;
        padding: 2px 15px;
    }

    .navbar-brand {
        margin-left: 40px;
        width: 250px;
        margin-top: -3px;
    }

    .navbar-brand img {
        width: 250px;
    }
}

@media only screen and (max-width:1170px) {
    .header .menu {
        font-size: 12px;
    }

    .navbar1 {
        font-size: 12px;
        margin-right: 10px;
    }

    .navbar1 button a {
        font-size: 12px;
        padding: 2px 13px;
    }

    .navbar-brand {
        margin-left: 10px;
    }
}

@media only screen and (max-width:1005px) {

    .inner .menu,
    .navbar1 {
        display: none !important;
    }
}

/* MENU TOGGLE */

.hamburgerIcon {
    color: #4bc83d;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #1d1f48;
    overflow-x: hidden;
    transition: 0.5s;
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
}

.overlay-content {
    position: relative;
    top: 5%;
    width: 100%;
    text-align: left;
    margin-top: 30px;
}

.overlay a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #FFFFFF;
    display: block;
    transition: .3s all;
    -webkit-transition: .3s all;
    border-bottom: 1px solid rgba(59, 204, 237, .3);
}

.overlay a:hover,
.overlay a:focus {
    color: #4bc83d;
}

.overlay .closebtn {
    position: absolute;
    top: -5px;
    right: -3px;
    font-size: 50px;
    border-bottom: none;
    color: #4bc83d;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 16px
    }

    .overlay .closebtn {
        font-size: 30px;
        top: 15px;
        right: 35px;
    }
}





/* FOOTER STYLES */

.footer-above {
    color: #FFF;
    font-size: 14px;
    padding: 66px 0;
    position: relative;
    background: transparent linear-gradient(61deg, #1d1f48 0, #1d1f48 100%) 0 0 no-repeat padding-box;
}

.footer-above .highlight {
    position: absolute;
    left: 50%;
    bottom: 25%;
    background: #fff;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 72%);
    transform: translateX(-50%);
    opacity: .65;
    z-index: 2;
    border-radius: 50%;
    width: calc(114vw);
    height: 20vh;
    background: radial-gradient(rgb(255 255 255 / 64%), rgb(255 255 255 / 0) 68%);
    mix-blend-mode: overlay;
}

.footer-above video {
    width: 100%;
    max-width: 350px;
    margin-bottom: 60px;
}


.footer-above h2 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -0.07rem;
}

.footer-above p {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.3;
}

.footer-above .cardDark:hover p {
    scale: 1;
}

.footer-above .dx-container .row {
    display: flex;
    align-items: center;
}

.footer-above .dx-container .row .inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.footer-above .cardDark {
    z-index: 3;
    position: relative;
    width: 45%;
    padding: 30px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.footer-above .cardDark:hover {
    scale: 1.1;
    background: rgba(0, 0, 0, 0.5);
}

.footer-above .cardDark .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-above .iconProducts img {
    width: 33px;
    height: 26px;
}

.footer-above .iconInsights img {
    width: 33px;
    height: 32px;
}

.footer-above p {
    margin: 1.5rem 0;
}

.footer-above button {
    background: none;
    border: 1px solid #4bcd3e;
    border-radius: 67rem;
}

.footer-above button a {
    background: #4bcd3e;
    padding: 13px 21px;
    border-radius: 67rem;
    color: #000;
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.footer-above .cardDark:hover button a {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-color: #4bcd3e;
}

.get-in-touch {
    margin-top: 40px;
    margin: 0 18px;
    position: absolute;
    bottom: 40px;
    z-index: 4;
    width: 44%;
}

.get-in-touch::after {
    content: "";
    bottom: -80px;
    position: absolute;
    border-radius: 50%;
    width: calc(105%);
    height: calc(100vw / 35);
    background: radial-gradient(rgb(0 0 0 / 90%), #fff0 72%);
    mix-blend-mode: unset;
    opacity: .25;
}

.get-in-touch h3 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
    font-size: 27px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.get-in-touch a {
    text-decoration: none;
}

.get-in-touch a.contact-button .contactField {
    background: rgb(0 0 0 / 30%);
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
}

.get-in-touch a.contact-button .contactField:hover {
    background: rgb(0 0 0 / 50%);
}

.get-in-touch .contactField-copy {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: rgb(255 255 255 / 50%);
    transition: all .3s ease-in-out;
}

.get-in-touch a.contact-button .contactField:hover .contactField-copy {
    color: rgb(255 255 255 / 90%)
}

.get-in-touch .fis-icon-arrow {
    width: 21px;
    height: 9px;
}

.footer-bottom {
    background-color: #000;
    color: #FFF;
    font-size: 11px;
    padding: 54px 0 0 0;
    min-height: 180px;
    position: relative;
}

.footer-bottom .footerDots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/footerDots-left.svg) no-repeat left;
    width: 296px;
    height: 77px;
}

.footer-bottom .footerDots::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(../img/footerDots-right.svg) no-repeat right;
    width: 296px;
    height: 77px;
}

.footer-bottom h2::after {
    content: '';
    position: absolute;
    bottom: 40px;
    background: url(../img/tm.svg) no-repeat left;
    width: 12px;
    height: 9px;
}



.row:has(.slogan) {
    display: flex;
    justify-content: center;
}

.copyright,
.slogan {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 38px;
    line-height: 1.2;
    position: relative;
    width: fit-content;
    padding-bottom: 54px;
}

.slogan {
    padding-top:0;
    margin-top:15px;
    padding-bottom:0;
}

.footer-bottom .directions {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 2;
    padding: 54px 0;
}

.footer-bottom .directions>p {
    margin-bottom: 0;
}

.footer-bottom .directions span {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #fff;
}

.fis-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}

.fis-social a.linkedinIcon {
    background-image: url(../img/iconLinkeding-blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    width: 40px;
    Height: 40px;
    display: inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social a.linkedinIcon:hover {
    background-image: url(../img/iconLinkeding-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.fis-social a.twitterIcon {
    background-image: url(../img/iconX-blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    width: 40px;
    Height: 40px;
    display: inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social a.twitterIcon:hover {
    background-image: url(../img/iconX-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.fis-social a.facebookIcon {
    background-image: url(../img/iconFacebook-blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    width: 40px;
    Height: 40px;
    display: inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social a.facebookIcon:hover {
    background-image: url(../img/iconfacebook-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.fis-social a {
    margin: 0 5px;
}

.corporate {
    text-align: center;
    margin-bottom: 18px;
}

.corporate ul {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    margin-top: 10px;
    list-style: none;
    display: inline-flex;
}

.corporate li {
    display: inline;
    margin: auto 15px;
}

.corporate li a {
    color: #4bcd3e;
    text-decoration: underline;
    cursor: pointer;
}

.corporate li a:hover {
    color: #FFF;
}

@media only screen and (max-width:1120px) {

    .footer-above {
        padding:60px;
    }

    .footer-above video {
        max-width: 350px;
    }

    .footer-above h2 {
        font-size:32px;
    }

    .footer-above p,
    .footer-above button a {
        font-size:14px;
    }

    .get-in-touch {
        width:43%;
    }

    .footer-above .cardDark p {
        font-size:12px;
    }

    .footer-bottom {
        min-height: 200px;
    }
}

@media only screen and (max-width:850px) {

    .footer-above{
        padding: 40px;
    }

    .footer-above .dx-container .row .col-6:nth-child(2) {
        padding-bottom:80px;
    }

    .footer-bottom h2::after {
        bottom: unset;
    }

    .get-in-touch {
        margin-left:10px;
    }
}

@media only screen and (max-width:450px) {

    .footer-above{
        padding: 40px;
    }

    .footer-above .dx-container .row {
        flex-direction:column;
    }

    .footer-above video {
        display:block;
        margin: 0 auto;
        max-width: 150px;
    }

    .footer-above h2 {
        text-align:center;
        font-size: 42px;
    }

    .footer-above p {
        text-align: center;
    }

    .footer-above .dx-container .row .inner {
        flex-direction: column;
    }

    .footer-above .cardDark {
        width: 100%;
    padding: 20px 30px;
    margin: 10px 0;
    }

    .get-in-touch {
        position:relative;
        width:100%;
        margin:40px 0 0 0;
        bottom:20px;
    }

    .get-in-touch h3 {
        text-align: center;
    }

    .footerDots::after {
        display: none;
    }

    .footer-bottom h2::after {
        bottom:unset;

    }

    .footer-bottom .directions {
        flex-direction: column;
    }

    .directions p {
        text-align: center;
        font-size: 16px;
        margin: 0 30px;
        line-height: 1.5;
    }

    .directions span {
        padding-right: 15px;
    }

    .fis-social {
        padding-left: 0;
        padding-top: 30px;
    }

    .corporate {
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid #3d3d40;
    }

    .corporate ul,
    .corporate li {
        font-size: 13px;
        display: block;
    }

    .corporate li {
        margin: 10px 0;
    }
}

/* CORPORATIVE COLORS */

.fisWhiteBK {
    background-color: #FFF;
}

.fisBlackBK {
    background-color: #000;
}

.fisCharcoalBK {
    background-color: #3D3D40;
}

.fisGreenBK {
    background-color: #4bcd3e;
}

.fisSecondaryGreenBK {
    color: #05a399;
}

.fisPrimaryEggplantBK {
    background-color: #431C53;
}

.fisPrimaryNavyBK {
    background-color: #1d1f48;
}

.fisRaspberryBK {
    background-color: #B21A53;
}

.fisBlueBK {
    background-color: #3bcff0;
}



.fisWhite {
    color: #FFF;
}

.fisBlack {
    color: #000;
}

.fisCharcoal {
    color: #3D3D40;
}

.fisGreen {
    color: #4bcd3e;
}

.fisSecondaryGreen {
    color: #05a399;
}

.fisPrimaryEggplant {
    color: #431C53;
}

.fisPrimaryNavyB {
    color: #1d1f48;
}

.fisRaspberry {
    color: #B21A53;
}

.fisBlue {
    color: #3bcff0;
}



/* GENERAL CONTENTS */

.greenLine {
    background-color: #4bcd3e;
    height: 4px;
    width: 50px;
    border-radius: 2px;
    margin: 20px 0;
}

.greenLineSmall {
    background-color: #4bcd3e;
    height: 3px;
    width: 36px;
    border-radius: 2px;
    margin: 10px 0;
}

h1,
h2,
h3 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 40px;
    font-weight: 300;
}


h2 {
    font-size: 36px;
    font-weight: 300;
}

h3 {
    font-size: 24px;
}

p {
    line-height: 1.2;
}

@media only screen and (max-width:800px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width:450px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}

p,
ul {
    margin-bottom: 16px;
}

hr.veinticinco {
    margin-bottom: 25px;
    border: 0;
}

hr.cincuenta {
    margin-bottom: 50px;
    border: 0;
}

hr.cien {
    margin-bottom: 100px;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.text-right {
    text-align: right;
}

@media only screen and (min-width:1005px) {
    .hideToggle {
        display: none !important;
    }
}

@media only screen and (max-width:1005px) {
    .hideBig {
        display: none !important;
    }

    hr.cien {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width:450px) {
    .hideSmall {
        display: none;
    }
}

.divider {
    border-bottom: dashed 1px #009775;
}

.dotImages {
    max-width: 500px;
}

.heroImg {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: #015b7e;
}

.heroImg-home {
    background: transparent linear-gradient(180deg, #65678F 0, #1d1f48 100%) 0 0 no-repeat padding-box;
    display: flex;
    justify-content: center;
    height: 491px;
}

.heroImg-home .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
}

@media only screen and (max-width:850px) {
    .heroImg-home {
        height: 391px;
    }

    .heroImg-home .inner {
        padding:40px;
    }
    
}

@media only screen and (max-width: 450px) {

    .heroImg-home {
        height: auto;
    }

    .heroImg-home .inner {
        flex-direction: column;
        padding: 10px 15px;
    }

    .heroImg-home .inner .content{
        padding: 15px;
    }

    .heroImg-home .inner h1 {
        text-align: center;
        font-size: 24px;
    }

    .greenLine {
        margin: 15px auto;
    }

    .heroImg-home .inner p {
        text-align: center;
    }

    .homeHeaderImage {
        padding: 0 0 30px 0;
    }

}

.heroImg-aboutus {
    position: relative;
    background-image: url(../img/imgHeadAboutUs.jpg);
    background-position: center -80px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 491px;
}

.leyend {
    font-family: 'Roobert', Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
}


.heroImg-producttour {
    position: relative;
    background-image: url(../img/imgHeadProductTour.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 491px;
}

.heroImg-solutions {
    background: transparent linear-gradient(118deg, #1D1F48 0%, #B21A53 100%) 0% 0% no-repeat padding-box !important;
    display: flex;
    justify-content: center;
    height: 491px;
}

@media only screen and (max-width:850px) {
    .heroImg-producttour,
    .heroImg-solutions {
        height:391px;
    }

    .heroImg-solutions .dx-container {
        padding:40px;
    }
}

.heroImg-solutions .dx-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.heroImg-solutions .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.banner {
    position: absolute;
    bottom: 50%;
    left: auto;
    right: auto;
    width: 100%;
    margin: 20px 0 0 -80px;
    padding: 10px 0 10px 200px;
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
}

.banner .dx-container h1 {
    color: #FFF;
    font-size: 2.3em;
}

@media only screen and (max-width:450px) {

    .heroImg-solutions {
        height:auto;
    }

    .heroImg-solutions .dx-container {
        flex-direction:column;
        text-align: center;
    }

    .heroImg-solutions .content {
        align-items: center;
    }

    .heroImg-solutions .content h1 {
        margin-bottom:20px;
    }

    .heroImg-solutions .content p {
        text-align: center;
        margin-bottom:0;
        margin-top:20px;
    }

    .solutions {
        flex-direction: column;
        margin-top:0!important;
    }

    .solutions .inner {
        text-align:center;
        align-items: center !important;
    }

    .intro p {
        padding:0 !important;
    }

    .solutions .dx-container:has(.cardDark) {
        flex-direction: column;
        align-items: center;
    }

    .solutions .dx-container .cardDark {
        padding:40px;
        margin: 15px;
        width:auto;
    }

    .solutions .promos p {
        text-align: center !important;
    }

    .investorRelations img {
        margin-left: 0 !important;
    }

    .banner {
        left: 50%;
        top: 30%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 40px;
    }
    .banner .leyend,
    .banner h1 {
        text-align:center;
    }

    .solutions .portfolioAnalysis {
        flex-direction: column;
        height:auto;
    }

}

.intro {
    display: flex;
    align-items: center;
}

.intro h2 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.2em;
    color: #000;
}

.intro .greenLine {
    margin-left: 40px;
}

.intro p {
    line-height: 1.3em;
    color: #000;
}

.intro h2,
.intro p {
    padding: 0 40px;
}

@media only screen and (max-width:1100px) {
    .promos {
        padding: 0 10px;
    }

    .promos .cardDark {
        height: 385px !important;
        padding:50px !important;
    }
}

@media only screen and (max-width:850px) {
    .promos {
        padding: 0 10px;
    }

    .promos .cardDark {
        height: 370px !important;
        padding:40px !important;
    }
}

@media only screen and (max-width:450px) {
    .intro {
        flex-direction: column;
    }

    .intro h2,
    .intro p {
        text-align: center;
    }

    .intro .greenLine {
        margin: 15px auto;
    }
}

.promos {
    padding: 0 30px;
}

.promos h3,
.productTour h3 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
    font-size: 24px;
}

.promos h3 {
    margin-bottom: 20px;
}

.promos p {
    margin-bottom: 30px;
}

a:link .promos p {
    text-decoration: none;
    line-height: 1.2;
}

a:hover .promos p {
    text-decoration: none;
}

.promos img {
    margin: 0 0 30px 0;
}

.promos ul {
    padding-left: 20px;
}

.promos .cardDark {
    background: rgba(0, 0, 0, 0.2);
    height: 325px;
    border-radius: 10px;
    padding: 60px 50px;
    transition: all .3s ease 0s;
}

.promos .cardDark:hover {
    background: rgba(0, 0, 0, 0.5);
    scale: 1.1;
}

.promos .cardDark>.inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


@media only screen and (max-width:450px) {
    .promos .cardDark {
        margin: 10px;
    }
}


.productTour h2,
.promos h2,
.productTour h2 {
    margin-bottom: 40px;
}

.productTour h3,
.productTour h3 {
    margin-bottom: 20px;
}

.productPage {
    padding: 100px 0;
}

.productPage .promos h2 {
    margin-bottom: 25px;
}

.productPage h3 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
}

.deliveriDynamic div.col-6:first-child {
    padding-left: 0;
}

.deliveriDynamic div.col-6:nth-child(2) {
    padding-right: 0;
}

.productPage ul,
.deliveriDynamic ul,
.solutions ul {
    list-style: none;
}

.productPage li::before,
.deliveriDynamic li::before,
.solutions li::before {
    content: '';
    width: 3px;
    position: absolute;
    height: 15px;
    background-color: #4BCD3E;
    left: 0;
    top: 9%;
    left: -18px;
}

.productPage li,
.deliveriDynamic li {
    line-height: 22px;
    margin-top: 5px;
    position: relative;
}

.productPage .cardLight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 60px;
    transition: all .3s ease 0s;
}

.productPage .cardLight:hover {
    background: rgba(255, 255, 255, 0.3);
    scale: 1.05;
}

.productPage .cardLight>.inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pdfParsing p {
    margin-bottom: 28px;
    line-height: 1.2;
}

@media only screen and (max-width:1180px) {
    .deliveriDynamic {
        margin:0 15px;
    }
}

@media only screen and (max-width:850px) {
    .productPage .cardLight {
        padding:30px;
    }

    .deliveriDynamic {
        margin:0 15px;
    }

    .productPage {
    padding: 70px 0;
}
}

@media only screen and (max-width:450px) {

    .deliveriDynamic {
        margin-left:15px;
        margin-right:15px;
    }

    .productTour h2,
    .deliveriDynamic h2 {
        text-align: center;
    }

    .productTour h3 {
        font-size:20px;
    }

    .productTour .col-s-12 {
        text-align:center !important;
    }

    .pdfParsing p {
        margin-bottom: 10px;
    }

    .productPage {
    padding: 50px 0;
}

    .productPage .cardLight {
        padding:30px;
    }

    .productPage .promos h2,
    .productPage .promos p {
        text-align:center;
    }

    .productPage .promos .greenLineSmall {
        margin:10px auto;
    }
}

.dataConversionTeam {
    background-image: url(../img/heroImageDataConversionTeam.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 50px;
    margin-top: 80px;
    border-radius: 10px;
}

.dataConversionTeam div.col-6 {
    padding-top: 40px;
}

.dataConversionTeam h3 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
}

.dataConversionTeam img {
    width: 170px;
}

@media only screen and (max-width:1180px) {
    .dataConversionTeam {
        margin: 80px 15px 0;
    }
}

@media only screen and (max-width:850px) {
    .dataConversionTeam {
        margin: 80px 15px 0;
    }
}

@media only screen and (max-width:450px) {
    .dataConversionTeam {
        background-position: -990px !important;
        margin-left:15px;
        margin-right:15px;
        padding: 40px;
    }
}

.productTour a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.productTour a:hover {
    text-decoration: none;
    color: #05a399;
}

a.corporateBrand:hover {
    color: #05a399;
}

a.documentManagement:hover {
    color: #05a399;
}

a.workflowColaboration:hover {
    color: #05a399;
}

a.deliverDynamic:hover {
    color: #05a399;
}

#delivery h2 {
    margin-bottom: 25px;
}

#workflow h2 {
    line-height: 32px;
    margin-bottom: 25px;
}


/* Lightbox */

.lightbox {
    /* Default to hidden */
    display: none;

    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* A bit of padding around image */
    padding: 1em;

    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
    display: block;
}

.lightbox span {
    /* Full width and height */
    display: block;
    width: 100%;
    height: 100%;

    /* Size and position background image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.solutions {
    margin-top: 60px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.solutions li {
    line-height: 22px;
    margin-top: 5px;
    position: relative;
}

.row.solutions.fisPrimaryNavyBK {
    padding:100px 15px;
}

.investorRelations {
    height: 456px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.investorRelations img {
    margin-left: 40px;
}


.portfolioAnalysis {
    height: 456px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fundAdministration .inner,
.investorRelations .inner {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
}

.solutions .dx-container:has(.cardDark) {
    display: flex;
    justify-content: space-between;
}

.solutions .cardDark {
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    border-radius: 10px;
    padding: 40px 50px;
    transition: all .3s ease 0s;
    width: 32%;
}

@media only screen and (max-width:850px) {
    .row.solutions.fisPrimaryNavyBK {
    padding:50px 15px;
}

.solutions .cardDark {
    padding: 40px 15px;
}
}

.solutions .cardDark:hover {
    background: rgba(0, 0, 0, 0.5);
    scale: 1.1;
}

.solutions .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.solutions .promos {
    min-height: 420px;
}

.solutions .promos h3 {
    color: #FFF;
}

.solutions .promos img {
    height: 72px;
}

.solutions .promos p {
    text-align: left;
}

.solutions .promos ul {
    text-align: left;
    color: #FFF;
}

.row.aboutFIS {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
}

.row.numbers {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px 0 60px 0;
    margin:0 15px;
}

.cardNumbers {
    text-align: center;
    padding-right: 15px;
    padding-left: 15px;
    border-right: 2px solid rgb(255 255 255 / 50%);
    border-bottom: 2px solid rgb(255 255 255 / 50%);
    border-top: 2px solid rgb(255 255 255 / 50%);
    border-radius: 10px;
    border-left: 2px solid rgb(255 255 255 / 50%);
    margin-right: 10px;
    margin-bottom: 10px;
    box-sizing: content-box;
    min-height: 170px;
    min-width: 170px;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: rgb(255 255 255 / 15%);
    transition: all .3s ease 0s;
}

.cardNumbers:hover {
    scale: 1.05;
}


h2.bigNumber {
    font-size: 42px;
    font-family: 'Roobert', sans-serif;
    font-weight: 700;
    line-height: 1;
}

p.bigNumber {
    text-align: center;
    font-size: 18px;
}

@media only screen and (max-width:850px) {
    .bigNumber h2 {
        font-size: 95px;
    }

    .row.numbers {
        flex-wrap:wrap;
        justify-content: center;
    }

    .row.aboutFIS {
        padding:50px 0;
    }

}

@media only screen and (max-width:450px) {
    .bigNumber h2 {
        font-size: 100px;
    }

    .row.aboutFIS {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .aboutFIS .greenLineSmall {
        margin-left:auto;
        margin-right:auto;
    }

    .row.numbers {
        flex-direction: column;
        align-items: center;
    }

}

.aboutFIS a {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.aboutFIS a:hover {
    color: #4bcd3e;
    margin-right: 20px;
}

.aboutFIS img {
    margin: 0;
}

.aboutUs .arrowGreen {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.faq {
    margin:0 15px;
}

.dx-container.faq h3 {
    padding: 30px 0;
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: 300;
}


.privacy p a {
    text-decoration: none;
    color: #4bcd3e;
}

.privacy p a:hover {
    text-decoration: underline;
}

.cookies li {
    line-height: 24px;
}

.privacy .dx-container h1,
.cookies .dx-container h1,
.maintenance .dx-container h1 {
    font-family: 'Roobert', Arial, sans-serif;
    font-weight: normal;
    color: #FFF;
    bottom: 25px;
    position: absolute;
}

div.tablecontainer {
  overflow-x: auto !important;
}

.cookie table,
td,
th {
    border: 1px solid #666;
    padding: 20px;
    text-align: left;
}

table {
    border-collapse: collapse;
}

.directions p.copyright.text-center{
    padding-bottom: unset;
    font-size: unset;
}
.right-nav-container a.contact-us.btn-primary-green-on-dark:hover {
    color: #000 !important;
}

@media only screen and (max-width:450px) {
    .cookie table,
td,
th {
    padding: 5px;
    text-align: left;
}
}