@charset "UTF-8";
/*
0   -   600px   Phone
600 -   900px   Tablet portrati
900 -   1200px  Tablet landscape
1200    1800px  Is where our normal styles apply
1800px over     Big desktop
$breakpoint argument choices
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typhografy > general layout + grid > page layout > components
@media only screen and (max-width: 37.5em){ @content}; //600px
*/
/*
$color-primary:#7ed56f;
$color-primary-light: #55c57a;
$color-primary-dark: #28b485;

$color-secondary-light: #ffb900;
$color-secondary-dark: #ff7730;

$color-tertiary-light: #2998ff;
$color-tertiary-dark: #5643fa;


$color-gray-light-1: #f7f7f7;
$color-gray-light-2: #eee;

$color-gray-dark: #777;
$color-gray-dark-2: #999;
$color-gray-dark-3: #333;
$color-white: #fff;
$color-black: #000;
*/
@keyframes moveInLeft {
  0% {
    opacity: 0.5;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0.5;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0.5;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  /*é o mesmo que 10px, ou seja 10px/16px = 62.5%*/
}
@media only screen and (max-width: 64em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 48em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.6em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  padding: 3rem;
}
@media only screen and (max-width: 48em) {
  body {
    padding: 0;
  }
}

::selection {
  background-color: #048abf;
  color: #fff;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.7;
  color: #777;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*;
		animation-delay:1s;	
		animation-iteration-count:3;*/
}
@media only screen and (max-width: 20em) {
  .heading-primary--main {
    letter-spacing: 1rem;
    font-family: 5rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.7rem;
  animation: moveInRight 1s ease-out 1s;
}
@media only screen and (max-width: 20em) {
  .heading-primary--sub {
    letter-spacing: 0.5rem;
  }
}
.heading-primary--title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.heading-primary--time {
  display: block;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background: rgba(0, 0, 0, 0.01);
  color: #02344e;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .heading-secondary {
    font-size: 2.5rem;
    margin-top: 4rem;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.3rem;
    margin-top: 6rem;
    margin-left: 20rem;
    text-align: center;
  }
}
@media only screen and (max-width: 30em) {
  .heading-secondary {
    font-size: 2rem;
    margin-top: 6rem;
    margin-left: 26.5rem;
    text-align: center;
  }
}
.heading-secondary:hover {
  transform: skewY(0deg) skewX(1deg) scale(1.05);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 75em) {
  .mg-top {
    margin-top: 12rem;
  }
}

@media only screen and (max-width: 64em) {
  .mg-top {
    margin-top: 10rem;
  }
}

@media only screen and (max-width: 48em) {
  .mg-top {
    margin-top: 14rem;
  }
}

@media only screen and (max-width: 20em) {
  .mg-top {
    margin-top: 26rem;
  }
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
}
.heading-tertiary--top {
  margin-top: -5rem;
}
.heading-tertiary,
.heading-tertiary:link,
.heading-tertiary:visited {
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
}
.heading-tertiary:hover {
  transform: translateY(-0.2rem);
}
.heading-tertiary:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.heading-tertiary:active,
.heading-tertiary:focus {
  outline: none;
  transform: translateY(-0.1rem);
}

.paragraph {
  font-size: 1.6rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 20em) {
  .paragraph:not(:last-child) {
    margin-bottom: 5rem;
  }
}

#mg-medium {
  margin-bottom: 1rem;
}

.paragraph-2 {
  font-size: 1.6rem;
}

