
/* Fonts */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url('fonts/roboto-v20-latin-100.eot'); /* IE9 Compat Modes */
  src: local('Roboto Thin'), local('Roboto-Thin'),
       url('fonts/roboto-v20-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-100.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-100.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-100.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-100.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/roboto-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
       url('fonts/roboto-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-300.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/roboto-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
       url('fonts/roboto-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Roboto Bold'), local('Roboto-Bold'),
       url('fonts/roboto-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/roboto-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/roboto-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/roboto-v20-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}


/* Generic rules */

:focus {
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  border: 0;
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: Roboto, sans-serif, arial, Helvetica;
  color: #fff;
  background-color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

h1 {
  font-size: 36px;
  line-height: 1.12;
  word-wrap: break-word;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

.striked {
  text-decoration: line-through;
}


/* Header */

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .logo a {
  display: block;
  padding: 20px 24px 24px;
}

header .logo img {
  display: block;
  width: 165px;
  max-width: 100%;
}

header .langs {
  padding-right: 24px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-left: 12px;
}

header .langs > *:first-child {
  margin-left: 0;
}

header .langs span {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  
  header .logo img {
    max-width: 86%;
  }
  
}

@media screen and (min-width: 769px) {
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .logo a {
    padding: 37px 0 43px 40px;
  }
  
  header .logo img {
    width: 196px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .logo a {
    padding: 34px 0 40px 56px;
  }
  
  header .logo img {
    width: 257px;
  }
  
  header .langs {
    padding-right: 56px;
  }
  
}

@media screen and (min-width: 1201px) {
  
  header .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}

section {
  overflow: hidden;
}

section .primary {
  padding: 44px 24px 0;
}

section h1 {
  color: #e4e4e4;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.11;
  margin: 16px 0 24px;
}

section h3 {
  color: #e4e4e4;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.67;
  letter-spacing: 3px;
  text-transform: uppercase;
}

section .cta a {
  font-size: 18px;
  display: flex;
  align-items: center;
}

section .cta a span.arrow {
  background-color: #f62c2c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  border-radius: 22px;
  margin-left: 16px;
}

section .cta a img {
  width: 26px;
}

section .info > .cta {
  padding: 80px 24px 0;
}

section .info .img {
  margin: 80px 24px;
}

section .img .holder {
  width: 262px;
  margin: 0 auto;
  position: relative;
}

section .img .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

section .img .overlay::after {
  content: " ";
  width: 600px;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  background: linear-gradient(to bottom, transparent 0%, black 25%);
  filter: blur(50px);
  opacity: 0.9;
  transform: translate(-120px, 450px) rotate(0);
  animation: shadow-sm 10s linear infinite alternate;
}

@keyframes shadow-sm {
  0% {
    opacity: 0.9;
    transform: translate(-120px, 450px) rotate(0);
    filter: blur(50px);
  }
  10% {
    opacity: 0.9;
    transform: translate(-120px, 450px) rotate(0);
    filter: blur(25px);
  }
  65% {
    opacity: 0.95;
    transform: translate(80px, -45px) rotate(-90deg);
    filter: blur(0);
  }
  85% {
    opacity: 0.9;
    transform: translate(120px, -325px) rotate(-120deg);
    filter: blur(25px);
  }
  100% {
    opacity: 0.9;
    transform: translate(120px, -325px) rotate(-120deg);
    filter: blur(50px);
  }
}

@keyframes shadow-lg {
  0% {
    opacity: 0.9;
    transform: translate(-160px, 600px) rotate(0);
    filter: blur(50px);
  }
  10% {
    opacity: 0.9;
    transform: translate(-160px, 600px) rotate(0);
    filter: blur(25px);
  }
  65% {
    opacity: 0.95;
    transform: translate(116px, 0) rotate(-90deg);
    filter: blur(0);
  }
  85% {
    opacity: 0.9;
    transform: translate(200px, -250px) rotate(-120deg);
    filter: blur(25px);
  }
  100% {
    opacity: 0.9;
    transform: translate(200px, -250px) rotate(-120deg);
    filter: blur(50px);
  }
}

section .offer {
  color: #cacaca;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  margin-top: 24px;
}

section .container > .img {
  display: none;
}

section .hlights {
  padding: 0 24px;
}

section .hlights .items {
  display: flex;
}

section .hlights .items .group {
  flex: 1 0 100%;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.2s linear, transform 0.2s linear;
}

section .hlights .items .group.active:first-child {
  opacity: 1;
  transform: translateX(0);
}

section .hlights .items .group.active:last-child {
  opacity: 1;
  transform: translateX(-100%);
}

section .hlights .item {
  color: #cacaca;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.38;
  border-top: 1px solid #272727;
  padding-top: 3px;
  margin-bottom: 30px;
}

section .hlights h4 {
  color: #cacaca;
  font-weight: 700;
  line-height: 1.38;
  margin: 0;
}

section .hlights .controls {
  display: flex;
  align-items: center;
}

section .hlights .controls .lines {
  display: flex;
  align-items: center;
}

section .hlights .controls .lines > div {
  width: 24px;
  height: 1px;
  background-color: #484848;
  margin-right: 8px;
  transition: background-color .15s linear; 
}

section .hlights .controls .lines .active {
  background-color: #fff;
}

section .hlights .controls .arrow {
  height: 30px;
  width: 30px;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 18px;
  transition: transform .2s linear;
}

section .hlights .controls .arrow.reverse {
  transform: rotate(180deg);
}

section .hlights .controls .arrow img {
  width: 22px;
}

@media screen and (min-width: 769px) {
  
  section .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 44px 40px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  section .info {
    flex: 1 1 auto;
    margin-right: 50px;
  }
  
  section .primary {
    padding: 0;
  }
  
  section h1 {
    margin-bottom: 32px;
    letter-spacing: 1px;
  }
  
  section h3 {
    font-size: 14px;
    line-height: 1.43;
  }
  
  section .cta a {
    font-size: 22px;
  }
  
  section .hlights {
    padding: 0;
    margin-top: 85px;
    max-width: 365px;
  }
  
  section .info > .cta {
    display: none;
  }

  section .info .img {
    display: none;
  }

  section .container > .img {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  section .hlights .controls .arrow {
    height: 22px;
    width: 22px;
    border-radius: 12px;
    margin-left: 12px;
  }
  
  section .hlights .controls .arrow img {
    width: 16px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section .container {
    max-width: 1000px;
    padding: 64px 56px;
  }
  
  section .img .holder {
    width: 300px;
  }

  section .img .overlay::after {
    width: 800px;
    height: 700px;
    transform: translate(-160px, 600px) rotate(0);
    animation: shadow-lg 10s linear infinite alternate;
  }
  
}

@media screen and (min-width: 1201px) {
  
  section .container {
    max-width: 1075px;
    margin: 0 auto;
  }
  
  section .img .holder {
    width: 350px;
  }
  
}


/* Footer */

footer {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  margin-top: 125px;
}

footer .container {
  padding: 24px;
}

footer .menu a {
  color: #fff;
  margin-right: 20px;
  display: inline-block;
}

footer .menu a:hover {
  text-decoration: underline;
}
 
footer .copyright {
  padding-top: 6px;
  opacity: 0.5;
}

@media screen and (min-width: 769px) {
  
  footer .container {
    padding: 24px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 56px;
  }

  footer .menu {
    float: left;
    position: relative;
    z-index: 1;
  }

  footer .copyright {
    text-align: right;
    font-size: 13px;
    padding-top: 0;
  }
  
}


@media screen and (min-width: 1201px) {
  
  footer {
    margin-top: 36px;
  }
  
}

/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}
