@charset "UTF-8";
/* -------------------------------------------------------------------
IMPORTS
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
FONTS
------------------------------------------------------------------- */
/*
VARIABLE BOLD
*/
@font-face {
  font-family: "Variable Bold";
  src: local("Variable Bold"), url("../../fonts/Variable-Bold.otf") format("truetype"), url("../../fonts/Variable-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*
VARIABLE BLACK
*/
@font-face {
  font-family: "Variable Black";
  src: local("Variable Black"), url("../../fonts/Variable-Black.otf") format("truetype"), url("../../fonts/Variable-Black.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*
KARLA BOLD
*/
@font-face {
  font-family: "Karla Bold";
  src: local("Karla Bold"), url("../../fonts/Karla-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* -------------------------------------------------------------------
COLORS
------------------------------------------------------------------- */
/* STANDARD */
/* VALIDATION / REFUS */
/* THEME */
/*
TEXT
*/
/*
BORDER-RADIUS
*/
/*
BORDER-GRADIENT
*/
/*
BACKGROUND-GRADIENT
*/
/*
TRANSITION
*/
/*
TRANSFORM
*/
/*
APPEARANCE
*/
/*
VERTICAL-CENTER
*/
/*
VERTICAL-CENTER-LINE-OBLIQUE
*/
/*
HORIZONTAL-CENTER
*/
/*
IMAGE-GRAYSCALE
*/
/*
OPACITY
*/
/*
KEYFRAMES
*/
/* -------------------------------------------------------------------
REDEFINITIONS D'ELEMENTS
------------------------------------------------------------------- */
* {
  /* Correction de la difference de gestion des marges par défaut entre Firefox et IE */
  margin: 0px;
  padding: 0px;
  /* Anti-aliasing des polices */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* On met un fading sur tous les changements de background, d'opacité et de couleur de texte*/
  -moz-transition: background 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  -webkit-transition: background 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

I {
  font-style: normal;
}

UL,
OL,
LI {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

UL {
  margin: 0px;
  padding: 0px;
}

P {
  margin: 0px !important;
}

A,
A:hover,
A:focus {
  text-decoration: none !important;
  cursor: pointer !important;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0 !important;
}

button {
  outline: 0 !important;
}

H1,
H2,
H3,
H4,
H5,
H6,
LABEL {
  margin: 0px;
  padding: 0px;
}

input:-moz-read-only:hover,
input:read-only:hover {
  cursor: default !important;
}

input {
  -moz-appearance: textfield;
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-o-inner-spin-button {
  -o-appearance: none;
  margin: 0;
}

::-moz-selection {
  color: #ffffff;
  text-shadow: none;
  background: #f6343f;
}

::selection {
  color: #ffffff;
  text-shadow: none;
  background: #f6343f;
}

HTML,
BODY {
  overflow-x: hidden;
}

BODY {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  background-color: #ffffff !important;
  margin: 0px !important;
  padding: 0px !important;
  scroll-behavior: smooth;
}
BODY.hide-intro {
  height: auto;
  overflow: auto;
}
BODY.hide-intro .page-intro {
  top: -100vh;
}
BODY.hide-intro .page {
  margin-top: -100vh;
}

/* -------------------------------------------------------------------
CLASSES COMMUNES
------------------------------------------------------------------- */
.unactive {
  display: none;
}

.item-menu {
  position: relative;
}
.item-menu:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0px;
  visibility: hidden;
  transform: scaleX(0);
  transition: 0.25s linear;
}
.item-menu.item-red:before {
  background: #f6343f;
}
.item-menu.item-white:before {
  background: #ffffff;
}
.item-menu:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
.item-menu:focus:before {
  visibility: visible;
  transform: scaleX(1);
}

.no-margin {
  margin: 0px !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-padding {
  padding: 0px !important;
}

.text strong {
  font-family: "Variable Black";
  font-weight: normal;
}
.text br:last-child {
  display: none;
}

.text-highlight br:last-child {
  display: none;
}

/* -------------------------------------------------------------------
ANIMATION ON SCROLL
------------------------------------------------------------------- */
.animated-on-scroll {
  position: relative;
  top: 50px;
  /* -- ANIMATION -- */
}
.animated-on-scroll.slide-up {
  animation-name: animate-slide-up;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-slide-up {
  0% {
    top: 60px;
  }
  100% {
    top: 0px;
  }
}
@-moz-keyframes animate-slide-up {
  0% {
    top: 60px;
  }
  100% {
    top: 0px;
  }
}
@-ms-keyframes animate-slide-up {
  0% {
    top: 60px;
  }
  100% {
    top: 0px;
  }
}
@-o-keyframes animate-slide-up {
  0% {
    top: 60px;
  }
  100% {
    top: 0px;
  }
}
@keyframes animate-slide-up {
  0% {
    top: 60px;
  }
  100% {
    top: 0px;
  }
}

/* -------------------------------------------------------------------
BOOTSTRAP
------------------------------------------------------------------- */
.col-centered {
  float: none !important;
  margin: 0 auto !important;
}

.container-fluid {
  padding: 0px !important;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------------------------------------------------
PAGE PRELOAD
------------------------------------------------------------------- */
.page-preload {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #f3f4ef;
  z-index: 10;
}
.page-preload .loader {
  width: 60px;
  height: 60px;
  background: url("../../images/commun/loader_page.gif") no-repeat;
  background-size: 60px 60px;
}

/* -------------------------------------------------------------------
BUTTON BURGER MENU
------------------------------------------------------------------- */
.btn-burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 36px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  -khtml-opacity: 1;
  z-index: 100;
  -moz-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
.btn-burger-menu.inactive {
  left: -50px;
}
.btn-burger-menu .line {
  width: 100%;
  height: 5px;
  background: #f6343f;
}
.btn-burger-menu.white .line {
  background: #f3f4ef;
}
.btn-burger-menu:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  -khtml-opacity: 0.5;
}

/* -------------------------------------------------------------------
OPEN MAIN MENU
------------------------------------------------------------------- */
.open-menu .main-menu {
  left: 0px;
}

.main-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0px;
  left: -100vw;
  width: 100%;
  min-height: 100%;
  background: #f6343f;
  z-index: 100;
  -moz-transition: left 0.8s ease;
  -o-transition: left 0.8s ease;
  -webkit-transition: left 0.8s ease;
  transition: left 0.8s ease;
}
.main-menu .btn-close {
  position: absolute;
  top: 25px;
  left: 10px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  -khtml-opacity: 1;
}
.main-menu .btn-close:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  -khtml-opacity: 0.5;
}
.main-menu .btn-close .line {
  position: absolute;
  top: 0px;
  width: 38px;
  height: 5px;
  background-color: #f3f4ef;
}
.main-menu .btn-close .line:nth-child(1) {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-menu .btn-close .line:nth-child(2) {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.main-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.main-menu ul li {
  padding: 7px 0px;
}
.main-menu ul li a {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 49.5px;
  line-height: 64.5px;
  color: #f3f4ef;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.main-menu ul li a:before {
  height: 4px;
  background: #f3f4ef;
}

/* -------------------------------------------------------------------
SIDE BUTTON
------------------------------------------------------------------- */
.side-btn {
  position: fixed;
  top: 0px;
  right: 27px;
  width: 35px;
  height: 100vh;
  z-index: 100;
}
.side-btn .btn-connect {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.side-btn .btn-connect a {
  font-family: "Karla Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  line-height: 13px;
  color: #f6343f;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
.side-btn .btn-connect.white a {
  color: #f3f4ef;
}
.side-btn .btn-connect.white a:before {
  background: #f3f4ef;
}

/* -------------------------------------------------------------------
INTRO
------------------------------------------------------------------- */
.page-intro {
  position: relative;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #f3f4ef;
  cursor: pointer;
  overflow: hidden;
  -moz-transition: top 0.8s ease;
  -o-transition: top 0.8s ease;
  -webkit-transition: top 0.8s ease;
  transition: top 0.8s ease;
  z-index: 200;
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
}
.page-intro .logo {
  position: absolute;
  top: 8vh;
  /* -- ANIMATION -- */
}
.page-intro .logo .icon {
  position: relative;
  width: calc(235px * 0.8);
  height: calc(352px * 0.8);
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
  /* -- ANIMATION -- */
}
.page-intro .logo .icon .object-v {
  position: absolute;
  top: calc(0px * 0.8);
  left: calc(64px * 0.8);
  width: calc(111px * 0.8);
  height: calc(93px * 0.8);
  background: url("../../images/commun/intro_logo_v.png") no-repeat;
  background-size: calc(111px * 0.8) calc(93px * 0.8);
  animation-name: animate-object-v;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-v {
  0% {
    top: calc(60px * 0.8);
    left: calc(383px * 0.8);
    -moz-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  100% {
    top: calc(0px * 0.8);
    left: calc(64px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes animate-object-v {
  0% {
    top: calc(60px * 0.8);
    left: calc(383px * 0.8);
    -moz-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  100% {
    top: calc(0px * 0.8);
    left: calc(64px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-ms-keyframes animate-object-v {
  0% {
    top: calc(60px * 0.8);
    left: calc(383px * 0.8);
    -moz-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  100% {
    top: calc(0px * 0.8);
    left: calc(64px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-o-keyframes animate-object-v {
  0% {
    top: calc(60px * 0.8);
    left: calc(383px * 0.8);
    -moz-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  100% {
    top: calc(0px * 0.8);
    left: calc(64px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animate-object-v {
  0% {
    top: calc(60px * 0.8);
    left: calc(383px * 0.8);
    -moz-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  100% {
    top: calc(0px * 0.8);
    left: calc(64px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.page-intro .logo .icon .object-sep {
  position: absolute;
  top: calc(82px * 0.8);
  left: calc(70px * 0.8);
  width: calc(100px * 0.8);
  height: calc(49px * 0.8);
  background: url("../../images/commun/intro_logo_sep.png") no-repeat;
  background-size: calc(100px * 0.8) calc(49px * 0.8);
  animation-name: animate-object-sep;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-sep {
  0% {
    top: calc(112px * 0.8);
    left: calc(-328px * 0.8);
  }
  100% {
    top: calc(82px * 0.8);
    left: calc(70px * 0.8);
  }
}
@-moz-keyframes animate-object-sep {
  0% {
    top: calc(112px * 0.8);
    left: calc(-328px * 0.8);
  }
  100% {
    top: calc(82px * 0.8);
    left: calc(70px * 0.8);
  }
}
@-ms-keyframes animate-object-sep {
  0% {
    top: calc(112px * 0.8);
    left: calc(-328px * 0.8);
  }
  100% {
    top: calc(82px * 0.8);
    left: calc(70px * 0.8);
  }
}
@-o-keyframes animate-object-sep {
  0% {
    top: calc(112px * 0.8);
    left: calc(-328px * 0.8);
  }
  100% {
    top: calc(82px * 0.8);
    left: calc(70px * 0.8);
  }
}
@keyframes animate-object-sep {
  0% {
    top: calc(112px * 0.8);
    left: calc(-328px * 0.8);
  }
  100% {
    top: calc(82px * 0.8);
    left: calc(70px * 0.8);
  }
}
.page-intro .logo .icon .object-c {
  position: absolute;
  top: calc(149px * 0.8);
  left: calc(41px * 0.8);
  width: calc(153px * 0.8);
  height: calc(122px * 0.8);
  background: url("../../images/commun/intro_logo_c.png") no-repeat;
  background-size: calc(153px * 0.8) calc(122px * 0.8);
  transform-origin: center;
  animation-name: animate-object-c;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-c {
  0% {
    top: calc(242px * 0.8);
    left: calc(-163px * 0.8);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    top: calc(149px * 0.8);
    left: calc(41px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes animate-object-c {
  0% {
    top: calc(242px * 0.8);
    left: calc(-163px * 0.8);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    top: calc(149px * 0.8);
    left: calc(41px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-ms-keyframes animate-object-c {
  0% {
    top: calc(242px * 0.8);
    left: calc(-163px * 0.8);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    top: calc(149px * 0.8);
    left: calc(41px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-o-keyframes animate-object-c {
  0% {
    top: calc(242px * 0.8);
    left: calc(-163px * 0.8);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    top: calc(149px * 0.8);
    left: calc(41px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animate-object-c {
  0% {
    top: calc(242px * 0.8);
    left: calc(-163px * 0.8);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    top: calc(149px * 0.8);
    left: calc(41px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.page-intro .logo .icon .object-line-1 {
  position: absolute;
  top: calc(269px * 0.8);
  left: calc(0px * 0.8);
  width: calc(41px * 0.8);
  height: calc(37px * 0.8);
  background: url("../../images/commun/intro_logo_line1.png") no-repeat;
  background-size: calc(41px * 0.8) calc(37px * 0.8);
  animation-name: animate-object-line-one;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-line-one {
  0% {
    top: calc(591px * 0.8);
    left: calc(-246px * 0.8);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(0px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes animate-object-line-one {
  0% {
    top: calc(591px * 0.8);
    left: calc(-246px * 0.8);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(0px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-ms-keyframes animate-object-line-one {
  0% {
    top: calc(591px * 0.8);
    left: calc(-246px * 0.8);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(0px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-o-keyframes animate-object-line-one {
  0% {
    top: calc(591px * 0.8);
    left: calc(-246px * 0.8);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(0px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animate-object-line-one {
  0% {
    top: calc(591px * 0.8);
    left: calc(-246px * 0.8);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(0px * 0.8);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.page-intro .logo .icon .object-line-2 {
  position: absolute;
  top: calc(305px * 0.8);
  left: calc(68px * 0.8);
  width: calc(25px * 0.8);
  height: calc(47px * 0.8);
  background: url("../../images/commun/intro_logo_line2.png") no-repeat;
  background-size: calc(25px * 0.8) calc(47px * 0.8);
  animation-name: animate-object-line-two;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-line-two {
  0% {
    top: calc(292px * 0.8);
    left: calc(200px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(68px * 0.8);
  }
}
@-moz-keyframes animate-object-line-two {
  0% {
    top: calc(292px * 0.8);
    left: calc(200px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(68px * 0.8);
  }
}
@-ms-keyframes animate-object-line-two {
  0% {
    top: calc(292px * 0.8);
    left: calc(200px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(68px * 0.8);
  }
}
@-o-keyframes animate-object-line-two {
  0% {
    top: calc(292px * 0.8);
    left: calc(200px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(68px * 0.8);
  }
}
@keyframes animate-object-line-two {
  0% {
    top: calc(292px * 0.8);
    left: calc(200px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(68px * 0.8);
  }
}
.page-intro .logo .icon .object-line-3 {
  position: absolute;
  top: calc(305px * 0.8);
  left: calc(142px * 0.8);
  width: calc(25px * 0.8);
  height: calc(47px * 0.8);
  background: url("../../images/commun/intro_logo_line3.png") no-repeat;
  background-size: calc(25px * 0.8) calc(47px * 0.8);
  animation-name: animate-object-line-three;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-line-three {
  0% {
    top: calc(559px * 0.8);
    left: calc(233px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(142px * 0.8);
  }
}
@-moz-keyframes animate-object-line-three {
  0% {
    top: calc(559px * 0.8);
    left: calc(233px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(142px * 0.8);
  }
}
@-ms-keyframes animate-object-line-three {
  0% {
    top: calc(559px * 0.8);
    left: calc(233px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(142px * 0.8);
  }
}
@-o-keyframes animate-object-line-three {
  0% {
    top: calc(559px * 0.8);
    left: calc(233px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(142px * 0.8);
  }
}
@keyframes animate-object-line-three {
  0% {
    top: calc(559px * 0.8);
    left: calc(233px * 0.8);
  }
  100% {
    top: calc(305px * 0.8);
    left: calc(142px * 0.8);
  }
}
.page-intro .logo .icon .object-line-4 {
  position: absolute;
  top: calc(269px * 0.8);
  left: calc(194px * 0.8);
  width: calc(41px * 0.8);
  height: calc(37px * 0.8);
  background: url("../../images/commun/intro_logo_line4.png") no-repeat;
  background-size: calc(41px * 0.8) calc(37px * 0.8);
  animation-name: animate-object-line-four;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-object-line-four {
  0% {
    top: calc(478px * 0.8);
    left: calc(541px * 0.8);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(194px * 0.8);
  }
}
@-moz-keyframes animate-object-line-four {
  0% {
    top: calc(478px * 0.8);
    left: calc(541px * 0.8);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(194px * 0.8);
  }
}
@-ms-keyframes animate-object-line-four {
  0% {
    top: calc(478px * 0.8);
    left: calc(541px * 0.8);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(194px * 0.8);
  }
}
@-o-keyframes animate-object-line-four {
  0% {
    top: calc(478px * 0.8);
    left: calc(541px * 0.8);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(194px * 0.8);
  }
}
@keyframes animate-object-line-four {
  0% {
    top: calc(478px * 0.8);
    left: calc(541px * 0.8);
  }
  100% {
    top: calc(269px * 0.8);
    left: calc(194px * 0.8);
  }
}
.page-intro .logo .name {
  position: relative !important;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 34px;
  color: #f6343f;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  margin-top: 5vh;
  animation-name: animate-logo-name;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes animate-logo-name {
  0% {
    margin-top: 35vh;
    font-size: 36px;
    line-height: 40px;
  }
  100% {
    margin-top: 5vh;
    font-size: 30px;
    line-height: 34px;
  }
}
@-moz-keyframes animate-logo-name {
  0% {
    margin-top: 35vh;
    font-size: 36px;
    line-height: 40px;
  }
  100% {
    margin-top: 5vh;
    font-size: 30px;
    line-height: 34px;
  }
}
@-ms-keyframes animate-logo-name {
  0% {
    margin-top: 35vh;
    font-size: 36px;
    line-height: 40px;
  }
  100% {
    margin-top: 5vh;
    font-size: 30px;
    line-height: 34px;
  }
}
@-o-keyframes animate-logo-name {
  0% {
    margin-top: 35vh;
    font-size: 36px;
    line-height: 40px;
  }
  100% {
    margin-top: 5vh;
    font-size: 30px;
    line-height: 34px;
  }
}
@keyframes animate-logo-name {
  0% {
    margin-top: 35vh;
    font-size: 36px;
    line-height: 40px;
  }
  100% {
    margin-top: 5vh;
    font-size: 30px;
    line-height: 34px;
  }
}
.page-intro .baseline {
  position: absolute;
  bottom: 15vh;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  line-height: 56px;
  color: #f6343f;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -khtml-opacity: 0;
  margin-top: 5vh;
  animation-name: animate-intro-baseline;
  animation-duration: 1.8s;
  animation-delay: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@-webkit-keyframes animate-intro-baseline {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@-moz-keyframes animate-intro-baseline {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@-ms-keyframes animate-intro-baseline {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@-o-keyframes animate-intro-baseline {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@keyframes animate-intro-baseline {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
.page-intro .arrow {
  position: absolute;
  bottom: 10px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 54px;
  line-height: 54px;
  color: #f6343f;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -khtml-opacity: 0;
  margin-top: 5vh;
  -moz-transition: bottom 0.3s ease;
  -o-transition: bottom 0.3s ease;
  -webkit-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
  cursor: pointer;
  animation-name: animate-intro-arrow;
  animation-duration: 1.8s;
  animation-delay: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.page-intro .arrow:hover {
  bottom: 0px;
  cursor: pointer;
}
@-webkit-keyframes animate-intro-arrow {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@-moz-keyframes animate-intro-arrow {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@-ms-keyframes animate-intro-arrow {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@-o-keyframes animate-intro-arrow {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
@keyframes animate-intro-arrow {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -khtml-opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -khtml-opacity: 1;
  }
}
.page-intro:hover {
  cursor: pointer;
}

/* -- MEDIA-QUERIES INTRO (HEIGHT) -- */
@media (max-height: 550px) {
  .page-intro .baseline {
    visibility: hidden;
  }
}
@media (max-height: 630px) {
  .page-intro .logo {
    top: 3vh;
  }
  .page-intro .baseline {
    bottom: 12vh;
    font-size: 40px;
    line-height: 46px;
  }
}
/* -------------------------------------------------------------------
PAGE
------------------------------------------------------------------- */
.open-menu .page {
  left: 100vw;
}

.page {
  position: relative;
  top: 0px;
  left: 0px;
  -moz-transition: left 0.8s ease, top 0.8s ease, margin-top 0.8s ease;
  -o-transition: left 0.8s ease, top 0.8s ease, margin-top 0.8s ease;
  -webkit-transition: left 0.8s ease, top 0.8s ease, margin-top 0.8s ease;
  transition: left 0.8s ease, top 0.8s ease, margin-top 0.8s ease;
}

/* -------------------------------------------------------------------
SECTION
------------------------------------------------------------------- */
.section-content {
  min-height: calc(100vh - 70px);
  padding: 20px 60px 50px 60px;
}
.section-content.section-homepage:nth-child(even) {
  background-color: #f3f4ef;
}
.section-content.section-homepage:nth-child(odd) {
  background-color: #ffffff;
}
.section-content.section-hero {
  height: calc(100vh - 50px) !important;
}
.section-content.section-hero .container {
  height: 90%;
}
.section-content.section-intern {
  min-height: 100vh;
}
.section-content.section-intern:first-child {
  min-height: auto;
}
.section-content.section-intern:nth-child(even) {
  background-color: #ffffff;
}
.section-content.section-intern:nth-child(odd) {
  background-color: #f3f4ef;
}
.section-content.section-intern.inverted:nth-child(even) {
  background-color: #f3f4ef;
}
.section-content.section-intern.inverted:nth-child(even) .inverted-color .big-title {
  color: #f6343f;
}
.section-content.section-intern.inverted:nth-child(even) .inverted-color .red {
  position: relative !important;
  margin-top: 50px;
  margin-bottom: 100px;
}
.section-content.section-intern.inverted:nth-child(odd) {
  background-color: #ffffff;
}
.section-content.section-intern.inverted:nth-child(odd) .inverted-color .title {
  color: #101820;
}
.section-content.section-intern.inverted:nth-child(odd) .inverted-color p {
  color: #101820;
}
.section-content.section-intern.inverted .container {
  position: relative;
}
.section-content.section-intern.inverted .container .content-profile {
  transition: all ease 0.9s;
  margin-left: 200vw;
  position: absolute;
  background: #f3f4ef;
  width: 100vw;
  height: 100%;
  z-index: 10;
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile {
  margin: auto auto;
  max-width: 1315px;
  padding: 20px 80px 50px 80px;
}
@media (max-width: 767px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile {
    width: 80%;
    padding: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1250px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile {
    padding: 20px 65px 50px 40px;
  }
}
@media (min-width: 1250px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile {
    padding: 20px 65px 50px 85px;
  }
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .close-profile {
  float: left;
  width: 100%;
  margin-bottom: 50px;
  margin-top: 100px;
  color: #fd0e32;
  font-family: "Variable Black";
  font-size: 2rem;
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .close-profile img {
  margin-top: -3px;
  width: 20px;
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid {
  width: 100%;
  display: grid;
  grid-template-columns: 30% 70%;
}
@media (max-width: 767px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid {
    grid-template-columns: 1fr;
  }
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .box-2 {
    padding: 0;
  }
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .profile_image {
  padding-right: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .profile_image {
    padding-right: 0;
  }
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .lkdn_icon {
  margin-top: 10px;
  margin-bottom: 30px;
  width: 30px;
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .lkdn_icon:hover {
  cursor: pointer;
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .box-2 {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .box-2 {
    padding-left: 0px;
  }
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .title {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 46px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
@media (max-width: 767px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .title {
    font-family: "Variable Black";
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    line-height: 27px;
    color: #101820;
    text-align: left;
    text-transform: none;
    text-decoration: none;
  }
}
.section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .description {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 40px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
@media (max-width: 767px) {
  .section-content.section-intern.inverted .container .content-profile .wrapper-profile .grid .description {
    font-family: "Variable Bold";
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 34px;
    color: #101820;
    text-align: left;
    text-transform: none;
    text-decoration: none;
  }
}
.section-content.section-intern.section-highlight {
  background-color: #f6343f;
}
.section-content.section-intern.section-white {
  background-color: #ffffff;
}

/* -------------------------------------------------------------------
HEADER
------------------------------------------------------------------- */
.main-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.main-header .logo img {
  width: 220px;
}
.main-header .logo a {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  -khtml-opacity: 1;
}
.main-header .logo a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  -khtml-opacity: 0.5;
}
.main-header nav {
  padding-top: 11px;
}
.main-header nav ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.main-header nav ul li {
  margin-left: 50px;
}
.main-header nav ul li a {
  font-family: "Karla Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  line-height: 13px;
  color: white;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.main-header nav ul li a.item-active:before {
  visibility: visible;
  transform: scaleX(1);
}

.main-header-portafolio {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.main-header-portafolio .logo img {
  width: 220px;
}
.main-header-portafolio .logo a {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  -khtml-opacity: 1;
}
.main-header-portafolio .logo a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  -khtml-opacity: 0.5;
}
.main-header-portafolio nav {
  padding-top: 11px;
}
.main-header-portafolio nav ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.main-header-portafolio nav ul li {
  margin-left: 50px;
}
.main-header-portafolio nav ul li a {
  font-family: "Karla Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  line-height: 13px;
  color: #f6343f;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.main-header-portafolio nav ul li a.item-active:before {
  visibility: visible;
  transform: scaleX(1);
}

/* -------------------------------------------------------------------
CONTENT
------------------------------------------------------------------- */
.section-content .content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
  /*-- COMMON --*/
  /*-- HOMEPAGE - CONTENT INTRO --*/
  /*-- HOMEPAGE - CONTENT MANIFESTO --*/
  /*-- HOMEPAGE - CONTENT STANDARD --*/
  /*-- INTERN - CONTENT INTRO --*/
  /*-- INTERN - CONTENT STANDARD --*/
  /*-- INTERN - CONTENT SECOND --*/
  /*-- CONNECT - CONTENT INTRO --*/
  /*-- CONNECT - CONTENT STANDARD --*/
  /*-- WHAT WE ARE LOOKING FOR - CONTENT SPECIALTIES --*/
}
.section-content .content .line {
  position: absolute;
  top: 0px;
  left: -50vw;
  width: 200vw;
  height: 1px;
  background: #3ac0ae;
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  z-index: 1;
}
.section-content .content .deco-triangle-top-right-black {
  position: absolute;
  top: -45px;
  right: 165px;
  width: 56px;
  height: 55px;
  background: url("../../images/commun/deco_triangle_top_right_black.png") no-repeat;
  z-index: 2;
}
.section-content .content .deco-triangle-bottom-left-black {
  position: absolute;
  bottom: -80px;
  left: 165px;
  width: 56px;
  height: 55px;
  background: url("../../images/commun/deco_triangle_bottom_left_black.png") no-repeat;
  z-index: 2;
}
.section-content .content .deco-triangle-top-right-red {
  position: absolute;
  top: -45px;
  right: 165px;
  width: 55px;
  height: 55px;
  background: url("../../images/commun/deco_triangle_top_right_red.png") no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.section-content .content .deco-triangle-bottom-left-red {
  position: absolute;
  bottom: -80px;
  left: 165px;
  width: 55px;
  height: 55px;
  background: url("../../images/commun/deco_triangle_bottom_left_red.png") no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.section-content .content .sep {
  position: relative;
  width: 100%;
  height: 22px;
  z-index: 3;
}
.section-content .content .sep.green {
  background: url("../../images/commun/sep_green.png") no-repeat center;
}
.section-content .content .sep.red {
  background: url("../../images/commun/sep_red.png") no-repeat center;
}
.section-content .content.content-intro-homepage {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-self: flex-end;
}
.section-content .content.content-intro-homepage .title {
  position: relative;
  max-width: 1100px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  z-index: 2;
}
.section-content .content.content-intro-homepage .title br {
  display: block;
}
.section-content .content.content-intro-homepage .picture {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-height: 580px;
  overflow: hidden;
  z-index: 1;
}
.section-content .content.content-intro-homepage .picture img {
  height: 580px;
}
.section-content .content.content-manifesto {
  width: 100%;
  min-height: 100vh;
  padding: 0px;
}
.section-content .content.content-manifesto .text-highlight {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 25.75px;
  line-height: 42px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-homepage {
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  padding: 0px 45px;
}
.section-content .content.content-homepage .picture {
  position: relative;
  padding: 0px;
  margin-bottom: 20px;
  z-index: 3;
}
.section-content .content.content-homepage .picture.hexagon {
  padding: 0px 15px;
  margin-top: -40px;
}
.section-content .content.content-homepage .picture.hexagon .crop {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#polygon-clip-hexagon");
  clip-path: url("#polygon-clip-hexagon");
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}
.section-content .content.content-homepage .picture.hexagon .crop img {
  width: 100%;
}
.section-content .content.content-homepage .picture.hexagon svg.clip-svg {
  height: 0px;
}
.section-content .content.content-homepage .picture.rectangle {
  position: relative;
  max-width: 460px;
  max-height: calc(685px - (685px / 3));
  overflow: hidden;
}
.section-content .content.content-homepage .picture.rectangle img {
  position: relative;
  top: -50px;
  max-height: calc(685px - (685px / 3));
}
.section-content .content.content-homepage .picture.triangle {
  position: relative;
  margin-top: -120px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 0px 15px;
}
.section-content .content.content-homepage .picture.triangle .crop img {
  display: block;
  max-width: 100%;
  height: 585px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.section-content .content.content-homepage .picture.triangle .crop img.polygon-clip-triangle-equilateral {
  -webkit-clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
  clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
  -webkit-clip-path: url("#polygon-clip-triangle-equilateral");
  clip-path: url("#polygon-clip-triangle-equilateral");
}
.section-content .content.content-homepage .picture.triangle svg.clip-svg {
  height: 0px;
}
.section-content .content.content-homepage .picture.circle img {
  width: 34vw;
  height: 34vw;
  -webkit-border-radius: 34vw;
  -moz-border-radius: 34vw;
  -ms-border-radius: 34vw;
  border-radius: 34vw;
}
.section-content .content.content-homepage .desc {
  position: relative;
  max-width: 460px;
  padding: 0px;
  margin-bottom: 20px;
  z-index: 3;
}
.section-content .content.content-homepage .desc .title {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 45px;
  line-height: 56.2px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-homepage .desc .text {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 45px;
}
.section-content .content.content-homepage .desc .btn-more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 149px;
  height: 52px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  color: #101820;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  margin-top: 50px;
}
.section-content .content.content-homepage .sep {
  margin-top: 0px;
}
.section-content .content.content-intern-intro-portafolio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 150px;
  margin-bottom: 120px;
}
.section-content .content.content-intern-intro-portafolio .title {
  position: relative;
  max-width: 1100px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  z-index: 2;
}
.section-content .content.content-intern-intro-portafolio .title br {
  display: block;
}
.section-content .content.content-intern-intro {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-self: flex-end;
}
.section-content .content.content-intern-intro .title {
  position: relative;
  max-width: 1100px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  z-index: 2;
}
.section-content .content.content-intern-intro .title br {
  display: block;
}
.section-content .content.content-intern {
  position: relative;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}
.section-content .content.content-intern.direction-column {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.section-content .content.content-intern.direction-column .picture {
  justify-content: flex-start;
}
.section-content .content.content-intern.intro .picture {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  margin-top: -60px;
  margin-bottom: 20px;
}
.section-content .content.content-intern.intro .picture img {
  height: 470px;
}
.section-content .content.content-intern .picture {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 3;
}
.section-content .content.content-intern .picture.logo {
  height: 400px;
}
.section-content .content.content-intern .picture.logo img {
  height: 100%;
}
.section-content .content.content-intern .desc {
  position: relative;
  z-index: 3;
}
.section-content .content.content-intern .desc .title {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 40px;
  line-height: 50px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-intern .desc .text {
  max-width: 400px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 30px;
}
.section-content .content.content-intern .desc .text strong {
  font-family: "Variable Black";
  font-weight: normal;
}
.section-content .content.content-intern .big-title {
  position: relative;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 40px;
  line-height: 56.2px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 65px;
  margin-bottom: 20px;
}
.section-content .content.content-intern .wrap-team-v3 {
  display: grid;
  width: 100%;
  column-gap: 2vw;
  row-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 50px auto auto auto;
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper {
  position: relative;
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper:hover {
  cursor: pointer;
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper:hover::after,
.section-content .content.content-intern .wrap-team-v3 .image-wrapper:hover .before {
  opacity: 1;
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper::after,
.section-content .content.content-intern .wrap-team-v3 .image-wrapper .before {
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper::after {
  content: "\a";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper::after:hover {
  opacity: 1;
}
.section-content .content.content-intern .wrap-team-v3 .image-wrapper .before {
  width: 100%;
  color: #fff;
  z-index: 1;
  bottom: 0;
  padding: 4px 10px;
  background: transparent;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-family: "Variable Black";
  font-weight: bold;
  margin-left: 5%;
  margin-bottom: 5%;
}
.section-content .content.content-intern .wrap-team {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: 60px auto 100px auto;
}
.section-content .content.content-intern .wrap-team .photo-team {
  text-align: right;
  padding-right: 30px;
}
.section-content .content.content-intern .wrap-team .photo-team img {
  max-width: 240px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  margin-top: 10px;
}
.section-content .content.content-intern .wrap-team .desc-team {
  padding-left: 30px;
}
.section-content .content.content-intern .wrap-team .desc-team .title {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 40px;
  line-height: 50px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-intern .wrap-team .desc-team .sub-title {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 40px;
}
.section-content .content.content-intern .wrap-team .desc-team .text {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 40px;
}
.section-content .content.content-intern .wrap-team .desc-team .btn-more {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
}
.section-content .content.content-intern .wrap-team .desc-team .btn-more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 52px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  color: #101820;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  border: 2px solid #101820;
  padding: 0px 20px;
}
.section-content .content.content-intern .wrap-team .desc-team .btn-more a:hover {
  color: #ffffff;
  background: #101820;
}
.section-content .content.content-intern .wrap-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin: 0px auto;
}
.section-content .content.content-intern .wrap-quote .quote {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 29.25px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-intern .wrap-quote .mention-quote {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin: 40px 0px 100px 0px;
}
.section-content .content.content-intern .wrap-full {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
}
.section-content .content.content-intern .wrap-full img {
  width: 600px;
  height: 100%;
}
.section-content .content.content-intern .portrait-left {
  position: relative;
  max-width: 450px;
  max-height: 580px;
  overflow: hidden;
  margin-top: 20px;
}
.section-content .content.content-intern .portrait-left img {
  max-width: 680px;
  height: 580px;
}
.section-content .content.content-intern .wrap-desc-right {
  max-width: 520px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.section-content .content.content-intern .wrap-desc-right .title {
  max-width: 500px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 37.5px;
  color: #f3f4ef;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-intern .wrap-desc-right .bit-title {
  margin-bottom: 40px !important;
}
.section-content .content.content-intern .wrap-desc-right .text {
  max-width: 450px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #f3f4ef;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 40px;
}
.section-content .content.content-intern .card-future {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section-content .content.content-intern .card-future .picture.portrait {
  position: relative;
  max-width: 450px;
  max-height: 680px;
  margin-top: 0px;
  overflow: hidden;
}
.section-content .content.content-intern .card-future .picture.portrait img {
  max-width: 680px;
  height: 680px;
}
.section-content .content.content-intern .card-future .picture.triangle {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.section-content .content.content-intern .card-future .picture.triangle .crop img {
  display: block;
  max-width: 100%;
  height: 585px;
  margin: 0 auto;
}
.section-content .content.content-intern .card-future .picture.triangle .crop img.polygon-clip-triangle-equilateral {
  -webkit-clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
  clip-path: polygon(0% 87%, 50% 0%, 50% 0%, 100% 87%);
  -webkit-clip-path: url("#polygon-clip-triangle-equilateral");
  clip-path: url("#polygon-clip-triangle-equilateral");
}
.section-content .content.content-intern .card-future .picture.triangle svg.clip-svg {
  height: 0px;
}
.section-content .content.content-intern .card-future .picture.circle {
  position: relative;
  display: flex;
  justify-content: center;
  width: 500px;
  padding: 0px;
  z-index: 3;
}
.section-content .content.content-intern .card-future .picture.circle img {
  width: 500px;
  height: 500px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  border-radius: 500px;
}
.section-content .content.content-intern .card-future .picture.hexagon {
  position: relative;
  width: 800px;
  padding: 0px;
  z-index: 3;
}
.section-content .content.content-intern .card-future .picture.hexagon .crop {
  position: relative;
  left: 25%;
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#polygon-clip-hexagon");
  clip-path: url("#polygon-clip-hexagon");
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}
.section-content .content.content-intern .card-future .picture.hexagon .crop img {
  max-width: 100%;
  width: 100%;
}
.section-content .content.content-intern .card-future .picture.hexagon svg.clip-svg {
  height: 0px;
}
.section-content .content.content-intern .card-future .picture.standard img {
  max-width: 100%;
  height: 400px;
}
.section-content .content.content-intern .card-future .title {
  max-width: 450px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 37.5px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-intern .line {
  top: -200px;
}
.section-content .content.content-intern .line.low {
  top: -50px;
}
.section-content .content.content-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 !important;
}
.section-content .content.content-event .hexagon {
  z-index: 11;
}
.section-content .content.content-event .picture {
  z-index: 12;
  order: 2;
}
.section-content .content.content-event .desc {
  z-index: 11;
}
.section-content .content.content-intern-second {
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100vh;
  padding-bottom: 20px;
}
.section-content .content.content-intern-second .wrap-picture {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section-content .content.content-intern-second .picture {
  position: relative;
  z-index: 3;
}
.section-content .content.content-intern-second .picture.standard {
  position: relative;
  width: 825px;
  height: 545px;
  overflow: hidden;
  z-index: 2;
  margin-top: -300px;
}
.section-content .content.content-intern-second .picture.standard img {
  width: 825px;
}
.section-content .content.content-intern-second .picture.hexagon {
  position: relative;
  width: 500px;
  padding: 0px;
  z-index: 3;
  margin-top: -200px;
}
.section-content .content.content-intern-second .picture.hexagon .crop {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#polygon-clip-hexagon");
  clip-path: url("#polygon-clip-hexagon");
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}
.section-content .content.content-intern-second .picture.hexagon .crop img {
  width: 100%;
}
.section-content .content.content-intern-second .picture.hexagon svg.clip-svg {
  height: 0px;
}
.section-content .content.content-intern-second .picture.circle {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0px;
  margin-top: -120px;
  z-index: 3;
}
.section-content .content.content-intern-second .picture.circle img {
  width: 500px;
  height: 500px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  -ms-border-radius: 500px;
  border-radius: 500px;
}
.section-content .content.content-intern-second .big-title {
  position: relative;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 45px;
  line-height: 56.25px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 75px;
}
.section-content .content.content-intern-second .title {
  width: 100%;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 37.5px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin: 55px auto 0px auto;
  z-index: 2;
}
.section-content .content.content-intern-second .sub-title {
  width: 100%;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin: 50px auto 0px auto;
  z-index: 2;
}
.section-content .content.content-intern-second .title-video {
  width: 100%;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 37.5px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin: 50px auto 0px auto;
  z-index: 2;
}
.section-content .content.content-intern-second .text {
  width: 100%;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin: 20px auto 0px auto;
}
.section-content .content.content-intern-second .text strong {
  font-family: "Variable Black";
  font-weight: normal;
}
.section-content .content.content-intern-second .video {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 30px;
}
.section-content .content.content-intern-second .btn-more {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 20px auto 0px auto;
}
.section-content .content.content-intern-second .btn-more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 52px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  color: #101820;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: none;
  padding: 0px 20px;
  margin-top: 20px;
}
.section-content .content.content-intern-second .btn-more-video {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.section-content .content.content-intern-second .btn-more-video a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 52px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  color: #f6343f;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #f6343f;
  background: none;
  padding: 0px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-content .content.content-intern-second .btn-more-video a:hover {
  color: #ffffff;
  background: #f6343f;
}
.section-content .content.content-intern-second .wrap-bring {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 85px;
}
.section-content .content.content-intern-second .wrap-bring .card-bring {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 410px;
  margin-bottom: 100px;
  padding: 0px;
}
.section-content .content.content-intern-second .wrap-bring .card-bring .text {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 22.5px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 0px;
  padding: 0px 10px;
}
.section-content .content.content-intern-second .line {
  top: -200px;
}
.section-content .content.content-intern-second .line.low {
  top: -50px;
}
.section-content .content.content-intern-second .sep {
  margin-top: 60px;
}
.section-content .content.content-connect-intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}
.section-content .content.content-connect-intro .big-title {
  width: 100%;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 45px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  z-index: 2;
  margin-top: 100px;
}
.section-content .content.content-connect-intro .wrap-content-connect-intro {
  margin-top: 100px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 50% 50%;
}
.section-content .content.content-connect-intro .wrap-content-connect-intro .image-contact img {
  width: 100%;
}
.section-content .content.content-connect-intro .wrap-connect-intro {
  width: 100%;
}
.section-content .content.content-connect-intro .wrap-connect-intro .title {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 37.5px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 30px;
}
.section-content .content.content-connect-intro .wrap-connect-intro .sub-title {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 30px;
}
.section-content .content.content-connect-intro .wrap-connect-intro .text {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 55px;
}
.section-content .content.content-connect-intro .wrap-connect-intro .link-contact {
  margin-top: -10px;
  margin-bottom: 25px;
}
.section-content .content.content-connect-intro .wrap-connect-intro .link-contact a {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  border-bottom: 1px solid #101820;
}
.section-content .content.content-connect-intro .wrap-connect-intro .link-contact a:hover {
  border-bottom: 1px solid #101820;
}
.section-content .content.content-insights {
  max-width: 1000px;
}
.section-content .content.content-insights > .header {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  margin-top: 30px;
  align-items: center;
}
.section-content .content.content-insights > .header > a {
  flex: 1;
}
.section-content .content.content-insights > .header > a img {
  width: 25px;
  margin-top: -8px;
  margin-right: 5px;
}
.section-content .content.content-insights > .header .share_buttons {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.section-content .content.content-insights > .header span {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights > .post-title {
  width: 100%;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 35px;
  line-height: 55px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights > .cover {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1000px;
}
.section-content .content.content-insights > .cover > img {
  width: 100%;
}
.section-content .content.content-insights > .content {
  margin-top: 20px;
  font-family: "Variable Bold";
}
.section-content .content.content-insights > .content p {
  margin-bottom: 20px !important;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights .share_buttons {
  background: white;
  padding: 10px;
  border-radius: 25px;
  margin-top: 100px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.section-content .content.content-insights .share_buttons span {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights .share_buttons span {
  margin-left: 10px;
  margin-right: 10px;
}
.section-content .content.content-insights .share_buttons a {
  margin-right: 8px;
}
.section-content .content.content-insights > .description {
  margin-top: 100px;
  margin-bottom: 50px;
}
.section-content .content.content-insights > .description p {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights .insight {
  transition: all ease 0.3s;
  display: flex;
  flex-direction: column;
}
.section-content .content.content-insights .insight .header_image {
  width: 100%;
  background-color: #f6343f;
  margin-bottom: 20px;
  filter: grayscale(100%);
}
.section-content .content.content-insights .insight .header_image img {
  width: 100%;
  object-fit: cover;
}
.section-content .content.content-insights .insight .title {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 10px;
}
.section-content .content.content-insights .insight .description {
  flex: 1;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 28px;
  color: #000000;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 20px;
}
.section-content .content.content-insights .insight .cta-btn {
  text-transform: uppercase;
  padding: 11px 8px 11px 8px;
  width: max-content;
  border: 3px solid #f6343f;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 15px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights .insight:hover {
  cursor: pointer;
}
.section-content .content.content-insights .insight:hover .header_image {
  filter: grayscale(0);
}
.section-content .content.content-insights .insight:hover .title {
  color: #f6343f;
}
.section-content .content.content-insights .insight:hover .description {
  color: #f6343f;
}
.section-content .content.content-insights .insight:hover .cta-btn {
  background-color: #f6343f;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-insights .grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
  width: 100%;
  margin-bottom: 100px;
}
.section-content .content.content-insights .grid-inside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
  width: 70%;
  margin-top: 160px;
  margin-bottom: 70px;
}
.section-content .content.content-portafolio .title-portafolio {
  position: static;
  max-width: 1100px;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 50px;
  color: black !important;
}
.section-content .content.content-portafolio .logo-grid {
  display: grid;
  column-gap: 2vw;
  row-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100vw;
}
.section-content .content.content-portafolio .logo-grid .image {
  background-color: #fff;
  height: 350px;
  transition: background-color ease 0.5s;
  position: relative;
}
.section-content .content.content-portafolio .logo-grid .image .image-wrapper {
  transition: all ease 0.5s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.section-content .content.content-portafolio .logo-grid .image .image-wrapper img {
  width: 65%;
  max-height: 120px;
  object-fit: contain;
}
.section-content .content.content-portafolio .logo-grid .image .content {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: auto;
  top: 37%;
  transition: all ease 0.8s;
}
.section-content .content.content-portafolio .logo-grid .image .content p.description {
  transition: all ease 0.5s;
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  padding-bottom: 20px;
  opacity: 0;
  width: 100%;
}
.section-content .content.content-portafolio .logo-grid .image .content .link-wrapper {
  transition: all ease 0.3s;
  width: 100%;
  opacity: 0;
}
.section-content .content.content-portafolio .logo-grid .image .content .link-wrapper p.link {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #f6343f;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  float: left;
  border-bottom: 1px solid #f6343f;
}
.section-content .content.content-portafolio .logo-grid .image:hover {
  cursor: pointer;
  background-color: transparent;
}
.section-content .content.content-portafolio .logo-grid .image:hover .image-wrapper {
  opacity: 0;
}
.section-content .content.content-portafolio .logo-grid .image:hover .content {
  top: 15%;
}
.section-content .content.content-portafolio .logo-grid .image:hover .content p {
  opacity: 1;
}
.section-content .content.content-portafolio .logo-grid .image:hover .content .link-wrapper {
  opacity: 1;
}
.section-content .content.content-portafolio .red {
  position: relative !important;
  margin-top: 100px;
  margin-bottom: 100px;
}
.section-content .content.content-contact {
  justify-content: flex-start;
  align-items: flex-start;
}
.section-content .content.content-contact .map-contact {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: -550px auto 0px auto;
  z-index: 3;
}
.section-content .content.content-contact .map-contact .wrap-map {
  float: none;
  height: 590px;
}
.section-content .content.content-contact .map-contact .wrap-map IFRAME {
  width: 100%;
  height: 100%;
}
.section-content .content.content-contact .sep {
  margin-top: 55px;
  margin-bottom: 65px;
}
.section-content .content.content-contact .form-contact {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0px auto 45px auto;
  z-index: 3;
}
.section-content .content.content-contact .form-contact form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.section-content .content.content-contact .form-contact .col-text {
  float: none;
  width: 50%;
}
.section-content .content.content-contact .form-contact .col-fields {
  float: none;
  width: 50%;
  padding: 0px 15px;
}
.section-content .content.content-contact .form-contact .title {
  width: 100%;
  max-width: 320px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 27px;
  line-height: 37.5px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-contact .form-contact .text {
  width: 100%;
  max-width: 320px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 20px;
}
.section-content .content.content-contact .form-contact .line-col {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.section-content .content.content-contact .form-contact .line-col.half {
  justify-content: space-between;
}
.section-content .content.content-contact .form-contact .line-col label {
  width: 100%;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-contact .form-contact .line-col .wrap-input {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px;
  margin-bottom: 12px;
}
.section-content .content.content-contact .form-contact .line-col .wrap-input.half {
  width: 48%;
}
.section-content .content.content-contact .form-contact .line-col .wrap-input input.input-text {
  width: 100%;
  height: 51px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 51px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  border: 1px solid #c85442;
  padding: 0px 10px;
}
.section-content .content.content-contact .form-contact .line-col .wrap-input textarea {
  width: 100%;
  height: 115px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  border: 1px solid #c85442;
  padding: 10px;
}
.section-content .content.content-contact .form-contact .line-col .wrap-input .mention {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  line-height: 12px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-top: 8px;
}
.section-content .content.content-contact .form-contact .line-submit {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin-top: 28px;
}
.section-content .content.content-contact .form-contact .line-submit .btn-submit {
  height: 52px;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  line-height: 52px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #f6343f;
  border: 2px solid #f6343f;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  padding: 0px 55px;
}
.section-content .content.content-contact .form-contact .line-submit .btn-submit:hover {
  color: #f6343f;
  background-color: #ffffff;
}
.section-content .content.content-contact .form-contact .line-message {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin-top: 5px;
  display: none;
}
.section-content .content.content-contact .form-contact .line-message .text {
  width: 100%;
  max-width: 100%;
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-contact .form-contact .line-message.confirm .text {
  color: #28bd36;
}
.section-content .content.content-contact .form-contact .line-message.error .text {
  color: #ff0000;
}
.section-content .content.content-intern-specialties {
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}
.section-content .content.content-intern-specialties .card-specialties {
  position: relative;
  z-index: 2;
}
.section-content .content.content-intern-specialties .card-specialties:nth-child(even) {
  padding-left: 60px;
}
.section-content .content.content-intern-specialties .card-specialties:nth-child(odd) {
  padding-right: 60px;
}
.section-content .content.content-intern-specialties .card-specialties .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.section-content .content.content-intern-specialties .card-specialties .title .icon img {
  max-width: 96px;
}
.section-content .content.content-intern-specialties .card-specialties .title .text {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 34.5px;
  line-height: 30px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.section-content .content.content-intern-specialties .card-specialties .desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 40px;
}
.section-content .content.content-intern-specialties .card-specialties .desc .text-highlight {
  font-family: "Variable Black";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  margin-bottom: 30px;
}
.section-content .content.content-intern-specialties .card-specialties .desc .text-standard {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16.5px;
  line-height: 27px;
  color: #101820;
  text-align: left;
  text-transform: none;
  text-decoration: none;
}
.section-content .content.content-intern-specialties .wrap-picture {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0px 30px 0px;
}
.section-content .content.content-intern-specialties .wrap-picture .picture {
  position: relative;
  width: 500px;
  padding: 0px;
  z-index: 3;
}
.section-content .content.content-intern-specialties .wrap-picture .picture.hexagon .crop {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#polygon-clip-hexagon");
  clip-path: url("#polygon-clip-hexagon");
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}
.section-content .content.content-intern-specialties .wrap-picture .picture.hexagon .crop img {
  width: 100%;
}
.section-content .content.content-intern-specialties .wrap-picture .picture.hexagon svg.clip-svg {
  height: 0px;
}
.section-content .content.content-intern-specialties .line {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-20deg);
  -o-transform: translateY(-50%) rotate(-20deg);
  -ms-transform: translateY(-50%) rotate(-20deg);
  transform: translateY(-50%) rotate(-20deg);
}
.section-content.section-highlight-no-full {
  padding-bottom: 20px !important;
  min-height: 0 !important;
}
.section-content.section-highlight-no-full .content.content-intern-second {
  min-height: 0 !important;
}
.section-content.section-highlight .content .title {
  color: #f3f4ef;
}
.section-content.section-highlight .content .text {
  color: #f3f4ef;
}
.section-content.section-highlight .content.content-intern-second {
  padding-bottom: 60px;
}
.section-content.section-highlight .content.content-intern-second .sub-title {
  color: #f3f4ef;
}
.section-content.section-highlight .content.content-intern .big-title {
  color: #f3f4ef;
}
.section-content.section-highlight .content.content-intern .desc .title {
  color: #f3f4ef;
}
.section-content.section-highlight .content.content-intern .desc .text {
  color: #f3f4ef;
}
.section-content:nth-child(even) .content.content-homepage {
  flex-direction: row-reverse;
}
.section-content:nth-child(even) .content.content-homepage .desc .title {
  color: #f6343f;
}
.section-content:nth-child(even) .content.content-homepage .desc .text {
  color: #f6343f;
}
.section-content:nth-child(even) .content.content-homepage .desc .btn-more a {
  color: #f6343f;
  border: 2px solid #f6343f;
}
.section-content:nth-child(even) .content.content-homepage .desc .btn-more a:hover {
  color: #ffffff;
  background: #f6343f;
}
.section-content:nth-child(even) .content.content-homepage .sep {
  background: url("../../images/commun/sep_red.png") no-repeat center;
}
.section-content:nth-child(even) .content.content-future .card-future {
  flex-direction: row-reverse;
}
.section-content:nth-child(odd) .content.content-homepage {
  flex-direction: row;
}
.section-content:nth-child(odd) .content.content-homepage .desc .title {
  color: #101820;
}
.section-content:nth-child(odd) .content.content-homepage .desc .text {
  color: #101820;
}
.section-content:nth-child(odd) .content.content-homepage .desc .btn-more a {
  color: #101820;
  border: 2px solid #101820;
}
.section-content:nth-child(odd) .content.content-homepage .desc .btn-more a:hover {
  color: #ffffff;
  background: #101820;
}
.section-content:nth-child(odd) .content.content-homepage .sep {
  background: url("../../images/commun/sep_green.png") no-repeat center;
}
.section-content:nth-child(odd) .content.content-intern-second .big-title {
  color: #f6343f;
}
.section-content:nth-child(odd) .content.content-intern-second .title {
  color: #f6343f;
}
.section-content:nth-child(odd) .content.content-intern-second .sub-title {
  color: #f6343f;
}
.section-content:nth-child(odd) .content.content-intern-second .text {
  color: #f6343f;
}
.section-content:nth-child(odd) .content.content-intern-second .btn-more a {
  color: #f6343f;
  border: 2px solid #f6343f;
}
.section-content:nth-child(odd) .content.content-intern-second .btn-more a:hover {
  color: #ffffff;
  background: #f6343f;
}
.section-content:nth-child(odd) .content.content-future .card-future {
  flex-direction: row;
}
.section-content:nth-child(odd) .content.content-future .card-future .title {
  color: #f6343f;
}
.section-content:nth-child(odd) .content.content-intern .big-title {
  color: #f6343f;
}

/* -------------------------------------------------------------------
FOOTER
------------------------------------------------------------------- */
.main-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 407px;
  background-color: #f6343f;
}
.main-footer nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.main-footer nav ul li {
  margin: 0px 20px;
}
.main-footer nav ul li a {
  font-family: "Karla Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  line-height: 13px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
.main-footer nav ul li a.active:before {
  visibility: visible;
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.main-footer .copyright {
  font-family: "Variable Bold";
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  margin-top: 108px;
}

/* -------------------------------------------------------------------
ANIMATIONS
------------------------------------------------------------------- */

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