.paragraph-3 {
  font-size: 1.4rem;
  color: #012840;
  background: #f7f7f7;
  opacity: 0.8;
  z-index: 1000;
  position: absolute;
  top: 36.6rem;
  padding: 0.9rem;
}
@media only screen and (max-width: 75em) {
  .paragraph-3 {
    display: none;
  }
}
@media only screen and (max-width: 64em) {
  .paragraph-3 {
    display: none;
  }
}
@media only screen and (max-width: 48em) {
  .paragraph-3 {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .paragraph-3 {
    display: none;
  }
}
@media only screen and (max-width: 30em) {
  .paragraph-3 {
    display: none;
  }
}
@media only screen and (max-width: 20em) {
  .paragraph-3 {
    display: none;
  }
}

.parag-imprensa {
  text-indent: 5rem;
  text-align: justify;
}

.heading-quaternary {
  font-size: 2.9rem;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  background: rgba(0, 0, 0, 0.01);
  color: #f7f7f7;
  letter-spacing: 0.1rem;
  transition: all 0.2s;
}
@media only screen and (max-width: 48em) {
  .heading-quaternary {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 30em) {
  .heading-quaternary {
    font-size: 2.5rem;
    margin-left: 26.5rem;
  }
}
.heading-quaternary:hover {
  transform: skewY(0deg) skewX(1deg) scale(1.05);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-quinario {
  font-size: 2.1rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background: #999;
  color: #02344e;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  margin: 0 auto 1em;
  padding: 0.5em;
  transform: skewY(0deg) skewX(1deg) scale(1);
}
@media only screen and (max-width: 48em) {
  .heading-quinario {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 20em) {
  .heading-quinario {
    font-size: 2.5rem;
  }
}
.heading-quinario:hover {
  transform: skewY(0deg) skewX(1deg) scale(1.15);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.text-pos {
  transform: translate(50%);
}
@media only screen and (max-width: 48em) {
  .text-pos {
    transform: translate(0%);
    margin-left: 0.5rem;
  }
}
.text-pos:hover {
  transform: translate(49%);
}
@media only screen and (max-width: 48em) {
  .text-pos:hover {
    transform: translate(0%);
    margin-left: 0.5rem;
  }
}

.text-grid {
  display: grid;
  align-items: center;
  align-content: center;
}

.u-center-text {
  text-align: center !important;
  /*margin-left: 3rem; 
  margin-right: 3rem;*/
}
@media only screen and (max-width: 37.5em) {
  .u-center-text {
    margin-left: -27rem;
  }
}

.u-margin-bottom-teeny {
  margin-bottom: 0.5rem !important;
}

.u-margin-bottom-teeny-2 {
  margin-bottom: -7.5rem !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 48em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 48em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem;
  }
}

.u-padding-bottom-small {
  padding-bottom: 2rem !important;
}

.u-margin-top-teeny {
  margin-top: 0.5rem !important;
}

.u-margin-top-small {
  margin-top: 3rem !important;
}

.u-margin-top-medium {
  margin-top: 7rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-margin-top-immense {
  margin-top: 12rem !important;
}
.u-margin-top-immense--1 {
  margin-top: 37rem !important;
}
@media only screen and (max-width: 37.5em) {
  .u-margin-top-immense--1 {
    margin-top: 5rem !important;
  }
}
.u-margin-top-immense--2 {
  margin-top: 43rem !important;
}
@media only screen and (max-width: 37.5em) {
  .u-margin-top-immense--2 {
    margin-top: 5rem !important;
  }
}

.u-margin-top-negative {
  margin-top: -13rem !important;
}
@media only screen and (max-width: 20em) {
  .u-margin-top-negative {
    margin-top: -25rem !important;
  }
}

.u-margin-top-negative2 {
  margin-top: -3rem !important;
}
@media only screen and (max-width: 20em) {
  .u-margin-top-negative2 {
    margin-top: -6rem !important;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: 23.9rem;
  margin-left: 15rem;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 23.6rem;
  margin-left: 35.6rem;
}

.tooltip.left {
  padding: 0 5px;
  margin-top: 33.7rem;
  margin-left: 35rem;
}

/* .tooltip.top .tooltip-arrow{
    bottom:0;
    left:50%;
    margin-left:-5px;
    border-width:5px 5px 0;
    border-top-color:#000
}
.tooltip.top-left .tooltip-arrow{
    right:5px;
    bottom:0;
    margin-bottom:-5px;
    border-width:5px 5px 0;
    border-top-color:#000
}
.tooltip.top-right .tooltip-arrow{
    bottom:0;
    left:5px;
    margin-bottom:-5px;
    border-width:5px 5px 0;
    border-top-color:#000
}
.tooltip.right .tooltip-arrow{
    top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000
}
.tooltip.left .tooltip-arrow{
    top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000
}
.tooltip.bottom .tooltip-arrow{
    top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000
}
.tooltip.bottom-left .tooltip-arrow{
    top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000
}
.tooltip.bottom-right .tooltip-arrow{
    top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000
} */
.tooltip-inner {
  max-width: 290px;
  padding: 5px 8px;
  padding-bottom: 7px;
  color: #fff;
  text-align: center;
  background-color: #048abf;
  border-radius: 4px;
}

/* .tooltip-arrow{
    position:absolute;width:0;height:0;border-color:transparent;border-style:solid
} */
.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active,
.btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 5px 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}

.btn--blue {
  background-color: #44739c;
  color: #f7f7f7;
  font-size: 1rem;
  font-weight: 900;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
}
.btn--blue:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}
.btn--blue:hover::after {
  background-color: #44739c;
  border-radius: 0.5rem;
  transition: all 0.4s;
}

.btn--green {
  background-color: #048abf;
  color: #fff;
}
.btn--green::after {
  background-color: #048abf;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn--animated {
  animation: moveInBottom 0.5s ease-in-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link,
.btn-text:visited {
  font-size: 1.5rem;
  color: #048abf;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #048abf;
  padding: 2px;
  transition: all 0.2s;
}

.btn-text:hover {
  display: inline-block;
  background-color: #048abf;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-text:active {
  display: inline-block;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0px);
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}
@media only screen and (max-width: 48em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.3333333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
@media only screen and (max-width: 48em) {
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
@media only screen and (max-width: 48em) {
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
@media only screen and (max-width: 48em) {
  .composition__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  outline: 1.2rem solid #048abf;
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.composition:hover .tooltiptext {
  visibility: visible;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
@media only screen and (max-width: 48em) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box__text {
  text-align: left;
}
.feature-box__icon {
  font-size: 3rem;
  margin-bottom: 5rem;
  display: inline-block;
}
@media only screen and (max-width: 48em) {
  .feature-box__icon {
    margin-bottom: 30;
  }
}
.feature-box:hover {
  transform: translateY(0.1rem) scale(1.01);
}
.feature-box__link {
  font-size: 1.5rem;
  color: #012840 !important;
  margin-right: -6rem;
  margin-bottom: -6rem;
  display: inline-block;
  text-decoration: none;
  padding: 1px;
  cursor: pointer;
}
.feature-box__link:hover {
  display: inline-block;
  background-color: #048abf;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 50rem;
  /*    
    &:hover &__side--front {
        transform: rotateY(-180deg);
    }
    &:hover &__side--back {
        transform: rotateY(0);
    }*/
}
.card__side {
  height: 50rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  background-color: green;
  transform: rotateY(180deg);
}
.card__side--back--1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__side--back--2 {
  background-image: linear-gradient(to right bottom, #04b2d9, #012840);
}
.card__side--back--3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card__picture {
  background-size: cover;
  height: 23rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #44739c, #0a2740),
    url(../img/ary_rongel.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #04b2d9, #012840),
    url(../img/eacf-3.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa),
    url(../img/estacao.jpg);
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 75%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(
    to right bottom,
    rgba(10, 39, 64, 0.15),
    rgba(68, 115, 156, 0.75)
  );
}
.card__heading-span--2 {
  background-image: linear-gradient(
    to right bottom,
    rgba(4, 178, 217, 0.85),
    rgba(1, 40, 64, 0.85)
  );
}
.card__heading-span--3 {
  background-image: linear-gradient(
    to right bottom,
    rgba(41, 152, 255, 0.85),
    rgba(86, 67, 250, 0.85)
  );
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li a:link,
.card__details ul li a:visited {
  text-align: center;
  font-size: 1.5rem;
  color: #777;
  padding: 0.5rem;
  text-decoration: none;
  display: block;
}
.card__details ul li a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__details ul li a:hover {
  color: #0a2740;
  font-weight: bolder;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 8rem;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 100;
}
@media only screen and (max-width: 48em) {
  .card {
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    /*   
        &:hover &__side--front {
            transform: rotateY(0);
        }
        &__details {
            padding: 1rem 3rem;
        } */
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  .card__cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 4rem;
    font-weight: 100;
  }
}

.timeline-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-rows:
    minmax(6rem, min-content) minmax(6rem, min-content) minmax(
      6rem,
      min-content
    )
    minmax(6rem, min-content) minmax(6rem, min-content) minmax(6rem, min-content);
  grid-template-columns: minmax(10rem, max-content) 6rem minmax(
      10rem,
      max-content
    );
  grid-gap: 1rem;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .timeline-grid {
    margin-top: 1rem;
    margin-left: 1rem;
    grid-template-rows: repeat(11, minmax(6rem, min-content));
    grid-template-columns: 8rem minmax(10rem, max-content);
    grid-column-gap: 0.1rem;
  }
}

.ano {
  grid-column: 2 / 3;
  align-self: center;
  justify-self: center;
}
@media only screen and (max-width: 37.5em) {
  .ano {
    grid-column: 1 / 2;
  }
}
.ano--2015 {
  grid-row: 1 / 2;
}
.ano--2016 {
  grid-row: 2 / 3;
}
@media only screen and (max-width: 37.5em) {
  .ano--2016 {
    grid-row: 2 / 4;
  }
}
.ano--2017 {
  grid-row: 3 / 4;
}
@media only screen and (max-width: 37.5em) {
  .ano--2017 {
    grid-row: 4 / 6;
  }
}
.ano--2018 {
  grid-row: 4 / 5;
}
@media only screen and (max-width: 37.5em) {
  .ano--2018 {
    grid-row: 6 / 8;
  }
}
.ano--2019 {
  grid-row: 5 / 6;
}
@media only screen and (max-width: 37.5em) {
  .ano--2019 {
    grid-row: 8 / 9;
  }
}
.ano--2020 {
  grid-row: 6 / 7;
}
@media only screen and (max-width: 37.5em) {
  .ano--2020 {
    grid-row: 9 / 11;
  }
}

.mes {
  padding: 2rem;
  padding-top: 0;
  width: 80%;
  align-self: start;
}
.mes--1 {
  grid-row: 1 / 2;
  justify-self: end;
}
@media only screen and (max-width: 37.5em) {
  .mes--1 {
    grid-column: 2 / 3;
    justify-self: start;
  }
}
.mes--2 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  justify-self: end;
}
@media only screen and (max-width: 37.5em) {
  .mes--2 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    justify-self: start;
    margin-top: 3rem;
  }
}
.mes--3 {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
  justify-self: start;
}
@media only screen and (max-width: 37.5em) {
  .mes--3 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    justify-self: start;
    margin-bottom: 3rem;
  }
}
.mes--4 {
  grid-row: 3 / 4;
  grid-column: 1 / 2;
  justify-self: end;
}
@media only screen and (max-width: 37.5em) {
  .mes--4 {
    grid-row: 4 / 5;
    grid-column: 2 / 3;
    justify-self: start;
  }
}
.mes--5 {
  grid-row: 3 / 4;
  grid-column: 3 / 4;
  justify-self: start;
}
@media only screen and (max-width: 37.5em) {
  .mes--5 {
    grid-row: 5 / 6;
    grid-column: 2 / 3;
    margin-bottom: 3rem;
  }
}
.mes--6 {
  grid-row: 4 / 5;
  grid-column: 1 / 2;
  justify-self: end;
}
@media only screen and (max-width: 37.5em) {
  .mes--6 {
    grid-row: 6 / 7;
    grid-column: 2 / 3;
    justify-self: start;
  }
}
.mes--7 {
  grid-row: 4 / 5;
  grid-column: 3 / 4;
  justify-self: start;
}
@media only screen and (max-width: 37.5em) {
  .mes--7 {
    grid-row: 7 / 8;
    grid-column: 2 / 3;
    justify-self: start;
    margin-bottom: 3rem;
  }
}
.mes--8 {
  grid-row: 5 / 6;
  grid-column: 1 / 2;
  justify-self: end;
}
@media only screen and (max-width: 37.5em) {
  .mes--8 {
    grid-row: 8 / 9;
    grid-column: 2 / 3;
    justify-self: start;
    margin-bottom: 3rem;
  }
}
.mes--9 {
  grid-row: 6 / 7;
  grid-column: 1 / 2;
  justify-self: end;
}
@media only screen and (max-width: 37.5em) {
  .mes--9 {
    grid-row: 10 / 11;
    grid-column: 2 / 3;
    justify-self: start;
    margin-bottom: -7rem;
  }
}
.mes--10 {
  grid-row: 6 / 7;
  grid-column: 3 / 4;
  justify-self: start;
}
@media only screen and (max-width: 37.5em) {
  .mes--10 {
    grid-row: 9 / 10;
    grid-column: 2 / 3;
    justify-self: start;
  }
}

.barra {
  grid-column: 2 / 3;
  grid-row: 1 / -1;
  height: 100%;
  justify-self: center;
  align-self: start;
}
@media only screen and (max-width: 37.5em) {
  .barra {
    grid-column: 1 / 2;
  }
}

.hr {
  height: 100%;
  width: 1rem;
  background-color: black;
  color: #000;
}

.balao2 {
  background: #f7f7f7;
  border-radius: 5px;
  padding: 3rem;
  padding-top: 1rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-2deg);
}
@media only screen and (max-width: 48em) {
  .story {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}
.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  /*transform: translateX(-3rem) skewX(12deg);*/
  position: relative;
  overflow: hidden;
}
@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  .story__shape {
    -webkit-clip-path: circle(50% at 50% 50%);
    /*clip-path: circle(50% at 50% 50%);*/
    -webkit-shape-outside: circle(50% at 50% 50%);
    /*shape-outside: circle(50% at 50% 50%);*/
    border-radius: none;
  }
}
.story__img {
  height: 100%;
}
.story__text {
  /*transform: skewX(12deg); */
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story:hover .story__caption {
  opacity: 1;
}
.story__link {
  font-size: 1.5rem;
  color: #012840 !important;
  margin-left: 52rem;
  margin-bottom: -1rem;
  display: inline-block;
  text-decoration: none;
  padding-top: 1rem;
  cursor: pointer;
}
@media only screen and (max-width: 48em) {
  .story__link {
    margin-left: 5rem;
  }
}
.story__link:hover {
  display: inline-block;
  background-color: #048abf;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.5;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bg-videoeacf {
  position: absolute;
  top: 2rem;
  left: 1rem;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 1;
  overflow: hidden;
  text-align: center;
}
.bg-videoeacf__content {
  height: 90%;
  width: 90%;
}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
}
@media only screen and (max-width: 48em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #048abf;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__radio-group {
  width: 49%;
  display: inline-block;
}
@media only screen and (max-width: 48em) {
  .form__radio-group {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.form__radio-input {
  display: none;
}

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem;
}

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #048abf;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
.form__radio-button::after {
  content: "";
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #048abf;
  opacity: 0;
  transition: opacity 0.2s;
}

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.4s 0.2s;
}
.popup__content-videoantartica {
  /*@include absCenter;
        width: 75%;
        background-color: $color-white;
        box-shadow: 0 2rem 4rem rgba($color-black, .2);
        border-radius: 3px;
        display: table;
        overflow: hidden;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);*/
  transition: all 0.4s 0.2s;
}
.popup__left {
  width: 33.333333%;
  display: table-cell;
}
.popup__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
.popup__img {
  display: block;
  width: 100%;
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #eee;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: table-cell;
  height: 10%;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.popup__close:link,
.popup__close:visited {
  color: #777;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover {
  color: #048abf;
}

.popuptour {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .popuptour {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.popuptour__content-video {
  transition: all 0.4s 0.2s;
}
.popuptour__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #eee;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: table-cell;
  height: 10%;
}
.popuptour:target {
  opacity: 1;
  visibility: visible;
}
.popuptour:target .popuptour__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.popuptour__close:link,
.popuptour__close:visited {
  /*
            color: $color-gray-dark;
            position: absolute;
            top: 2.5rem;
            right: 7.5rem;
            font-size: 5rem;
            @include respond(phone-port) {
                font-size: 6rem;                
            }
            text-decoration: none;
            display: inline-block;
            transition: all .2s;
            line-height: 1;*/
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #606061;
  font-size: 2rem;
  color: #ffffff;
  line-height: 25px;
  position: absolute;
  right: 97px;
  text-align: center;
  top: 39px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}
@media only screen and (max-width: 48em) {
  .popuptour__close:link,
  .popuptour__close:visited {
    font-size: 4rem;
    right: 7rem;
    top: 0.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .popuptour__close:link,
  .popuptour__close:visited {
    font-size: 3rem;
    right: 4rem;
    top: 0.5rem;
  }
}
@media only screen and (max-width: 30em) {
  .popuptour__close:link,
  .popuptour__close:visited {
    font-size: 3rem;
    right: 2rem;
    top: 0.5rem;
  }
}
@media only screen and (max-width: 20em) {
  .popuptour__close:link,
  .popuptour__close:visited {
    font-size: 3rem;
    right: 2rem;
    top: 0.5rem;
  }
}
.popuptour__close:hover {
  background: #6a7ea6;
}

.blank {
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  opacity: 1;
  transition: all 0.8s;
}
@supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
  .blank {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.blank__content {
  position: absolute;
  left: 11px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  border-radius: 3px;
  display: table;
  overflow: hidden;
  opacity: 1;
  transform: translate(0%, 0%) scale(0.9);
  text-align: center;
}
@media only screen and (max-width: 75em) {
  .blank__content {
    box-shadow: 0 0rem 0rem rgba(0, 0, 0, 0.2);
    transform: translate(0%, 0%);
  }
}
.blank__content--t1 {
  top: 0;
}
@media only screen and (max-width: 48em) {
  .blank__content--t1 {
    position: relative;
    margin-top: 2rem;
  }
}
.blank__content--t2 {
  margin-top: 50rem;
}
@media only screen and (max-width: 48em) {
  .blank__content--t2 {
    position: relative;
    margin-top: 2rem;
  }
}
.blank__content--t3 {
  margin-top: 105rem;
}
@media only screen and (max-width: 48em) {
  .blank__content--t3 {
    position: relative;
    margin-top: 1rem;
  }
}
.blank__left {
  width: 33.333333%;
  display: table-cell;
}
@media only screen and (max-width: 48em) {
  .blank__left {
    width: 100%;
    display: inline-block;
  }
}
.blank__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: top;
  padding: 3rem 3rem;
}
@media only screen and (max-width: 20em) {
  .blank__right {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .blank__right {
    width: 100%;
    display: inline-block;
    padding: 0;
  }
}
.blank__img {
  display: block;
  transform: translateX(0) scale(0.9);
  width: 100%;
}
.blank__img--width {
  width: 85%;
  transform: translate(12%, -7%) scale(0.8);
}
.blank__text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  -moz-column-count: 2;
  -moz-column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
  column-count: 2;
  column-gap: 3rem;
  column-rule: 1px solid #eee;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  display: table-cell;
  height: 10%;
}
@media only screen and (max-width: 37.5em) {
  .blank__text {
    font-size: 1.8rem;
    -moz-column-count: auto;
    column-count: auto;
    column-gap: 0.5rem;
  }
}
.blank__text-curiosities {
  font-size: 1.6rem;
  list-style-type: none;
}
.blank__shapeleft {
  width: 25rem;
  height: 25rem;
  float: left;
  transform: translateX(0) skewX(0);
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}
@media only screen and (max-width: 20em) {
  .blank__shapeleft {
    transform: translateX(0) skewX(0);
  }
}
.blank__shaperight {
  width: 25rem;
  height: 25rem;
  float: right;
  transform: translateX(0) skewX(0);
  position: relative;
  margin-left: 5px;
}
@media only screen and (max-width: 20em) {
  .blank__shaperight {
    transform: translateX(0) skewX(0);
  }
}

.container {
  position: absolute;
  padding: 1rem;
  display: flex;
  margin-left: 10rem;
}
@media only screen and (max-width: 20em) {
  .container {
    padding-top: 3rem;
    margin-left: 12rem;
  }
}
.container__item a {
  padding: 1rem;
  margin: 1rem;
  color: #2998ff;
  font-size: 0.5rem;
  display: inline-block;
  text-decoration: none;
  padding: 1px;
  cursor: pointer;
}

.whidthcol {
  width: 100%;
  top: -14rem;
}
@media only screen and (max-width: 48em) {
  .whidthcol--1 {
    top: -8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .whidthcol--1 {
    top: -8rem;
  }
}
@media only screen and (max-width: 30em) {
  .whidthcol--1 {
    top: -32rem;
  }
}
@media only screen and (max-width: 20em) {
  .whidthcol--1 {
    top: -67rem;
  }
}
@media only screen and (max-width: 112.5em) {
  .whidthcol--2 {
    top: 6rem;
  }
}
@media only screen and (max-width: 48em) {
  .whidthcol--2 {
    top: 1rem;
  }
}

.container-hist {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 75em) {
  .container-hist {
    flex-direction: column;
  }
}
@media only screen and (max-width: 64em) {
  .container-hist {
    flex-direction: column;
  }
}
@media only screen and (max-width: 48em) {
  .container-hist {
    flex-direction: column;
  }
}
@media only screen and (max-width: 37.5em) {
  .container-hist {
    flex-direction: column;
  }
}
@media only screen and (max-width: 30em) {
  .container-hist {
    flex-direction: column;
  }
}
@media only screen and (max-width: 20em) {
  .container-hist {
    flex-direction: column;
  }
}

.item-hist {
  padding: 0.1rem;
  margin: 0.9rem 0.9rem 1rem;
  align-items: center;
}
@media only screen and (max-width: 20em) {
  .item-hist {
    flex-grow: 1;
  }
}

.p1 {
  flex-basis: 97%;
  align-items: center;
  justify-content: space-around;
}

.nocol {
  column-count: 1 !important;
}

.width-img {
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  width: 100%;
  /* @include respond(tab-port) {
      width: 100%;      
    }
    @include respond(tab-small) {
      width: 100%;      
    }
    @include respond(phone-land) {
      width: 100%;      
    }
    @include respond(phone-port) {
       width: 100%;      
    } */
}

.center-img {
  max-width: 100%;
  width: 40%;
  border-radius: 5px;
  transform: translate(70%, 0%);
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.15);
}
.center-img--i {
  box-shadow: 0 0rem 0rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 20em) {
  .center-img {
    max-width: 60%;
    width: 60%;
    transform: translate(30%, 0%);
  }
}

.medium-img {
  width: 50%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media only screen and (max-width: 48em) {
  .medium-img {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .medium-img {
    width: 100%;
  }
}
@media only screen and (max-width: 30em) {
  .medium-img {
    width: 100%;
  }
}
@media only screen and (max-width: 20em) {
  .medium-img {
    width: 100%;
  }
}

.shadow-img {
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media only screen and (max-width: 48em) {
  .shadow-img {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .shadow-img {
    width: 100%;
  }
}
@media only screen and (max-width: 30em) {
  .shadow-img {
    width: 100%;
  }
}
@media only screen and (max-width: 20em) {
  .shadow-img {
    width: 100%;
  }
}

.ifull {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: space-around;
}

.ship-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 1.5rem 1rem;
}

.i1 {
  flex-basis: 40%;
}
@media only screen and (max-width: 20em) {
  .i1 {
    padding: 1.5rem 1rem;
    flex-basis: 100%;
  }
}

.i2 {
  flex-basis: 55%;
}
@media only screen and (max-width: 20em) {
  .i2 {
    flex-basis: 100%;
  }
}

.i3 {
  flex-basis: 78%;
}
@media only screen and (max-width: 20em) {
  .i3 {
    flex-basis: 100%;
  }
}

.i4 {
  flex-basis: 18%;
}

.i5 {
  flex-basis: 32%;
}

.i6 {
  flex-basis: 64%;
}

.i7 {
  flex-basis: 55%;
}
@media only screen and (max-width: 20em) {
  .i7 {
    flex-basis: 100%;
  }
}

.i8 {
  flex-basis: 41%;
}

.i9 {
  flex-basis: 74%;
}

.maximiano {
  height: 29rem;
}

.rongel {
  height: 27rem;
}

.i10 {
  flex-basis: 65%;
  transform: translate(25%, 1%);
}
@media only screen and (max-width: 75em) {
  .i10 {
    flex-basis: 100%;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 64em) {
  .i10 {
    flex-basis: 100%;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 48em) {
  .i10 {
    flex-basis: 100%;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 37.5em) {
  .i10 {
    flex-basis: 100%;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 30em) {
  .i10 {
    flex-basis: 100%;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 20em) {
  .i10 {
    flex-basis: 100%;
    transform: translate(0%, 1%);
  }
}

.i11 {
  flex-basis: 10%;
}

.i12 {
  flex-basis: 48%;
}

.i12 {
  flex-basis: 78%;
}
.i12--i {
  transform: translate(36%, 1%);
}
@media only screen and (max-width: 75em) {
  .i12--i {
    padding: 2rem;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 64em) {
  .i12--i {
    padding: 2rem;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 48em) {
  .i12--i {
    padding: 2rem;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 37.5em) {
  .i12--i {
    padding: 2rem;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 30em) {
  .i12--i {
    padding: 2rem;
    transform: translate(0%, 1%);
  }
}
@media only screen and (max-width: 20em) {
  .i12--i {
    padding: 2rem;
    transform: translate(0%, 1%);
  }
}

.short-img {
  transform: translate(50%, 1%);
}
@media only screen and (min-width: 112.6em) {
  .short-img {
    width: 100%;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 75em) {
  .short-img {
    width: 150rem;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 64em) {
  .short-img {
    width: 100rem;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 48em) {
  .short-img {
    width: 90rem;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 37.5em) {
  .short-img {
    width: 70rem;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 30em) {
  .short-img {
    width: 55rem;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 20em) {
  .short-img {
    width: 35rem;
    max-width: 100%;
    transform: translate(0%, 1%);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}

h1,
h2,
h3 {
  font-weight: 700;
}

.container {
  padding: 1em;
}

.timeline {
  position: relative;
  overflow: auto;
  /* h2 {
    background: $color-gray-light-2;
    font-size: 2.5rem;
    color:$color-quaternary-dark;
    max-width: 6em;
    margin: 0 auto 1em;
    padding: 0.5em;
    text-align: center;
    position: relative;
    clear: both;
  } */
}
.timeline:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 3.5rem;
  background: #eee;
  left: 0;
}
.timeline ul {
  list-style: none;
  padding: 0 0 0 1em;
  z-index: 1;
}
.timeline li {
  background: #eee;
  padding: 1em;
  margin-bottom: 1em;
  position: relative;
}
.timeline li:before {
  content: "";
  width: 1rem;
  height: 0;
  border-top: 1em solid #eee;
  border-left: 1em solid transparent;
  position: absolute;
  left: -1em;
  top: 0;
}
.timeline h3 {
  margin-top: 0;
}

@media screen and (min-width: 40em) {
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .timeline:before {
    left: 65.7rem;
  }
  .timeline ul {
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
  }
  .timeline li {
    width: 42%;
  }
  .timeline li:nth-child(even) {
    float: right;
    margin-top: 2em;
  }
  .timeline li:nth-child(odd) {
    float: left;
  }
  .timeline li:nth-child(odd):before {
    border-top: 1em solid #eee;
    border-right: 1em solid transparent;
    right: -1em;
    left: auto;
  }
  .timeline li:nth-of-type(2n + 1) {
    clear: both;
  }
}

.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  overflow: scroll;
  /* activa scroll da página se a modal for muito comprida */
}
.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}
.modalDialog__content {
  width: 50rem;
  position: relative;
  margin: 5% auto auto;
  padding: 0px 0px 0px 0px;
  border-radius: 5px;
  background: -moz-linear-gradient(#fff, #999);
  background-image: linear-gradient(to right top, #012840, #012840);
  background: -o-linear-gradient(#fff, #999);
  -moz-box-shadow: 1px 1px 30px #000;
  -webkit-box-shadow: 1px 1px 30px #000;
  background-color: #121316;
}
@media only screen and (min-width: 112.6em) {
  .modalDialog__content {
    margin: 20px auto;
    width: 73rem;
  }
}
@media only screen and (max-width: 75em) {
  .modalDialog__content {
    margin-left: 5.5rem;
    max-width: 90% !important;
    width: 90%;
  }
}
@media only screen and (max-width: 64em) {
  .modalDialog__content {
    margin-left: 2.5rem;
    max-width: 107rem !important;
  }
}
@media only screen and (max-width: 48em) {
  .modalDialog__content {
    margin-left: 2.5rem;
    max-width: 86rem !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .modalDialog__content {
    margin-left: 2.5rem;
    max-width: 69rem !important;
  }
}
@media only screen and (max-width: 30em) {
  .modalDialog__content {
    margin-left: 1rem;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 20em) {
  .modalDialog__content {
    margin-left: 0.5rem;
    width: 96% !important;
  }
}
.modalDialog__close {
  background: #606061;
  color: #ffffff;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  z-index: 9999;
  /* @include respond(big-desktop) {
         margin-left: 2.5rem;
         width: 142rem !important;
       }
        @include respond(desk-wid) {
         margin-left: 0.5rem;
         width: 112rem !important;
       } 
        @include respond(tab-land) {
         margin-left: 2.5rem;
         width: 107rem !important;
       } 
        @include respond(tab-port) {
         right: 40px;
         top: 0;        
       }
       @include respond(tab-small) {
         right: 35px;
         top: 0;
       }
       @include respond(phone-land) {
         right: 37px;
         top: 0;
       } 
       @include respond(phone-port) {
         right: 12px;
         top: 0;
       } */
}
.modalDialog__close:hover {
  background: #00d9ff;
}
@media only screen and (max-width: 48em) {
  .modalDialog__close {
    right: -5px;
    top: -5px;
  }
}

.slide {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}
@media only screen and (min-width: 112.6em) {
  .slide {
    margin-left: -84rem;
  }
}
@media only screen and (max-width: 75em) {
  .slide {
    margin-left: -53rem;
  }
}
@media only screen and (max-width: 64em) {
  .slide {
    margin-left: -42rem;
  }
}
@media only screen and (max-width: 48em) {
  .slide {
    margin-left: -27rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide {
    margin-left: -12rem;
  }
}
@media only screen and (max-width: 30em) {
  .slide {
    margin-left: -9rem;
  }
}
@media only screen and (max-width: 20em) {
  .slide {
    margin-left: -6rem;
  }
}

.check-slide {
  position: relative;
  width: 100%;
  max-width: 45rem;
}
@media only screen and (min-width: 112.6em) {
  .check-slide {
    margin-left: 56%;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 75em) {
  .check-slide {
    margin-left: 37%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 64em) {
  .check-slide {
    margin-left: 36%;
    max-width: 61% !important;
  }
}
@media only screen and (max-width: 48em) {
  .check-slide {
    margin-left: 28%;
    max-width: 64% !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .check-slide {
    margin-left: 18%;
    max-width: 75% !important;
  }
}
@media only screen and (max-width: 30em) {
  .check-slide {
    margin-left: 18%;
    max-width: 68% !important;
  }
}
@media only screen and (max-width: 20em) {
  .check-slide {
    margin-left: 20%;
    max-width: 72% !important;
  }
}

.check-slide__input {
  display: none;
}

.check-1:checked ~ .check-slide__list-wrap .check-slide__item:nth-child(1) {
  opacity: 1;
}

.check-1:checked ~ .arrow-group-1 {
  display: block;
}

.check-1:checked ~ .check-slide__dot-list [for="check-1"] {
  background-color: #000;
}

.check-2:checked ~ .check-slide__list-wrap .check-slide__item:nth-child(2) {
  opacity: 1;
}

.check-2:checked ~ .arrow-group-2 {
  display: block;
}

.check-2:checked ~ .check-slide__dot-list [for="check-2"] {
  background-color: #000;
}

.check-3:checked ~ .check-slide__list-wrap .check-slide__item:nth-child(3) {
  opacity: 1;
}

.check-3:checked ~ .arrow-group-3 {
  display: block;
}

.check-3:checked ~ .check-slide__dot-list [for="check-3"] {
  background-color: #000;
}

.check-4:checked ~ .check-slide__list-wrap .check-slide__item:nth-child(4) {
  opacity: 1;
}

.check-4:checked ~ .arrow-group-4 {
  display: block;
}

.check-4:checked ~ .check-slide__dot-list [for="check-4"] {
  background-color: #000;
}

.check-slide__list-wrap {
  overflow: hidden;
}

.check-slide__list {
  position: relative;
  border: 2px solid #000;
  padding-bottom: 60%;
}

.check-slide__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.check-slide__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-slide__arrow-group {
  display: none;
}

.check-slide__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  border: 0.5em solid #000;
  margin: auto;
  border-top: none;
  border-left: none;
  cursor: pointer;
}
.check-slide__arrow:active {
  opacity: 0.8;
}
.check-slide__arrow.check-slide__arrow--left {
  transform: rotate(134deg);
  right: 100%;
}
.check-slide__arrow.check-slide__arrow--right {
  transform: rotate(-45deg);
  left: 100%;
}

.check-slide__dot-list {
  display: flex;
  justify-content: center;
}

.check-slide__dot {
  font-size: 16px;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  margin: 0.7em 0.3em;
  margin-bottom: 0;
  border-radius: 50%;
  cursor: pointer;
}
.check-slide__dot:active {
  opacity: 0.8;
}

.slide2 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}
@media only screen and (min-width: 112.6em) {
  .slide2 {
    margin-left: -50rem;
  }
}
@media only screen and (max-width: 75em) {
  .slide2 {
    margin-left: -53rem;
  }
}
@media only screen and (max-width: 64em) {
  .slide2 {
    margin-left: -42rem;
  }
}
@media only screen and (max-width: 48em) {
  .slide2 {
    margin-left: -27rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide2 {
    margin-left: -12rem;
  }
}
@media only screen and (max-width: 30em) {
  .slide2 {
    margin-left: -9rem;
  }
}
@media only screen and (max-width: 20em) {
  .slide2 {
    margin-left: -6rem;
  }
}

.check2-slide2 {
  position: relative;
  width: 100%;
  max-width: 45rem;
}
@media only screen and (min-width: 112.6em) {
  .check2-slide2 {
    margin-left: 38%;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 75em) {
  .check2-slide2 {
    margin-left: 37%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 64em) {
  .check2-slide2 {
    margin-left: 36%;
    max-width: 61% !important;
  }
}
@media only screen and (max-width: 48em) {
  .check2-slide2 {
    margin-left: 28%;
    max-width: 64% !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .check2-slide2 {
    margin-left: 18%;
    max-width: 75% !important;
  }
}
@media only screen and (max-width: 30em) {
  .check2-slide2 {
    margin-left: 18%;
    max-width: 68% !important;
  }
}
@media only screen and (max-width: 20em) {
  .check2-slide2 {
    margin-left: 20%;
    max-width: 72% !important;
  }
}

.check2-slide2__input {
  display: none;
}

.check2-1:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(1) {
  opacity: 1;
}

.check2-1:checked ~ .arrow-group-1 {
  display: block;
}

.check2-1:checked ~ .check2-slide2__dot-list [for="check2-1"] {
  background-color: #000;
}

.check2-2:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(2) {
  opacity: 1;
}

.check2-2:checked ~ .arrow-group-2 {
  display: block;
}

.check2-2:checked ~ .check2-slide2__dot-list [for="check2-2"] {
  background-color: #000;
}

.check2-3:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(3) {
  opacity: 1;
}

.check2-3:checked ~ .arrow-group-3 {
  display: block;
}

.check2-3:checked ~ .check2-slide2__dot-list [for="check2-3"] {
  background-color: #000;
}

.check2-4:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(4) {
  opacity: 1;
}

.check2-4:checked ~ .arrow-group-4 {
  display: block;
}

.check2-4:checked ~ .check2-slide2__dot-list [for="check2-4"] {
  background-color: #000;
}

.check2-5:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(5) {
  opacity: 1;
}

.check2-5:checked ~ .arrow-group-5 {
  display: block;
}

.check2-5:checked ~ .check2-slide2__dot-list [for="check2-5"] {
  background-color: #000;
}

.check2-6:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(6) {
  opacity: 1;
}

.check2-6:checked ~ .arrow-group-6 {
  display: block;
}

.check2-6:checked ~ .check2-slide2__dot-list [for="check2-6"] {
  background-color: #000;
}

.check2-7:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(7) {
  opacity: 1;
}

.check2-7:checked ~ .arrow-group-7 {
  display: block;
}

.check2-7:checked ~ .check2-slide2__dot-list [for="check2-7"] {
  background-color: #000;
}

.check2-8:checked
  ~ .check2-slide2__list-wrap
  .check2-slide2__item:nth-child(8) {
  opacity: 1;
}

.check2-8:checked ~ .arrow-group-8 {
  display: block;
}

.check2-8:checked ~ .check2-slide2__dot-list [for="check2-8"] {
  background-color: #000;
}

.check2-slide2__list-wrap {
  overflow: hidden;
}

.check2-slide2__list {
  position: relative;
  border: 2px solid #000;
  padding-bottom: 60%;
}

.check2-slide2__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.check2-slide2__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check2-slide2__arrow-group {
  display: none;
}

.check2-slide2__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  border: 0.5em solid #000;
  margin: auto;
  border-top: none;
  border-left: none;
  cursor: pointer;
}
.check2-slide2__arrow:active {
  opacity: 0.8;
}
.check2-slide2__arrow.check2-slide2__arrow--left {
  transform: rotate(134deg);
  right: 100%;
}
.check2-slide2__arrow.check2-slide2__arrow--right {
  transform: rotate(-45deg);
  left: 100%;
}

.check2-slide2__dot-list {
  display: flex;
  justify-content: center;
}

.check2-slide2__dot {
  font-size: 16px;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  margin: 0.7em 0.3em;
  margin-bottom: 0;
  border-radius: 50%;
  cursor: pointer;
}
.check2-slide2__dot:active {
  opacity: 0.8;
}

.slide3 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}
@media only screen and (min-width: 112.6em) {
  .slide3 {
    margin-left: -84rem;
  }
}
@media only screen and (max-width: 75em) {
  .slide3 {
    margin-left: -53rem;
  }
}
@media only screen and (max-width: 64em) {
  .slide3 {
    margin-left: -42rem;
  }
}
@media only screen and (max-width: 48em) {
  .slide3 {
    margin-left: -27rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide3 {
    margin-left: -12rem;
  }
}
@media only screen and (max-width: 30em) {
  .slide3 {
    margin-left: -9rem;
  }
}
@media only screen and (max-width: 20em) {
  .slide3 {
    margin-left: -6rem;
  }
}

.check3-slide3 {
  position: relative;
  width: 100%;
  max-width: 45rem;
}
@media only screen and (min-width: 112.6em) {
  .check3-slide3 {
    margin-left: 55%;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 75em) {
  .check3-slide3 {
    margin-left: 37%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 64em) {
  .check3-slide3 {
    margin-left: 36%;
    max-width: 61% !important;
  }
}
@media only screen and (max-width: 48em) {
  .check3-slide3 {
    margin-left: 28%;
    max-width: 64% !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .check3-slide3 {
    margin-left: 18%;
    max-width: 75% !important;
  }
}
@media only screen and (max-width: 30em) {
  .check3-slide3 {
    margin-left: 18%;
    max-width: 68% !important;
  }
}
@media only screen and (max-width: 20em) {
  .check3-slide3 {
    margin-left: 20%;
    max-width: 72% !important;
  }
}

.check3-slide3__input {
  display: none;
}

.check3-1:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(1) {
  opacity: 1;
}

.check3-1:checked ~ .arrow-group-1 {
  display: block;
}

.check3-1:checked ~ .check3-slide3__dot-list [for="check3-1"] {
  background-color: #000;
}

.check3-2:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(2) {
  opacity: 1;
}

.check3-2:checked ~ .arrow-group-2 {
  display: block;
}

.check3-2:checked ~ .check3-slide3__dot-list [for="check3-2"] {
  background-color: #000;
}

.check3-3:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(3) {
  opacity: 1;
}

.check3-3:checked ~ .arrow-group-3 {
  display: block;
}

.check3-3:checked ~ .check3-slide3__dot-list [for="check3-3"] {
  background-color: #000;
}

.check3-4:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(4) {
  opacity: 1;
}

.check3-4:checked ~ .arrow-group-4 {
  display: block;
}

.check3-4:checked ~ .check3-slide3__dot-list [for="check3-4"] {
  background-color: #000;
}

.check3-5:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(5) {
  opacity: 1;
}

.check3-5:checked ~ .arrow-group-5 {
  display: block;
}

.check3-5:checked ~ .check3-slide3__dot-list [for="check3-5"] {
  background-color: #000;
}

.check3-6:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(6) {
  opacity: 1;
}

.check3-6:checked ~ .arrow-group-6 {
  display: block;
}

.check3-6:checked ~ .check3-slide3__dot-list [for="check3-6"] {
  background-color: #000;
}

.check3-7:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(7) {
  opacity: 1;
}

.check3-7:checked ~ .arrow-group-7 {
  display: block;
}

.check3-7:checked ~ .check3-slide3__dot-list [for="check3-7"] {
  background-color: #000;
}

.check3-8:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(8) {
  opacity: 1;
}

.check3-8:checked ~ .arrow-group-8 {
  display: block;
}

.check3-8:checked ~ .check3-slide3__dot-list [for="check3-8"] {
  background-color: #000;
}

.check3-9:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(9) {
  opacity: 1;
}

.check3-9:checked ~ .arrow-group-9 {
  display: block;
}

.check3-9:checked ~ .check3-slide3__dot-list [for="check3-9"] {
  background-color: #000;
}

.check3-10:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(10) {
  opacity: 1;
}

.check3-10:checked ~ .arrow-group-10 {
  display: block;
}

.check3-10:checked ~ .check3-slide3__dot-list [for="check3-10"] {
  background-color: #000;
}

.check3-11:checked
  ~ .check3-slide3__list-wrap
  .check3-slide3__item:nth-child(11) {
  opacity: 1;
}

.check3-11:checked ~ .arrow-group-11 {
  display: block;
}

.check3-11:checked ~ .check3-slide3__dot-list [for="check3-11"] {
  background-color: #000;
}

.check3-slide3__list-wrap {
  overflow: hidden;
}

.check3-slide3__list {
  position: relative;
  border: 2px solid #000;
  padding-bottom: 60%;
}

.check3-slide3__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.check3-slide3__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check3-slide3__arrow-group {
  display: none;
}

.check3-slide3__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  border: 0.5em solid #000;
  margin: auto;
  border-top: none;
  border-left: none;
  cursor: pointer;
}
.check3-slide3__arrow:active {
  opacity: 0.8;
}
.check3-slide3__arrow.check3-slide3__arrow--left {
  transform: rotate(134deg);
  right: 100%;
}
.check3-slide3__arrow.check3-slide3__arrow--right {
  transform: rotate(-45deg);
  left: 100%;
}

.check3-slide3__dot-list {
  display: flex;
  justify-content: center;
}

.check3-slide3__dot {
  font-size: 16px;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  margin: 0.7em 0.3em;
  margin-bottom: 0;
  border-radius: 50%;
  cursor: pointer;
}
.check3-slide3__dot:active {
  opacity: 0.8;
}

.slide4 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}
@media only screen and (min-width: 112.6em) {
  .slide4 {
    margin-left: -84rem;
  }
}
@media only screen and (max-width: 75em) {
  .slide4 {
    margin-left: -53rem;
  }
}
@media only screen and (max-width: 64em) {
  .slide4 {
    margin-left: -42rem;
  }
}
@media only screen and (max-width: 48em) {
  .slide4 {
    margin-left: -27rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide4 {
    margin-left: -12rem;
  }
}
@media only screen and (max-width: 30em) {
  .slide4 {
    margin-left: -9rem;
  }
}
@media only screen and (max-width: 20em) {
  .slide4 {
    margin-left: -6rem;
  }
}

.check4-slide4 {
  position: relative;
  width: 100%;
  max-width: 45rem;
}
@media only screen and (min-width: 112.6em) {
  .check4-slide4 {
    margin-left: 55%;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 75em) {
  .check4-slide4 {
    margin-left: 37%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 64em) {
  .check4-slide4 {
    margin-left: 36%;
    max-width: 61% !important;
  }
}
@media only screen and (max-width: 48em) {
  .check4-slide4 {
    margin-left: 28%;
    max-width: 64% !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .check4-slide4 {
    margin-left: 18%;
    max-width: 75% !important;
  }
}
@media only screen and (max-width: 30em) {
  .check4-slide4 {
    margin-left: 18%;
    max-width: 68% !important;
  }
}
@media only screen and (max-width: 20em) {
  .check4-slide4 {
    margin-left: 20%;
    max-width: 72% !important;
  }
}

.check4-slide4__input {
  display: none;
}

.check4-1:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(1) {
  opacity: 1;
}

.check4-1:checked ~ .arrow-group-1 {
  display: block;
}

.check4-1:checked ~ .check4-slide4__dot-list [for="check4-1"] {
  background-color: #000;
}

.check4-2:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(2) {
  opacity: 1;
}

.check4-2:checked ~ .arrow-group-2 {
  display: block;
}

.check4-2:checked ~ .check4-slide4__dot-list [for="check4-2"] {
  background-color: #000;
}

.check4-3:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(3) {
  opacity: 1;
}

.check4-3:checked ~ .arrow-group-3 {
  display: block;
}

.check4-3:checked ~ .check4-slide4__dot-list [for="check4-3"] {
  background-color: #000;
}

.check4-4:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(4) {
  opacity: 1;
}

.check4-4:checked ~ .arrow-group-4 {
  display: block;
}

.check4-4:checked ~ .check4-slide4__dot-list [for="check4-4"] {
  background-color: #000;
}

.check4-5:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(5) {
  opacity: 1;
}

.check4-5:checked ~ .arrow-group-5 {
  display: block;
}

.check4-5:checked ~ .check4-slide4__dot-list [for="check4-5"] {
  background-color: #000;
}

.check4-6:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(6) {
  opacity: 1;
}

.check4-6:checked ~ .arrow-group-6 {
  display: block;
}

.check4-6:checked ~ .check4-slide4__dot-list [for="check4-6"] {
  background-color: #000;
}

.check4-7:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(7) {
  opacity: 1;
}

.check4-7:checked ~ .arrow-group-7 {
  display: block;
}

.check4-7:checked ~ .check4-slide4__dot-list [for="check4-7"] {
  background-color: #000;
}

.check4-8:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(8) {
  opacity: 1;
}

.check4-8:checked ~ .arrow-group-8 {
  display: block;
}

.check4-8:checked ~ .check4-slide4__dot-list [for="check4-8"] {
  background-color: #000;
}

.check4-9:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(9) {
  opacity: 1;
}

.check4-9:checked ~ .arrow-group-9 {
  display: block;
}

.check4-9:checked ~ .check4-slide4__dot-list [for="check4-9"] {
  background-color: #000;
}

.check4-10:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(10) {
  opacity: 1;
}

.check4-10:checked ~ .arrow-group-10 {
  display: block;
}

.check4-10:checked ~ .check4-slide4__dot-list [for="check4-10"] {
  background-color: #000;
}

.check4-11:checked
  ~ .check4-slide4__list-wrap
  .check4-slide4__item:nth-child(11) {
  opacity: 1;
}

.check4-11:checked ~ .arrow-group-11 {
  display: block;
}

.check4-11:checked ~ .check4-slide4__dot-list [for="check4-11"] {
  background-color: #000;
}

.check4-slide4__list-wrap {
  overflow: hidden;
}

.check4-slide4__list {
  position: relative;
  border: 2px solid #000;
  padding-bottom: 60%;
}

.check4-slide4__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.check4-slide4__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check4-slide4__arrow-group {
  display: none;
}

.check4-slide4__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  border: 0.5em solid #000;
  margin: auto;
  border-top: none;
  border-left: none;
  cursor: pointer;
}
.check4-slide4__arrow:active {
  opacity: 0.8;
}
.check4-slide4__arrow.check4-slide4__arrow--left {
  transform: rotate(134deg);
  right: 100%;
}
.check4-slide4__arrow.check4-slide4__arrow--right {
  transform: rotate(-45deg);
  left: 100%;
}

.check4-slide4__dot-list {
  display: flex;
  justify-content: center;
}

.check4-slide4__dot {
  font-size: 16px;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  margin: 0.7em 0.3em;
  margin-bottom: 0;
  border-radius: 50%;
  cursor: pointer;
}
.check4-slide4__dot:active {
  opacity: 0.8;
}

.slide5 {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
}
@media only screen and (min-width: 112.6em) {
  .slide5 {
    margin-left: -84rem;
  }
}
@media only screen and (max-width: 75em) {
  .slide5 {
    margin-left: -53rem;
  }
}
@media only screen and (max-width: 64em) {
  .slide5 {
    margin-left: -42rem;
  }
}
@media only screen and (max-width: 48em) {
  .slide5 {
    margin-left: -27rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide5 {
    margin-left: -12rem;
  }
}
@media only screen and (max-width: 30em) {
  .slide5 {
    margin-left: -9rem;
  }
}
@media only screen and (max-width: 20em) {
  .slide5 {
    margin-left: -6rem;
  }
}

.check5-slide5 {
  position: relative;
  width: 100%;
  max-width: 45rem;
}
@media only screen and (min-width: 112.6em) {
  .check5-slide5 {
    margin-left: 55%;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 75em) {
  .check5-slide5 {
    margin-left: 37%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 64em) {
  .check5-slide5 {
    margin-left: 36%;
    max-width: 61% !important;
  }
}
@media only screen and (max-width: 48em) {
  .check5-slide5 {
    margin-left: 28%;
    max-width: 64% !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .check5-slide5 {
    margin-left: 18%;
    max-width: 75% !important;
  }
}
@media only screen and (max-width: 30em) {
  .check5-slide5 {
    margin-left: 18%;
    max-width: 68% !important;
  }
}
@media only screen and (max-width: 20em) {
  .check5-slide5 {
    margin-left: 20%;
    max-width: 72% !important;
  }
}

.check5-slide5__input {
  display: none;
}

.check5-1:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(1) {
  opacity: 1;
}

.check5-1:checked ~ .arrow-group-1 {
  display: block;
}

.check5-1:checked ~ .check5-slide5__dot-list [for="check5-1"] {
  background-color: #000;
}

.check5-2:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(2) {
  opacity: 1;
}

.check5-2:checked ~ .arrow-group-2 {
  display: block;
}

.check5-2:checked ~ .check5-slide5__dot-list [for="check5-2"] {
  background-color: #000;
}

.check5-3:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(3) {
  opacity: 1;
}

.check5-3:checked ~ .arrow-group-3 {
  display: block;
}

.check5-3:checked ~ .check5-slide5__dot-list [for="check5-3"] {
  background-color: #000;
}

.check5-4:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(4) {
  opacity: 1;
}

.check5-4:checked ~ .arrow-group-4 {
  display: block;
}

.check5-4:checked ~ .check5-slide5__dot-list [for="check5-4"] {
  background-color: #000;
}

.check5-5:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(5) {
  opacity: 1;
}

.check5-5:checked ~ .arrow-group-5 {
  display: block;
}

.check5-5:checked ~ .check5-slide5__dot-list [for="check5-5"] {
  background-color: #000;
}

.check5-6:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(6) {
  opacity: 1;
}

.check5-6:checked ~ .arrow-group-6 {
  display: block;
}

.check5-6:checked ~ .check5-slide5__dot-list [for="check5-6"] {
  background-color: #000;
}

.check5-7:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(7) {
  opacity: 1;
}

.check5-7:checked ~ .arrow-group-7 {
  display: block;
}

.check5-7:checked ~ .check5-slide5__dot-list [for="check5-7"] {
  background-color: #000;
}

.check5-8:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(8) {
  opacity: 1;
}

.check5-8:checked ~ .arrow-group-8 {
  display: block;
}

.check5-8:checked ~ .check5-slide5__dot-list [for="check5-8"] {
  background-color: #000;
}

.check5-9:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(9) {
  opacity: 1;
}

.check5-9:checked ~ .arrow-group-9 {
  display: block;
}

.check5-9:checked ~ .check5-slide5__dot-list [for="check5-9"] {
  background-color: #000;
}

.check5-10:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(10) {
  opacity: 1;
}

.check5-10:checked ~ .arrow-group-10 {
  display: block;
}

.check5-10:checked ~ .check5-slide5__dot-list [for="check5-10"] {
  background-color: #000;
}

.check5-11:checked
  ~ .check5-slide5__list-wrap
  .check5-slide5__item:nth-child(11) {
  opacity: 1;
}

.check5-11:checked ~ .arrow-group-11 {
  display: block;
}

.check5-11:checked ~ .check5-slide5__dot-list [for="check5-11"] {
  background-color: #000;
}

.check5-slide5__list-wrap {
  overflow: hidden;
}

.check5-slide5__list {
  position: relative;
  border: 2px solid #000;
  padding-bottom: 60%;
}

.check5-slide5__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.check5-slide5__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check5-slide5__arrow-group {
  display: none;
}

.check5-slide5__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  border: 0.5em solid #000;
  margin: auto;
  border-top: none;
  border-left: none;
  cursor: pointer;
}
.check5-slide5__arrow:active {
  opacity: 0.8;
}
.check5-slide5__arrow.check5-slide5__arrow--left {
  transform: rotate(134deg);
  right: 100%;
}
.check5-slide5__arrow.check5-slide5__arrow--right {
  transform: rotate(-45deg);
  left: 100%;
}

.check5-slide5__dot-list {
  display: flex;
  justify-content: center;
}

.check5-slide5__dot {
  font-size: 16px;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  margin: 0.7em 0.3em;
  margin-bottom: 0;
  border-radius: 50%;
  cursor: pointer;
}
.check5-slide5__dot:active {
  opacity: 0.8;
}

.slide6 {
  /* box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30vh; */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  width: 68rem;
}
@media only screen and (max-width: 112.5em) {
  .slide6 {
    margin-left: -84rem;
  }
}
@media only screen and (max-width: 75em) {
  .slide6 {
    margin-left: -53rem;
  }
}
@media only screen and (max-width: 64em) {
  .slide6 {
    margin-left: -42rem;
  }
}
@media only screen and (max-width: 48em) {
  .slide6 {
    margin-left: -27rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .slide6 {
    margin-left: -12rem;
  }
}
@media only screen and (max-width: 30em) {
  .slide6 {
    margin-left: -9rem;
  }
}
@media only screen and (max-width: 20em) {
  .slide6 {
    margin-left: -6rem;
  }
}

.check6-slide6 {
  position: relative;
  width: 100%;
  max-width: 98%;
}
@media only screen and (max-width: 112.5em) {
  .check6-slide6 {
    margin-left: 38%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 75em) {
  .check6-slide6 {
    margin-left: 37%;
    max-width: 55% !important;
  }
}
@media only screen and (max-width: 64em) {
  .check6-slide6 {
    margin-left: 36%;
    max-width: 61% !important;
  }
}
@media only screen and (max-width: 48em) {
  .check6-slide6 {
    margin-left: 28%;
    max-width: 64% !important;
  }
}
@media only screen and (max-width: 37.5em) {
  .check6-slide6 {
    margin-left: 18%;
    max-width: 75% !important;
  }
}
@media only screen and (max-width: 30em) {
  .check6-slide6 {
    margin-left: 18%;
    max-width: 68% !important;
  }
}
@media only screen and (max-width: 20em) {
  .check6-slide6 {
    margin-left: 20%;
    max-width: 72% !important;
  }
}

.check6-slide6__input {
  display: none;
}

.check6-1:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(1) {
  opacity: 1;
}

.check6-1:checked ~ .arrow-group-1 {
  display: block;
}

.check6-1:checked ~ .check6-slide6__dot-list [for="check6-1"] {
  background-color: #000;
}

.check6-2:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(2) {
  opacity: 1;
}

.check6-2:checked ~ .arrow-group-2 {
  display: block;
}

.check6-2:checked ~ .check6-slide6__dot-list [for="check6-2"] {
  background-color: #000;
}

.check6-3:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(3) {
  opacity: 1;
}

.check6-3:checked ~ .arrow-group-3 {
  display: block;
}

.check6-3:checked ~ .check6-slide6__dot-list [for="check6-3"] {
  background-color: #000;
}

.check6-4:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(4) {
  opacity: 1;
}

.check6-4:checked ~ .arrow-group-4 {
  display: block;
}

.check6-4:checked ~ .check6-slide6__dot-list [for="check6-4"] {
  background-color: #000;
}

.check6-5:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(5) {
  opacity: 1;
}

.check6-5:checked ~ .arrow-group-5 {
  display: block;
}

.check6-5:checked ~ .check6-slide6__dot-list [for="check6-5"] {
  background-color: #000;
}

.check6-6:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(6) {
  opacity: 1;
}

.check6-6:checked ~ .arrow-group-6 {
  display: block;
}

.check6-6:checked ~ .check6-slide6__dot-list [for="check6-6"] {
  background-color: #000;
}

.check6-7:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(7) {
  opacity: 1;
}

.check6-7:checked ~ .arrow-group-7 {
  display: block;
}

.check6-7:checked ~ .check6-slide6__dot-list [for="check6-7"] {
  background-color: #000;
}

.check6-8:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(8) {
  opacity: 1;
}

.check6-8:checked ~ .arrow-group-8 {
  display: block;
}

.check6-8:checked ~ .check6-slide6__dot-list [for="check6-8"] {
  background-color: #000;
}

.check6-9:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(9) {
  opacity: 1;
}

.check6-9:checked ~ .arrow-group-9 {
  display: block;
}

.check6-9:checked ~ .check6-slide6__dot-list [for="check6-9"] {
  background-color: #000;
}

.check6-10:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(10) {
  opacity: 1;
}

.check6-10:checked ~ .arrow-group-10 {
  display: block;
}

.check6-10:checked ~ .check6-slide6__dot-list [for="check6-10"] {
  background-color: #000;
}

.check6-11:checked
  ~ .check6-slide6__list-wrap
  .check6-slide6__item:nth-child(11) {
  opacity: 1;
}

.check6-11:checked ~ .arrow-group-11 {
  display: block;
}

.check6-11:checked ~ .check6-slide6__dot-list [for="check6-11"] {
  background-color: #000;
}

.check6-slide6__list-wrap {
  overflow: hidden;
  width: 100%;
  /*retirar essa prop se não funcionar */
}

.check6-slide6__list {
  position: relative;
  border: 2px solid #000;
  padding-bottom: 60%;
}

.check6-slide6__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.check6-slide6__pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check6-slide6__arrow-group {
  display: none;
}

.check6-slide6__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  border: 0.5em solid #000;
  margin: auto;
  border-top: none;
  border-left: none;
  cursor: pointer;
}
.check6-slide6__arrow:active {
  opacity: 0.8;
}
.check6-slide6__arrow.check6-slide6__arrow--left {
  transform: rotate(134deg);
  right: 100%;
}
.check6-slide6__arrow.check6-slide6__arrow--right {
  transform: rotate(-45deg);
  left: 100%;
}

.check6-slide6__dot-list {
  display: flex;
  justify-content: center;
}

.check6-slide6__dot {
  font-size: 16px;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  margin: 0.7em 0.3em;
  margin-bottom: 0;
  border-radius: 50%;
  cursor: pointer;
}
.check6-slide6__dot:active {
  opacity: 0.8;
}

/* Slideshow container */
.gallery-container {
  width: 100%;
  position: relative;
  margin: 0;
  border-radius: 10px;
  -moz-box-shadow: 1px 1px 30px #000;
  box-shadow: 1px 1px 30px #000;
  -webkit-box-shadow: 1px 1px 30px #000;
  padding: 2px;
  background-color: #121316;
}

@media (min-width: 480px) {
  .gallery-container {
    width: 100%;
    margin: auto;
    background-color: #121316;
  }
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 48em) {
  .prev,
  .next {
    top: 35%;
  }
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  width: 100%;
  text-align: justify;
}

.imgslide {
  width: 100%;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

@media (max-width: 768px) {
  .numbertext {
    top: 15px;
  }
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 48em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 48em) {
  .row {
    max-width: 100rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 20em) {
  .row {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^="col-"] {
  float: left;
}
.row [class^="col-"]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 48em) {
  .row [class^="col-"]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 48em) {
  .row [class^="col-"] {
    width: 100% !important;
  }
}
.row .col-1-of-1 {
  width: 100rem;
}
@media only screen and (max-width: 75em) {
  .row .col-1-of-1 {
    width: 100%;
    margin-left: 0rem;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}
.row .col-1-of-5 {
  width: calc((100% - 2 * 6rem) / 6);
}

.header {
  height: 85vh;
  background-image: linear-gradient(
      to right bottom,
      rgba(4, 178, 217, 0.9),
      rgba(1, 40, 64, 50%)
    ),
    url(../img/Proantar_Navios_.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}
@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
    height: 95vh;
  }
}
@media only screen and (min-resolution: 192dpi) and (min-width: 37.5em),
  only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em),
  only screen and (min-width: 125em) {
  .header {
    background-image: linear-gradient(
        to right bottom,
        rgba(4, 178, 217, 0.9),
        rgba(1, 40, 64, 0.9)
      ),
      url(../img/eacf-large);
  }
}
@media only screen and (max-width: 20em) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  }
}
.header__logo-box {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.header__logo {
  height: 9.5rem;
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.footer {
  background-color: #333;
  padding: 10rem 0;
  font-size: 1.4rem;
  color: #f7f7f7;
}
@media only screen and (max-width: 48em) {
  .footer {
    padding: 7rem 0;
  }
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 48em) {
  .footer__logo-box {
    margin-bottom: 6rem;
  }
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
  display: inline-block;
}
@media only screen and (max-width: 48em) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1.4rem;
}
@media only screen and (max-width: 48em) {
  .footer__item:not(:last-child) {
    margin-right: 0.5rem;
  }
}
.footer__link:link,
.footer__link:visited {
  color: #f7f7f7;
  font-size: 1.3rem;
  background-color: #333;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}
.footer__link:hover,
.footer__link:active {
  color: #048abf;
  /*box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);*/
  transform: scale(1.1);
}
.footer__copyright {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 80%;
  float: right;
  text-align: justify;
}
@media only screen and (max-width: 48em) {
  .footer__copyright {
    width: 100%;
    float: none;
  }
}

.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 48em) {
  .navigation__button {
    top: 4rem;
    right: 4rem;
  }
}
@media only screen and (max-width: 20em) {
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
}

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#04b2d9, #012840);
  z-index: 1000;
  transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (max-width: 48em) {
  .navigation__background {
    top: 4.5rem;
    right: 4.5rem;
  }
}
@media only screen and (max-width: 20em) {
  .navigation__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s;
}

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.navigation__item {
  margin: 1rem;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    #fff 50%
  );
  background-size: 220%;
  transition: all 0.4s;
}
.navigation__link:link span,
.navigation__link:visited span {
  margin-right: 1.5rem;
  display: inline-block;
}

.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: #048abf;
  transform: translateX(1rem);
}

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}

.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.1s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -25vh;
}
@media only screen and (max-width: 48em) {
  .section-about {
    padding: 20rem 0;
  }
}

.section-features {
  padding: 20rem 0 35rem;
  background-image: linear-gradient(
      to right bottom,
      rgba(4, 178, 217, 0.5),
      rgba(1, 40, 64, 0.2)
    ),
    url(../img/bote-navio.jpg);
  background-size: cover;
  margin-top: -12rem;
  /* & > * {
        transform: skewY(7deg);
    } */
}
@media only screen and (max-width: 48em) {
  .section-features {
    padding: 10rem 0;
  }
}

.section-tours {
  background-color: #f7f7f7;
  padding: 25rem 0 15rem 0;
  margin-top: -25vh;
}
@media only screen and (max-width: 75em) {
  .section-tours {
    padding: 8rem 0 10rem 0;
  }
}
@media only screen and (max-width: 64em) {
  .section-tours {
    padding: 8rem 0 10rem 0;
  }
}
@media only screen and (max-width: 48em) {
  .section-tours {
    padding: 8rem 0 10rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-tours {
    margin-top: -8vh;
  }
}
@media only screen and (max-width: 30em) {
  .section-tours {
    margin-top: -8vh;
  }
}
@media only screen and (max-width: 20em) {
  .section-tours {
    margin-top: -9vh;
  }
}

.section-stories {
  position: relative;
  padding: 15rem 0;
  background-image: linear-gradient(
      to right bottom,
      rgba(4, 138, 191, 0.5),
      rgba(4, 178, 217, 0.2)
    ),
    url(../img/fundo-distintivos.jpg);
  background-size: cover;
}
@media only screen and (max-width: 48em) {
  .section-stories {
    padding: 10rem 0;
  }
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #04b2d9, #012840);
}
@media only screen and (max-width: 48em) {
  .section-book {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 50%
    ),
    url(../img/nat-10.jpg);
  background-size: 100%;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  height: 50rem;
}
@media only screen and (max-width: 64em) {
  .book {
    background-image: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.9) 65%,
        transparent 65%
      ),
      url(../img/nat-10.jpg);
    background-size: cover;
  }
}
@media only screen and (max-width: 48em) {
  .book {
    background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.9) 100%,
        transparent 65%
      ),
      url(../img/nat-10.jpg);
  }
}
.book__form {
  width: 50%;
  padding: 6rem;
}
@media only screen and (max-width: 64em) {
  .book__form {
    width: 65%;
  }
}
@media only screen and (max-width: 48em) {
  .book__form {
    width: 100%;
  }
}

/*INFOGRÁFICO!!!!! */

@import url(https://fonts.googleapis.com/css?family=Lato:700);

body .statistics {
  font-family: "Lato", sans-serif;
  background-color: #3194b2;
  width: 100%;
  margin: 0;
}

.container {
  min-width: 675px;
}

.statistics h1 {
  color: #fff;
  text-align: center;
  margin-top: 90px;
}

.statistics {
  width: 100%;
  margin: 0;
  border: 1px solid #224761;
  border-radius: 5px;
  padding: 5px;
  padding-bottom: 1em;
  background-color: #224761;
}

.statistics > div {
  display: inline-block;
  min-width: 500px;
  margin-left: 5px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.clear {
  clear: both;
}

.statistics p {
  text-align: center;
}

.statistics p a {
  color: #dd1111;
}

.statistics h2 {
  opacity: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

h2.title-one {
  animation: load-heading 1.6s linear;
  animation-fill-mode: forwards;
  -webkit-animation: load-heading 1.6s linear;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

h2.title-two {
  animation: load-heading 1.6s linear;
  animation-fill-mode: forwards;
  -webkit-animation: load-heading 1.6s linear;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}

h2.title-three {
  animation: load-heading 1.6s linear;
  animation-fill-mode: forwards;
  -webkit-animation: load-heading 1.6s linear;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}

@keyframes load-heading {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes load-heading {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rings {
  height: 200px;
  padding-left: 2em;
}

.arrow {
  position: relative;
  height: 0px;
  width: 0px;
  border-top: 18px solid #dd1111;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  position: absolute;
  bottom: 40px;
  left: 57px;
  z-index: 1;
  animation: load-arrow 1.6s linear;
  animation-fill-mode: forwards;
  -webkit-animation: load-arrow 1.6s linear;
  -webkit-animation-fill-mode: forwards;
}

@keyframes load-arrow {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 55px);
  }
}

@-webkit-keyframes load-arrow {
  from {
    -webkit-transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(0, 55px);
  }
}

.pie {
  width: 140px;
  height: 140px;
  position: relative;
  border-radius: 140px;
  background-color: #dd1111;
  float: left;
  margin-right: 10px;
}

.pie .title {
  position: absolute;
  bottom: -40px;
  text-align: center;
  width: 100%;
  color: #fff;
}

.mask {
  position: absolute;
  width: 100%;
  height: 100%;
}

.outer-right {
  clip: rect(0px 140px 140px 70px);
}

.inner-right {
  background-color: #710000;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  clip: rect(0px 70px 140px 0px);
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.pie1 .inner-right {
  transform: rotate(280deg);
  animation: load-right-pie-1 1s linear;
  -webkit-animation: load-right-pie-1 1s linear;
  -webkit-transform: rotate(280deg);
}

@keyframes load-right-pie-1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(280deg);
  }
}

@-webkit-keyframes load-right-pie-1 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(280deg);
  }
}

.pie2 .inner-right {
  transform: rotate(10deg);
  animation: load-right-pie-2 1s linear;
  -webkit-animation: load-right-pie-2 1s linear;
  -webkit-transform: rotate(10deg);
}

@keyframes load-right-pie-2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(10deg);
  }
}

@-webkit-keyframes load-right-pie-2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(10deg);
  }
}

.pie3 .inner-right {
  transform: rotate(340deg);
  animation: load-right-pie-3 1s linear;
  -webkit-animation: load-right-pie-3 1s linear;
  -webkit-transform: rotate(340deg);
}

@keyframes load-right-pie-3 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(340deg);
  }
}

@-webkit-keyframes load-right-pie-3 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(340deg);
  }
}

.outer-left {
  clip: rect(0px 70px 140px 0px);
}

.inner-left {
  background-color: #710000;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  clip: rect(0px 70px 140px 0px);
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

.content {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 100px;
  font-family: arial, sans-serif;
  font-size: 25px;
  color: #224761;
  text-align: center;
  z-index: 2;
}

.content span {
  opacity: 0;
  animation: load-content 3s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
  -webkit-animation: load-content 3s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
}

@keyframes load-content {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes load-content {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.circles {
  position: relative;
  min-height: 250px;
  left: 5em;
}

.circles .circle-one {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #dd1111;
  top: 100px;
  z-index: 2;
  font-size: 18px;
  color: #fff;
}

.circles .circle-one .text {
  position: absolute;
  top: 25%;
  left: 10%;
}

.circles .circle-two {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background-color: #fff;
  left: 55px;
  font-size: 30px;
  color: #dd1111;
}

.circles .circle-two .text {
  color: #dd1111;
  font-size: 30px;
}

.circles > div {
  position: relative;
  -webkit-transform: scale(0);
  transform: scale(0);
  position: absolute;
  animation: circles-load 1s cubic-bezier(0.17, 0.67, 0.58, 1.2);
  animation-fill-mode: forwards;
  animation-delay: 2s;
  -webkit-animation: circles-load 1s cubic-bezier(0.17, 0.67, 0.58, 1.2);
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
}

.circles .text {
  position: absolute;
  top: 25%;
  left: 20%;
}

@keyframes circles-load {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes circles-load {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.h-bars > div {
  width: 0;
  height: 30px;
  border-radius: 2px;
  display: block;
  position: relative;
}

.h-bars *:before {
  position: absolute;
  left: -125px;
  top: 4px;
  opacity: 0;
  color: #fff;
}

.h-bars *:after {
  top: 4px;
  opacity: 0;
  position: absolute;
  color: #fff;
}

@keyframes bars-after {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bars-after {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.h-bars .bar-one:before {
  content: "Comments";
  animation: bars-after 1s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  -webkit-animation: bars-after 1s;
  -webkit-animation-delay: 2.5s;
  -webkit-animation-fill-mode: forwards;
}

.h-bars .bar-one {
  background-color: #1645c8;
  animation: bars-bar-one 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
  -webkit-animation: bars-bar-one 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.5s;
}

.h-bars .bar-one:after {
  content: "108 Is The Record For A Single Pen";
  right: -260px;
  animation: bars-after 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
  -webkit-animation: bars-after 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.5s;
}

@keyframes bars-bar-one {
  from {
    width: 0;
  }
  to {
    width: 50px;
  }
}

@-webkit-keyframes bars-bar-one {
  from {
    width: 0;
  }
  to {
    width: 50px;
  }
}

.h-bars .bar-two:before {
  content: "Pens Featured";
  animation: bars-after 1s;
  animation-delay: 2.6s;
  animation-fill-mode: forwards;
  -webkit-animation: bars-after 1s;
  -webkit-animation-delay: 2.6s;
  -webkit-animation-fill-mode: forwards;
}

.h-bars .bar-two {
  background-color: #0c8ec0;
  animation: bars-bar-two 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
  -webkit-animation: bars-bar-two 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.6s;
}

.h-bars .bar-two:after {
  content: "13,972 By The CodePen Staff";
  right: -225px;
  animation: bars-after 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
  -webkit-animation: bars-after 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.6s;
}

@keyframes bars-bar-two {
  from {
    width: 0;
  }
  to {
    width: 180px;
  }
}

@-webkit-keyframes bars-bar-two {
  from {
    width: 0;
  }
  to {
    width: 180px;
  }
}

.h-bars .bar-three:before {
  content: "Pens Hearted";
  animation: bars-after 1s;
  animation-delay: 2.6s;
  animation-fill-mode: forwards;
  -webkit-animation: bars-after 1s;
  -webkit-animation-delay: 2.6s;
  -webkit-animation-fill-mode: forwards;
}

.h-bars .bar-three {
  background-color: #c0392b;
  animation: bars-bar-three 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.7s;
  -webkit-animation: bars-bar-three 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.7s;
}

.h-bars .bar-three:after {
  content: "941,146 By The  Community";
  right: -220px;
  animation: bars-after 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
  -webkit-animation: bars-after 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.6s;
}

@keyframes bars-bar-three {
  from {
    width: 0;
  }
  to {
    width: 330px;
  }
}

@-webkit-keyframes bars-bar-three {
  from {
    width: 0;
  }
  to {
    width: 330px;
  }
}

.h-bars .bar-four:before {
  content: "Forks";
  animation: bars-after 1s;
  animation-delay: 2.6s;
  animation-fill-mode: forwards;
  -webkit-animation: bars-after 1s;
  -webkit-animation-delay: 2.6s;
  -webkit-animation-fill-mode: forwards;
}

.h-bars .bar-four {
  background-color: #27b096;
  animation: bars-bar-four 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
  -webkit-animation: bars-bar-four 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.8s;
}

.h-bars .bar-four:after {
  content: "2,967 Is The Record For One Single Pen";
  right: -290px;
  animation: bars-after 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
  -webkit-animation: bars-after 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.6s;
}

@keyframes bars-bar-four {
  from {
    width: 0;
  }
  to {
    width: 90px;
  }
}

@-webkit-keyframes bars-bar-four {
  from {
    width: 0;
  }
  to {
    width: 90px;
  }
}

.h-bars .bar-five:before {
  content: "CodePen Haters  ";
  animation: bars-after 1s;
  animation-delay: 2.6s;
  animation-fill-mode: forwards;
  -webkit-animation: bars-after 1s;
  -webkit-animation-delay: 2.6s;
  -webkit-animation-fill-mode: forwards;
}

.h-bars .bar-five {
  background-color: #95a5a6;
  animation: bars-bar-five 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.8s;
  -webkit-animation: bars-bar-five 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.8s;
}

.h-bars .bar-five:after {
  content: "Are You Serious?";
  right: -130px;
  animation: bars-after 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.6s;
  -webkit-animation: bars-after 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2.6s;
}

@keyframes bars-bar-five {
  from {
    width: 0;
  }
  to {
    width: 3px;
  }
}

@-webkit-keyframes bars-bar-five {
  from {
    width: 0;
  }
  to {
    width: 3px;
  }
}
a {
  text-decoration: none;
}
.stat a {
  color: #094f80;
  letter-spacing: 2px;
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}
.stat a:hover {
  color: #fff;
}
.date {
  color: #fff;
  font-size: 0.6em;
}
.quote {
  color: #094f80;
  font-size: 0.8em;
  font-style: italic;
}
.auth {
  color: #fff;
  margin-left: 30%;
  font-size: 0.6em;
}
@media only screen and (min-width: 600px) {
  .statistics > div {
    display: block;
    max-width: 100%;
    float: none;
  }
  .h-bars {
    margin-left: 25%;
  }
  h2 {
    text-align: left;
    margin-left: 15%;
  }
}
@media only screen and (min-width: 900px) {
  .statistics {
    width: 100%;
  }
  .statistics > div {
    display: inline-block;
    max-width: 100%;
    margin: 0;
  }
  h2 {
    text-align: center;
    margin-left: -1em;
  }
}

#infografico {
  width: 100%;
  height: 100%;
  display: block;
}

#infografico-mobile {
  display: none;
}

#selo {
  width: 100%;
  height: 100%;
  display: block;
}
.paragraph-selo {
  font-size: 1.6rem;
}
.paragraph-selo:not(:last-child) {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 600px) {
  .paragraph-selo:not(:last-child) {
    margin-bottom: 5rem;
    padding-left: 215px;
  }
}

@media only screen and (max-width: 600px) {
  #infografico {
    width: 100%;
    padding-left: 200px;
    display: none;
  }
  #infografico-mobile {
    display: block;
    margin: auto;
    padding-left: 240px;
    width: 100%;
    height: 100%;
  }
  #selo {
    width: 100%;
    height: 100%;
    /*display: block;*/
    padding-left: 255px;
  }

  #operantarxlemnumeros {
    display: none;
  }
  #googleforms {
    padding-left: 240px;
  }
}

/*@media only screen and (max-width:474px){
  /* se tela menor que 474 de largura 
      #infografico {
          display:none;
      }
      #infografico-mobile {
          display:block;
          margin-left:auto;
          margin-right:auto;
      }
    }*/

@media only screen and (max-width: 600px) {
  .heading-primary--main {
    font-size: 100%;
    font-weight: bolder;
  }
}

@media only screen and (max-width: 600px) {
  .heading-primary--sub {
    font-size: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .feature-box__text {
    text-align: center;
  }
}

@media only screen and (max-height: 414px) {
  .row [class^="col-"]:not(:last-child) {
    margin-right: 3rem;
    margin-left: 2rem;
  }
}

.section-infografico {
  background-color: #004c64;
  padding: 25rem 0 15rem 0;
  margin-top: -25vh;
}
@media only screen and (max-width: 75em) {
  .section-infografico {
    padding: 8rem 0 10rem 0;
  }
}
@media only screen and (max-width: 64em) {
  .section-infografico {
    padding: 8rem 0 10rem 0;
  }
}
@media only screen and (max-width: 48em) {
  .section-infografico {
    padding: 8rem 0 10rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-infografico {
    margin-top: -8vh;
  }
}
@media only screen and (max-width: 30em) {
  .section-infografico {
    margin-top: -8vh;
  }
}
@media only screen and (max-width: 20em) {
  .section-infografico {
    margin-top: -9vh;
  }
}
