/*  FONTS  */

@font-face {
    font-family: 'TitilliumWeb-Black';
    src: url('fonts/TitilliumWeb-Black.eot');
    src: url('fonts/TitilliumWeb-Black.eot?#iefix') format('embedded-opentype'), 
         url('fonts/TitilliumWeb-Black.svg#webfont') format('svg'),
         url('fonts/TitilliumWeb-Black.woff') format('woff'), 
         url('fonts/TitilliumWeb-Black.ttf') format('truetype'),
}

@font-face {
    font-family: 'TitilliumWeb-SemiBold';
    src: url('fonts/TitilliumWeb-SemiBold.eot');
    src: url('fonts/TitilliumWeb-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('fonts/TitilliumWeb-SemiBold.svg#webfont') format('svg'),
         url('fonts/TitilliumWeb-SemiBold.woff') format('woff'),
         url('fonts/TitilliumWeb-SemiBold.ttf') format('truetype'),
}

@font-face {
    font-family: 'SourceSansPro-Regular';
    src: url('fonts/SourceSansPro-Regular.eot');
    src: url('fonts/SourceSansPro-Regular.eot?#iefix') format('embedded-opentype'), 
         url('fonts/SourceSansPro-Regular.svg#webfont') format('svg'),
         url('fonts/SourceSansPro-Regular.woff') format('woff'), 
         url('fonts/SourceSansPro-Regular.ttf') format('truetype'),
}

@font-face {
    font-family: 'SourceSansPro-SemiBold';
    src: url('fonts/SourceSansPro-SemiBold.eot');
    src: url('fonts/SourceSansPro-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('fonts/SourceSansPro-SemiBold.svg#webfont') format('svg'),
         url('fonts/SourceSansPro-SemiBold.woff') format('woff'),
         url('fonts/SourceSansPro-SemiBold.ttf') format('truetype'),
}



/* Unchanged */
* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}

::after, ::before {
    box-sizing: inherit;
    min-height: 0;
    min-width: 0;
}

html {
    font-family: 'SourceSansPro-Regular', Arial, sans-serif;
    font-weight:normal;
    font-style: normal;
    font-size: 16px;
    color: #012834;
}
body {
    background:#fff;
}


/* 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: 1048px;
    margin-left: auto;
    margin-right: auto;
}

.dx-containerFluid {
    width: 100%;
}

.img-responsive {
    width: 100%;
    height: auto;
}

/* HEADER STYLES */

.header {
    background-color: #012834;
    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: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:500;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
}

.navbar1 li:last-child {
    margin-left:15px;
}

.navbar1 li a {
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.navbar1 li a:hover {
    color: #4bc83d;
    text-decoration: none;
}

.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: #012834;
    font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:700;
    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;
}

.header .menu {
    font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:500;
    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;
}

@media only screen and (max-width:1350px) {
    .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: 180px;
    }
    .navbar-brand img {
        width:180px;
    }
}

@media only screen and (max-width:1100px) {
    .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: #012834;
  overflow-x: hidden;
  transition: 0.5s;
  font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
  font-weight:500;
  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: -20px;
  right: 0;
  font-size: 50px;
  border-bottom:none;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 16px}
  .overlay .closebtn {
  font-size: 30px;
  top: 15px;
  right: 35px;
  }
}


  
 

/* FOOTER STYLES */

.footer-above {
    background-color: #003b4d;
    color: #FFF;
    font-size: 14px;
    padding: 66px 0;
}

.footer-above h2 {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    font-style: normal;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.07rem;
}

.footer-above ul {
    list-style: none;
}

.footer-above li a {
    line-height: 26px;
    text-decoration:none;
    color: #3bcff0;
}

.footer-above li a:hover {
    color: #FFF;
    text-decoration: underline;
}

.subtitleFooter, .subtitleFooter a {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    font-style: normal;
    font-size: 18px;
    color: #FFF;
    text-decoration: none;
}

.subtitleFooterBig {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    font-style: normal;
    font-size: 34px;
    line-height: 1;
    color: #FFF;
}

.footer-above h4 {
    font-family: 'SourceSansPro-SemiBold', Arial, sans-serif;
    font-weight:normal;
    font-style: normal; 
    font-size:18px;
}

.footer-above p {
    margin:1.5rem 0;
}

