body {
  font-family: 'PT Sans', sans-serif;
  color: #292B33;
  font-size: 12px;
  font-weight: normal;
  background: #fff;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow: hidden;
}
html {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #191C23;
  text-transform: uppercase;
  line-height: 120%;
  margin: 0 0 20px 0;
}
h1, .h1 {
  font-size: 30px;
  color: white;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
h1:before, .h1:before {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  position: absolute;
  background-color: #FF3611;
  margin-right: auto;
  margin-left: auto;
  right: 0;
  left: 0;
  bottom: 0;
}
h1.lft:before, .h1.lft:before {
  margin: initial;
}
h2, .h2 {
  font-size: 26px;
  color: white;
}
h2.center, .h2.center,
h2.lft, .h2.lft  {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
h2.center:before, .h2.center:before {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  position: absolute;
  background-color: #FF3611;
  margin-right: auto;
  margin-left: auto;
  right: 0;
  left: 0;
  bottom: 0;
}
h2.lft:before, .h2.lft:before {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  position: absolute;
  background-color: #FF3611;
  bottom: 0;
} 
h3, .h3 {
  font-size: 21px;
  color: #222222;
  margin-bottom: 5px;
}
h4, .h4 {
  font-size: 18px;
  color: #242424;
  margin-bottom: 10px;
}
h5, .h5 {}
h6, .h6 {}
ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li,
ol li,
p {
  font-size: 18px;
  color: #242424;
  line-height: 140%;
  margin-bottom: 15px;
}
ul li {
  margin-bottom: 5px;
}
.intro p {
  font-size: 16px;
  font-weight: 600;
  color: #4b4b4b;
}
a {
  color: #1B4381;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus {
  color: gray;
}
b, strong {
  font-weight: 800;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #e6e6e6;
}
.oh {
  overflow: hidden;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
.relative {
  position: relative;
}
.clear {
  clear: both;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.left {
  float: left;
}
.txt-black { color: #242424; }
.cover { 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
ul.bullets li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
ul.bullets li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 7px;
  background: #1B4381;
}
/*////////////////////////
///       Header      ////
////////////////////////*/
header {
  position: absolute;
  width: 100%;
  height: 70px;
  border-top: 2px solid #FF3611;
  top: 0;
  left: 0;
  z-index: 999;
  background: white;
}
header.smaller {
  animation: .8s ease 0s normal none 1 running fadeInDown;
  position: fixed;
  background: white;
  padding-top: 0;  
  box-shadow: 0px 1px 8px rgba(0,0,0,.4);
}
header .logo {
  margin-top: 15px;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
} 
.header-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
}
ul.language {
  background: #DCE3E5;
  display: block;
  width: 80px;
  height: 40px;
  border-radius: 30px;
  padding: 2px;
  text-align: center;
  margin: 0 20px;
}
ul.language li {
  display: inline;
}
ul.language li a {
  font-size: 16px;
  color: #808080;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 60px;
  float: left;
}
ul.language li a:hover {     
  background: #969696;
  color: white; 
}
ul.language li.current-lang a {
  background: #FF3611;
  color: white;
}
/*////////////////////////
///       Footer      ////
////////////////////////*/
footer {
  background: #F6F6F6 url(../img/bg-footer.png) no-repeat right;
  padding-top: 100px;
  border-bottom: 4px solid #FF3611;
}
footer h2 {
  font-size: 18px;
  color: #242424;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
footer h2:before {
  content: '';
  width: 38px;
  height: 2px;
  background: #FF3611;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.ft-nav a {
  color: #242424;
}
.ft-nav a:hover {
  color: #FF3611;
}
/*///////////////////////
///        Menu 2     ///
///////////////////////*/
a.menu-link {
  float: right;
  display: flex;
  color: white;
  font-size: 25px;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: #FF3611;
  justify-content: center;
  align-items: center;
}
.menu, .menu > ul ul {
  clear: both;
  -webkit-transition: all 0.3s ease-out;  
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.js .menu, .js .menu > ul ul {
  overflow: hidden;
  max-height: 0;
}
.menu.active, .js .menu > ul ul.active {
  max-height: 55em;
}
.menu > ul {
  border-top: 1px solid #808080;
}
.menu li a {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #242424;
  text-transform: uppercase;
  display: block;
  border-bottom: 2px solid transparent;
  position: relative;
  padding: 21px 0;
  height: 68px;
}
.menu li ul li { margin-right: 0; }
.menu li ul li a {
  padding: 5px 10px;
  height: auto;
  text-align: center;
} 
.menu li ul li a:hover {
  border-color: transparent;
}
.menu li a:hover,
.menu li.current-menu-item a {
  color: #FF3611;
  border-color: #FF3611;
}
.menu li.icon-arrow-down {
  padding-right: 15px; 
}
.menu li.icon-arrow-down:before {
  position: absolute;
  right: 0;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.menu li.icon-arrow-down:hover:before {
  color: #FF3611;
} 
.contact-item { display: none !important; }
@media screen and (min-width: 1138px) {
  .pattern {
    overflow: visible;
  }
  a.menu-link {
     display: none;
  }
  .js .menu, .js .menu > ul ul {
    max-height: none;
    overflow: visible;
    background: none;
  }
  .js .menu > ul ul { 
    background: white;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);;
    display: none;
    width: 215px;
  }
  .js .menu > ul ul ul {
    top: 0;
    left: 219px;
  }
  .js .menu > ul li:hover > ul {
    display: block;
  }
  .menu ul {
    margin: 0 0 0 -0.25em;
    border: 0;
  }
/*  .menu li.has-subnav > a {
    padding-right: 2em;
  }*/
 .menu > li.has-subnav > ul > li > a:after {
    content: ">";
    font-size: 1em;
    padding: 0.8em 0.5em;
  }
  .menu .level-1 > li.has-subnav > a:after {
    content: "▼";
        font-size: 1em;
    padding: 0.8em 0.5em;
  }
  .menu > ul li {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .menu > ul > li {
    display: inline-block;
    position: relative;
  }
  .menu > ul ul {
    position: absolute;
    top: 0;
    left: 12em;
    width: 12em;
  }
  .menu > ul ul li {
    position: relative;
  }
  .menu > ul ul.sub-menu {
    top: 68px;
    left: 0;
  } 
}
@media screen and (max-width: 1137px) {
  .menu li.has-subnav > a:after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    font-size: 1.5em;
    padding: 0.25em 0.5em;
  }
  .menu li.has-subnav > a.active:after {
    content: "-";
  }
  .menu li.icon-arrow-down:before { content: none; }
  .js .menu { background: #EAEAEA; }
  .menu ul { margin-bottom: 0; }
  .menu li a {
    font-size: 14px;
    padding: 4px 5px;
    height: auto;
  }
  .menu > ul { 
    width: 200px;
    border-top: 0; 
  }
  .menu li ul { background-color: white; }
  .menu li ul li a { text-align: left; }
  .menu li.icon-arrow-down { padding-right: 0; }
  .menu li ul li { margin-bottom: 0; }
  .contact-item { display: block !important; }
  ul.contact-nav { display: none; }
  .header-navigation { padding-right: 15px; }
  #pattern.pattern { 
    order: 2;
    position: absolute;
    top: 10px;
  }
  ul.language {
    margin: 10px 65px 0 0;
    position: relative;
    z-index: 1;
  }
  nav.menu { 
    position: relative; 
    top: 13px;
    right: -15px;
  }
}


/*///////////////////////
///        Menu       ///
///////////////////////*/
/*nav {
  display: inline-block;
  vertical-align: top;
}
nav ul {
  margin: 0;
}
nav ul li {
  display: inline;
  margin-right: 20px;
  position: relative;
}
nav ul li a {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  color: #242424;
  text-transform: uppercase;
  padding: 0;
  padding-top: 2px;
  display: inline-block;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
nav > ul > li > a:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
nav > ul > li:hover a:after,
nav ul li a:hover:after,
nav ul li.current_page_item a:after,
nav ul li.current-menu-item a:after,
nav ul li.current-page-ancestor a:after {
  width: 100%;
  background: #FF3611;
}
nav > ul > li > a:hover,
nav > ul > li:hover > a,
nav > ul > li.current_page_item > a,
nav > ul > li.current-menu-item > a,
nav > ul > li.current-page-ancestor > a {
  color: #FF3611;
} 
nav > ul > li > ul,
nav > ul > li > ul > li > ul {
  width: 270px;
  position: absolute;
  left: 0;
  top: 16px;
  padding-top: 22px;
  opacity: 0;
  top: -9999px;
  transition: 200ms transform,200ms opacity;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
nav ul li ul { margin-right: 0; }
nav ul li ul li a { 
  display: block;
  padding: 5px 20px;
  color: #242424; 
  text-align: center;
  background-color: white;
}
nav > ul > li:hover > ul,
nav > ul > li > ul > li:hover > ul {
  top: 100%;
  transform: translate3d(0,0,0);
  opacity: 1;
}
nav > ul > li > ul > li > ul {
  position: absolute;
  top: 0 !important;
  left: 250px;
  padding-top: 0;
  z-index: 1;
}
nav > ul > li > ul > li > ul > li > a { background-color: #EAEAEA; }
nav ul li.icon-arrow-down {
  position: relative;
  padding-right: 16px;
}
nav ul li.icon-arrow-down:before {
  position: absolute;
  top: 7px;
  right: 0;
  font-size: 12px;
}
nav ul li.icon-arrow-down:hover:before {
  color: #FF3611;
}
*/
ul.contact-nav,
ul.contact-nav li { margin: 0; }
ul.contact-nav li a {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: white;
  background-color: #FF3611;
  height: 68px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
}
ul.contact-nav li a:hover,
ul.contact-nav li.current-menu-item a {
  background-color: #242424;
}
ul.contact-nav li a:before {
  font-family: "rimmsa";
  font-weight: normal;
  font-style: normal;
  content: "\63";
  margin-right: 10px;
}
/*///////////////////////
///    Mobile Menu    ///
///////////////////////*/
#mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  padding: 25px 20px;
  width: 350px;
  height: 100%;
  right: -350px;
  box-sizing: border-box;
  z-index: 9999;
  overflow: hidden;
  background: #122c54;
}
#mobile-menu nav {
  float: none;
}
.cerrar-menu {
  cursor: pointer;
}
#mobile-menu .icon-close {
  cursor: pointer;
  font-size: 20px;
  color: white;
  margin-bottom: 40px;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  padding: 11px;
  text-align: center;
  transition: all 300ms;
  border: 1px solid #ffffff82;
}
#mobile-menu .icon-close:hover {
  border-color: white;
}
#mobile-menu .language a span {
  color: white;
}
#mobile-menu .language a:hover {
  background: #1B4381;
}
.hamburger {
  color: white;
  float: right;
  font-size: 25px;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  transition: all 300ms;
  background: #1B4381;
}
.hamburger:hover {
  background: #48689A;
}
.cerrar-menu img:hover {
  opacity: 0.7;
}
#mobile-menu nav {
  display: block;
}
#mobile-menu nav ul {
  margin-bottom: 40px;
}
#mobile-menu nav ul li a {
  font-family: 'PT Sans', sans-serif;
  color: white;
  font-weight: 600;
  padding: 15px 10px;
  display: block;
}
#mobile-menu nav ul li a:hover,
#mobile-menu nav ul li.current-menu-item a,
#mobile-menu nav ul li.current-page-ancestor a  {
  color: #ffffff;
  background: #ffffff1f;
}
#mobile-menu nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0;
  margin-right: 0;
}
#mobile-menu nav ul li a:hover:after, 
#mobile-menu nav ul li.current-menu-item a:after,
#mobile-menu nav ul li.current-page-ancestor a:after {
  background: transparent;
}
body.open-menu {
  height: 100vh;
  overflow-y: hidden;
}
body.open-menu .mask {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
}
body.open-menu #mobile-menu {
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
/*///////////////////////
///       Layout      ///
///////////// /////////*/
.mt40 { margin-top: 40px; }
.pr5 { padding-right: 5px; }
.pl5 { padding-left: 5px;}
.h5px  { height: 5px;  }
.h10px { height: 10px; }
.h15px { height: 15px; }
.h20px { height: 20px; }
.h30px { height: 30px; }
.h40px { height: 40px; }
.h50px { height: 50px; }
.h60px { height: 60px; }
.h70px { height: 70px; }
.h80px { height: 80px; }
.p0    { padding: 0; }
.m0    { margin: 0; }
.pt5   { padding-top: 5px;  }
.pt10  { padding-top: 10px; }
.pt15  { padding-top: 15px; }
.pt20  { padding-top: 20px; }
.pt30  { padding-top: 30px; }
.pt40  { padding-top: 40px; }
.pt50  { padding-top: 50px; }
.pt60  { padding-top: 60px; }
.pt70  { padding-top: 70px; }
.pt80  { padding-top: 80px; }
.pt90  { padding-top: 90px; }
.pt100 { padding-top: 100px; }
.pt120 { padding-top: 120px; }
.pt140 { padding-top: 140px; }
.pt150 { padding-top: 150px; }
.pt160 { padding-top: 160px; }
.pt180 { padding-top: 180px; }
.pt200 { padding-top: 200px; }
.pb10  { padding-bottom: 10px; }
.pb15  { padding-bottom: 15px; }
.pb20  { padding-bottom: 20px; }
.pb30  { padding-bottom: 30px; }
.pb40  { padding-bottom: 40px; }
.pb50  { padding-bottom: 50px; }
.pb60  { padding-bottom: 60px; }
.pb70  { padding-bottom: 70px; }
.pb80  { padding-bottom: 80px; }
.pb90  { padding-bottom: 90px; }
.pb100 { padding-bottom: 100px; }
.pb110 { padding-bottom: 110px; }
.pb120 { padding-bottom: 120px; }
.pb130 { padding-bottom: 130px; }
.pb140 { padding-bottom: 140px; }
.pb150 { padding-bottom: 150px; }
.pb160 { padding-bottom: 160px; }
.pb180 { padding-bottom: 180px; }
.pb190 { padding-bottom: 190px; }
.pb200 { padding-bottom: 200px; }
.mb0   { margin-bottom: 0;    }
.mb10  { margin-bottom: 10px; }
.mb20  { margin-bottom: 20px; }
.mb25  { margin-bottom: 25px; }
.mb30  { margin-bottom: 30px; }
.mb35  { margin-bottom: 35px; }
.mb40  { margin-bottom: 40px; }
.mb50  { margin-bottom: 50px; }
.p30   { padding: 30px; }
.mt-site { margin-top: 70px; }
.show-md,
.show-xl,
.display-none { display: none; }
.img-cover {
  position: relative;
  height: 100%;
}
.img-cover > img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 100%;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
/*////////////////////////
///      Sections     ////
////////////////////////*/
.btn {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  background: #1B4381;
  font-weight: 600;
  border-radius: 15px;
  height: 40px;
  border: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  padding: 0 20px;
  width: fit-content;
  z-index: 0;
  overflow: hidden;
}
.bg-orange { background-color: #FF3611; }
.bg-gray-dark { background-color: #242424; }
.bg-light { background-color: #F6F6F6 !important; }
.bg-light-medium {
  position: relative;
}
.bg-light-medium:before {
  content: '';
  background-color: #F6F6F6;
  position: absolute;
  display: block;
  width: 100%;
  height: 300px;
  right: 0;
  left: 0;
  bottom: 0;
}
#why {
  background-image: url(../img/iso-left.png), url(../img/iso-right.png);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  padding-bottom: 170px;
}
.txt-white p,
.txt-white ul li { color: white; }
.play-box { 
  position: relative; 
  text-align: center;
}
.play-box i {
  font-size: 80px;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-right: auto;
  margin-left: auto;
  right: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  transition: all 300ms; 
  z-index: 1;
}
.play-box i:hover {
  background-color: #FF3611;
}
.more {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: white;
  width: 100%;
  max-width: 320px;
  border-bottom: 2px solid white;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 7px;
  padding-top: 7px;
}
.more i {
  font-size: 20px;
  margin-right: 20px;
}
.more:hover {
  background-color: #242424;
  color: white;
  border-color: #242424;
}
.box-value {
  background: #F6F6F6;
  box-shadow: 0 0 15px rgba(0,0,0, .20);
  height: 240px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 15px 8px;
}
.box-value img {
  margin-bottom: 30px;
}
.box-value p {
  margin-bottom: 0;
}
#values .title {
  height: 240px;
  margin: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -120px;
  margin-bottom: -15px;
}
#values { padding-bottom: 200px; }
.values-video { 
	padding-right: 20px;
	padding-left: 20px;
	margin-top: -130px; 
}
.values-video img { 
	width: 100%; 
	box-shadow: 0 16px 23px rgba(0,0,0,.15); 
}
ul.social li {
  display: inline-block;
  margin-right: 30px;
}
ul.social li:last-child {
  margin-right: 0;
}
ul.social li a {
  font-size: 18px;
  color: #FF3611;
}
.telephone {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: white;
  background-color: #FF3611;
  padding: 9px 20px;
  position: relative;
  top: 2px;
}
.telephone i {
  margin-right: 10px;
}
.telephone:hover {
  color: white;
  background-color: #242424;
}
.stage-med {
  min-height: 370px;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.stage-med p {
  color: white;
}
.stage-small {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stage-small h1 {
  color: #242424;
}
.desc-about {
  margin-top: -80px;
}
.desc-serv {
  margin-top: -80px;
}
.bullets ul { margin-bottom: 0; }
.bullets ul li {
  position: relative;
  padding-left: 20px;
}
.bullets ul li:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #FF3611;
  position: absolute;
  left: 0;
  top: 7px;
}
.bullets.white ul li { 
	color: white;
	text-align: left;
}
.img-100 { width: 100%; }
.iconos-certificates img {
  margin: 10px;
}
.certificates img,
.scops img {
  box-shadow: 0 15px 23px rgba(0,0,0,.2);
  transition: transform .5s ease;
}
.certificates img:hover,
.scops img:hover {
  transform: scale(.9);
}
.scops.whtcptn img:hover {
	 transform: scale(1);
}
.scops.whtcptn a { 
	position: relative; 
	display: block;
}
.scops.whtcptn .caption {
  position: absolute;
  background: rgb(229 36 0 / 80%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: all 300ms;
  opacity: 0;
}
.scops.whtcptn .caption h4 { 
	color: white; 
	margin-bottom: 0;
}
.scops.whtcptn a:hover .caption {
	opacity: 1;
}
.mision-vision h2 { color: #242424; }
.box-gray { 
  background-color: #F6F6F6;
}
.item-values {
  height: 320px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.item-values .caption {
  padding: 20px;
  height: 320px;
  position: absolute;
  right: 0;
  bottom: calc(-320px + 55px);
  left: 0;
  overflow: hidden;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}
.item-values .caption img { 
  display: none; 
  margin-bottom: 10px;
}
.item-values:hover .caption { 
  bottom: 0; 
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.item-values:hover .caption img { display: block; }
.box-politics {
  background-color: #F6F6F6;
  box-shadow: 0 30px 56px rgba(0,0,0,.10);
  overflow: hidden;
}
.item-values .caption img.icono { display: block; }
#value-proposal .item-values .caption {
  bottom: calc(-320px + 140px);
}
#value-proposal .item-values:hover .caption { bottom: 0; }
#value-proposal .item-values .caption h4 { min-height: 44px; }
#value-proposal .item-values:hover .caption h4 { min-height: initial; }
.box-references {
  background-color: #ffffff;
  box-shadow: 0 16px 23px rgba(0,0,0,.10);
  overflow: hidden;
}
.box-references h1 {
  color: #242424;
}
.box-references img {
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0,0,0,.10);
  width: 100%;
  max-width: 210px;
  position: relative;
}
.box-references-img {
  padding: 10px;
  border: 1px solid #FF3611;
  border-radius: 100%;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.box-contact {
  border-top: 2px solid #FF3611;
  background: #FFFFFF;
  padding: 40px 40px 25px 40px;
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: 50px auto;
}
.box-contact { 
  font-size: 18px; 
  line-height: 120%;
}
.box-contact strong {
  color: #FF3611;
}
.box-contact a {
  color: #242424; 
}
.box-contact a:hover {
  color: #FF3611;
}
.bg-contact { 
  height: auto; 
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
.form-box {
  width: 100%;
  max-width: 414px;
  margin: 70px auto 30px auto;
}
.form-box h1 {
  color: #FF3611;
}
.form-box h1:before { content: none; }
.form-box a { 
  font-size: 14px;
  color: white; 
}
.form-box a:hover { color: #FF3611; }
.specialties-values {
  height: 490px;
  position: relative;
  transition: transform .5s ease;
}
#specialties {
  margin-top: -80px;
}
.specialties-values:hover {
  transform: scale(.9);
}
.specialties-values .category {
  font-size: 14px;
  color: white;
  background-color: #FF3611;
  padding: 10px 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.specialties-values .caption {
  padding: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient(to bottom, transparent 0%, #000000c4 100%);
}
.specialties-values .caption * { color: white; }
/*////////////////////////
///     Timeline      ////
////////////////////////*/
.cd-horizontal-timeline {
  opacity: 0;
  margin: 0 auto;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.cd-horizontal-timeline::before {
  content: 'mobile';
  display: none;
}
.cd-horizontal-timeline.loaded {
  opacity: 1;
}
.cd-horizontal-timeline .timeline {
  position: relative;
  height: 100px;
  margin: 0 40px;
}
.cd-horizontal-timeline .events-wrapper {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}
.cd-horizontal-timeline .events {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 49px;
  height: 2px;
  background: #dfdfdf;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}
.cd-horizontal-timeline .filling-line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #FF3611;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-horizontal-timeline .events a {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  color: #FF3611;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-horizontal-timeline .events a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 2px solid #E8E8E8;
  background-color: #E8E8E8;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  -moz-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
  background-color: #E8E8E8;
  border-color: #E8E8E8;
}
.cd-horizontal-timeline .events a.selected {
  pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
  background-color: #FF3611;
  border-color: #FF3611;
}
.cd-horizontal-timeline .events a.older-event::after {
  border-color: #FF3611;
  background-color: #FF3611;
}
@media only screen and (min-width: 1100px) {
  .cd-horizontal-timeline::before {
    content: 'desktop';
  }
}
.cd-timeline-navigation a {
  position: absolute;
  z-index: 1;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background-color: #FF3611;
  overflow: hidden;
  color: white;
  text-indent: 100%;
}
.cd-timeline-navigation a.prev:before {
  position: absolute;
  left: -10px;
  top: 7px;
}
.cd-timeline-navigation a.next:before {
  position: absolute;
  right: 24px;
  top: 7px;
}
.cd-timeline-navigation a.next {
  right: 0;
}
.no-touch .cd-timeline-navigation a:hover {
  border-color: #7b9d6f;
}
.cd-timeline-navigation a.inactive {
  cursor: not-allowed;
}
.cd-timeline-navigation a.inactive::after {
  background-position: 0 -16px;
}
.no-touch .cd-timeline-navigation a.inactive:hover {
  border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s;
  -moz-transition: height 0.4s;
  transition: height 0.4s;
}
.cd-horizontal-timeline .events-content li {
  text-align: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 0 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li p {
  font-size: 16px;
  color: #242424;
  margin-bottom: 10px;
}
.cd-horizontal-timeline .events-content li.selected {
  position: relative;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
  -webkit-animation-name: cd-enter-right;
  -moz-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-name: cd-enter-left;
  -moz-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
  max-width: 800px;
  margin: 0 auto;
}
.cd-horizontal-timeline .events-content h2 {
  font-weight: bold;
  font-size: 2.6rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}
.cd-horizontal-timeline .events-content em {
  display: block;
  font-style: italic;
  margin: 10px auto;
}
.cd-horizontal-timeline .events-content em::before {
  content: '- ';
}
.cd-horizontal-timeline .events-content p {
  font-size: 1.4rem;
  color: #959595;
}
.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
  line-height: 1.6;
}
/*////////////////////////
///     Fancybox      ////
////////////////////////*/
.fancybox-overlay { 
  background: rgba(36,36,36,.9); 
}
/*////////////////////////
///       Slick       ////
////////////////////////*/
.herobanner .img-cover {
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}
.herobanner .img-cover:before {
  content: '';
  display: block;
  background: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.herobanner .slick-slide {
 height: calc(100vh - 100px);
}
.herobanner .caption {
  position: relative;
  z-index: 1;
}
.gallery { margin-bottom: 0 !important; }
.gallery img {
  width: 100%;
}
.slick-dots { bottom: 20px; }
.slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border-radius: 80px;
}
.slick-dots li.slick-active button { background-color: #FF3611; }
.slick-dots li button:before {
  content: none;
}
/*////////////////////////
///        video       ///
////////////////////////*/
.container-text {
    width: auto;
    overflow: hidden;
}
.container-text .text {
    position: relative;
}
/*
.text.sec-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    border-left: 2px solid #40F4A8;;
    animation: animate 5s steps(16) infinite;
}
*/
@keyframes animate {
    40%, 60% {
        left: calc(100% + 3px);
    }

    100% {
        left: 0%;
    }
}
.video-container {
  width: 100vw;
  height: calc(100vh - 70px);
  position: relative;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.stage-caption h1 {
  font-size: 70px;
  font-weight: 700;
  position: absolute;
  text-align: center;
  color: #FFFFFF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.stage-caption h1:before { content: none; }
@media (min-aspect-ratio: 16/9) {
  .video-container iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-container iframe {
    width: 177.78vh;
  }
}
.nav-stage {  
  position: absolute;
  right: 0;
  left: 0;
  bottom: 40px;
}
.nav-stage ul {
  border-bottom: 2px solid #FF3611;
  text-align: center;
  margin-bottom: 0;
}
.nav-stage ul li { 
  display: inline; 
  margin-bottom: 0;
}
.nav-stage ul li a {
  font-size: 17px;
  font-weight: 700;
  color: white;
  display: inline-block;
  padding: 0 2% 10px 2%;
  border-bottom: 3px solid transparent;
}
.nav-stage ul li a:hover {
  color: #FF3611;
  border-color: #FF3611;
}

#video {
	position: relative;
	overflow: hidden;
	height: 100vh !important;
}
#video video {
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	bottom: 0;
	right: 0;
	top: 50%;
	left: 50%;
	z-index: -100;
	transform: translateX(-50%) translateY(-50%);
}
/*////////////////////////
///        Forms       ///
////////////////////////*/
label { margin-bottom: 10px; }
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 16px;
  color: #222222;
  background: white;
  border: none;
  width: 100%;
  height: 40px;
  padding: 7px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}
textarea {
  height: 90px;
}
select {
  font-size: 16px;
  color: #919191;
  background: url(../img/select-arrow.svg) no-repeat right #F8F8F8;
  -webkit-appearance: none;
  background-position-x: calc(100% - 10px);
}
input[type=submit] {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 40px;
  background: #FF3611;
  font-size: 18px;
  color: white;
  border: none;
  border-radius: 0;
  transition: all 300ms;    
  margin: 0 auto; 
}
input[type=submit]:hover {
  background: #848484;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: transparent;
}
input[type="checkbox"] { 
  margin-right: 10px;
}
::-webkit-input-placeholder { 
  font-size: 16px;
  color: #919191;
}
:-moz-placeholder { 
  font-size: 16px;
  color: #919191;
}
::-moz-placeholder { 
  font-size: 16px;
  color: #919191;
}
:-ms-input-placeholder { 
  font-size: 16px;
  color: #919191;
}
/*////////////////////////
///       Fonts        ///
////////////////////////*/
@font-face {
  font-family: "rimmsa";
  src:url("../fonts/rimmsa.eot");
  src:url("../fonts/rimmsa.eot?#iefix") format("embedded-opentype"),
      url("../fonts/rimmsa.woff") format("woff"),
      url("../fonts/rimmsa.ttf") format("truetype"),
      url("../fonts/rimmsa.svg#rimmsa") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "rimmsa" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "rimmsa" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-menu:before {
  content: "\61";
}
.icon-close:before {
  content: "\62";
}
.icon-arrow:before {
  content: "\63";
}
.icon-facebook:before {
  content: "\64";
}
.icon-arrow-down:before {
  content: "\65";
}
.icon-linkedin:before {
  content: "\66";
}
.icon-play:before {
  content: "\67";
}
.icon-tel:before {
  content: "\68";
}
.icon-left-arrow:before {
  content: "\69";
}
.icon-right-arrow:before {
  content: "\6a";
}
/*////////////////////////
///   Media Queries    ///
////////////////////////*/
@media (min-width: 1200px) {  }
@media screen and (max-width: 1290px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 991px) {
  .show-xl { display: inline-block !important; }
  .hide-xl { display: none !important; }
}
@media screen and (max-width: 768px) {
  h1, .h1 { font-size: 25px; }
  h2, .h2 { font-size: 25px; }
  h3, .h3 { font-size: 20px; }
  h4, .h4 { font-size: 18px; }
  h5, .h5 { font-size: 15px; }
  h6, .h6 { }
}  
@media screen and (max-width: 767px) {
  .hide-md { display: none !important; }
  .show-md { display: block; }
  .hide-xs { display: none !important; }
  .reverse-md .col-a { order: 2; }
  .reverse-md .col-b { order: 1; }
  .desc-serv .img-cover { height: 300px; }
  .desc-serv { margin-top: 80px; }
  .stage-med { padding-top: 80px; }
  .bg-light-medium:before { height: 100px; }
  .item-values .caption img { display: block; }
  .item-values .caption,
  #value-proposal .item-values .caption  {
    bottom: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  #value-proposal .item-values .caption h4 { min-height: initial; }
  .desc-about, #specialties { margin-top: -40px; }
  .box-references-img { margin-bottom: 40px; }
  .box-references-txt { padding: 0 20px; }
  .form-box { padding: 0 15px; }
  .bg-contact { padding: 0 30px; }
  .box-contact { padding: 30px 30px 25px 30px; }
  .stage-caption h1 { font-size: 40px; }
}
@media screen and (max-width: 425px) {}
@media screen and (max-width: 425px) {}
@media screen and (max-width: 400px) {}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 320px) {}