/*
0    - 600px:   Phone
600  - 900px:   Tablet
900  - 1200px:  Tablet Landscape
1200 - 1800: is where our normal styles apply
1800 + :        Big Desktop

$breakpoint argument choices:
- phone 
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general

1em = 16px
600/16 = 37.5em
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 60em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box; }
  @media (max-width: 60em) {
    body {
      padding: 0; } }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  85% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes appear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  85% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  85% {
    transform: translateY(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-10rem); }
  85% {
    transform: translateY(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.7;
  color: #777; }

.heading-info {
  color: #fff;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0rem;
  line-height: 3.5rem;
  color: #eee; }

.heading-1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0rem;
  line-height: 3.5rem;
  color: #eee; }

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden; }
  .heading-primary--main {
    display: block;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 3.5rem;
    animation: moveInLeft .3s ease-out;
    /*
        animation-iteration-count: 3;
        animation-delay: 3s;
        */ }
  .heading-primary--sub {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.75rem;
    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    margin-bottom: 6rem; }

.heading-secondary {
  font-size: 3.5rem;
  text-decoration: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  transition: all .2s; }
  .heading-secondary:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.05);
    text-shadow: 0.5rem 0.5rem 0.8rem rgba(0, 0, 0, 0.3); }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.span-blue-dark {
  color: #1a3765; }
  .span-blue-dark--stroke {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #51bad2; }

.span-blue-light {
  color: #51bad2; }

.u-center-text {
  text-align: center; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem; }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }

.u-margin-bottom-big {
  margin-bottom: 8rem; }

.u-margin-top-big {
  margin-top: 8rem; }

.u-margin-top-huge {
  margin-top: 10rem; }

input[type="submit"] {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  border: none;
  background-color: #1a3765;
  color: #51bad2;
  display: block;
  float: right;
  padding: 1rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all .2s; }
  input[type="submit"]:hover {
    background-color: #51bad2;
    color: #1a3765; }

.btn:link, .btn:visited {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all .2s;
  position: relative; }

.btn--nav {
  color: #eee;
  font-size: 1.5rem; }
  .btn--nav:hover {
    border-bottom: #51bad2 solid 3px; }
    @media (max-width: 60em) {
      .btn--nav:hover {
        border-bottom: 0;
        font-weight: 600;
        background-color: rgba(81, 186, 210, 0.7);
        color: #000; } }

.btn--hot:link, .btn--hot:visited {
  background-color: #51bad2;
  color: #000;
  display: inline-block;
  text-decoration: none;
  padding: 5px 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all .2s; }
  @media (max-width: 60em) {
    .btn--hot:link, .btn--hot:visited {
      font-size: 2rem;
      padding: 1.5rem;
      background-color: rgba(26, 55, 101, 0.7);
      color: #51bad2; } }

.btn--hot:hover {
  background-color: #1a3765;
  color: #fff; }
  @media (max-width: 60em) {
    .btn--hot:hover {
      font-size: 2rem;
      padding: 1.5rem;
      background-color: #51bad2;
      color: #000; } }

.btn--contato:link, .btn--contato:visited {
  border: none;
  background-color: #1a3765;
  color: #51bad2;
  display: block;
  float: right;
  text-decoration: none;
  padding: 1rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all .2s; }

.btn--contato:hover {
  background-color: #51bad2;
  color: #1a3765; }

.btn--news:link, .btn--news:visited {
  background-color: #51bad2;
  color: #1a3765;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all .2s; }

.btn--news:hover {
  background-color: #1a3765;
  color: #51bad2; }

.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 .2s;
    outline-offset: 1.5rem; }
    .composition__photo--p1 {
      left: 0;
      top: -2rem; }
    .composition__photo--p2 {
      right: 0;
      top: 2rem; }
    .composition__photo--p3 {
      left: 20%;
      top: 10rem; }
    .composition__photo:hover {
      outline: 1.5rem solid #55c57a;
      transform: scale(1.05) translateY(-5px);
      box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
      z-index: 20; }
  .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: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transition: transform .3s; }
  .feature-box__icon {
    font-size: 6rem;
    margin-bottom: .5rem;
    display: inline-block;
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    -webkit-background-clip: text;
    color: transparent; }
  .feature-box:hover {
    transform: translateY(-1.5rem) scale(1.03);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem; }
  .card__side {
    height: 52rem;
    transition: all .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 {
      transform: rotateY(180deg); }
      .card__side--back-1 {
        background-image: linear-gradient(to right, #ffb900, #ff7730); }
      .card__side--back-2 {
        background-image: linear-gradient(to right, #7ed56f, #28b485); }
      .card__side--back-3 {
        background-image: linear-gradient(to right, #2998ff, #5643fa); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .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, #ffb900, #ff7730), url("../../img/nat-5.jpg"); }
    .card__picture--2 {
      background-image: linear-gradient(to right bottom, #7ed56f, #28b485), url("../../img/nat-6.jpg"); }
    .card__picture--3 {
      background-image: linear-gradient(to right bottom, #2998ff, #5643fa), url("../../img/nat-7.jpg"); }
  .card__heading {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    text-align: right;
    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(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85)); }
    .card__heading-span--2 {
      background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.85), rgba(40, 180, 133, 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 {
        text-align: center;
        font-size: 1.5rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #eee; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  .card__price-box {
    color: #fff;
    margin-bottom: 8rem; }
  .card__price-only {
    font-size: 1.4rem;
    text-transform: uppercase; }
  .card__price-value {
    font-size: 6rem;
    font-weight: 100; }

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  .story > * {
    transform: skewX(12deg); }
  .story__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    background-color: orange;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative; }
  .story__img {
    height: 100%;
    transform: translateX(-4rem) scale(1.4);
    backface-visibility: hidden;
    transition: all .5s; }
  .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 .5s ease;
    backface-visibility: hidden; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__img {
    transform: translate(-4rem) scale(1);
    filter: blur(3px) brightness(80%); }

.menu {
  position: absolute;
  top: 6rem;
  right: 7rem;
  z-index: 100;
  animation: moveInTop 1s ease;
  animation-fill-mode: backwards; }
  @media (max-width: 60em) {
    .menu {
      display: none;
      position: absolute;
      top: 4rem;
      right: 8rem;
      animation: moveInRight .2s ease;
      animation-fill-mode: backwards; } }
  .menu ul {
    width: 100%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 0; }
    .menu ul li {
      display: inline; }
      @media (max-width: 60em) {
        .menu ul li {
          width: 35rem;
          display: block;
          background-color: rgba(26, 55, 101, 0.98); } }
      .menu ul li:not(:last-child) {
        margin-right: 2rem; }
      .menu ul li a {
        text-transform: uppercase;
        color: #eee;
        text-decoration: none; }
        @media (max-width: 60em) {
          .menu ul li a {
            width: 100%;
            font-size: 2rem;
            padding: 1.5rem; } }

.float-menu {
  background-color: #eee;
  color: #777;
  position: absolute;
  top: 4rem;
  right: 3rem;
  padding: .1rem .3rem;
  border-radius: 15%;
  width: 6rem;
  height: 6rem;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  display: none;
  transition: all .2s;
  animation: appear 1s ease;
  box-shadow: 0.2rem 0.5rem 2rem #000; }
  .float-menu:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0.3rem 0.8rem 2.5rem #000;
    background-color: #51bad2;
    color: #1a3765; }
  @media (max-width: 60em) {
    .float-menu {
      display: block; } }

#btn-menu {
  display: none;
  transition: all .2s; }
  #btn-menu:checked ~ .menu {
    display: block; }

.title {
  display: block;
  width: 100%;
  margin: 0 auto; }

.header {
  height: 75rem;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: bottom;
  position: relative; }
  @media (max-width: 60em) {
    .header {
      height: 65rem; } }
  .header__logo-box {
    position: absolute;
    top: 4rem;
    left: 2rem; }
  .header__logo {
    height: 10rem;
    animation: moveInTop 1s ease-out; }
  .header__text-box {
    position: absolute;
    display: block;
    width: 5rem;
    top: 40%;
    left: 20%;
    text-align: left;
    animation: moveInLeft 1s ease-out;
    transition: all .2s; }

.row {
  max-width: 128rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 60em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media (max-width: 60em) {
    .row {
      max-width: 71rem; } }
  @media (max-width: 37.5em) {
    .row {
      max-width: 61rem; } }
  @media (max-width: 31.25em) {
    .row {
      max-width: 50rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left;
    height: 100%; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 60em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
  .row [class^="footer__col-"] {
    float: left;
    height: 100%; }
    .row [class^="footer__col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 60em) {
        .row [class^="footer__col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 0; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
    @media (max-width: 60em) {
      .row .col-1-of-2 {
        width: 100% !important; } }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
    @media (max-width: 60em) {
      .row .col-1-of-3 {
        width: 100% !important; } }
  .row .footer__col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
    @media (max-width: 60em) {
      .row .col-1-of-4 {
        width: calc((100% - 6rem) / 2); } }
  .row .col-1-of-4__news {
    width: calc((100% - 3 * 6rem) / 4); }
    @media (max-width: 60em) {
      .row .col-1-of-4__news {
        width: 100% !important; } }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 6rem) / 5); }
  .row .col-2-of-3 {
    width: calc( 2 * ((100% - 2 * 6rem) / 3) + 6rem); }
    @media (max-width: 60em) {
      .row .col-2-of-3 {
        width: 100% !important; } }
  .row .footer__col-2-of-3 {
    width: calc( 2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-2-of-4 {
    width: calc( 2 * ((100% - 3 * 6rem) / 4) + 6rem); }
    @media (max-width: 60em) {
      .row .col-2-of-4 {
        width: 100% !important; } }
  .row .col-2-of-4__news {
    width: calc( 2 * ((100% - 3 * 6rem) / 4) + 6rem); }
    @media (max-width: 60em) {
      .row .col-2-of-4__news {
        width: 100% !important; } }
  .row .col-3-of-4 {
    width: calc( 3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }
    @media (max-width: 60em) {
      .row .col-3-of-4 {
        width: 100% !important; } }

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -20vh; }

.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url("../img/nat-4.jpg");
  background-size: cover;
  margin-top: -10rem;
  transform: skewY(-7deg); }
  .section-features > * {
    transform: skewY(7deg); }

.section-a-empresa {
  padding: 14rem 2rem 8rem 2rem;
  position: relative; }
  .section-a-empresa__title {
    text-align: right;
    animation: moveInLeft 1s ease-out; }
    @media (max-width: 60em) {
      .section-a-empresa__title {
        text-align: center; } }
  .section-a-empresa .composition {
    text-align: justify;
    font-size: 1.4rem;
    font-weight: 500;
    animation: appear 1s ease-out; }
    @media (max-width: 60em) {
      .section-a-empresa .composition {
        font-size: 1.6rem; } }
  .section-a-empresa .img-bobina {
    display: block;
    width: 25rem;
    margin: 0 auto;
    animation: appear 1s ease-out; }
    @media (max-width: 60em) {
      .section-a-empresa .img-bobina {
        width: 18rem; } }
  .section-a-empresa .img-etiqueta-big {
    display: block;
    width: 70rem;
    margin: 0 auto;
    animation: moveInBottom 1s ease-out; }
    @media (max-width: 60em) {
      .section-a-empresa .img-etiqueta-big {
        width: 68rem; } }
    @media (max-width: 37.5em) {
      .section-a-empresa .img-etiqueta-big {
        width: 60rem; } }
    @media (max-width: 31.25em) {
      .section-a-empresa .img-etiqueta-big {
        width: 48rem; } }

.section-produtos {
  background-image: url("../img/pattern-dark.jpg");
  padding: 14rem 2rem;
  position: relative; }
  .section-produtos__title {
    width: 24rem;
    animation: moveInLeft 1s ease-out; }
  .section-produtos__composition {
    display: block;
    margin: 0 auto;
    font-size: 1.5rem;
    color: #eee;
    animation: moveInRight 1s ease-out; }
    @media (max-width: 60em) {
      .section-produtos__composition {
        font-size: 1.7rem; } }
  .section-produtos__wrap {
    width: 19rem;
    display: block;
    margin: 0 auto;
    position: relative;
    margin-bottom: 7rem;
    animation: appear 1s ease-out;
    transition: all .2s; }
    .section-produtos__wrap img {
      position: absolute;
      top: 0;
      left: 0;
      height: 8rem;
      z-index: 200; }
      @media (max-width: 37.5em) {
        .section-produtos__wrap img {
          height: 6rem; } }
    .section-produtos__wrap h3 {
      position: absolute;
      top: 4.2rem;
      left: 7.4rem;
      font-size: 1.6rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #eee;
      line-height: 2rem;
      z-index: 199; }
      @media (max-width: 37.5em) {
        .section-produtos__wrap h3 {
          top: 2.6rem;
          left: 5.8rem; } }
    .section-produtos__wrap:hover {
      transform: translateY(-1rem); }

.section-resultados {
  padding: 14rem 2rem;
  position: relative; }
  .section-resultados__title {
    width: 30rem;
    margin-top: 2rem;
    animation: moveInLeft 1s ease-out; }
    @media (max-width: 60em) {
      .section-resultados__title {
        width: 49rem;
        margin-top: 0; } }
    @media (max-width: 37.5em) {
      .section-resultados__title {
        width: 100%;
        margin-top: 0; } }
  .section-resultados__wrap {
    width: 36rem;
    display: block;
    margin: 0 auto;
    position: relative;
    margin-bottom: 8rem;
    animation: moveInRight 1s ease-out;
    transition: all .2s; }
    @media (max-width: 60em) {
      .section-resultados__wrap {
        display: block;
        margin: 2rem auto;
        margin-bottom: 10rem; } }
    .section-resultados__wrap img {
      position: absolute;
      top: 0;
      left: 0;
      height: 12rem;
      z-index: 199; }
    .section-resultados__wrap h3 {
      position: absolute;
      top: 6.8rem;
      left: 8.5rem;
      font-size: 2rem;
      font-weight: 900;
      text-transform: uppercase;
      color: #1a3765;
      line-height: 2rem;
      z-index: 200; }
      .section-resultados__wrap h3 p {
        font-size: 1.3rem;
        font-weight: 600;
        color: #51bad2; }
    .section-resultados__wrap:hover {
      transform: translatey(-1rem); }

.section-contato {
  background-image: url("../img/pattern-light.jpg");
  padding: 14rem 2rem;
  position: relative; }
  .section-contato__form {
    width: 98%;
    margin: 0 auto;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff; }
    .section-contato__form p {
      margin-bottom: 4rem; }
  .section-contato ::-webkit-input-placeholder {
    color: #fff; }
  .section-contato :-moz-placeholder {
    color: #fff; }
  .section-contato ::-moz-placeholder {
    color: #fff; }
  .section-contato :-ms-input-placeholder {
    color: #fff; }
  .section-contato .input-text {
    text-transform: uppercase;
    margin-bottom: .5rem;
    border: #fff 1px solid;
    padding: 1.6rem;
    background-color: transparent;
    color: #fff; }
    .section-contato .input-text--nome {
      width: 40%;
      margin-right: 2px; }
      @media (max-width: 37.5em) {
        .section-contato .input-text--nome {
          width: 100%;
          margin-right: 0; } }
    .section-contato .input-text--email {
      width: 58.5%; }
      @media (max-width: 37.5em) {
        .section-contato .input-text--email {
          width: 100%; } }
    .section-contato .input-text--textarea {
      width: 100%; }
  .section-contato__wrap {
    font-size: 1.6rem;
    color: #fff; }
    .section-contato__wrap h3 {
      text-transform: uppercase;
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 2.5rem;
      margin-bottom: 4rem; }

.section-map {
  position: relative; }

.section-news {
  background-color: #1a3765;
  padding: 8rem 2rem;
  position: relative;
  widows: 100%; }
  .section-news__title {
    text-align: right;
    animation: moveInLeft 1s ease-out; }
    @media (max-width: 60em) {
      .section-news__title {
        text-align: center; } }
  .section-news__form {
    width: 90%;
    display: block;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff; }
    .section-news__form p {
      margin-bottom: 4rem; }
  .section-news ::-webkit-input-placeholder {
    color: #fff; }
  .section-news :-moz-placeholder {
    color: #fff; }
  .section-news ::-moz-placeholder {
    color: #fff; }
  .section-news :-ms-input-placeholder {
    color: #fff; }
  .section-news .input-text {
    text-transform: uppercase;
    border: #fff 1px solid;
    padding: 1.6rem;
    background-color: transparent;
    color: #fff;
    width: 70%; }
    .section-news .input-text--news {
      margin-right: 1.5rem; }
  .section-news p {
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.8rem; }
    @media (max-width: 60em) {
      .section-news p {
        text-align: center; } }

footer {
  background-color: #000;
  position: relative;
  padding: 3rem 0;
  font-size: 1.2rem;
  color: #9f9f9f; }
  @media (max-width: 60em) {
    footer {
      font-size: 1.4rem; } }
  footer p {
    text-align: center; }
