*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box
}

* {
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0
}

ul[role="list"],
ol[role="list"] {
  list-style: none
}

html:focus-within {
  scroll-behavior: smooth
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto
}

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

input,
button,
textarea,
select {
  font: inherit
}

@media(prefers-reduced-motion:reduce) {
  html:focus-within {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: .01ms !important;
            transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}
/* START ===> INCLUDE FONTS */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/Montserrat-Regular.woff) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/Montserrat-Medium.woff) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/Montserrat-SemiBold.woff) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/assets/fonts/Montserrat-Bold.woff) format('woff2');
}

/* END ===> INCLUDE FONTS */








/* CSS MEDIA */
/* @media screen and (min-width: 0px)  */
/* @media screen and (min-width: 380px)  */
/* @media screen and (min-width: 768px)  */
/* @media screen and (min-width: 1200px)  */







/* START ===> BASE STYLES */

:root {
  --bg-color-main: #212121;
  --bg-color-secondary: #F7F7F7;

  --text-color-main: #212020;
  --text-color-secondary: #666666;
  --text-color-white: #ffffff;
  --text-color-dark-white: #EFEFEF;

  --active-color: #418EFF;
  --active-gradient: linear-gradient(90deg, #2475ED 0%, #77AEFF 100%);

  --other-color-graphite: #2A2B2B;

  --font-family-main: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  max-width: 100vw;

  position: relative;
  color: #212020;
  color: var(--text-color-main);
}

main {
  width: 100%;
  min-height: 100%;
  background-color: #212121;
  background-color: var(--bg-color-main);

  position: relative;
}

.container {
  width: 100%;
  height: 100%;

  margin: 0 auto;
  padding: 0 15px;
}

section {
  width: 100%;
}

section:not(.slogans) {
  overflow: hidden;
}

a {
  color: #EFEFEF;
  color: var(--text-color-dark-white);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.aspect-ratio {
  height: 0;
  position: relative;
}

.aspect-ratio img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;

  top: 0;
  left: 0;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 47px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    padding: 0;
    width: 1110px;
    margin: 0 auto;
  }
}


/* end ===> BASE STYLES */







/* START ===> TYPOGRAPHY */

html {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-family: var(--font-family-main);
}

html {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 43px;

  text-transform: uppercase;
  color: #EFEFEF;
  color: var(--text-color-dark-white);
}

h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;

  text-transform: uppercase;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;

  text-transform: uppercase;
}

.subtitle1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
}

.subtitle2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;

  text-transform: uppercase;
}

.caption {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 20px;
    line-height: 26px;
  }

  h1 {
    font-size: 52px;
    line-height: 63px;
  }

  h2 {
    font-size: 48px;
    line-height: 60px;
  }

  .subtitle1 {
    font-size: 28px;
    line-height: 34px;
  }

  .subtitle2 {
    font-size: 22px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 20px;
    line-height: 26px;
  }

  h2 {
    font-size: 52px;
    line-height: 66px;
  }

  .subtitle1 {
    font-size: 32px;
    line-height: 39px;
  }

  .subtitle2 {
    font-size: 24px;
    line-height: 32px;
  }
}

/* END ===> TYPOGRAPHY */









/* START ===> HEADER */

header {
  top: 0;
  left: 0;
  z-index: 15;
  position: fixed;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  width: 100%;
  padding: 10px 0 20px 0;
  background-color: #212121;
  background-color: var(--bg-color-main);
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  -webkit-transition: color .5s;

  transition: color .5s;
  color: #EFEFEF;
  color: var(--text-color-dark-white);
}

header .header__icon {
  width: 207px;
}

header .header__burger {
  cursor: pointer;
  outline: none;
}

header .header__nav {
  display: none;
  list-style: none;

  -webkit-transition: color .5s;

  transition: color .5s;
  color: #ffffff;
  color: var(--text-color-white);
}

