:root {
  --SectionBackColor: #FFF2E3;
  --CaseColor1: #000000;
  --CaseColor2: #aaaaaa;
}

.main-content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 5em 0 8em;
}
.main-content h1 {
  font-family: "Redaction";
  font-weight: 10;
}

.header-content {
  width: 100%;
}
.header-content .center {
  position: relative;
  max-width: 137em;
}
.header-content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-content .block p {
  margin-bottom: 0;
}

.logo-minnim {
  position: relative;
  padding-top: 0;
  margin-bottom: 5em;
}

.cases-container {
  width: 100%;
}

.case {
  position: relative;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
}
.case.visible {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
}
.case.backcolor {
  background-color: var(--SectionBackColor);
}
.case .case-container {
  display: grid;
  gap: 1em;
  padding-top: 6em;
  padding-bottom: 6em;
  max-width: 122em;
}
.case .cell {
  position: relative;
  color: #FFF;
  padding: 2.8em 3em;
  overflow: hidden;
  border-radius: 1em;
  background: var(--CaseColor2);
  -webkit-transform: translateY(2em);
      -ms-transform: translateY(2em);
          transform: translateY(2em);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.case .cell:nth-child(2) {
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}
.case .cell:nth-child(3) {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.case .cell:nth-child(4) {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.case .cell:nth-child(5) {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.case .cell:nth-child(6) {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.case .cell:nth-child(7) {
  -webkit-transition-duration: 1.1s;
          transition-duration: 1.1s;
}
.case .cell:nth-child(8) {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}
.case .cell:nth-child(9) {
  -webkit-transition-duration: 1.8s;
          transition-duration: 1.8s;
}
.case .cell.show {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  opacity: 1;
}
.case .cell .button {
  padding-top: 1em;
}
.case .cell .button a {
  margin-bottom: 0;
}
.case .cell .button a.inverse {
  color: #FFF;
  border-color: #FFF;
}
.no-touch .case .cell .button a.inverse:hover {
  color: #000;
  background-color: #FFF;
}
.case .cell.video {
  position: relative;
  padding: 0;
}
.case .cell.video:after {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.stop-video .case .cell.video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5em;
  height: 5em;
  pointer-events: none;
  border-radius: 100%;
  background: url("../img/interface/play.svg") no-repeat center rgba(0, 0, 0, 0.3);
  background-size: 46% auto;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.case .cell.video.name {
  padding: 2.8em 3em;
}
.case .cell.video.name:after {
  display: none;
}
.case .cell.image {
  padding: 0;
}
.case .cell.image:after {
  content: "";
  display: block;
  padding-bottom: 89%;
}
.case .cell.image img {
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case .cell.image .icon {
  bottom: 2em;
  left: 2.6em;
  top: auto;
  right: auto;
  width: 15em;
  height: auto;
  -o-object-fit: unset;
     object-fit: unset;
}
.case .cell.small:after {
  padding-bottom: 38.5%;
}
.case .cell 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;
  z-index: 1;
}
.case .rowspan-3 {
  grid-column: 3;
  grid-row: 1/4;
}
.case .colspan-2 {
  grid-column: 1/3;
  padding: 3em max(8%, 3em);
}
.case .text {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.case .text p {
  width: 100%;
  max-width: 54ch;
}
.case .text *:last-child {
  margin-bottom: 0;
}
.case h2 {
  position: relative;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  z-index: 10;
}
.case h3 {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 2.8em;
  margin-bottom: 0.8em;
}
.case .name {
  text-align: justify;
  background: var(--CaseColor1);
}

.main-content .faqs {
  width: 100%;
  padding: 5em 0 0;
  margin-bottom: 8em;
}
.main-content .faqs .backcolor {
  position: relative;
  padding: 5em 0 4em;
}
.main-content .faqs .backcolor:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color4);
  z-index: 0;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
.main-content .faqs .backcolor.show:before {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.main-content .faqs .backcolor.show-finish:before {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.main-content .faqs .center {
  position: relative;
  z-index: 1;
}
.main-content .faqs .center.short {
  max-width: 136em;
}
.main-content .faqs h2 {
  max-width: 34em;
  margin: 0 0 0.8em;
}
.main-content .faqs h3 {
  font-size: 2.4em;
  font-weight: 400;
  margin-bottom: 0.6em;
}
.main-content .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;
  max-width: 174.5em;
  margin: 0 auto;
}
.main-content .faqs li {
  -ms-flex-preferred-size: calc(33.3% - 3em);
      flex-basis: calc(33.3% - 3em);
}
.main-content .pagination-container {
  display: none;
  position: relative;
  z-index: 10;
}
.main-content .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6em;
  margin: 0.8em auto 2em;
}
.main-content .pagination a {
  display: block;
  width: 3.6em;
}
.main-content .pagination a svg circle {
  fill: var(--colorTextInvers);
  stroke: var(--colorText);
}
.main-content .pagination a svg path {
  stroke: var(--colorText);
}
.no-touch .main-content .pagination a:hover svg circle {
  fill: var(--colorText);
}
.no-touch .main-content .pagination a:hover svg path {
  stroke: var(--colorTextInvers);
}
.main-content .pagination a.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.main-content .pagination .next svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.grid-1 .case-container {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
}

.grid-2 .case-container {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}
.grid-2 .c-2 {
  grid-column: 2/4;
}
.grid-2 .c-6 {
  text-align: right;
}
.grid-2 .c-6 p {
  margin-left: auto;
}
.grid-2 .c-6 .button {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.grid-3 .case-container {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}
.grid-3 .c-1 {
  grid-column: 1/2;
}
.grid-3 .c-2 {
  grid-column: 3;
}
.grid-3 .c-2:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.grid-3 .c-2.video:after {
  padding-bottom: 86%;
}
.grid-3 .c-3 {
  grid-column: 1/2;
}
.grid-3 .c-4 {
  grid-column: 2/4;
}

#case-1 {
  --CaseColor1: #F1AF07;
  --CaseColor2: #607F92;
}

#case-2 {
  --CaseColor1: #F1AF07;
  --CaseColor2: #000;
}

#case-3 {
  --CaseColor1: #BFD435;
  --CaseColor2: #56853C;
}

.roibos .columns {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5em;
  margin-left: auto;
}
.roibos .c-7.video:after {
  padding-bottom: 79.75%;
}

@media only screen and (max-width: 1024px) {
  .main-content .faqs li {
    -ms-flex-preferred-size: calc(50% - 2em);
        flex-basis: calc(50% - 2em);
  }
}
@media only screen and (max-width: 768px) {
  .case .case-container {
    gap: 1.4em;
  }
  .grid-1 .c-3.video:after {
    padding-bottom: 200%;
  }
  .grid-3 .c-3.image:after {
    padding-bottom: 60%;
  }
  .main-content .faqs li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .case .rowspan-3 {
    grid-column: auto;
    grid-row: auto;
  }
  .case .colspan-2 {
    grid-column: auto;
    grid-row: auto;
  }
  .case .case-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case h2 {
    max-width: 18ch;
  }
  .case .name {
    min-height: 30vw;
  }
  .grid-2 .c-6 {
    text-align: left;
  }
  .grid-2 .c-6 p {
    margin-left: 0;
    margin-right: auto;
  }
  .grid-2 .c-6 .button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .logo-minnim {
    margin-bottom: 4em;
  }
  .header-content .row .block {
    width: 100%;
  }
  .main-content {
    padding: 4em 0;
  }
  .main-content h2 {
    font-size: 2.8em;
  }
  .case .cell {
    padding: 2em;
  }
  .case .name {
    min-height: 56vw;
  }
}
.dark-mode {
  --SectionBackColor: #8B7C6B;
}/*# sourceMappingURL=success-stories.css.map */