:root {
  --colorMain: var(--color6);
  --colorSecond: var(--color3);
}

.scroll-point {
  position: absolute;
  left: 0;
  height: 5px;
  width: 30px;
}
.scroll-point.start {
  top: 0%;
}
.scroll-point.medium-a {
  top: 40%;
}
.scroll-point.medium-b {
  top: 60%;
}
.scroll-point.end {
  bottom: 0;
}

em {
  font-family: "Redaction";
  font-weight: 10;
}

#header {
  top: -7em;
  -webkit-transition: top 0.8s ease-out;
  transition: top 0.8s ease-out;
}
.loaded #header {
  top: 0;
}
#header .logo {
  display: none;
}

.logo-minnim {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s 0.3s ease-out;
  transition: all 0.5s 0.3s ease-out;
}
.loaded .logo-minnim {
  left: 0;
  opacity: 1;
}

.with-line-v {
  padding-top: 0;
  padding-bottom: 4.5rem;
}
.with-line-v::after {
  top: auto;
  bottom: 0;
}

.step {
  position: relative;
  font-size: 2.8em;
  font-family: "Redaction";
  font-weight: 10;
  text-transform: uppercase;
  padding-right: 1.4em;
}
.step::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.05em;
  background-color: var(--colorText);
  margin: 0.3em 0.5em;
}

.main-content {
  overflow: hidden;
  z-index: 1;
}
.main-content h1 {
  font-weight: 400;
  font-size: 3.2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.main-content h1 .text-anim {
  display: block;
  text-align: right;
  padding-top: 0em;
}
.main-content h2 {
  font-size: 3.2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.main-content h2 em {
  font-family: "Redaction";
  font-weight: 10;
}
.main-content h3,
.main-content .block_title {
  font-size: 2.8em;
  line-height: 1.2;
  text-transform: uppercase;
}
.main-content .block_title {
  margin-bottom: 0.8em;
}
.main-content h4 {
  font-family: "Redaction";
  font-weight: 1;
  font-size: 1.6em;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.2em;
}
.main-content .claim {
  text-align: justify;
}
.main-content .claim h2 {
  font-size: 3.2em;
}
.main-content p {
  line-height: 1.5;
}

.slide {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 25vh;
}
.slide.center,
.slide .center {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 174em;
  padding-left: 5em;
  padding-right: 5em;
}
.slide .short {
  max-width: 138em;
}

.slide-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}

.frame {
  overflow: hidden;
}
.frame video {
  display: block;
  position: absolute;
  top: -1%;
  left: -1%;
  width: 102%;
  height: 102%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.frame.fixed {
  position: fixed;
  z-index: 1;
}
.frame .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section .kpis {
  margin-bottom: max(10vh, 10em);
}
section .kpis h2 {
  margin-bottom: 1em;
}
section .kpis ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3em;
  max-width: 108em;
  margin: 0 auto;
}
section .kpis li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: calc(50% - 1.5em);
      flex-basis: calc(50% - 1.5em);
  position: relative;
  font-size: 2em;
  padding: 0 0 0 2em;
}
section .kpis li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 0.85em;
  height: 0.85em;
  background: url("../img/interface/bullet.svg") no-repeat center;
  background-size: 100% auto;
}
section .faqs {
  max-width: 174.5em;
}
section .faqs h2 {
  max-width: 34em;
  margin: 0 0 1.6em;
}
section .faqs h3 {
  font-size: 2.4em;
  font-weight: 400;
  margin-bottom: 0.6em;
}
section .faqs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 3em;
}
section .faqs li {
  -ms-flex-preferred-size: calc(33.3% - 3em);
      flex-basis: calc(33.3% - 3em);
}
section .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3em;
  padding-left: 3em;
  max-width: 130em;
}
section .cards ul {
  margin: 0 1em 1em 0;
}
section .cards ul li {
  list-style: disc;
  font-size: 1.6em;
  line-height: 1.4;
  margin: 0 0 0.5em 1.6em;
}
section .cards .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 39em;
  min-height: 27em;
  padding: 2.5em 2.2em;
  border-radius: 1.5em;
  background: var(--colorSecond);
  -webkit-transform: translateY(10em);
      -ms-transform: translateY(10em);
          transform: translateY(10em);
  opacity: 0;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s, -webkit-transform 0.6s;
}
section .cards .col .button a {
  margin-bottom: 0;
}
section .cards h2,
section .cards h3 {
  font-weight: 400;
  font-size: 2em;
  margin-bottom: 0.6em;
}
section .cards h2 a,
section .cards h3 a {
  text-decoration: none;
}
.no-touch section .cards h2 a:hover,
.no-touch section .cards h3 a:hover {
  text-decoration: underline;
}
section .cards h4 {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 1em;
}
section .cards h4:before {
  content: "";
  position: absolute;
  top: -0.5em;
  left: -0.2em;
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background: #FFF;
}
section .cards .col.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
section .cards .col.show:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
section .cards .col.show:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
section .cards .col.show:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
section .cards .col.show:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
section .cards .col.show:nth-child(6) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
section .cards .col.show:nth-child(7) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
section .featured-services {
  margin-bottom: 0;
}
section .featured-services h2 {
  text-align: left;
  margin: 0 auto 1.2em;
}
section .featured-services .with-line-v {
  padding-bottom: 3rem;
}
section .featured-services .columns {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 3em;
}
section .featured-services .columns .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 17em;
  margin-bottom: 5em;
}

