@import url(https://fonts.googleapis.com/css?family=Nunito:regular&display=swap);

@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #222;
  line-height: 1;
  font-family: "Nunito";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Nunito";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 76.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  padding: 20px 0;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.15);
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__info {
  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;
  gap: 40px;
}

.header .header-info__list {
  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;
  gap: 22px;
}

.header__menu {
  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;
}

.header__list {
  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;
  gap: 30px;
}

.header .header-info__link,
.header__link {
  color: #222;
  -webkit-transition: 0.8s all ease;
  -o-transition: 0.8s all ease;
  transition: 0.8s all ease;
}

.header__link::after {
  height: 5%;
}

.header__btn {
  padding: 12px 32px;
  border-radius: 48px;
  border: 1px solid #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  -webkit-transition: 0.8s all ease;
  -o-transition: 0.8s all ease;
  transition: 0.8s all ease;
}

.icon-menu {
  display: none;
}

.header__nav.active {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.menu__icon.active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
}

.menu__icon.active::before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.menu__icon.active::after {
  bottom: 50%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}

.menu__icon.active span,
.menu__icon.active::after,
.menu__icon.active::before {
  -webkit-transition: 0.8s all ease;
  -o-transition: 0.8s all ease;
  transition: 0.8s all ease;
  background-color: #fff;
}

.footer {
  padding-top: 68px;
  padding-bottom: 71px;
  border-top: 1px solid #CBD6E2;
}

.footer__wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 118px;
}

.footer__title {
  margin-bottom: 34px;
  font-weight: 500;
}

.footer__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.footer-copyrighting__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 108px;
}

.footer-copyrighting__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 26px;
}

.footer-copyrighting__text {
  max-width: 836px;
  color: #AAA;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.6px;
  /* 130% */
}

.hero {
  padding-top: 2.5rem;
  padding-bottom: 6.0625rem;
}

.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__about {
  max-width: 400px;
}

.hero__toptitle {
  margin-bottom: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 400;
  line-height: 25px;
  /* 156.25% */
  color: #000;
}

.hero__title {
  margin-bottom: 23px;
  font-size: 42px;
  font-weight: 400;
  line-height: 50.4px;
  /* 120% */
  color: #222;
}

.hero__text {
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.92px;
  /* 144% */
  color: #222;
}

.hero__platform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  gap: 20px;
}

.hero-platform__link {
  display: inline-block;
  overflow: hidden;
  /* Скриваем всу за контуром */
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  /* Час эффекту */
}

.hero-platform__link:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  /* Збільшуєм масштаб */
}

.about {
  color: #222;
}

.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__content {
  max-width: 445px;
}

.about__title {
  margin-bottom: 22px;
  font-size: 36px;
  font-weight: 400;
  line-height: 43.2px;
  /* 120% */
}

.about__text-inner {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.about__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.92px;
  /* 144% */
}

.about-app,
.about-shopping,
.about-accaunt {
  padding-top: 97px;
  padding-bottom: 131px;
}

.about-icon__link {
  display: inline-block;
  overflow: hidden;
  /* Скриваем всу за контуром */
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  /* Час эффекту */
}

.about-icon__link:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  /* Збільшуєм масштаб */
}

.advertisement {
  padding-bottom: 131px;
}

.about-partners__wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about-partners__title {
  margin-bottom: 6px;
  font-size: 36px;
  font-weight: 400;
  line-height: 43.2px;
  /* 120% */
  color: #222;
}

.about-partners__text {
  max-width: 584px;
  margin-bottom: 46px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.92px;
  /* 144% */
  color: #222;
}

.about-partners__btn {
  padding: 12px 32px;
  border-radius: 48px;
  border: 1px solid #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #222;
  -webkit-transition: 0.8s all ease;
  -o-transition: 0.8s all ease;
  transition: 0.8s all ease;
}

.partners__list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 108px;
}

.block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.block__more {
  margin-bottom: 60px;
}

