@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Fuentes
3.0 VARIABLES
4.0 modules
5.0 GENERAL



--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
  clear: both;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, a:hover {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/*para ocultar texto y que lo lean los lectores de no videntes*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*para eliminar los float*/
header, section, footer, aside {
  clear: both;
}

/*imagen al 100% de ancho responsive*/
.image-responsive {
  width: 100%;
  height: auto;
}

/*input al 100%*/
input, select {
  display: block;
  width: 100%;
}

/*elimina el diseño por defecto en el iphone*/
input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

button {
  border: none;
  background-color: transparent;
}

/*--------------------------------------------------------------
2.0 Fuentes
--------------------------------------------------------------*/
@font-face {
  font-family: "IntelClear";
  src: url("../fonts/IntelClear_WLat_Rg.eot");
  src: url("../fonts/IntelClear_WLat_Rg.woff") format("woff"), url("../fonts/IntelClear_WLat_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "IntelClearBold";
  src: url("../fonts/IntelClear_WLat_Bd.eot");
  src: url("../fonts/IntelClear_WLat_Bd.woff") format("woff"), url("../fonts/IntelClear_WLat_Bd.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "IntelClearPro";
  src: url("../fonts/IntelClearPro_W_Bd.eot");
  src: url("../fonts/IntelClearPro_W_Bd.woff") format("woff"), url("../fonts/IntelClearPro_W_Bd.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "IntelClearLight";
  src: url("../fonts/IntelClear_WLat_Lt.eot");
  src: url("../fonts/IntelClear_WLat_Lt.woff") format("woff"), url("../fonts/IntelClear_WLat_Lt.ttf") format("truetype");
  font-weight: bold;
}
/*--------------------------------------------------------------
3.0 variables
--------------------------------------------------------------*/
/* Responsive Breakpoints (min-width) */
/* Main margins */
/*--------------------------------------------------------------
3.0 modules
--------------------------------------------------------------*/
/* based on https://codepen.io/mutedblues/pen/MmPNPG */
/* header */
.nav-include-wrapper {
  background-color: #0071C5;
  height: 50px;
  position: relative;
  padding: 15px 25px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  transition: height 0.2s ease;
  /* menu */
  /* menu icon */
}
.nav-include-wrapper .menu {
  background: #333333;
  margin: 0;
  padding: 0;
  height: 50px;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: -1;
  padding-left: 20px;
}
.nav-include-wrapper .menu > li {
  padding-right: 20px;
}
.nav-include-wrapper .menu > li a, .nav-include-wrapper .menu > li .submenu-label > span {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: white;
  display: block;
  padding: 0;
  text-decoration: none;
  text-align: center;
}
.nav-include-wrapper .logo {
  position: absolute;
  left: calc(50% - 31px);
  transition: all 0.2s ease-in-out;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-include-wrapper .logo img {
  transition: width 0.2s ease-in-out;
  width: 90px;
}
.nav-include-wrapper .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-in-out;
}
.nav-include-wrapper .menu-icon {
  cursor: pointer;
  display: inline-block;
  padding: 28px 20px;
  position: absolute;
  left: 0;
  user-select: none;
}
.nav-include-wrapper .menu-icon .navicon {
  background: white;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-in-out;
  width: 18px;
}
.nav-include-wrapper .menu-icon .navicon:before, .nav-include-wrapper .menu-icon .navicon:after {
  background: white;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-in-out;
  width: 100%;
}
.nav-include-wrapper .menu-icon .navicon:before {
  top: 5px;
}
.nav-include-wrapper .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
.menu-btn {
  display: none;
}
.menu-btn:checked ~ .menu {
  max-height: 80px;
  z-index: 99;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.submenu-btn {
  display: none;
}
.submenu-btn ~ .submenu {
  display: none;
}
.submenu-btn:checked ~ .submenu {
  background: #000;
  display: block;
  position: absolute;
  background: #252525;
  top: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}
.submenu-btn:checked ~ .submenu li {
  height: 55px;
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.submenu-btn:checked ~ .submenu li::after {
  content: url("../images/submenu-arrow.svg");
  position: absolute;
  right: 30px;
}

.no-logo .logo {
  display: none;
}

@media (min-width: 768px) {
  .nav-include-wrapper {
    height: 70px;
  }
  .nav-include-wrapper .menu {
    background: none;
    height: auto;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    padding-left: 20px;
  }
  .nav-include-wrapper .menu li {
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-include-wrapper .menu li a, .nav-include-wrapper .menu li .submenu-label > span {
    font-size: 18px;
  }
  .nav-include-wrapper .menu li:hover > a, .nav-include-wrapper .menu li:hover .submenu-label > span {
    color: #00aeef;
  }
  .nav-include-wrapper .menu li:hover .submenu {
    display: flex;
    position: absolute;
    background: #252525;
    max-height: 70px;
    height: 70px;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.15s ease;
  }
  .nav-include-wrapper .menu li:hover .submenu li {
    height: 100%;
    padding-left: 20px;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    border-bottom: 3px solid #252525;
  }
  .nav-include-wrapper .menu li:hover .submenu li::after {
    display: none;
  }
  .nav-include-wrapper .menu li:hover .submenu li:hover, .nav-include-wrapper .menu li:hover .submenu li.active {
    border-bottom: 3px solid #00aeef;
  }
  .nav-include-wrapper .menu li:hover .submenu li:hover > a, .nav-include-wrapper .menu li:hover .submenu li.active > a {
    color: white;
  }
  .nav-include-wrapper .menu li .submenu {
    top: 100%;
    max-height: 0;
    opacity: 0;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .nav-include-wrapper .menu li .submenu li {
    border-bottom: 3px solid transparent;
    height: 0;
  }
  .nav-include-wrapper .menu li .submenu li:hover {
    border-bottom: 3px solid #00AEEF;
  }
  .nav-include-wrapper .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .nav-include-wrapper .menu-icon {
    display: none;
  }
  .nav-include-wrapper .logo {
    left: 24px;
  }
  .nav-include-wrapper .logo img {
    width: 100px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .nav-include-wrapper .logo {
    left: 170px;
  }
}
.nav-in-header .logo {
  display: none;
}

.header-wrapper {
  background-image: url(../images/header-bg.png);
  background-position: center;
  background-size: auto;
  padding: 55px 2%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.header-wrapper .logo {
  width: 150px;
  margin: 0 0 24px;
}
.header-wrapper h1 {
  color: #FFFFFF;
  font-size: 42px;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header-wrapper {
    padding: 0px 2% 20px 2%;
    background-position: top;
  }
  .header-wrapper h1 {
    font-size: 56px;
  }
  .header-wrapper h1 span {
    display: block;
  }
  .header-wrapper .logo {
    display: block;
    width: 150px;
    margin: 0 0 10px;
  }
}

.home .header-wrapper {
  background-image: url(../images/home-header-s@3x.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .home .header-wrapper {
    background-image: url(../images/home-header-l.png);
  }
}

.secondary-header-wrapper {
  background-image: url(../images/secondary-header-bg.png);
  background-position: center;
  background-size: auto 100%;
  padding: 40px 2% 54px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.secondary-header-wrapper h1 {
  color: #FFFFFF;
  font-size: 36px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 20px;
}
.secondary-header-wrapper h1 span {
  display: block;
}
.secondary-header-wrapper p {
  color: white;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secondary-header-wrapper {
    padding: 30px 3%;
  }
  .secondary-header-wrapper h1 {
    font-size: 55px;
  }
  .secondary-header-wrapper h1 span {
    display: inline;
  }
  .secondary-header-wrapper p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .secondary-header-wrapper {
    padding: 30px 4%;
  }
}

.desktop-and-mobile .secondary-header-wrapper {
  background-image: url(../images/DM-header-s@2x.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .desktop-and-mobile .secondary-header-wrapper {
    background-image: url(../images/DM-header-l@2x.png);
  }
}

.data-center .secondary-header-wrapper {
  background-image: url(../images/DC-header-l@2x.png);
  background-size: cover;
}

.memory-and-storage .secondary-header-wrapper {
  background-image: url(../images/MS-header-S@2x.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .memory-and-storage .secondary-header-wrapper {
    background-image: url(../images/MS-header-l@2x.png);
  }
}

.business-it .secondary-header-wrapper {
  background-image: url(../images/IT-header-s.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .business-it .secondary-header-wrapper {
    background-image: url(../images/IT-header-l.png);
  }
}

.cloud-computing .secondary-header-wrapper {
  background-image: url(../images/CC-header-s@2x.png);
  background-size: cover;
}
.iot .secondary-header-wrapper {
  background-image: url(../images/IOT-header-s@2x.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .iot .secondary-header-wrapper {
    background-image: url(../images/IOT-header-l@2x.png);
  }
}

.industries .secondary-header-wrapper {
  background-image: url(../images/IN-header-s@2x.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .industries .secondary-header-wrapper {
    background-image: url(../images/IN-header-l@2x.png);
  }
}

.contact-wrapper {
  background: #252525;
  padding: 45px 2%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.contact-wrapper h5 {
  font-family: Arial, sans-serif;
  color: #FFFFFF;
  font-size: 24px;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 24px;
}
.contact-wrapper p {
  font-size: 16px;
  color: #B6B6B6;
  text-align: center;
  margin: 0 0 28px;
}
.contact-wrapper .boxes-wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.contact-wrapper .boxes-wrapper .box {
  background: #005A9D;
  width: 250px;
  height: 90px;
  margin: 0 0 30px;
  padding: 0 0 0 25px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.contact-wrapper .boxes-wrapper .box p {
  color: white;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
.contact-wrapper .boxes-wrapper .box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 14px 0 0;
}
.contact-wrapper .boxes-wrapper .box .arrow {
  margin: 0 0 0 15px;
}
@media screen and (min-width: 768px) {
  .contact-wrapper {
    padding: 45px 3%;
  }
  .contact-wrapper h5 {
    font-size: 36px;
    margin: 0 0 20px;
  }
  .contact-wrapper p {
    margin: 0 0 28px;
    max-width: 915px;
  }
  .contact-wrapper .boxes-wrapper {
    flex-flow: row nowrap;
    align-items: center;
  }
  .contact-wrapper .boxes-wrapper .box {
    background: #005A9D;
    width: 250px;
    height: 90px;
    margin: 0 10px;
    padding: 0 0 0 25px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  .contact-wrapper .boxes-wrapper .box p {
    color: white;
    font-weight: bold;
    text-align: left;
    margin: 0;
  }
  .contact-wrapper .boxes-wrapper .box .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 14px 0 0;
  }
  .contact-wrapper .boxes-wrapper .box .arrow {
    margin: 0 0 0 15px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-wrapper {
    padding: 45px 7%;
  }
  .contact-wrapper h5 {
    font-size: 36px;
    margin: 0 0 20px;
  }
}

.benefits-wrapper {
  padding: 10px;
  background-color: #F3F3F3;
}
.benefits-wrapper .top {
  margin: 0 0 30px;
}
.benefits-wrapper .top .title-section {
  text-align: center;
  font-size: 42px;
  margin: 0 0 15px;
}
.benefits-wrapper .top p {
  text-align: center;
  font-size: 16px;
  color: #555555;
}
.benefits-wrapper .benefits-container .benefit {
  margin: 20px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.benefits-wrapper .benefits-container .benefit .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  max-width: 160px;
  flex-shrink: 0;
}
.benefits-wrapper .benefits-container .benefit .icon-container .icon.points {
  width: 55%;
}
.benefits-wrapper .benefits-container .benefit .icon-container .icon.training {
  width: 60%;
}
.benefits-wrapper .benefits-container .benefit .icon-container .icon.specialty {
  width: 40%;
}
.benefits-wrapper .benefits-container .benefit .icon-container .icon.marketing {
  width: 53%;
}
.benefits-wrapper .benefits-container .benefit .text {
  width: 56%;
}
.benefits-wrapper .benefits-container .benefit .text .title {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #252525;
  margin: 0 0 5px;
}
.benefits-wrapper .benefits-container .benefit .text .description {
  color: #555555;
  font-size: 16px;
}
.benefits-wrapper .bottom {
  margin: 50px 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
.benefits-wrapper .bottom p {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #252525;
  margin: 0 0 25px;
}
.benefits-wrapper .bottom .cta {
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .benefits-wrapper .benefits-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .benefits-wrapper .benefits-container .benefit {
    margin: 20px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 30%;
  }
  .benefits-wrapper .benefits-container .benefit .icon-container {
    width: 100%;
    height: 100px;
    max-width: 160px;
    flex-shrink: 0;
  }
  .benefits-wrapper .benefits-container .benefit .icon-container .icon.points {
    width: 55%;
  }
  .benefits-wrapper .benefits-container .benefit .icon-container .icon.training {
    width: 60%;
  }
  .benefits-wrapper .benefits-container .benefit .icon-container .icon.specialty {
    width: 40%;
  }
  .benefits-wrapper .benefits-container .benefit .icon-container .icon.marketing {
    width: 53%;
  }
  .benefits-wrapper .benefits-container .benefit .text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .benefits-wrapper .benefits-container {
    flex-flow: row nowrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  .benefits-wrapper .benefits-container .benefit {
    margin: 20px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 21%;
  }
  .benefits-wrapper .benefits-container .benefit .icon-container {
    width: 100%;
    height: 100px;
    max-width: 160px;
    flex-shrink: 0;
  }
  .benefits-wrapper .benefits-container .benefit .text {
    width: 100%;
    text-align: center;
  }
}

.smart-cities-wrapper {
  background-color: #f3f3f3;
  padding: 40px 5% 40px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.smart-cities-wrapper .title-section {
  margin: 0 0 25px;
}
.smart-cities-wrapper .title-item {
  font-family: Arial, sans-serif;
  margin: 0 0 18px;
}
.smart-cities-wrapper .description {
  margin: 0 0 16px;
}
@media screen and (min-width: 768px) {
  .smart-cities-wrapper {
    padding: 50px 10% 68px;
  }
}
@media screen and (min-width: 1024px) {
  .smart-cities-wrapper {
    padding: 50px 22% 50px;
  }
  .smart-cities-wrapper .title-item {
    margin: 0 0 8px;
  }
}

.sections-up-1-wrapper .main-box {
  padding: 20px 10px;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.sections-up-1-wrapper .main-box .title-section {
  align-self: flex-start;
}
.sections-up-1-wrapper .main-box .item {
  margin-top: 40px;
  border-bottom: 1px solid #D8D8D8;
}
.sections-up-1-wrapper .main-box .item:last-of-type {
  border: none;
}
.sections-up-1-wrapper .main-box .item .img-container {
  margin-left: -10px;
}
.sections-up-1-wrapper .main-box .item .title-item {
  margin: 20px 0px 10px 0px;
}
.sections-up-1-wrapper .main-box .item .cta {
  display: block;
  margin: 15px 0px 25px 0px;
}
.sections-up-1-wrapper .main-box .item:last-child .cta {
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .sections-up-1-wrapper {
    padding: 25px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
  }
  .sections-up-1-wrapper .main-box {
    margin: 0 10px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    width: 50%;
  }
  .sections-up-1-wrapper .main-box .title-section {
    margin-bottom: auto;
  }
  .sections-up-1-wrapper .main-box .item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 425px;
  }
  .sections-up-1-wrapper .main-box .item .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    height: 205px;
  }
  .sections-up-1-wrapper .main-box .item .img-container.contain img {
    object-fit: contain;
  }
  .sections-up-1-wrapper .main-box .item .img-container img, .sections-up-1-wrapper .main-box .item .img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .sections-up-1-wrapper {
    max-width: 894px;
    margin: auto;
  }
  .sections-up-1-wrapper .main-box {
    max-width: 539px;
    flex: 1;
  }
  .sections-up-1-wrapper .main-box .item {
    min-height: 520px;
  }
  .sections-up-1-wrapper .main-box .item .img-container {
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sections-up-1-wrapper .main-box .item .img-container.contain img {
    object-fit: contain;
  }
  .sections-up-1-wrapper .main-box .item .img-container img, .sections-up-1-wrapper .main-box .item .img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.dark .sections-up-1-wrapper .main-box {
  background-color: #003C71;
}

.up-1-wrapper {
  padding: 10px;
}
.up-1-wrapper .title-section {
  text-align: center;
  margin: 0 0 45px;
}
.up-1-wrapper .main-box {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.up-1-wrapper .main-box .img-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.up-1-wrapper .main-box .img-container img, .up-1-wrapper .main-box .img-container video {
  width: 100%;
}
.up-1-wrapper .main-box .item {
  margin: 40px 0 0;
}
.up-1-wrapper .main-box .item .title-item {
  margin: 0 0 10px;
}
.up-1-wrapper .main-box .item .description {
  margin: 0 0 15px;
}
.up-1-wrapper .main-box .item .cta {
  margin: 15px 0 25px;
}
@media screen and (min-width: 768px) {
  .up-1-wrapper {
    padding: 50px 24px;
  }
  .up-1-wrapper .title-section {
    text-align: left;
    margin: 0 0 30px;
  }
  .up-1-wrapper .main-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .up-1-wrapper .main-box .img-container {
    width: 53%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px 0 0;
  }
  .up-1-wrapper .main-box .img-container img, .up-1-wrapper .main-box .img-container video {
    position: initial;
    width: 100%;
  }
  .up-1-wrapper .main-box .item {
    margin: 0;
    max-width: 353px;
  }
}
@media screen and (min-width: 1024px) {
  .up-1-wrapper {
    padding: 50px 32px;
  }
  .up-1-wrapper .main-box .img-container {
    width: 60%;
    max-width: 726px;
    margin: 0 20px 0 0;
  }
  .up-1-wrapper .main-box .img-container img, .up-1-wrapper .main-box .img-container video {
    position: initial;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .up-1-wrapper {
    padding: 50px 170px;
  }
}

.up-2-wrapper {
  padding: 10px;
}
.up-2-wrapper .title-section {
  text-align: center;
  margin: 0 0 45px;
}
.up-2-wrapper .main-box {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 0 0 40px;
  overflow: hidden;
}
.up-2-wrapper .main-box .subtitle {
  align-self: flex-start;
}
.up-2-wrapper .main-box .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.up-2-wrapper .main-box .img-container img, .up-2-wrapper .main-box .img-container video {
  width: 100%;
}
.up-2-wrapper .main-box .item .title-item {
  margin: 20px 0 10px;
}
.up-2-wrapper .main-box .item .description {
  margin: 0 0 15px;
}
.up-2-wrapper .main-box .item .cta {
  margin: 15px 0 25px;
}
@media screen and (min-width: 768px) {
  .up-2-wrapper {
    padding: 50px 24px;
  }
  .up-2-wrapper .title-section {
    text-align: center;
    margin: 0 0 30px;
  }
  .up-2-wrapper .main-box {
    align-items: flex-start;
    width: 48%;
  }
  .up-2-wrapper .main-box .img-container {
    width: 100%;
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .up-2-wrapper .main-box .img-container.contain img {
    object-fit: contain;
  }
  .up-2-wrapper .main-box .img-container img, .up-2-wrapper .main-box .img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .up-2-wrapper {
    padding: 50px 32px;
  }
  .up-2-wrapper .title-section {
    max-width: 735px;
    margin: auto;
    margin-bottom: 30px;
  }
  .up-2-wrapper .columns-wrapper {
    max-width: 735px;
    margin: auto;
  }
  .up-2-wrapper .main-box .img-container {
    height: 230px;
  }
}
@media screen and (min-width: 1440px) {
  .up-2-wrapper {
    padding: 50px 170px;
  }
  .up-2-wrapper .main-box {
    max-width: 539px;
  }
}

.up-3-wrapper {
  padding: 10px;
}
.up-3-wrapper .title-section {
  text-align: center;
  margin: 0 0 45px;
}
.up-3-wrapper .main-box {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 0 0 40px;
}
.up-3-wrapper .main-box .subtitle {
  align-self: flex-start;
}
.up-3-wrapper .main-box .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.up-3-wrapper .main-box .img-container img, .up-3-wrapper .main-box .img-container video {
  width: 100%;
}
.up-3-wrapper .main-box .item .title-item {
  margin: 20px 0 10px;
}
.up-3-wrapper .main-box .item .description {
  margin: 0 0 15px;
}
.up-3-wrapper .main-box .item .cta {
  margin: 15px 0 25px;
}
@media screen and (min-width: 768px) {
  .up-3-wrapper {
    padding: 50px 24px;
  }
  .up-3-wrapper .title-section {
    text-align: left;
    margin: 0 0 30px;
  }
  .up-3-wrapper .main-box {
    align-items: flex-start;
    width: 32%;
  }
  .up-3-wrapper .main-box .img-container {
    width: 100%;
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .up-3-wrapper .main-box .img-container.contain img {
    object-fit: contain;
  }
  .up-3-wrapper .main-box .img-container img, .up-3-wrapper .main-box .img-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .up-3-wrapper {
    padding: 50px 32px;
  }
  .up-3-wrapper .main-box .img-container {
    height: 230px;
  }
}
@media screen and (min-width: 1440px) {
  .up-3-wrapper {
    padding: 50px 170px;
  }
  .up-3-wrapper .main-box {
    max-width: 353px;
  }
}

.cover-image .up-3-wrapper {
  background-image: url("../images/3-up-cover-image.png");
  background-size: cover;
}
.cover-image .up-3-wrapper .main-box .img-container {
  display: none;
}
.cover-image .up-3-wrapper .main-box .item {
  margin: 10px 0 0;
}

/*--------------------------------------------------------------
4.0 General
--------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  margin: 0 auto;
  padding: 0;
  color: black;
  font-size: 100%;
  width: 100%;
  /* max-width = min-width de mediaqueries para XL screens  */
  max-width: 1440px;
}

.wrapper h1,
.wrapper h2 {
  font-family: Arial, sans-serif;
}

.wrapper h3,
.wrapper h4 {
  font-family: Arial, sans-serif;
}

.wrapper h5,
.wrapper h6 {
  font-family: Arial, sans-serif;
}

.wrapper p {
  font-family: Arial, sans-serif;
}

.wrapper sup {
  font-size: 57%;
}

.visually-hidden {
  clip: rect(1px 1px 1px 1px) !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

main section .title-section {
  font-size: 35px;
  color: #003C71;
}
main section .title-section .lowercase {
  font-size: 85%;
  position: relative;
  top: -5%;
}
@media (min-width: 768px) {
  main section .title-section {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  main section .title-section {
    font-size: 50px;
  }
}
main section .title-item {
  font-size: 24px;
  color: #005A9D;
}
main section .img-container {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section .img-container img, main section .img-container video {
  width: 100%;
}
@media screen and (min-width: 768px) {
  main section .img-container {
    width: 100%;
  }
}
main section .subtitle {
  font-size: 14px;
  letter-spacing: 0.43px;
  color: #252525;
  text-transform: uppercase;
  margin: 0 0 10px;
}
main section .description {
  font-size: 16px;
  color: #252525;
}
main section .cta {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #005A9D;
}
main section .cta.solid-bg {
  background-color: #00AEEF;
  color: white;
  padding: 6px 18px;
  text-align: center;
}
main section .cta.cta.none-link {
  opacity: 0;
  pointer-events: none;
  visibility: 0;
}
main section.dark .title-section,
main section.dark .description {
  color: white;
}
main section.dark .title-item,
main section.dark .cta {
  color: #00AEEF;
}
main section.dark .subtitle {
  color: #B6B6B6;
}
main section.dark .cta.solid-bg {
  color: white;
}
main section.dark:not(.sections-up-1) {
  background-color: #003C71;
}
main section.paragraph {
  padding: 40px 43px;
}
main section.paragraph p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.29;
  text-align: center;
  color: #555555;
}
@media screen and (min-width: 768px) {
  main section.paragraph {
    padding: 40px 24px;
  }
  main section.paragraph p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  main section.paragraph {
    padding: 40px 24px;
  }
}
@media screen and (min-width: 1440px) {
  main section.paragraph {
    padding: 40px 355px;
  }
}

@media screen and (min-width: 768px) {
  .columns-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.jquery-modal.blocker {
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5vh;
}
.jquery-modal.blocker .modal {
  padding: 10px;
  width: 100%;
  max-width: 959px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.jquery-modal.blocker .modal iframe {
  height: 85vh;
  max-height: 500px;
  width: 100%;
}
.jquery-modal.blocker .modal iframe[type="application/pdf"] {
  height: 95vh;
  max-height: 500px;
}

/*# sourceMappingURL=style.css.map */