#slide-1 .slide-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 140em;
  height: calc(100vh - var(--heightHeader));
  padding: 10vh 0;
}
#slide-1 .slide-content {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: min(100%, 100em);
  gap: 8vh;
}
#slide-1 .row {
  position: relative;
  z-index: 20;
}
#slide-1 .r-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 0;
  width: 100%;
}
#slide-1 .r-1 .col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 2em;
}
#slide-1 .r-1 .col:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 30em;
}
#slide-1 .r-1 .col:last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#slide-1 .r-1 .col-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5%;
}
#slide-1 .r-1 h1 {
  max-width: 28ch;
  text-align: justify;
  margin: 0 auto;
}
#slide-1 #frame-1 {
  position: fixed;
  top: calc(50% + var(--heightHeader));
  left: 50%;
  width: 73em;
  max-width: 48vw;
  z-index: 0;
  -webkit-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
          transform: translateY(-30%);
}
#slide-1 #frame-1::after {
  content: "";
  display: block;
  padding-bottom: 78%;
}
#slide-1 #frame-1 video {
  width: auto;
  height: 102%;
}
#slide-1 #frame-1 .mask {
  overflow: hidden;
  background-color: var(--colorMain);
}
#slide-1 #frame-1b {
  position: fixed;
  top: 40%;
  right: 5em;
  left: 5em;
  z-index: 0;
  -webkit-transform: translateX(0vw);
      -ms-transform: translateX(0vw);
          transform: translateX(0vw);
}
#slide-1 .frame-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6em;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 123em;
  margin: 0 0 0 auto;
}
#slide-1 .frame-list .frame {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 45vh;
  overflow: hidden;
}
#slide-1 .frame-list .frame:after {
  content: "";
  display: block;
  padding-bottom: 105%;
}
#slide-1 .frame-list .mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--color4);
  overflow: hidden;
}
#slide-1 .claim {
  width: 40%;
  max-width: 30ch;
  font-size: 2.8em;
  -webkit-transform: translateY(-15%);
      -ms-transform: translateY(-15%);
          transform: translateY(-15%);
}
#slide-1 .claim p {
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.2;
  text-align: justify;
  margin: 0 0 0.8em;
}

#slide-2 {
  margin-bottom: 10vh;
}
#slide-2 .slide-content {
  gap: 6em;
}
#slide-2 .claim {
  margin: 0;
  width: 80vw;
  max-width: 53em;
  z-index: 10;
  margin-bottom: 2em;
}
#slide-2 .claim p {
  text-align: left;
}
#slide-2 h2 {
  font-size: 3.2em;
  margin: 0 20% 0.7em 0;
}
#slide-2 h3 {
  margin-bottom: 0.8em;
}
#slide-2 .slide-content {
  position: relative;
  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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  min-height: calc(100vh - var(--heightHeader));
  z-index: 10;
}
#slide-2 #frame-2a {
  top: 20vh;
  left: 36vw;
  min-height: 22em;
  width: 105em;
  max-width: 11%;
  background: var(--colorSecond);
  overflow: hidden;
}
#slide-2 #frame-2b {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 0;
  overflow: visible;
}
#slide-2 #frame-2b .columns {
  margin-left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#slide-2 #frame-2b .col {
  position: relative;
  min-height: 12em;
}
#slide-2 #frame-2b .col span {
  position: absolute;
  top: 0;
  right: 100%;
  width: 20em;
  height: 7em;
  background: var(--colorMain);
  margin-right: -7em;
}
#slide-2 .block-list {
  max-width: 120em;
}
#slide-2 .block-list .columns {
  gap: 6em;
}
#slide-2 .block-list .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 36em;
  margin-bottom: 2em;
}
#slide-2 .block-list-2cols {
  margin: 0 auto;
}
#slide-2 .block-list-2cols h2 {
  max-width: 14em;
  margin-bottom: 1.6em;
}
#slide-2 .block-list-2cols .columns {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 90em;
  margin: 0 0 5vh;
}
#slide-2 .block-list-2cols .columns .col {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 36em;
  min-width: 40%;
  height: 12em;
  padding: 0 4em;
}
#slide-2 .b-1 {
  margin-bottom: 3em;
}
#slide-2 .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em 0 0;
}
#slide-2 .cta .buttons {
  gap: 2em;
}
#slide-2 .details {
  max-width: 36em;
  padding: 0.5em 0 0;
}
#slide-2 .details p {
  line-height: 1.4;
  font-size: max(1.3em, 10px);
}