.about-icon {
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (min-width: 47.99875em) {
  .header .header-info__link,
  .header__link {
    position: relative;
    padding-bottom: 5px;
    -webkit-transition: color 0.8s, text-shadow 0.8s;
    -o-transition: color 0.8s, text-shadow 0.8s;
    transition: color 0.8s, text-shadow 0.8s;
    /* для плавного змінення кольору и тіні(підсвідки) поссилання */
  }

  .header .header-info__link::after,
  .header__link::after {
    content: "";
    display: block;
    position: absolute;
    /* позиціоннуємо віносно посилання */
    top: 100%;
    background: #222;
    /* Колір хаверу */
    height: 10%;
    /* вистота відносно вистоти посилання */
    width: 0%;
    /* базова ширина полоси підкреслення рівна 0% */
    z-index: 1;
    /* ставим полоску підкреслення позаду тексту посилання*/
    -webkit-transition: width 0.8s, opacity 0.8s, -webkit-box-shadow 0.8s;
    transition: width 0.8s, opacity 0.8s, -webkit-box-shadow 0.8s;
    -o-transition: width 0.8s, opacity 0.8s, box-shadow 0.8s;
    transition: width 0.8s, opacity 0.8s, box-shadow 0.8s;
    transition: width 0.8s, opacity 0.8s, box-shadow 0.8s, -webkit-box-shadow 0.8s;
    /* для плавного змінення кольору и тіні(підсвідки) поссилання */
    border-radius: 100px;
    opacity: 0;
    /* загальна полоска повністю прозора */
  }

  .header .header-info__link:hover:after,
  .header__link:hover:after {
    width: 100%;
    opacity: 1;
  }

  .header .header-info__link:after,
  .header__link:after {
    right: 0;
  }

  .header .header-info__link:hover:after,
  .header__link:hover:after {
    right: auto;
    left: 0;
  }

  .header__btn:hover {
    color: #fff;
    background-color: #222;
    -webkit-transition: 0.8s all ease;
    -o-transition: 0.8s all ease;
    transition: 0.8s all ease;
  }

  .about-partners__btn:hover {
    color: #fff;
    background-color: #222;
    -webkit-transition: 0.8s all ease;
    -o-transition: 0.8s all ease;
    transition: 0.8s all ease;
  }
}

@media (max-width: 1122px) {
  .footer__list {
    gap: 50px;
  }
}

@media (max-width: 1059px) {
  .about__img img {
    width: 18.28125rem;
  }
}

@media (max-width: 980px) {
  .hero__img img {
    width: 18.125rem;
  }
}

@media (max-width: 806px) {
  .footer__list {
    gap: 30px;
  }

  .footer-copyrighting__wrapper {
    gap: 30px;
  }

  .footer-copyrighting__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 704px) {
  .footer__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .hero__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 35px;
  }

  .hero__platform {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 462px) {
  .header__info {
    gap: 20px;
  }
}

@media (max-width: 388px) {
  .header__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .advertisement .about__icon {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 47.99875em) {
  .header__link {
    color: #fff;
  }

  .header__btn {
    color: #fff;
    border-color: #fff;
  }

  .icon-menu {
    z-index: 1;
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }

  .icon-menu::before,
  .icon-menu::after,
  .icon-menu span {
    left: 0;
    position: absolute;
    height: 2px;
    width: 100%;
    -webkit-transition: 0.3ms all ease;
    -o-transition: 0.3ms all ease;
    transition: 0.3ms all ease;
    background-color: #222;
  }

  .icon-menu::before,
  .icon-menu::after {
    content: "";
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: 50%;
    -webkit-transform: scale(1) translate(0px, -50%);
        -ms-transform: scale(1) translate(0px, -50%);
            transform: scale(1) translate(0px, -50%);
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-100%, -100%);
        -ms-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%);
    background-color: rgba(11, 11, 11, 0.92);
    padding: 185px 30px 30px 30px;
    overflow: auto;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }

  .header__list {
    gap: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header__list .header__link {
    font-size: 25px;
  }

  .about__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .about-app .about__wrapper,
  .about-shopping .about__wrapper,
  .about-accaunt .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .partners__list {
    gap: 30px;
  }

  .block__more {
    margin-bottom: 25px;
  }

  .about-icon {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 29.99875em) {
  .about-partners__text {
    margin-bottom: 20px;
  }
}
.about__wrapper{
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
}
.about__wrapper > [class*="ipsGrid_span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box;
}

.about__wrapper > .ipsGrid_span5 {
  width: 40.42553191489362%;
}
.about__wrapper > .ipsGrid_span7 {
  width: 57.44680851063829%;
}
.about__wrapper > [class*="ipsGrid_span"] {
  float: left;
  margin-left: 2%;
}
.about__wrapper > [class*="ipsGrid_span"]:first-child {
  margin-left: 0;
}
.about__text {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}
.about-partners__content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero__platform{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}



/* Loader Styles start here */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #ffffff;
  --outer-line-color: rgb(61, 66, 66);
  --middle-line-color: #525658;
  --inner-line-color: #41464d;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1000;
}

.loader {
  display:block;
  position: relative;
  top:50%;
  left:50%;
/*   transform: translate(-50%, -50%); */
  width:150px;
  height:150px;
  margin:-75px 0 0 -75px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius:100%;
  -webkit-animation: spin 4.5s linear infinite;
          animation: spin 4.5s linear infinite;
  z-index:1001;
}

.loader:before {
  content:"";
  position: absolute;
  top:4px;
  left:4px;
  right:4px;
  bottom:4px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius:100%;
  -webkit-animation: spin 4.5s linear infinite;
          animation: spin 4.5s linear infinite;
}

.loader:after {
  content:"";
  position: absolute;
  top:14px;
  left:14px;
  right:14px;
  bottom:14px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius:100%;
  -webkit-animation: spin 4.5s linear infinite;
          animation: spin 4.5s linear infinite;
}

@-webkit-keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position:fixed;
  top:0;
  background:var(--curtain-color);
  width:51%;
  height:100%;
  z-index:1000;
}

.loader-wrapper .loader-section.section-left {
  left:0
}
.loader-wrapper .loader-section.section-right {
  right:0;
}

/* Loaded Styles */ 
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  transform:translateY(-100%);
  transition: all .3s 1s ease-out;
}