@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap");
html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1290px) {
  html {
    font-size: 20px;
  }
}

body {
  background: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

@media (min-width: 1290px) {
  .container {
    max-width: 1290px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px;
  z-index: 10;
  opacity: 1;
  transition: opacity 150ms ease, background 150ms ease;
  background: rgba(0, 0, 0, 0);
}
.site-header.nav-up {
  opacity: 0;
  pointer-events: none;
}
.site-header.nav-down {
  background: rgb(0, 0, 0);
}
@media (min-width: 992px) {
  .site-header {
    padding: 25px;
  }
}
.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.site-header__logo {
  max-width: 150px;
}
@media (min-width: 992px) {
  .site-header__logo {
    max-width: 305px;
  }
}
.site-header__action {
  display: flex;
}
.site-header__action strong {
  color: #EF4135;
  font-size: 22px;
  font-weight: 900;
  margin-top: 10px;
  display: none;
}
@media (min-width: 992px) {
  .site-header__action strong {
    display: inline-block;
    font-size: 30px;
    margin-right: 20px;
  }
}
.site-header__action .btn-primary {
  font-weight: 900;
  background-color: #EF4135;
  border-color: #EF4135;
  text-transform: uppercase;
  font-size: 21px;
}
.site-header__buttons {
  display: flex;
  flex-direction: column;
}
.site-header__buttons .btn-sm {
  background-color: #666666;
  margin-top: 5px;
  font-size: 18px;
}
.site-header__mobile-number {
  display: block;
  background-color: #EF4135;
  border-color: #EF4135;
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 21px;
  padding: 5px;
}
@media (min-width: 992px) {
  .site-header__mobile-number {
    display: none;
  }
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 992px) {
  .site-navigation {
    width: auto;
  }
}
.site-navigation__item {
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  position: relative;
  padding: 5px;
  transition: color 200ms ease;
  font-size: 16px;
}
@media (min-width: 992px) {
  .site-navigation__item {
    font-size: 20px;
  }
}
.site-navigation__item:first-of-type {
  margin-left: 15px;
}
@media (min-width: 992px) {
  .site-navigation__item:first-of-type {
    margin-right: 80px;
  }
}
.site-navigation__item:before {
  background: #EF4135;
  width: 5px;
  content: "";
  height: 100%;
  position: absolute;
  left: -10px;
  top: 0;
  z-index: -1;
  transition: width 200ms ease;
}
@media (min-width: 992px) {
  .site-navigation__item:before {
    left: -15px;
  }
}
.site-navigation__item strong {
  font-weight: 900;
}
.site-navigation__item:hover {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-navigation__item:hover::before {
    width: calc(100% + 30px);
  }
}

.section {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section {
    flex-direction: row;
    height: 800px;
    margin-bottom: 100px;
  }
}
.section__wrapper {
  height: 100%;
  align-items: center;
  position: relative;
}
.section__content {
  padding: 20px;
}
@media (min-width: 768px) {
  .section__content {
    padding: 15px;
  }
}
.section__content strong {
  font-weight: 900;
}
.section__content cite {
  color: #999999;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  display: block;
  text-transform: uppercase;
}
.section__content h2 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.section__content h2 span {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 1.2;
}
.section__content h2 span:nth-of-type(2) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section__content h2 span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #EF4135;
    transform: translateX(-101%);
    animation: a-ltr-after 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    animation-play-state: paused;
  }
  .section--visible .section__content h2 span:after {
    animation-play-state: running;
  }
  .section__content h2 span:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    animation: a-ltr-before 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    transform: translateX(0);
    animation-play-state: paused;
  }
  .section--visible .section__content h2 span:before {
    animation: a-ltr-before 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    animation-play-state: running;
  }
  .section--visible .section__content h2 span:nth-of-type(1)::before, .section--visible .section__content h2 span:nth-of-type(1)::after {
    animation-delay: 0s;
  }
  .section--visible .section__content h2 span:nth-of-type(2)::before, .section--visible .section__content h2 span:nth-of-type(2)::after {
    animation-delay: 0.5s;
  }
}
@media (min-width: 992px) {
  .section__content h2 {
    font-size: 36px;
  }
}
.section__img {
  height: 450px;
  width: 100%;
  margin-bottom: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .section__img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    background-size: contain;
    animation: blur 1.75s cubic-bezier(0.77, 0, 0.18, 1) 1s forwards;
    animation-play-state: paused;
    opacity: 0;
    filter: blur(20px);
  }
}
.section__img--1 {
  background-image: url("../assets/img/section--1.jpg");
}
.section__img--2 {
  background-image: url("../assets/img/section--2.jpg");
}
.section__img--3 {
  background-image: url("../assets/img/section--3.jpg");
}
.section__img--4 {
  background-image: url("../assets/img/section--4.jpg");
}
.section__img--intro {
  background-image: url("../assets/img/intro-cover-mobile.jpg");
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  filter: blur(0px);
  opacity: 1;
  transition: none;
}
@media (min-width: 768px) {
  .section__img--intro {
    background-image: url("../assets/img/intro-cover.jpg");
  }
}
.section--intro {
  height: 100vh;
  padding-top: 100px;
  margin-bottom: 50px;
  flex-direction: row;
}
@media (min-width: 768px) {
  .section--intro {
    height: 100vh;
  }
}
.section--intro h1 {
  line-height: 1;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 30px;
}
@media (min-width: 768px) {
  .section--intro h1 {
    font-size: 50px;
    margin-bottom: 50px;
  }
}
.section--intro__logo {
  height: auto;
  width: 180px;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .section--intro__logo {
    display: none;
  }
}
.section--intro span {
  font-size: 120%;
  display: block;
  margin-top: 10px;
}
.section--intro .section__wrapper {
  align-items: flex-end;
}
@media (min-width: 768px) {
  .section--intro .section__wrapper {
    align-items: center;
  }
}
.section--intro .section__content {
  margin-bottom: 10vh;
}
.section--intro .container {
  height: 100%;
  position: relative;
}
.section--intro__video {
  display: none;
}
@media (min-width: 768px) {
  .section--intro__video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
  }
}