#slide-3 .claim {
  max-width: 96em;
  text-align: left;
  margin: 0 auto 6em;
}
#slide-3 .claim .columns {
  gap: 4vw;
}
#slide-3 .claim .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#slide-3 .claim h2 {
  max-width: 19em;
  margin-bottom: 1em;
}
#slide-3 .claim h4 {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-style: normal;
}

#slide-4 #frame-4b {
  position: fixed;
  top: 46vh;
  left: 0;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}
#slide-4 #frame-4b .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90em;
  max-width: none;
}
#slide-4 #frame-4b .col span {
  display: block;
  width: 200%;
  max-width: 10%;
  height: 3em;
  background: var(--colorMain);
}
#slide-4 .slide-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 10;
}
#slide-4 .block h2 {
  margin-bottom: 0.6em;
}
#slide-4 .block p {
  max-width: 50ch;
}
#slide-4 .columns {
  gap: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 58em;
  padding: 1em 5% 0;
  margin: 0 auto;
}
#slide-4 .columns h4 {
  font-size: 2em;
}
#slide-4 .columns p {
  font-size: 2em;
  max-width: none;
}
#slide-4 .columns .col {
  min-height: 10em;
}

#slide-5 {
  min-height: 0;
  margin-bottom: max(10vh, 10em);
}
#slide-5 .slide-content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 0;
  z-index: 10;
}
#slide-5 h3 {
  font-weight: 400;
  margin: 0 0 0.6em;
}
#slide-5 #frame-5 {
  position: fixed;
  top: 34vh;
  left: 0;
  width: 100%;
  height: 36vh;
  max-height: 36em;
  background-color: var(--colorMain);
  z-index: 0;
}

#slide-6 .slide-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
#slide-6 .slide-content {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  min-height: max(80em, 90vh - var(--heightHeader));
}
#slide-6 #frame-6 {
  position: fixed;
  bottom: 10vh;
  left: 0;
  width: 100%;
  height: 36vh;
  max-height: 36em;
  background-color: var(--colorSecond);
  z-index: 0;
}

#slide-7 {
  min-height: 0;
  padding-top: 5em;
  padding-bottom: 25vh;
  margin-bottom: 0;
}
#slide-7 .slide-wrapper {
  min-height: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_block {
  max-width: 68em;
  margin: 0 auto;
}
.contact_block h3 {
  font-weight: 400;
  margin: 0 0 0.6em;
}
.contact_block p {
  margin: 0 0 1em;
}
.contact_block p:last-of-type {
  margin: 0 0 2em;
}
.contact_block .extra-info {
  font-size: max(1.3em, 12px);
  padding-top: 0.8em;
}

body.social-media {
  --colorMain: var(--color4);
  --colorSecond: var(--color5);
}

body.customer-service {
  --colorMain: var(--color1);
  --colorSecond: var(--color3);
}
body.customer-service #slide-1 #frame-1 {
  width: 90em;
  max-width: calc(86vmin - var(--heightHeader));
  margin-left: max(-45em, (43vmin - var(--heightHeader)) * -1);
  -webkit-transform: translateY(calc(-50% + var(--heightHeader)));
      -ms-transform: translateY(calc(-50% + var(--heightHeader)));
          transform: translateY(calc(-50% + var(--heightHeader)));
}
body.customer-service #slide-1 .r-1 h1 {
  max-width: 26ch;
}
body.customer-service #slide-3 .claim h2 {
  text-align: left;
  max-width: 19em;
  margin: 0 auto 1em;
}