header .header__nav li:not(:last-of-type) {
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  header .header__icon {
    width: 269px;
  }

  header .header__burger {
    display: none;
  }

  header .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* END ===> HEADER */









/* START ===> MOBILE MENU */

.mobile_menu {
  display: block;
  overflow: hidden;

  width: 100%;
  height: 100%;

  padding-top: 100px;
  padding-bottom: 100px;

  top: 0;
  left: 0;
  z-index: 10;
  position: fixed;

  background-color: #212121;

  background-color: var(--bg-color-main);
  pointer-events: none;

  opacity: 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.mobile_menu__nav {
  color: #ffffff;
  color: var(--text-color-white);
  list-style: none;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  width: 100%;
  height: 100%;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.mobile_menu__nav li:not(:first-child) {
  margin-top: 24px;
}

.header__burger .close {
  display: none;
}

body.open .header__burger .close {
  display: block;
}

body.open .header__burger .burger {
  display: none;
}

body.open .mobile_menu {
  opacity: 1;
  pointer-events: initial;
}

body.open .mobile_menu .mobile_menu__nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}


@media screen and (min-width: 768px) {
  .mobile_menu {
    display: none;
  }
}

/* END ===> MOBILE MENU */









/* START ===> BUTTON */

button,
button::before {
  -webkit-transition: all 250ms;
  transition: all 250ms;
}

button {
  cursor: pointer;
  padding: 14px 90px;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;

  color: #212020;

  color: var(--text-color-main);
  background: #418EFF;
  background: var(--active-color);

  border: none;
  outline: none;
  overflow: hidden;
}

button:active {
  color: #ffffff;
  color: var(--text-color-white);
}

button::before {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;

  width: 100%;
  height: 100%;

  content: '';
  background: -webkit-gradient(linear, left top, right top, from(#2475ED), to(#77AEFF));
  background: linear-gradient(90deg, #2475ED 0%, #77AEFF 100%);
  background: var(--active-gradient);
}

button:hover::before {
  opacity: 0;
}

button:active::before {
  opacity: 1;
}

/* ==== */

button.main-button {
  z-index: 8;
  position: fixed;

  left: 50%;
  bottom: 26px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  button {
    padding: 20px 68px;
  }

  button.main-button {
    bottom: 20px;
  }
}

/* END ===> BUTTON */









/* START ===> SECTION PREVIEW */

section.preview {
  height: 100vh;

  position: relative;
  color: #ffffff;
  color: var(--text-color-white);
}

section.preview .container {
  position: relative;
}

section.preview .preview__content {
  z-index: 1;
  position: absolute;

  left: 50%;
  top: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);

  width: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.preview .preview__content h1 {
  max-width: 300px;
  text-align: center;
}

section.preview .preview__content img {
  max-width: 290px;
  margin-bottom: 10px;
}

@media screen and (min-width: 380px) {
  section.preview .preview__content img {
    max-width: 340px;
    margin-bottom: 20px;
  }

  section.preview .container::before,
  section.preview .container::after {
    content: '';
    display: block;
    pointer-events: none;

    width: 100%;
    height: 100%;

    top: 0;
    position: absolute;
    background-repeat: no-repeat;
  }

  section.preview .container::before {
    left: -106px;
    background-size: auto 446px;
    background-position: left calc(100% - 40px);
    background-image: url(/assets/images/Traffis.png);
  }

  @supports (background-image: url(../images/Traffis@2x.png)) {
    section.preview .container::before {
      background-image: url(/assets/images/Traffis@2x.png);
    }
  }

  section.preview .container::after {
    right: -80px;
    background-size: auto 390px;
    background-position: right calc(100% - 80px);
    background-image: url(/assets/images/pepper.png);

  }
  @supports (background-image: url(../images/pepper@2x.png)) {
    section.preview .container::after {
      background-image: url(/assets/images/pepper@2x.png);
    }
  }
}

@media screen and (min-width: 768px) {
  section.preview .preview__content img {
    max-width: 440px;
    margin-bottom: 17px;
  }

  section.preview .preview__content h1 {
    max-width: 640px;
  }

  section.preview .preview__content {
    top: calc(12% + 100px);
  }

  section.preview .container::before {
    left: 47px;
    background-size: auto 368px;
    background-position: left 85%;
  }

  section.preview .container::after {
    right: 47px;
    background-size: auto 292px;
    background-position: right 70%;
  }
}

@media screen and (min-width: 1200px) {
  section.preview .container::before {
    left: 0;
    background-size: auto 436px;
  }

  section.preview .container::after {
    right: 0;
    background-size: auto 360px;
  }
}

/* END ===> SECTION PREVIEW */









/* START ===> SECTION PROBLEMS */

section.slogans {
  position: relative;
}

section.slogans .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  
  -webkit-box-align: center;
  
      -ms-flex-align: center;
  
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pseudo-image,
section.slogans .image {
  width: 100%;
  max-width: 1110px;

  height: 100vh;
}

section.slogans .image {
  top: 0;
  position: sticky;
  overflow: hidden;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.slogans .image .img {
  width: 80%;
  padding-top: 100%;

  opacity: 0.2;
  pointer-events: none;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  margin: 0 auto;
}

section.slogans .text {
  padding-bottom: 100px;

  z-index: 10;

  width: 100%;
  color: #ffffff;
  color: var(--text-color-white);
}

section .slogans__item:not(:first-of-type) {
  margin-top: 200px;
}

section .slogans__item:nth-child(even) {
  text-align: right;
}

@media screen and (min-width: 768px) {
  section.slogans .image .img {
    width: 80%;
    padding-top: 55.10869565217391%;
  }

  section.slogans .text {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  section .slogans__item:not(:first-of-type) {
    margin-top: 320px;
  }
}

@media screen and (min-width: 1200px) {
  section.slogans .text {
    padding-bottom: 220px;
  }

  section .slogans__item:not(:first-of-type) {
    margin-top: 280px;
  }
}

/* END ===> SECTION PROBLEMS */









/* START ===> SECTION TRAFFIS */

section.traffis {
  padding: 60px 0 60px;
  background-color: #F7F7F7;
  background-color: var(--bg-color-secondary);
}

section.traffis p {
  color: #666666;
  color: var(--text-color-secondary);
}

section.traffis .traffis__description p {
  margin-top: 16px;
  margin-bottom: 8px;
}

section.traffis .traffis__description img {
  width: 100%;
  max-width: 290px;
}

section.traffis .traffis__bullets {
  margin-top: 38px;
}


section.traffis .traffis__bullets-item h3 {
  margin-top: 20px;
  margin-bottom: 8px;
}


section.traffis .traffis__bullets-item:not(:first-child) {
  margin-top: 40px;
}




@media screen and (min-width: 768px) {
  section.traffis {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  section.traffis .container {
    position: relative;
  }

  section.traffis .traffis__description img {
    top: 0;
    right: 47px;
    width: 290px;
    position: absolute;
  }

  section.traffis .traffis__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 300px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  section.traffis .traffis__bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 640px;
    margin-top: 40px;
  }

  section.traffis .traffis__bullets-item:not(:first-child) {
    margin-top: 46px;
  }

  section.traffis .traffis__bullets-item {
    margin-top: 46px;
    margin-right: 30px;
    width: calc(50% - 30px);
  }
}

@media screen and (min-width: 1200px) {
  section.traffis .traffis__bullets {
    max-width: 760px;
  }

  section.traffis .traffis__description {
    padding-right: 360px;
  }

  section.traffis .traffis__description img {
    right: 0;
    width: 350px;
  }
}


/* END ===> SECTION TRAFFIS */









/* START ===> SECTION GREEN */

section.green {
  text-align: center;
  color: #ffffff;
  color: var(--text-color-white);
  background-image: -webkit-gradient(linear, left top, right top, from(#2475ED), to(#77AEFF));
  background-image: linear-gradient(90deg, #2475ED 0%, #77AEFF 100%);
  background-image: var(--active-gradient);
}

section.green p {
  padding: 60px 0;
}

@media screen and (min-width: 380px) {
  section.green p {
    padding: 100px 0;
  }
}

@media screen and (min-width: 768px) {
  section.green p {
    padding: 80px 0;
  }
}

/* END ===> SECTION GREEN */









/* START ===> SECTION DESIGN */

section.iphones {
  background-color: #F7F7F7;
  background-color: var(--bg-color-secondary);
  position: relative;

  padding-top: 60px;
  padding-bottom: 70px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.iphones .iphones__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;

  margin: 0 -15px 0 -45px;
  padding: 0 15px;

  margin-top: 32px;
}

section.iphones .iphones__item .aspect-ratio {
  padding-top: 216.66666666666665%;
}

section.iphones .iphones__item {
  width: 208px;
  min-width: 208px;
  margin-left: 30px;

  border-radius: 26px;
  background-color: #E2E2E2;
  border: 5px solid #2A2B2B;
  border: 5px solid var(--other-color-graphite);

  overflow: hidden;
  position: relative;
}

section.iphones .iphones__item::before,
section.iphones .iphones__item::after {
  top: 5px;
  left: 50%;
  z-index: 5;
  position: absolute;

  content: '';
  display: block;

  height: 8px;
  border-radius: 26px;

  background-color: #2A2B2B;

  background-color: var(--other-color-graphite);
}

section.iphones .iphones__item::before {
  width: 26px;
  -webkit-transform: translateX(calc(-50% - 7px));
          transform: translateX(calc(-50% - 7px));
}

section.iphones .iphones__item::after {
  width: 8px;
  -webkit-transform: translateX(calc(-50% + 16px));
          transform: translateX(calc(-50% + 16px));
}

@media screen and (min-width: 768px) {
  section.iphones {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  section.iphones .iphones__content {
    margin: 0 -47px 0 -77px;
    padding: 0 47px;

    margin-top: 32px;
  }

  section.iphones .iphones__item {
    width: calc(25% - 30px);
    min-width: 0;
    min-width: initial;

    border-radius: 26px;
    background-color: #E2E2E2;
    border: 5px solid #2A2B2B;
    border: 5px solid var(--other-color-graphite);

    position: relative;
    overflow: hidden;
  }
}

@media screen and (min-width: 1200px) {
  section.iphones .iphones__content {
    margin-top: 40px;
  }
}

/* END ===> SECTION DESIGN */









/* START ===> SECTION SOLUTIONS */

section.solutions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

  color: #ffffff;

  color: var(--text-color-white);
  background-color: #212121;
  background-color: var(--bg-color-main);

  padding: 60px 0px 65px;
}

section.solutions .solutions__content {
  width: 100%;
  margin-top: 32px;
}

section.solutions .solutions__content-item:not(:first-child) {
  margin-top: 22px;
}

section.solutions .solutions__content-item-image {
  width: 100%;
  padding-top: 56.25%;

  overflow: hidden;
  position: relative;

  border-radius: 16px;
  background-color: #2A2B2B;
  background-color: var(--other-color-graphite);
}

section.solutions .solutions__content-item-problem {
  margin-top: 16px;
  margin-bottom: 8px;
}

section.solutions .solutions__content-item-solution {
  color: #666666;
  color: var(--text-color-secondary);
}

@media screen and (min-width: 380px) {
  section.solutions .solutions__content-item:not(:first-child) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  section.solutions {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  section.solutions .solutions__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -2px;
    margin-left: -20px;
    width: calc(100% + 30px);
  }

  section.solutions .solutions__content-item-image {
    border-radius: 24px
  }

  section.solutions .solutions__content-item:not(:first-child) {
    margin-top: 34px;
  }

  section.solutions .solutions__content-item {
    margin-top: 34px;
    margin-left: 30px;
    width: calc(50% - 30px);
  }
}

@media screen and (min-width: 1200px) {
  section.solutions .solutions__content {
    margin-top: 6px;
  }
}

/* END ===> SECTION SOLUTIONS */









/* START ===> FOOTER */

footer {
  width: 100%;

  color: #ffffff;

  color: var(--text-color-white);
  background-color: #212121;
  background-color: var(--bg-color-main);
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

  padding-top: 32px;
  padding-bottom: 143px;
}

footer img {
  width: 234px;
  height: 50px;
}

footer p {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 800;
  line-height: 27px;
}

@media screen and (min-width: 380px) {
  footer img {
    width: 269px;
  }

  footer .container {
    padding-bottom: 155px;
  }
}

@media screen and (min-width: 768px) {
  footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    padding-top: 45px;
    padding-bottom: 145px;
  }

  footer p {
    margin: 0;
  }
}

/* END ===> FOOTER */