.footer-above button {
    background: none;
    border: 1px solid #FFF;
    border-radius: 67rem;
}
.footer-above button a {
    background: transparent;
    padding: 3px 21px;
    border-radius: 67rem;
    color: #FFF;
    font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:700;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: .3s all;
    -webkit-transition: .3s all;
  }
  
  .footer-above button a:hover {
  background-color:#FFF;
  color:#012834;
  text-decoration: none;
  }

.fis-email {
    padding:0;
}

.fis-email a {
    font-family: 'SourceSansPro-SemiBold', Arial, sans-serif;
    font-weight:normal;
    font-style: normal;
    color: #3bcff0;
    font-size: 16px;
    text-decoration: none;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-email a:hover {
    color: #fff;
    text-decoration: none;
}

.fis-phone {
    padding:0 0 0 20px;
}

.fis-phone a {
    font-family: 'SourceSansPro-SemiBold', Arial, sans-serif;
    font-weight:normal;
    font-style: normal;
    color: #3bcff0;
    font-size: 16px;
    text-decoration: none;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-phone a:hover {
    color: #fff;
    text-decoration: none;
}

.fis-address {
    padding:20px 0 0 0;
}

.fis-address p {
    font-family: 'SourceSansPro-SemiBold', Arial, sans-serif;
    font-weight:normal;
    font-style: normal;
    color: #3bcff0;
    font-size: 16px;
    text-decoration: none;
    margin-top:0;
}

.subtitleFooter a:hover {
    color: #3bcff0;
  text-decoration: none;
}

.fis-social {
    padding: 20px 0 0 20px;
}

.fis-social ul {
    margin-top:6px;
}

.fis-social li {
    display: inline;
    padding-right: 9px;
}

.fis-social li img {
    width:23px;
    height:23px;
}

.fis-social li a .emailIcon {
    background-image: url(../img/iconMail-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
    width:23px;
    Height:23px;
    display:inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social li a .emailIcon:hover {
    background-image: url(../img/iconMail-circle-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
}

.fis-social li a .linkedinIcon {
    background-image: url(../img/iconLinkedin-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
    width:23px;
    Height:23px;
    display:inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social li a .linkedinIcon:hover {
    background-image: url(../img/iconLinkedin-circle-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
}

.fis-social li a .twitterIcon {
    background-image: url(../img/iconTwitter-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
    width:23px;
    Height:23px;
    display:inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social li a .twitterIcon:hover {
    background-image: url(../img/iconTwitter-circle-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
}

.fis-social li a .facebookIcon {
    background-image: url(../img/iconFacebook-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
    width:23px;
    Height:23px;
    display:inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.fis-social li a .facebookIcon:hover {
    background-image: url(../img/iconfacebook-circle-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
}

.social li {
    display: inline;
}

.social li a{
    font-size: 16.5px;
    padding-right: 17.5px;
    padding-top: 5px;
    color: #3bcff0;
    padding-bottom: 20px;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.social li a:hover {
    color: #FFF;
    text-decoration: none;
}

.footer-above .claim {
    width: 100%;
}

.footer-bottom {
    background-color: #012834;
    color: #FFF;
    font-size: 11px;
    padding: 12px 0 0 0;
    min-height: 180px;
    /*height:100%;*/
}

.footerLine {
    height: 80px;
}

.footerLine::after {
    content: '';
    display: block;
    margin: 40px auto;
    width: 100%;
    background-color: #3bcff0;
    height: 1px;
    opacity: .25;
}

.navbar-footer ul {
    font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:500;
    font-style: normal;
    font-size: 16px;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding-top: 10px;
}

.navbar-footer li a {
    color:#FFF;
    text-decoration: none;
    transition: .3s all;
    -webkit-transition: .3s all;
}

.navbar-footer li a:hover {
    color:#3bcff0;
    text-decoration: none;
}

.corporate {
    text-align:center;
}

.corporate ul {
    font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:500;
    font-style: normal;
    font-size: 16px;
    margin-top: 10px;
}

.corporate li {
    display: inline;
    margin:auto 15px;
}

.corporate li a {
    color: #3bcff0;
    text-decoration: none;
    cursor: pointer;
}

.corporate li a:hover {
    color: #FFF;
    text-decoration: none;
}

.copyright {
    font-family: 'TitilliumWeb-SemiBold', Arial, sans-serif;
    font-weight:500;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 20px 0;
}

.separator1white {
    margin: 0 5px;
}

@media only screen and (max-width:768px){
    .footer-bottom {
        min-height: 200px;
    }
    .footer-above h4 {
        font-size: 15px;
    }
    .fis-email a,
    .fis-address p,
    .fis-phone a {
        font-size:13px;
    }
}

@media only screen and (max-width:450px){
    .fis-phone,
    .fis-address,
    .fis-social {
        padding:20px 0 0 0;
    }
    .fis-address p {
        margin-bottom:0;
    }
    .navbar-footer ul {
        justify-content: flex-start;
    }
    .navbar-footer li {
        margin-right:20px;
    }
    .corporate {
        text-align:left;
    }
    .corporate ul,
    .copyright {
        font-size: 13px;
    }
}

/* CORPORATIVE COLORS */

.whiteBK {
    background-color: #FFF;
}

.blackBK {
    background-color: #000;
}

.greyBK-5 {
    background-color: #f9f5f1;
}

.fisGreenBK {
    background-color: #4bcd3e;
}

.fisDarkTealBK {
    background-color: #012834;
}

.fisJadeBK {
    background-color: #009775;
}

.fisSkyBlueBK {
    background-color: #3bcff0;
}

.marigoldBK {
    background-color: #FFC845;
}

.capitalBlueBK{
    background-color: #285bc5;
}

.tealBK {
    background-color: #015b7e;
}

.plumPurpleBK {
    background-color: #4c12a1;
}

.fisRedBK {
    background-color: #ff1f3e;
}

.white {
    color: #FFF;
}

.black {
    color: #000;
}

.grey-5 {
    color: #F1F1F1;
}

.fisGreen {
    color: #4bcd3e;
}

.fisDarkTeal {
    color: #012834;
}

.fisJade {
    color: #009775;
}

.fisSkyBlue {
    color: #3bcff0;
}

.marigold {
    color: #FFC845;
}

.capitalBlue {
    color: #285bc5;
}

.teal {
    color: #012834;
}

.plumPurple {
    color: #4c12a1;
}

.fisRed {
    color: #ff1f3e;
}

/* 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 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 500;
}

h1.gross {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-size: 40px;
    font-weight: 900;
}

h2{
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
}

h3 {
    font-size: 18px;
}


p, ul {
    margin-bottom: 10px;
}

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;
	}
}

@media only screen and (max-width:450px){
    .hideSmall {
		display:none;
	}
}

.divider {
  border-bottom: dashed 1px #009775;
}

.heroImg {
  position: relative;
    width: 100%;
    height: 80px;
    background-color: #015b7e;
}

.heroImg-security {
  position: relative;
    background-image: url(../img/imgHeadSecurity.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
}

.heroImg-aboutus {
  position: relative;
    background-image: url(../img/imgHeadAboutUs.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
}

.heroImg-services {
  position: relative;
    background-image: url(../img/imgHeadServices.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
}

@media only screen and (max-width:450px){
    .heroImg-services {
        background-position: -180px;
    }
}

.heroImg-producttour {
  position: relative;
    background-image: url(../img/imgHeadProductTour.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
}

.heroImg-solutions {
  position: relative;
    background-image: url(../img/imgHeadSolutions.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 410px;
}

.banner {
    position: absolute;
    bottom: 50%;
    left: auto;
    right: auto;
    width: 100%;
    margin: 20px 0 0 -80px;
    padding: 10px 0 10px 200px;
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
}

.banner .dx-container h1{
    color: #FFF;
    font-size: 2.3em;
}

@media only screen and (max-width:450px){
    .banner{
        margin-left: -160px;
    }
}

.intro {
    background-color: #FFF;
    margin-bottom:50px;
}

.intro h2{
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    font-size: 2.2em;
    line-height: 1em;
}

.intro p {
    font-size: 1em;
    line-height: 1.1em;
    color:#012834;
}

@media only screen and (max-width:1024px){
    .intro h2{
        font-size: 2em;
    }
}

.promos {
    padding: 0 40px;
}

.promos h3, .productTour h3{
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
}

.promos h3 {
    margin-bottom: 20px;
}

.promos p {
    color:#FFF;
}

a:link .promos p{
	text-decoration: none;
}

a:hover .promos p {
	text-decoration: underline;
}

.promos img {
    margin: 30px 0;
}

.promos ul {
    padding-left: 20px;
    list-style-image: url('../img/greenArrowLists.svg');
    color:#012834;
}


@media only screen and (max-width:1024px){
    /*.promos p {
        font-size:0.8em;
    }*/
}

.productTour {
    margin-bottom:50px;
}

.productTour h2, .promos h2, .continuityProgram h2, .productTour h2 {
    margin-bottom: 20px;
    line-height: 30px;
}

.productTour h2, .continuityProgram h2, .productTour h2 {
    color: #012834;
}

.promos h2 {
    color:#FFF;
}

.productPage {
    padding-top:50px;
}

.productPage .promos h2, .productPage .promos p {
    color: #012834;
}

.productPage .promos h2 {
    margin-bottom:25px;
}

.productPage h3 {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    color: #012834;
}

.productPage p {
    color:#012834;
}

.productPage li,
.deliveriDynamic li {
    line-height: 22px;
    margin-top: 5px;
}

.pdfParsing p {
    margin-bottom:28px;
}

@media only screen and (max-width:450px){
    .pdfParsing p {
        margin-bottom:10px;
    }
    .productPage h3 {
        text-align: left;
    }
    .productPage p {
        text-align: left;
    }
}
.dataConversionTeam {
    background-image: url(../img/heroImageDataConversionTeam.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top:100px;
    color:#FFF;
}

.dataConversionTeam h3 {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
}

@media only screen and (max-width:450px){
    .dataConversionTeam {
        background-position: -1550px!important;
    }
}

.productTour a {
    text-decoration: none;
    color:inherit;
    color:#012834;
}

.productTour a:hover {
    text-decoration: underline;
    color:inherit;
}

 a.corporateBrand:hover {
    color:#009775;
}

a.documentManagement:hover {
    color: #285bc5;
}

a.workflowColaboration:hover {
    color: #4c12a1;
}

a.deliverDynamic:hover {
    color: #ff1f3e;
}

#delivery h2 {
    color: #012834;
    margin-bottom:25px;
}

#workflow h2 {
    color: #012834;
    line-height: 32px;
    margin-bottom:25px;
}

#workflow p {
    color:#012834;
}

.highlight-producttour img {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    width: 33px;
}

.highlight-producttour h3 {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    color: #4bcd3e;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.highlight-producttour p {
    color: #FFF;
}

/* 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;
  }


  

.security h2{
    color: #012834;
}

.header3lines {
    padding-top:40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header3lines h2 {
    font-size: 36px;
}

.header3lines img {
    height: 68px;
    margin-right:20px;
}

.header3lines p {
    color: #FFF;
    line-height: 24px;
}

.threeLine-detail h3 {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    color: #4bcd3e;
}
.threeLine-detail {
    font-family: 'SourceSansPro-Regular', Arial, sans-serif;
    font-weight:normal;
    font-style: normal;
    color:#FFF;
    margin-top: -20px;
}

.threeLine-detail ul {
    padding-left: 20px;
    padding-bottom: 15px;
    list-style-image: url('../img/greenArrowLists.svg')
}

.threeLine-detail li,
.continuityProgram li {
    line-height: 22px;
    margin-top: 5px;
}

.continuityProgram {
    padding: 50px 0;
}
.continuityProgram .inner {
    padding:0 10px 30px 10px;
    min-height:430px;
}

.continuityProgram .headerCol {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    line-height:20px;
}

.continuityProgram .headerCol img {
    float: left;
    margin: -5px 10px 30px 0;
    height:72px;
}

.continuityProgram ul {
    margin: 20px 0;
    padding-left: 20px;
    line-height: 24px;
    color:#FFF;
    list-style-image: url('../img/greenArrowLists.svg')
}

.securityGraphicDetail .headerCol {
    padding: 10px;
    font-size: 18px;
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
}

.securityGraphicDetail .headerCol img {
    display: inline-block;
    vertical-align: middle;
    height:38px;
    margin: 0 10px 0 0;
}

.securityGraphicDetail  ul {
    margin: 10px 0 30px 0;
    padding-left: 20px;
    line-height: 24px;
    color:#012834;
}

.securityGraphicDetail  ul#people {
    list-style-image: url('../img/greenArrowLists.svg');
}

.securityGraphicDetail  ul#process {
    list-style-image: url('../img/jadeArrowLists.svg');
}

.securityGraphicDetail  ul#technology {
    list-style-image: url('../img/capitalArrowLists.svg');
}

@media only screen and (max-width:450px){
    .continuityProgram .inner {
        min-height:330px;
    }
}

.solutions {
    margin-top:30px;
}

.solutions li {
    line-height: 22px;
    margin-top: 5px;
}

.solutions .fundAdministration {
    background-image: url(../img/imgSolutions1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 456px;
}

.fundAdministration h2,
.fundAdministration p {
    color:#012834;
}

.solutions .investorRelations {
    background-image: url(../img/imgSolutions2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 456px;
}

.investorRelations h2,
.investorRelations p {
    color:#012834;
}

.solutions .portfolioAnalysis {
    background-image: url(../img/imgSolutions3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 456px;
}

.portfolioAnalysis h2,
.portfolioAnalysis p {
    color:#012834;
}

.fundAdministration .inner,
.investorRelations .inner,
.portfolioAnalysis .inner {
    position: absolute;
    left:0;
    bottom:0;
    padding: 20px;
}

.borDer {
    border-right: #3bcff0 solid 1px;
}

.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;
}

@media only screen and (max-width:450px){
    .solutions .fundAdministration {
        background-position:-500px;
    }
    .solutions .investorRelations {
        background-position: -400px -50px;
    }
    .solutions .portfolioAnalysis {
        background-position: -600px -120px;
    }
}

.services ul {
    color:#FFF;
}

.services li {
    line-height: 22px;
    margin-top: 5px;
}

.services h2 {
    margin-bottom: 25px;
}

@media only screen and (max-width:450px){
    .header3lines {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .header3lines .inner {
        display: flex;
        align-items: center;
        margin-left:15px;
    }
    .header3lines h2,
    .header3lines p {
        margin-left:15px;
    }
}

.education {
    background-color:#e7e8e8;
    background-image: url(../img/imgServices-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    position: relative;
    height: 400px;
    padding-top:50px;
}

.education .promos {
    margin-left:50%;
}

.education h2,
.education p,
.education ul {
    color:#012834;
}

.education h2 {
    margin-bottom:25px;
}

@media only screen and (max-width:1366px) {
    .education {
        background-position: -200px;
    }
}

@media only screen and (max-width:960px) {
    .education {
        background-position: -350px;
    }
}

@media only screen and (max-width:450px){
    .education {
        background-position: right;
    }
    .education .promos {
        margin-left:0;
    }
}

.aboutUs h2,
.aboutUs p {
    color:#012834;
}

.bigNumber h2 {
    font-family: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    font-size: 130px;
    line-height: 130px;
    text-align: center;
    background: linear-gradient(45deg, #4c12a1, #ff1f3e 50%);
    background: -webkit-linear-gradient(45deg, #4c12a1, #ff1f3e 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bigNumber p {
    margin-top:30px;
    text-align: center;
    font-weight: 700;
}

@media only screen and (max-width:768px){
    .bigNumber h2 {
        font-size: 95px;
    }
}

@media only screen and (max-width:450px){
    .bigNumber h2 {
        font-size: 100px;
    }
}

.aboutUs a {
    font-family: 'SourceSansPro-SemiBold', Arial, sans-serif;
    color:#012834;
    text-decoration: none;
    margin-right:10px;
    display: inline-block;
    transition: .3s all;
    -webkit-transition: .3s all;
    }
    
    .aboutUs a:hover {
    color:#4bcd3e;
    margin-right:20px;
    }

    .aboutUs img {
        margin:0;
    }
    
    .aboutUs .arrowGreen {
      display: inline-block;
      vertical-align: middle;
      margin:0;
    }

.privacy,
.privacy p,
.cookies,
.cookies p {
    color:#012834;
	font-size: 20px;
}

.privacy p a{
	text-decoration: none;
	color: #285bc5;
}

.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: 'TitilliumWeb-Black', Arial, sans-serif;
    font-weight:900;
    color:#FFF;
    bottom: 25px;
    position: absolute;
}

.cookie table, td, th {
    border: 1px solid #666;
    padding: 20px;
    text-align: left;
}

table {
    border-collapse: collapse;
}