.intro__down {
  animation: bounce 1s infinite alternate;
  position: absolute;
  left: 0;
  bottom: 20px;
  padding-left: 30px;
  box-sizing: content-box;
  max-width: 25px;
  height: auto;
}
@media (min-width: 992px) {
  .intro__down {
    margin-left: 8.333333%;
    padding-left: 15px;
    max-width: none;
  }
}
.intro__play {
  color: #EF4135;
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  align-items: center;
  transition: color 200ms ease;
}
.intro__play:hover {
  text-decoration: none;
  color: #fff;
}
.intro__play:hover img {
  filter: grayscale(100%) brightness(100%);
}
.intro__play img {
  margin-right: 15px;
  transition: all 200ms ease;
}

.about {
  color: #000;
  background: #fff;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 0px;
  font-size: 20px;
}
@media (min-width: 992px) {
  .about {
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 0px;
  }
}
.about h2 {
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 30px 0;
}
.about__bar {
  background: #EF4135;
  color: #fff;
  padding: 2rem;
  margin-top: 4rem;
}

.contact {
  background: #f6f6f6;
  padding: 80px 0;
  color: #000;
  font-size: 15px;
}
.contact.safr {
  padding: 260px 0 80px;
}
.contact h2 {
  font-weight: 900;
  color: #EF4135;
  margin-bottom: 30px;
}
.contact strong {
  display: block;
  margin-bottom: 10px;
}
.contact .form-control {
  font-size: 15px;
  border-radius: 0;
  border-color: #707070;
}
.contact .custom-control-label::before {
  border-color: #707070;
}
.contact .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #EF4135;
  background-color: #EF4135;
}
.contact .custom-control-label {
  display: flex;
  align-items: center;
}
.contact .btn-primary {
  font-weight: 900;
  background-color: #EF4135;
  border-color: #EF4135;
  text-transform: uppercase;
  font-size: 21px;
  margin-top: 20px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.actions {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  position: relative;
  padding-bottom: 10px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .actions {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .actions:before {
    background: #EEEEEE;
    width: 6px;
    height: 100%;
    left: 50%;
    content: "";
    position: absolute;
  }
}
.actions h4 {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .actions h4 {
    font-size: 30px;
  }
}
.actions__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
.actions__button {
  background: #EF4135;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  width: 100%;
  transition: background 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
@media (min-width: 992px) {
  .actions__button {
    font-size: 24px;
  }
}
.actions__button:hover {
  text-decoration: none;
  background: #ed2b1d;
  color: #fff;
}

.share {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .share {
    margin: 20px 0 50px;
  }
}
.share a {
  color: #EF4135;
  display: flex;
  align-items: center;
  margin: 0 10px 0 20px;
  font-size: 18px;
  font-weight: bold;
  transition: color 200ms ease;
}
.share a img {
  margin-right: 10px;
  transition: all 200ms ease;
}
.share a:hover {
  color: #000;
  text-decoration: none;
}
.share a:hover img {
  filter: grayscale(100%);
}
.share a span {
  display: none;
}
@media (min-width: 992px) {
  .share a span {
    display: block;
  }
}

.footer {
  background: #fff;
  padding: 80px 0;
}
.footer p {
  color: #333333;
  font-size: 14px;
  margin: 0;
}
.footer img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .footer img {
    max-width: none;
  }
}
.footer .cr {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer .cr {
    flex-direction: row;
    margin-top: 0;
    text-align: left;
  }
}
.footer .cr img {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .footer .cr img {
    margin-right: 30px;
  }
}

@media (min-width: 768px) {
  .section--visible .section__img {
    animation-play-state: running;
  }
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@keyframes a-ltr-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes a-ltr-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes blur {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

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