body.advertising-campaigns {
  --colorMain: var(--color5);
  --colorSecond: var(--color1);
}
body.advertising-campaigns #slide-2 .claim {
  max-width: 56em;
}

body.seo {
  --colorMain: var(--color6);
  --colorSecond: var(--color1);
}

body.service-detail .logo-minnim {
  position: absolute;
  padding: 0;
  margin-bottom: 0;
}
body.service-detail .intro-container {
  padding-left: 11em;
  padding-right: 11em;
}
body.service-detail .intro {
  position: relative;
  padding: 11em 4em 6em;
  margin-bottom: 6em;
}
body.service-detail .intro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color1);
  z-index: 0;
}
body.service-detail .intro .logo-minnim {
  top: 2.7em;
  left: 0;
  -webkit-transform: translateX(-9em);
      -ms-transform: translateX(-9em);
          transform: translateX(-9em);
}
body.service-detail .intro h1 {
  position: relative;
  text-align: justify;
  max-width: 35ch;
  margin-bottom: 0;
  z-index: 2;
}
body.service-detail section {
  width: 100%;
  padding: 5em 0 10em;
}
body.service-detail section .center {
  max-width: 125em;
}
body.service-detail section .center.short {
  max-width: 86em;
}
body.service-detail section .center .center {
  padding: 0;
}
body.service-detail section .block-text {
  max-width: 26.5em;
  font-size: 2em;
  line-height: 1.5;
  margin: 0 0 3em;
}
body.service-detail section .block-text p {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 1em;
}
body.service-detail section .block-text .button {
  font-size: 0.5em;
}
body.service-detail section .cards {
  margin-bottom: 5em;
}
body.service-detail section .cards .col {
  max-width: 38em;
}
body.service-detail section .contact_block {
  max-width: 68em;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .logo-minnim {
    position: relative;
    left: 0;
    top: 0;
    padding-top: 2em;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-bottom: 2em;
  }
  section .with-line-v {
    padding-bottom: 0;
  }
  section .with-line-v::after {
    display: none;
  }
  section .with-line-v:last-child {
    padding-bottom: 5em;
  }
  section .with-line-v:last-child::after {
    display: block;
  }
  section .kpis {
    max-width: 58em;
  }
  section .kpis ul {
    margin-left: 10%;
  }
  section .kpis li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 0 0 0 1.5em;
  }
  section .cards {
    margin-bottom: 0;
    padding-left: 2.5em;
  }
  section .cards .col {
    -ms-flex-preferred-size: calc(50% - 1.25em);
        flex-basis: calc(50% - 1.25em);
  }
  section .cards .col.show {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  section .cards .col.show:nth-child(odd) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  section .cards .col.show:nth-child(even) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  section .featured-services {
    max-width: 52em;
    margin-left: 0;
    margin-right: 0;
  }
  section .faqs li {
    -ms-flex-preferred-size: calc(50% - 2em);
        flex-basis: calc(50% - 2em);
  }
  .slide {
    margin-bottom: 15em;
  }
  .slide.center,
  .slide .center {
    padding-left: 3em;
    padding-right: 3em;
  }
  .slide .short {
    padding-left: 3em;
    padding-right: 3em;
  }
  #slide-1 {
    margin-bottom: 10em;
  }
  #slide-1 .slide-wrapper {
    height: auto;
    padding: 0;
  }
  #slide-1 .slide-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
  }
  #slide-1 .r-1 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #slide-1 .r-1 .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #slide-1 .r-1 .col-text {
    padding: 0;
  }
  #slide-1 .claim {
    width: 100%;
    padding-top: 90vmin;
  }
  #slide-1 #frame-1 {
    top: 80ch;
    left: 10%;
    width: 80%;
    max-width: 40em;
  }
  #slide-1 #frame-1::after {
    padding-bottom: 150%;
  }
  #slide-1 #frame-1b {
    top: 66ch;
    left: 10%;
    max-width: 80%;
  }
  #slide-2 h2 {
    margin: 0 0 0.7em;
  }
  #slide-2 .block-list {
    max-width: 46ch;
    margin: 0 auto;
  }
  #slide-2 .block-list .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3em;
  }
  #slide-2 .block-list .col {
    margin-bottom: 0;
  }
  #slide-2 .block-list-2cols .columns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3em;
  }
  #slide-2 .block-list-2cols .columns .col {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-preferred-size: calc(48% - 1.5em);
        flex-basis: calc(48% - 1.5em);
    padding: 1em 1em;
  }
  #slide-2 .b-1 {
    margin-bottom: 3em;
  }
  #slide-2 #frame-2a {
    width: 50%;
    min-height: 60vw;
  }
  #slide-2 #frame-2b {
    top: 40%;
    left: 10%;
  }
  #slide-2 #frame-2b .columns {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  #slide-3 .claim .col {
    max-width: 45%;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  #slide-5 {
    margin-bottom: 0;
  }
  #slide-5 #frame-5 {
    top: 10vh;
    height: 85vh;
    max-height: none;
  }
  #slide-5 .slide-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #slide-5 .slide-content {
    min-height: 100vh;
  }
  #slide-6 .slide-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #slide-6 #frame-6 {
    height: 80vh;
    max-height: none;
  }
  #slide-7 {
    padding-bottom: 15em;
  }
  body.social-media #slide-1 .claim {
    padding-top: 100vmin;
  }
  body.ai-web #slide-1 #frame-1,
  body.advertising-campaigns #slide-1 #frame-1,
  body.seo #slide-1 #frame-1 {
    top: 78ch;
    left: 10%;
    width: 80%;
    max-width: 80%;
  }
  body.ai-web #slide-1 #frame-1::after,
  body.advertising-campaigns #slide-1 #frame-1::after,
  body.seo #slide-1 #frame-1::after {
    padding-bottom: 78%;
  }
  body.ai-web #slide-1 .claim,
  body.advertising-campaigns #slide-1 .claim,
  body.seo #slide-1 .claim {
    padding-top: 80vmin;
  }
  body.customer-service #slide-1 #frame-1 {
    left: 10%;
    top: 60ch;
    width: 90em;
    max-width: 80%;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    margin-left: 0;
  }
  body.service-detail .intro-container {
    padding-left: 11em;
    padding-right: 0;
  }
  body.service-detail .intro .center.short {
    padding-left: 1em;
    margin: 0;
  }
  body.service-detail section {
    padding-top: 0;
  }
  body.service-detail section .center.short {
    max-width: 58em;
  }
  body.service-detail section .cards {
    max-width: 80em;
    padding-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto 6em;
  }
  body.service-detail section .cards .col {
    -ms-flex-preferred-size: calc(50% - 1.5em);
        flex-basis: calc(50% - 1.5em);
  }
}
@media only screen and (max-aspect-ratio: 5/4) {
  #slide-1 .frame-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    top: 30%;
    width: 75%;
    margin: 0 0 0 auto;
  }
  #slide-1 .frame-list .frame {
    max-width: 45vh;
    width: 100%;
  }
  #slide-1 .frame-list .frame::after {
    padding-bottom: 42%;
  }
  body.customer-service #slide-1 #frame-1 {
    top: 56ch;
    width: 45%;
    max-width: calc(45vmin - var(--heightHeader));
    left: 48%;
    margin-left: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  body.customer-service #slide-1 #frame-1:after {
    padding-bottom: 150%;
  }
  body.customer-service #slide-1 .r-1 h1 {
    max-width: 26ch;
  }
  body.customer-service #slide-3 .claim h2 {
    text-align: left;
    max-width: 19em;
    margin: 0 auto 1em;
  }
}
@media only screen and (max-aspect-ratio: 5/4) and (max-width: 1024px) {
  body.customer-service #slide-1 #frame-1 {
    top: 56ch;
    left: 10%;
    width: 80%;
    max-width: 80%;
    margin-left: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  body.customer-service #slide-1 #frame-1:after {
    padding-bottom: 150%;
  }
  body.customer-service #slide-1 .claim {
    padding-top: 145vw;
  }
}
@media only screen and (max-width: 768px) {
  section .faqs li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  section .cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  section .cards .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  section .cards .col.show:nth-child(even) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .slide {
    margin-bottom: 10em;
  }
  #slide-1 .frame-list {
    margin: 0;
  }
  body.service-detail .intro {
    padding: 10em 0 0;
    margin-bottom: 5em;
  }
  body.service-detail .intro:before {
    top: 60%;
    left: 2em;
    width: 85%;
    height: 80%;
  }
  body.service-detail .intro .logo-minnim {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  body.service-detail .intro .center.short {
    padding: 0;
  }
  body.service-detail .intro-container {
    padding-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  body.service-detail section .cards {
    max-width: 40em;
  }
  body.service-detail section .cards .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 40em;
    padding: 3em 4em 1.5em;
  }
  body.service-detail section .b-1 {
    padding: 0 2em;
  }
}
.dark-mode section .kpis li:before {
  background-image: url("../img/interface/bullet-white.svg");
}/*# sourceMappingURL=service.css.map */