/* ---------------------------------------------------

    C S S    S P E E D     3.0

    - Release Date:  Noviembre 2018
    - Developed by:  Eduardo León | Twitter: @soyeleon
    - Author URL:    http://monstarter.com

    - Copyright 2019 | Monstarter

--------------------------------------------------- */
/*-----------------------------

    # V A R S

-----------------------------*/
/* F O N T S
-----------------------------*/
/* B R E A K P O I N T S
-----------------------------*/
/* C O L O R S
-----------------------------*/
/*-----------------------------

    # R E S E T   C S S

-----------------------------*/
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}
body {
  margin: 0;
  font-family: sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/*-----------------------------

    # B A S E

-----------------------------*/
html,
body {
  font-family: 'Montserrat', sans-serif;;
  font-size: 16px;
  color: #888;
  background: #fff;
  line-height: 1.75;
  font-weight: 300;
}
h1 {
  font-size: 42px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
a {
  color: #f32836;
}
p {
  margin-bottom: 20px;
}
strong,
b {
  font-weight: 600;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  margin: 5px 0 40px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
blockquote {
  padding-left: 15px;
  border-left: 5px solid #ccc;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 24px;
  color: #000;
}
small {
  font-size: 14px;
}
ul,
ol {
  margin-bottom: 20px;
  margin-left: 20px;
}
ul li,
ol li {
  line-height: 1.5;
}
/*-----------------------------

    # A C C O R D I O N

-----------------------------*/
.accordion li {
  background: #f5f5f5;
  margin-bottom: 3px;
}
.accordion li.accordion--open .accordion__title {
  color: #f32836;
  background: #eee;
}
.accordion li.accordion--open icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion li .accordion__title {
  display: block;
  padding: 15px 40px 15px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 1px;
  position: relative;
  color: #333;
  cursor: pointer;
}
.accordion li .accordion__title icon {
  position: absolute;
  height: 100%;
  top: 0;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.accordion li .accordion__title:hover {
  color: #f32836;
  background: #eee;
}
.accordion li .accordion__title:hover icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion li .accordion__content {
  display: none;
  padding: 20px;
}
.accordion li .accordion__content p {
  margin: 0px;
}
/*-----------------------------

    # M E S S A G E S

-----------------------------*/
.alert {
  padding: 10px 16px;
  border: 1px solid transparent;
  margin-bottom: 1em;
  border-radius: 6px;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
}
.alert p {
  margin: 0px 0px;
}
.alert.alert--info {
  color: #1979a6;
  background-color: #e6f5fb;
  border-color: #c7e7f7;
}
.alert.alert--success {
  color: #577d2a;
  background-color: #e6f2d8;
  border-color: #d5e9bd;
}
.alert.alert--warning {
  color: #a07800;
  background-color: #fff0c4;
  border-color: #ffe7a0;
}
.alert.alert--danger {
  color: #ba160a;
  background-color: #feeae9;
  border-color: #fccbc7;
}
/*-----------------------------

    # B A D G E

-----------------------------*/
.badge {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  background: #f32836;
  color: #FFF;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*-----------------------------

    # B U T T O N

-----------------------------*/
.button {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0 1.5em;
  font-size: 16px;
  line-height: 3;
  color: #000;
  background-color: transparent;
  position: relative;
  outline: none;
  font-weight: 500;
  z-index: 1;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  /* BUTTON STYLES */
  /* BUTTON SIZES */
}
.button icon {
  margin-right: 5px;
  vertical-align: text-bottom;
  font-size: 21px;
  font-weight: 600;
}
.button.button--primary {
  background-color: transparent;
  color: #000;
  border: 2px solid #f32836;
  color: #f32836;
}
.button.button--primary:after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  background: #f32836;
  top: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}
.button.button--primary:hover {
  color: #FFF;
  text-decoration: none;
}
.button.button--primary:hover:after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.button.button--secondary {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}
.button.button--secondary:after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  background: #000;
  top: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}
.button.button--secondary:hover {
  color: #FFF;
  text-decoration: none;
}
.button.button--secondary:hover:after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.button.button--info {
  background-color: #42AFE3;
  color: #fff;
}
.button.button--success {
  background-color: #8BC34A;
  color: #fff;
}
.button.button--danger {
  background-color: #F44336;
  color: #fff;
}
.button.button--light {
  background-color: #F7F7F7;
  color: #BDBDBD;
}
.button.button--light:hover {
  color: #f32836;
}
.button.button--facebook {
  background-color: #4267b2;
  color: #fff;
}
.button.is--disabled {
  opacity: 0.6;
  pointer-events: none;
}
.button.button--link {
  line-height: 1.5;
  padding: 0;
  position: relative;
  display: inline-block;
  text-transform: none;
  font-size: inherit;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button.button--link:after {
  content: '';
  display: block;
  height: 2px;
  background: #f32836;
  width: 0%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button.button--link:hover {
  text-decoration: none;
}
.button.button--link:hover:after {
  width: 100%;
}
.button.button--link-2024 {
  line-height: 1.5;
  padding: 0;
  position: relative;
  display: inline-block;
  text-transform: none;
  font-size: inherit;
}
.button.button--link-2024:after {
  content: '';
  display: block;
  height: 2px;
  background: #ff0000;
  width: 0%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.button.button--link-2024:hover {
  text-decoration: none;
}
.button.button--link-2024:hover:after {
  width: 100%;
}
.button.button--small {
  font-size: 0.75rem;
}
.button.button--medium {
  font-size: 1.25rem;
}
.button.button--large {
  font-size: 1.5rem;
}
/*-----------------------------

    # C A R D

-----------------------------*/
.card {
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 20px;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}
.card:hover {
  border-color: #ccc;
}
.card .card__info .card__title {
  color: #000;
  font-weight: 500;
}
.card img {
  width: 40px;
  height: auto;
}
/*-----------------------------*\
    # C O N T A I N E R
\*-----------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding: 0px 2rem;
}
.container.container--fluid {
  max-width: none;
}
@media screen and (min-width: 641px) {
  .container.container--collapsed {
    padding: 0;
  }
}
/*-----------------------------

    # D I V I D E R

-----------------------------*/
/* SEPARATOR */
.divider {
  width: 100%;
  height: 1px;
  margin: 20px 0px;
  display: inline-block;
}
.divider .divider--line {
  border-top: 1px solid #ccc;
  clear: both;
  display: block;
  height: 1px;
  margin: 20px 0px;
  width: 100%;
}
.divider.divider--dashed {
  border-top: 1px dashed #ccc;
}
.divider.divider--dotted {
  border-top: 1px dotted #ccc;
}
/*-----------------------------

    # F O R M S

-----------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex.flex--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/*-----------------------------

    # F O R M S

-----------------------------*/
form .form__item {
  margin: 40px 0;
  position: relative;
  border-bottom: 1px solid #ccc;
}
form .form__item input,
form .form__item textarea,
form .form__item select {
  padding: 10px 0;
  border: none;
  font-size: inherit;
  width: 100%;
  outline: none;
  color: #000;
  font-family: inherit;
  font-weight: 700;
  resize: none;
  font-size: 21px;
  line-height: 1;
  background-color: transparent;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
form .form__item input::-webkit-input-placeholder, form .form__item textarea::-webkit-input-placeholder, form .form__item select::-webkit-input-placeholder {
  color: #ccc;
}
form .form__item input::-moz-placeholder, form .form__item textarea::-moz-placeholder, form .form__item select::-moz-placeholder {
  color: #ccc;
}
form .form__item input:-ms-input-placeholder, form .form__item textarea:-ms-input-placeholder, form .form__item select:-ms-input-placeholder {
  color: #ccc;
}
form .form__item input::-ms-input-placeholder, form .form__item textarea::-ms-input-placeholder, form .form__item select::-ms-input-placeholder {
  color: #ccc;
}
form .form__item input::placeholder,
form .form__item textarea::placeholder,
form .form__item select::placeholder {
  color: #ccc;
}
form .form__item label {
  color: #999;
  position: absolute;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  top: 0;
  font-size: 16px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
form .form__item.is--focus label,
form .form__item.is--fill label {
  top: -30px;
  color: #999;
  font-size: 13px;
}
form .form__item:after {
  content: '';
  display: block;
  height: 1px;
  background: #ccc;
  width: 0%;
  margin-bottom: -1px;
  webkit-transition: 0.4s ease-out;
  -moz-transition: 0.4s ease-out;
  -ms-transform: 0.4s ease-out;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
form .form__item:hover:after {
  width: 100%;
  background: #f32836;
}
/*-----------------------------

    # G R I D

-----------------------------*/
.grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1281px) {
  .grid.widescreen--10 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.widescreen--9 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.widescreen--8 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.widescreen--7 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.widescreen--6 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.widescreen--5 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.widescreen--4 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.widescreen--3 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.widescreen--2 {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.widescreen--1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .grid.desktop--10 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.desktop--9 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.desktop--8 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.desktop--7 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.desktop--6 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.desktop--5 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.desktop--4 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.desktop--3 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.desktop--2 {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.desktop--1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .grid.tablet--10 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.tablet--9 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.tablet--8 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.tablet--7 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.tablet--6 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.tablet--5 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.tablet--4 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.tablet--3 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.tablet--2 {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.tablet--1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .grid.mobile--10 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.mobile--9 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.mobile--8 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.mobile--7 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.mobile--6 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.mobile--5 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.mobile--4 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.mobile--3 {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.mobile--2 {
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.mobile--1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.grid.grid--collapsed {
  grid-gap: 0px;
}
.hero {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero .hero__head,
.hero .hero__foot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero .hero__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
}
.hero.is--medium .hero__body {
  padding-bottom: 120px;
  padding-top: 120px;
}
.hero.is--large .hero__body {
  padding-bottom: 240px;
  padding-top: 240px;
}
.hero.is--fullheight {
  min-height: 100vh;
}
.hero.is--fullheight .hero__body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero.is--primary .hero__body {
  background-color: #f32836;
  color: #FFF;
}
.hero.is--primary .hero__body h1,
.hero.is--primary .hero__body h2,
.hero.is--primary .hero__body h3,
.hero.is--primary .hero__body h4,
.hero.is--primary .hero__body h5 {
  text-transform: uppercase;
  color: #FFF;
}
.hero.is--light .hero__body {
  background-color: #F7F7F7;
}
/*-----------------------------

    # L I S T S

-----------------------------*/
ul.list {
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
}
ul.list li {
  margin-left: 0px;
  list-style: none;
}
ul.list li icon {
  margin: 0 5px 0 0;
}
ul.list.is--circle li {
  margin-left: 16px;
  list-style: disc;
}
ul.list.is--decimal li {
  margin-left: 15px;
  list-style: decimal;
}
ul.list.is--square li {
  margin-left: 15px;
  list-style: square;
}
ul.list.is--alpha li {
  margin-left: 15px;
  list-style: upper-alpha;
}
ul.list.is--roman li {
  margin-left: 15px;
  list-style: upper-roman;
}
/*-----------------------------

    # M I X I N S

-----------------------------*/
/* Transitions
-----------------------------*/
/* Translate
-----------------------------*/
/* Scale
-----------------------------*/
/* Clear default apareance
-----------------------------*/
.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/*-----------------------------

    # M O D A L S

-----------------------------*/
.modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: auto;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.modal .modal__content {
  margin: auto;
  text-align: center;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding: 3rem;
  -webkit-box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.4);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}
.modal .modal__content > .lnr-cross {
  cursor: pointer;
  padding: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  margin: 0px;
  color: #ccc;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.modal .modal__content > .lnr-cross:hover {
  color: #f32836;
}
.modal.modal--rounded .modal__content {
  border-radius: 5px;
}
.modal.is--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.modal.is--visible .modal__content {
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.modal .close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #ccc;
  font-weight: 300;
  text-decoration: none;
}
.modal .close-button:hover {
  color: #f32836;
}
/*-----------------------------

    # N A V S

-----------------------------*/
nav {
  display: block;
  width: auto;
}
nav a {
  position: relative;
  display: inline-block;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: #f32836;
  width: 0%;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
nav a:hover {
  text-decoration: none;
}
nav a:hover:after {
  width: 100%;
}
nav a.is--current:after {
  width: 50%;
}
nav.main-menu a {
  font-size: 16px;
  padding: 0 10px;
  color: #000;
  font-weight: 500;
}
nav.main-menu.main-menu--2024 a:hover:after {
  background: red;
}
nav.footer-menu {
  text-align: right;
  font-weight: 300;
  font-size: 14px;
}
nav.footer-menu a {
  color: #fff;
}
nav.footer-menu a:hover {
  color: #f32836;
}
nav.footer-menu span {
  padding: 0 10px;
}
/*-----------------------------

    # S E C T I O N

-----------------------------*/
.section {
  position: relative;
}
.section.section--small {
  padding: 40px 0;
}
.section.section--medium {
  padding: 6.25rem 0;
}
.section.section--large {
  padding: 240px 0;
}
.section.section--fullheight {
  min-height: 100vh;
}
.section.section--light {
  background-color: #F7F7F7;
}
.section.section--dark {
  background-color: #171717;
}
.section.section--primary {
  background-color: #f32836;
  color: #FFF;
}
.section.section--secondary {
  background-color: #000;
  color: #FFF;
}
.section--lazy {
  min-height: 400px;
}
/*-----------------------------

    # T A B L E S

-----------------------------*/
.table-container {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 14px 0px;
  overflow: auto;
  /* TABLE VERTICAL BORDERED */
  /* TABLE HORIZONTAL BORDER */
}
table td,
table th {
  border: 1px solid #e5e5e5;
  font-size: inherit;
  margin: 0;
  padding: 1em;
}
table tbody tr:nth-child(odd) {
  background: #fafafa;
}
table thead {
  border-bottom: 2px solid #f32836;
  text-align: left;
  vertical-align: bottom;
  font-weight: bold;
}
table.table--cols td,
table.table--cols th {
  border-width: 0 0 0 1px;
}
table.table--cols td > tr:last-child > td,
table.table--cols th > tr:last-child > td {
  border-bottom-width: 0;
}
table.table--rows td,
table.table--rows th {
  border-width: 0 0 1px 0;
}
table.table--rows td > tr:last-child > td,
table.table--rows th > tr:last-child > td {
  border-bottom-width: 0;
}
/*-----------------------------

    # T A B S

-----------------------------*/
ul.tabs.is--horizontal {
  padding: 0px;
  list-style: none;
  border-bottom: 1px solid #ccc;
}
ul.tabs.is--horizontal li {
  margin: 0px -2px;
  background: none;
  color: #888;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  -webkit-box-shadow: 0px 1px 0px 0px #ccc;
          box-shadow: 0px 1px 0px 0px #ccc;
  text-transform: uppercase;
  font-weight: 600;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
ul.tabs.is--horizontal li.current {
  -webkit-box-shadow: 0px 3px 0px 0px #f32836;
          box-shadow: 0px 3px 0px 0px #f32836;
  color: #f32836;
}
ul.tabs.is--horizontal li:hover {
  color: #333;
  -webkit-box-shadow: 0px 3px 0px 0px #f32836;
          box-shadow: 0px 3px 0px 0px #f32836;
}
ul.tabs.is--vertical .tab-link.current {
  color: #f32836;
}
.tabs-container.is--horizontal .tab {
  display: none;
  background: #fff;
  padding: 30px 0px;
}
.tabs-container.is--horizontal .tab.current {
  display: inherit;
}
.tabs-container.is--vertical .tab {
  display: none;
}
.tabs-container.is--vertical .tab.current {
  display: inherit;
}
/*-----------------------------

    # T E X T

-----------------------------*/
.text--giga {
  font-size: 6rem;
}
.text--mega {
  font-size: 4.5rem;
}
.text--kilo {
  font-size: 3rem;
}
.text--milli {
  font-size: 0.85rem;
}
.text--micro {
  font-size: 0.625rem;
}
.text--primary {
  color: #f32836 !important;
}
.text--secondary {
  color: #000 !important;
}
.text--info {
  color: #42AFE3 !important;
}
.text--success {
  color: #8BC34A !important;
}
.text--warning {
  color: #FFC107 !important;
}
.text--danger {
  color: #F44336 !important;
}
.text--muted {
  color: #999 !important;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}
.text--center {
  text-align: center;
}
.text--justify {
  text-align: justify;
}
/*-----------------------------

    # V I S I B I L I T Y

-----------------------------*/
/* SEPARATOR
-----------------------------*/
.separator {
  width: 100%;
  height: 1px;
  margin: 1.5rem 0;
  display: inline-block;
}
/* LINES
-----------------------------*/
.line {
  border-top: 1px solid #eee;
  clear: both;
  display: block;
  height: 1px;
  margin: 20px 0px;
  width: 100%;
}
.line.line--dashed {
  border-top: 1px dashed #eee;
}
.line.line--dotted {
  border-top: 1px dotted #eee;
}
.line.line--double {
  border-top: 1px double #eee;
}
/* SHADOWS
-----------------------------*/
.shadow--small {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.shadow--medium {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.shadow--large {
  -webkit-box-shadow: 0 14px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 25px rgba(0, 0, 0, 0.1);
}
/* BORDER RADIUS
-----------------------------*/
.border--rounded {
  border-radius: 6px;
}
.border--circle {
  border-radius: 99px;
}
/*-----------------------------

    # V I S I B I L I T Y

-----------------------------*/
/* HIDDEN
-----------------------------*/
@media screen and (min-width: 1281px) {
  .hidden--widescreen {
    display: none;
  }
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .hidden--desktop {
    display: none;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .hidden--tablet {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .hidden--mobile {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .hidden--tablet-down {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .hidden--desktop-down {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .hidden--tablet-up {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .hidden--desktop-up {
    display: none;
  }
}
/* SHOW
-----------------------------*/
.show--widescreen {
  display: none;
}
@media screen and (min-width: 1281px) {
  .show--widescreen {
    display: block;
  }
}
.show--desktop {
  display: none;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .show--desktop {
    display: block;
  }
}
.show--tablet {
  display: none;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .show--tablet {
    display: block;
  }
}
.show--mobile {
  display: none;
}
@media screen and (max-width: 640px) {
  .show--mobile {
    display: block;
  }
}
.show--tablet-down {
  display: none;
}
@media screen and (max-width: 960px) {
  .show--tablet-down {
    display: block;
  }
}
.show--desktop-down {
  display: none;
}
@media screen and (max-width: 1280px) {
  .show--desktop-down {
    display: block;
  }
}
.show--tablet-up {
  display: none;
}
@media screen and (min-width: 641px) {
  .show--tablet-up {
    display: block;
  }
}
.show--desktop-up {
  display: none;
}
@media screen and (min-width: 961px) {
  .show--desktop-up {
    display: block;
  }
}
/*-----------------------------

    # W I D T H

-----------------------------*/
.width {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.width.width--1-1 {
  width: 100%;
}
.width.width--1-2 {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .width.width--1-2 {
    width: 100%;
  }
}
.width.width--1-3 {
  width: calc(100% * 1 / 3.001);
}
.width.width--1-4 {
  width: 25%;
}
.width.width--1-5 {
  width: 20%;
}
.width.width--1-6 {
  width: calc(100% * 1 / 6.001);
}
.width.width--2-3 {
  width: calc(100% * 2 / 3.001);
}
@media screen and (max-width: 640px) {
  .width.width--2-3 {
    width: 100%;
  }
}
.width.width--3-4 {
  width: 75%;
}
.width.width--4-5 {
  width: 80%;
}
.width.width--5-6 {
  width: calc(100% * 5 / 6.001);
}
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lity-hide {
  display: none;
}
h1 {
  line-height: 1;
  margin-bottom: 30px;
  color: #000;
  font-weight: 700;
  margin: 30px 0;
  font-size: 5.2rem;
}
h2 {
  color: #000;
  font-size: 3.5rem;
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
h3 {
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.6rem;
}
h4 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
h4 a {
  color: #000;
}
h5 {
  color: #828282;
  font-weight: 300;
  font-size: 16px;
}
h6 {
  color: #f32836;
  font-size: 14px;
  font-weight: 500;
}
h6:after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 18px;
  background: #f32836;
  margin-left: 5px;
  vertical-align: middle;
}
.icon--primary {
  color: #f32836;
  font-size: 28px;
}
.subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subtitle:before {
  content: '';
  height: 1px;
  width: 8rem;
  background: #f32836;
  display: block;
  margin-right: 20px;
  margin-top: 18px;
}
.strong {
  position: relative;
  display: inline-block;
}
.strong span {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  color: #fff;
}
.strong div {
  content: '';
  width: 100%;
  height: 100%;
  background: #f32836;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.underline {
  position: relative;
  display: inline-block;
}
.underline span {
  position: relative;
  z-index: 1;
}
.underline div {
  content: '';
  width: 100%;
  height: 0.75rem;
  background: #f32836;
  position: absolute;
  left: 0;
  bottom: 6px;
  z-index: 0;
}
header {
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
header .header__container {
  width: 100%;
  max-width: 1200px;
  padding: 60px 30px 20px 30px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 640px) {
  header .header__container {
    padding: 30px 30px 20px 30px;
  }
}
header .header__container .header__logo {
  width: 200px;
}
header .header__container .header__menu {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-block;
  position: relative;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
header .header__container .header__menu:hover {
  color: #f32836;
}
header .header__container .header__menu:hover:after {
  background: #f32836;
  margin-left: 20px;
}
header .header__container .header__menu:after {
  content: '';
  height: 2px;
  width: auto;
  background: #000;
  display: block;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
header.is--fixed {
  background: #fff;
  -webkit-transform: translate(0, -80px);
  -ms-transform: translate(0, -80px);
  transform: translate(0, -80px);
}
header.is--fixed .header__container {
  padding: 30px 30px 20px 30px;
}
header.is--show {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
header.header--2024 .header__container {
  padding-top: 30px;
}
header.header--2024 .header__logo {
  width: 160px;
}
header.header--2024.is--fixed {
  -webkit-transform: translate(0, -117px);
  -ms-transform: translate(0, -117px);
  transform: translate(0, -117px);
}
body,
html {
  padding-top: 4rem;
}
@media screen and (max-width: 640px) {
  body,
  html {
    font-size: 9px;
  }
}
body section.section--dark,
html section.section--dark {
  background-position: fixed;
}
.contact-info {
  margin-bottom: 80px;
}
.contact-info h4 {
  margin: 5px 0px 20px 0px;
}
.contact-info a {
  color: #fff;
}
.contact-info .is--whatsapp {
  color: #0cc243;
  text-decoration: none;
}
.contact-form {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .contact-form {
    width: 100%;
  }
}
.project {
  background-image: linear-gradient(-179deg, transparent 15%, #F1F1F3 44%, #FAF9FA 100%);
}
.project .project__h3 {
  margin-bottom: 0px;
  font-weight: 200;
  width: 50%;
}
.project .project__h2 {
  margin-bottom: 4rem;
  width: 60%;
}
@media screen and (max-width: 640px) {
  .project .project__h2,
  .project .project__h3 {
    width: 100%;
  }
  .project .flex h3 {
    margin-bottom: 0px;
  }
}
.project .project__client h5 strong {
  color: #000;
}
.project .project__cover {
  -webkit-box-shadow: 0px 60px 40px -40px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 60px 40px -40px rgba(0, 0, 0, 0.15);
  margin-bottom: 6rem;
  overflow: hidden;
  height: auto;
  max-height: 600px;
  max-width: 1200px;
  margin-left: -2rem;
  margin-right: -2rem;
}
.project .project__info {
  margin-bottom: 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 6rem;
}
@media screen and (max-width: 640px) {
  .project .project__info {
    display: block;
  }
  .project .project__info .project__client {
    margin-bottom: 4rem;
  }
}
.project .project__info .project__challenge h5 {
  color: #000;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .project .project__info .project__challenge {
    margin-bottom: 4rem;
  }
}
.project .project__info .project__services {
  font-size: 16px;
  font-weight: 500;
}
.project .project__overview {
  background: #fff;
  padding-top: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.project .project__overview h5 {
  margin: auto;
  max-width: 540px;
  color: #000;
  font-size: 18px;
  padding: 0 20px;
  margin-bottom: 1rem;
}
.project .project__overview.is--black {
  background: #000;
}
.project .project__overview.is--black h5 {
  color: #fff;
}
.project .project__overview .project__logo {
  margin: 3rem auto;
  max-width: 18rem;
}
.project .project__footer {
  margin-top: 60px;
  text-align: center;
}
.services .service {
  margin-bottom: 10rem;
}
.services .service h2,
.services .service h5,
.services .service h4 {
  color: #fff;
}
.services .service .service__header {
  margin-bottom: 50px;
}
.services .service:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 640px) {
  .services .service .service__content {
    width: auto;
    overflow-x: auto;
    margin-right: -2rem;
  }
  .services .service .service__content .service__thumb {
    width: 260px;
  }
}
.services .service.service--light h2 {
  color: #000;
}
.services .service.service--light h5 {
  color: inherit;
}
.sub-services {
  padding-left: 0px;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 0px;
  list-style-type: none;
  margin-left: 0;
}
.sub-services li {
  line-height: 1.5;
  text-indent: -35px;
  margin: 0.5rem 0 0.5rem 25px;
}
.sub-services li:before {
  content: "—";
  margin-left: 10px;
  margin-right: 10px;
}
.service-card {
  -webkit-box-shadow: 0px 20px 60px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 60px -5px rgba(0, 0, 0, 0.1);
  padding: 2.2rem;
  border-radius: 8px;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .service-card {
    -webkit-box-shadow: 0px 10px 30px -1px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 30px -1px rgba(0, 0, 0, 0.1);
  }
}
figure {
  position: relative;
  overflow: hidden;
}
figure icon {
  pointer-events: none;
  background: red;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 19px;
  margin-bottom: 1rem;
  padding: text;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
  border-radius: 99px;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
figure figcaption {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  color: #fff;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: rgba(0, 0, 0, 0);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
figure figcaption:after {
  content: '';
  background-color: #f32836;
  display: block;
  width: 0%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
figure figcaption h4,
figure figcaption h5 {
  color: #000;
}
figure img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
figure:hover figcaption {
  padding-bottom: 2.5rem;
}
figure:hover figcaption:after {
  width: 100%;
}
figure:hover img {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.member figcaption {
  padding-bottom: 0px;
}
.member figcaption h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #000;
}
.member .member__charge {
  color: #FFF;
  background: #f32836;
  opacity: 0;
  -webkit-transform: translate(0, 40px);
  -ms-transform: translate(0, 40px);
  transform: translate(0, 40px);
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  padding: 0 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.member:hover .member__charge {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  transform: translate(0, 0px);
}
footer h2 {
  width: 60%;
  margin-bottom: 100px;
  color: #fff;
}
footer .line {
  border-color: #333;
}
footer .social-icons {
  margin: 0px;
}
footer .social-icons a {
  font-size: 21px;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
footer .social-icons a:hover {
  color: #f32836;
}
@media screen and (max-width: 640px) {
  footer {
    font-size: 14px;
  }
  footer h2 {
    margin-bottom: 40px;
    width: 100%;
  }
  footer .contact-info {
    margin-bottom: 0px;
  }
  footer .contact-info div {
    margin-bottom: 50px;
  }
  footer .contact-info div h4 {
    margin-bottom: 0px;
  }
  footer .footer-menu {
    margin-top: 20px;
    text-align: left;
  }
  footer .footer-menu span {
    padding: 0 20px 0 0;
  }
}
.menu-toggle {
  width: 28px;
  height: 24px;
  display: none;
  cursor: pointer;
  z-index: 99;
  color: black;
  border-radius: 99px;
  position: fixed;
  z-index: 999;
  top: 30px;
  right: 30px;
}
.menu-toggle .one,
.menu-toggle .two,
.menu-toggle .three {
  border-radius: 8px;
  width: 100%;
  height: 2px;
  background: #f32836;
  margin: 6px auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -ms-transform: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.menu-toggle.is--active .one {
  -webkit-transform: translate(0px, 8px) rotate(45deg);
      -ms-transform: translate(0px, 8px) rotate(45deg);
          transform: translate(0px, 8px) rotate(45deg);
}
.menu-toggle.is--active .two {
  opacity: 0;
}
.menu-toggle.is--active .three {
  -webkit-transform: translate(0px, -8px) rotate(-45deg);
      -ms-transform: translate(0px, -8px) rotate(-45deg);
          transform: translate(0px, -8px) rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .menu-toggle {
    display: block;
  }
  .main-menu {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 998;
    padding: 80px 30px 0px 30px;
    webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -ms-transform: 0.2s ease-out;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  .main-menu a {
    text-align: right;
    display: block;
    line-height: 3;
    font-size: 28px !important;
    font-weight: 700 !important;
    position: relative;
    padding: 0 !important;
  }
  .main-menu a:after {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .main-menu a.is--current:after {
    width: 40px;
  }
  .main-menu a:hover:after {
    display: none;
  }
  .main-menu.is--active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
