@font-face {
  font-family: "Altone";
  src: url("../../fonts/altone/Altone-Bold.woff2") format("woff2"), url("../../fonts/altone/Altone-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Altone";
  src: url("../../fonts/altone/Altone-Regular.woff2") format("woff2"), url("../../fonts/altone/Altone-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Altone SemBd";
  src: url("../../fonts/altone/Altone-SemiBold.woff2") format("woff2"), url("../../fonts/altone/Altone-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Altone";
  src: url("../../fonts/altone/subset-Altone-Thin.woff2") format("woff2"), url("subset-Altone-Thin.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Altone Med";
  src: url("../../fonts/altone/subset-Altone-Medium.woff2") format("woff2"), url("subset-Altone-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Altone";
  src: url("../../fonts/altone/subset-Altone-Bold.woff2") format("woff2"), url("subset-Altone-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.form__group-addons {
  position: relative;
}
.form__group-addons .form__control {
  padding-right: 65px;
}
.form__group-addons .addon {
  width: 57px;
  height: 57px;
  position: absolute;
  right: 0;
  top: 0;
}
.form__group-addons .addon-password {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-size: 0;
  width: 100%;
  height: 100%;
  color: #555;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__group-addons .addon-password .eye {
  display: none;
}
.form__group-addons .addon-password.active .eye {
  display: block;
}
.form__group-addons .addon-password.active .eye-closed {
  display: none;
}
.form__group .form__label {
  position: absolute;
  top: -11px;
  left: 28px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  z-index: 2;
}
.form__group .form__label:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}
.form__group .form__label span {
  position: relative;
  z-index: 2;
}
.form__group label.error {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #f21;
  margin-top: 6px;
}
.form__group a.app__link {
  margin-top: 12px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .form__group {
    margin-bottom: 30px;
  }
  .form__group .form__label {
    font-size: 10px;
    left: 18px;
  }
  .form__group-addons .form__control {
    padding-right: 40px;
  }
  .form__group-addons .addon {
    width: 36px;
    height: 36px;
  }
  .form__group-addons .addon-password svg {
    width: 20px;
    height: 20px;
  }
}

.form__control {
  width: 100%;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  min-height: 57px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.form__control:hover {
  border-color: rgba(17, 182, 130, 0.15);
}
.form__control:focus {
  border-color: rgba(17, 182, 130, 0.4);
}
.form__control.error {
  border-color: rgba(255, 34, 17, 0.4);
}
.form__control::-webkit-input-placeholder {
  color: #555;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.form__control::-moz-placeholder {
  color: #555;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.form__control:-ms-input-placeholder {
  color: #555;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.form__control::-ms-input-placeholder {
  color: #555;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.form__control::placeholder {
  color: #555;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.form__control:-webkit-autofill, .form__control:-webkit-autofill:hover, .form__control:-webkit-autofill:focus, .form__control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
          box-shadow: 0 0 0 30px white inset !important;
}
@media screen and (max-width: 768px) {
  .form__control {
    min-height: 36px;
    padding: 0 20px;
    font-size: 12px;
  }
}

.form__checkbox {
  position: relative;
}
.form__checkbox-input {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 0;
  height: 0;
  border: none;
  background: none;
  outline: none;
}
.form__checkbox-input:checked + .form__checkbox-label .form__checkbox-box {
  background-color: #11b682;
}
.form__checkbox-input:checked + .form__checkbox-label .form__checkbox-box svg {
  opacity: 1;
  top: 50%;
}
.form__checkbox-label {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: relative;
  background-color: #ddd;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.form__checkbox-box svg {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.form__checkbox-text {
  width: calc(100% - 20px);
  padding-left: 14px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.form__checkbox-text a {
  color: #11b682;
  text-decoration: none;
}
.form__checkbox-text a:hover {
  text-decoration: underline;
  color: #11b682;
}
@media screen and (max-width: 768px) {
  .form__checkbox-box {
    width: 16px;
    height: 16px;
  }
  .form__checkbox-text {
    font-size: 12px;
    line-height: 1;
    padding-left: 10px;
    width: calc(100% - 16px);
  }
}

.form__extra {
  margin-top: -6px;
}
@media screen and (max-width: 768px) {
  .form__extra {
    margin-top: 0;
  }
}

.form__seperator {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
  width: 100%;
}
.form__seperator span {
  font-size: 14px;
  line-height: 20px;
  color: #aaaaaa;
}
.form__seperator:after, .form__seperator:before {
  content: "";
  width: calc(50% - 27px);
  height: 1px;
  display: block;
  background-color: #aaaaaa;
}

.app__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 24px;
  text-decoration: none;
  border: none;
  outline: none;
  background: none;
  border-radius: 3px;
  font-size: 20px;
  line-height: 28px;
  min-width: 310px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  color: #000;
}
.app__btn:hover {
  color: #11b682;
}
.app__btn svg + span {
  margin-left: 11px;
}
.app__btn-primary {
  color: #fff;
  background-color: #11b682;
  -webkit-box-shadow: 0px 18px 24px rgba(17, 182, 130, 0.21);
          box-shadow: 0px 18px 24px rgba(17, 182, 130, 0.21);
}
.app__btn-primary:hover {
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 23px 30px rgba(17, 182, 130, 0.21);
          box-shadow: 0px 23px 30px rgba(17, 182, 130, 0.21);
}
.app__btn-outline-primary {
  border: 1px solid #11b682;
  background-color: #fff;
  color: #11b682;
}
.app__btn-outline-primary:hover {
  background-color: #11b682;
  color: #fff;
}
.app__btn-medium {
  font-size: 14px;
  line-height: 20px;
}
.app__btn-slim {
  min-width: 0;
}
.app__btn:disabled {
  background-color: #cfcfcf;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(0) !important;
          transform: translate(0) !important;
}
.app__btn-small {
  padding: 13px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.app__btn-small:hover {
  color: #fff;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.app__btn-full {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .app__btn {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 6px 10px;
    min-width: 0;
  }
  .app__btn-medium {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .app__btn-large {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
  }
}

.app__link {
  font-size: 16px;
  font-weight: 600;
  color: #11b682;
  line-height: 22.4px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.app__link-medium {
  font-size: 20px;
  line-height: 28px;
}
.app__link:hover {
  color: #11b682;
  border-bottom-color: #11b682;
}
@media screen and (max-width: 768px) {
  .app__link {
    font-size: 12px;
    line-height: 16.8px;
  }
}

.app__header {
  width: 100%;
  padding-top: 44px;
  position: relative;
  z-index: 100;
}
.app__header-inner {
  width: 100%;
  height: 66px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.app__header-mobile-menu_btn {
  display: none;
}
.app__header-mobile-login_btn {
  display: none;
}
@media screen and (max-width: 850px) {
  .app__header {
    padding-top: 20px;
  }
  .app__header-inner {
    height: 50px;
  }
  .app__header-mobile-login_btn {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: 24px;
  }
  .app__header-mobile-menu_btn {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: 24px;
  }
}
.app__header-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .app__header-logo {
    width: 200px;
  }
  .app__header-logo img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 850px) {
  .app__header-logo {
    width: 140px;
    text-align: center;
  }
  .app__header-logo img {
    width: auto;
    height: 30px;
  }
}
@media screen and (min-width: 851px) {
  .app__header-menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 75px auto 75px auto 75px auto 75px auto 75px auto;
    grid-template-columns: auto auto auto auto auto auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 45px;
    margin: 0;
    padding: 5px 0;
    list-style: none;
  }
  .app__header-menu li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
  }
  .app__header-menu li a.login__btn, .app__header-menu li a.register__btn {
    padding: 13px 24px;
    color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0px 18px 24px rgba(17, 182, 130, 0.21);
            box-shadow: 0px 18px 24px rgba(17, 182, 130, 0.21);
  }
  .app__header-menu li a.login__btn:hover, .app__header-menu li a.register__btn:hover {
    background-color: #fff;
    color: #11b682;
  }
  .app__header-menu li a.register__btn {
    background-color: #11b682;
  }
  .app__header-menu li a.login__btn {
    background-color: #000;
  }
  .app__header-menu li a.active, .app__header-menu li a:hover {
    color: #11b682;
  }
}
@media screen and (max-width: 1380px) {
  .app__header-menu {
    width: 100%;
    gap: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .app__header-menu {
    gap: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .app__header-menu {
    gap: 30px;
  }
  .app__header-menu li a {
    font-size: 12px;
  }
  .app__header-menu li a.login__btn, .app__header-menu li a.register__btn {
    padding: 12px 15px;
  }
}
@media screen and (max-width: 850px) {
  .app__header-menu {
    -webkit-filter: drop-shadow(0px 8px 64px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 8px 64px rgba(0, 0, 0, 0.1));
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    border-radius: 3px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .app__header-menu li {
    background: rgba(237, 237, 237, 0.8);
    border-bottom: 0.5px solid rgba(131, 131, 131, 0.36);
  }
  .app__header-menu li a {
    padding: 11px 16px;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.41px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
  }
  .app__header-menu li a:after {
    content: url("../../images/caret-right.svg");
  }
  .app__header-menu li:last-child {
    border-bottom: none;
  }
  .app__header-menu-wrap {
    position: fixed;
    top: 60px;
    left: 0;
    padding: 20px;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-130%);
            transform: translateY(-130%);
    opacity: 0;
    display: none;
  }
  .mobileMenuReady .app__header-menu-wrap {
    display: block;
  }

  .mobileMenuAnimate .app__header-menu-wrap {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.app__footer {
  background-color: #F8F8F8;
}
.app__footer-top {
  padding: 50px 0;
  height: 342px;
}
.app__footer-top .row {
  width: calc(100% - 160px);
}
.app__footer-top-contact .address {
  color: #11b682;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 400;
  margin-bottom: 36px;
}
.app__footer-top-contact .email {
  color: #11b682;
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 700;
  margin-bottom: 29px;
  display: inline-block;
  text-decoration: none;
}
.app__footer-top-contact .phone {
  color: #11b682;
  font-size: 16px;
  line-height: 22.4px;
  margin-bottom: 29px;
  display: inline-block;
  text-decoration: none;
}
.app__footer-top-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.app__footer-top-menu li {
  margin-bottom: 7px;
}
.app__footer-top-menu li a {
  font-size: 16px;
  line-height: 22.4px;
  color: #646464;
  font-weight: 400;
  text-decoration: none;
}
.app__footer-top-item {
  width: 100%;
  max-width: 235px;
}
.app__footer-top-item img {
  max-width: 100%;
  height: auto;
}
.app__footer-top-item .logo {
  margin-bottom: 57px;
  display: block;
  font-size: 0;
}
.app__footer-top-item .btns {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 57px;
}
.app__footer-top-item .social_medias {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.app__footer-top-item .social_medias a {
  color: #404040;
  text-decoration: none;
  margin: 0 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.app__footer-top-item .social_medias a:hover {
  color: #11b682;
}
.app__footer-bottom {
  border-top: 2px solid #EDEDED;
}
.app__footer-bottom .app__container {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.app__footer-bottom-image {
  width: 228px;
  height: 113px;
  position: relative;
}
.app__footer-bottom-image img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
.app__footer-bottom ul {
  min-height: 113px;
  width: calc(100% - 280px);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.app__footer-bottom ul > li {
  font-size: 14px;
  line-height: 19.6px;
  color: #404040;
}
.app__footer-bottom ul > li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  padding: 10px;
  color: #404040;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.app__footer-bottom ul > li a:hover {
  color: #11b682;
}
@media screen and (max-width: 1434px) {
  .app__footer-top-menu li a {
    font-size: 14px;
    line-height: 19.6px;
  }
  .app__footer-top-contact .email,
.app__footer-top-contact .address,
.app__footer-top-contact .phone {
    font-size: 14px;
    line-height: 19.6px;
  }
}
@media screen and (max-width: 1270px) {
  .app__footer-top .row {
    width: 100%;
  }
  .app__footer-bottom ul {
    width: calc(100% - 140px);
  }
  .app__footer-bottom-image {
    width: 120px;
  }
}
@media screen and (max-width: 1150px) {
  .app__footer-bottom ul {
    width: 100%;
  }
  .app__footer-bottom-image {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .app__footer-top {
    padding: 41px 0 50px 0;
    height: auto;
    padding-bottom: 6px;
  }
  .app__footer-top-item {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: none;
    margin-bottom: 20px;
  }
  .app__footer-top-item .logo {
    margin-bottom: 0;
    width: 135px;
  }
  .app__footer-top-item .btns {
    display: none;
  }
  .app__footer-top-menu {
    margin-bottom: 44px;
    max-width: 127px;
  }
  .app__footer-top-contact {
    max-width: 127px;
  }
  .app__footer-top .social_medias {
    width: calc(50% - 10px);
  }
  .app__footer-top .social_medias a {
    margin: 0 5px;
  }
  .app__footer-top .social_medias a svg {
    width: 18.75px;
  }
  .app__footer-bottom {
    background-color: #000;
    border-top: none;
    padding: 10px 0;
  }
  .app__footer-bottom ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: 0;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .app__footer-bottom ul li.copyright {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    margin-bottom: 10px;
  }
  .app__footer-bottom ul li a {
    color: #fff;
    font-size: 10px;
    line-height: 14px;
    font-weight: 300;
    padding: 2px;
  }
}

body {
  font-family: "Altone";
}
body.noScroll {
  height: 100vh;
  overflow: hidden;
}

.app {
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}
.app.home {
  background-color: #f1f1f1;
}
@media screen and (max-width: 991px) {
  .app.home {
    background-color: #fff;
  }
}

.position-relative {
  position: relative;
}

@media screen and (max-width: 991px) {
  .desktop {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .re-orderable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .re-orderable .references {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .re-orderable .what__say {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 991.1px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width: 570px) {
  .x-desktop {
    display: none !important;
  }
}

@media screen and (min-width: 570.1px) {
  .x-mobile {
    display: none !important;
  }
}

.app__container {
  width: 100%;
  padding: 0 70px;
  max-width: 1728px;
  margin: 0 auto;
}
.app__container-slim {
  max-width: 760px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 1628px) {
  .app__container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  .app__container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 991px;
  }
}

.app__tooltip {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  padding: 15px 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 30px 30px 104px rgba(9, 130, 91, 0.39);
          box-shadow: 30px 30px 104px rgba(9, 130, 91, 0.39);
}
.app__tooltip span {
  font-size: 16px;
  line-height: 14px;
  margin-left: 6px;
}
.app__tooltip-right:after {
  content: url("../../images/tooltip-bottom-right.svg");
  font-size: 0;
  display: inline-block;
  position: absolute;
  right: 16px;
  bottom: -20px;
}
.app__tooltip-left:after {
  content: url("../../images/tooltip-bottom-left.svg");
  font-size: 0;
  display: inline-block;
  position: absolute;
  left: 16px;
  bottom: -20px;
}
.app__tooltip.warning {
  color: #bc9d06;
}
.app__tooltip.danger {
  color: #ff0000;
}
.app__tooltip.success {
  color: #11b682;
}
@media screen and (max-width: 570px) {
  .app__tooltip {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 6px 16px;
  }
  .app__tooltip span {
    font-size: 12px;
    line-height: 10.26px;
    margin-left: 0;
  }
  .app__tooltip svg {
    width: 20px;
    height: 20px;
  }
  .app__tooltip-left::after, .app__tooltip-right::after {
    content: url("../../images/tooltip-bottom-right-mobile.svg");
    right: -10px;
    left: auto;
    bottom: 5px;
  }
}

.hero__banner {
  width: 100%;
  padding-top: 85px;
  position: relative;
}
.hero__banner-right {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero__banner-arrow {
  margin-bottom: 26px;
  max-width: 86%;
  height: auto;
}
.hero__banner-textwrap {
  width: 100%;
}
.hero__banner-textwrap-title {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.15em;
  color: #11b682;
  margin-bottom: 45px;
}
.hero__banner-textwrap-text {
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 6px;
}
.hero__banner-textwrap-text b {
  font-weight: 700;
}
.hero__banner-rectangle {
  width: 100%;
  max-width: 699px;
  height: 419px;
  background-color: #11b682;
  position: relative;
}
.hero__banner-rectangle:after {
  content: "";
  background-image: url("../../images/hero-cloud.png");
  background-size: cover;
  width: 852px;
  height: 473px;
  position: absolute;
  right: -120px;
  bottom: 131px;
  z-index: 1;
  -webkit-animation: cloudAnimate 10s forwards;
          animation: cloudAnimate 10s forwards;
}
.hero__banner-rectangle-image {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.hero__banner-rectangle-text {
  display: none;
}
.hero__banner-rectangle .hero__banner-tooltip-1 {
  position: absolute;
  top: 92px;
  left: -32px;
  z-index: 3;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.hero__banner-rectangle .hero__banner-tooltip-2 {
  position: absolute;
  bottom: 44px;
  left: -79px;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.hero__banner-rectangle .hero__banner-tooltip-3 {
  position: absolute;
  top: 120px;
  right: -20px;
  z-index: 3;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@media screen and (max-width: 991px) {
  .hero__banner-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 570px) {
  .hero__banner {
    padding: 45px 0;
  }
  .hero__banner .row {
    margin: 0 !important;
  }
  .hero__banner-right {
    padding: 0;
    -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;
  }
  .hero__banner-right .app__btn {
    margin-top: 20px;
    min-width: 200px;
  }
  .hero__banner-rectangle {
    height: 174px;
    background-color: #000;
    -webkit-animation: rectangleColorAnimation 1s forwards;
            animation: rectangleColorAnimation 1s forwards;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
  }
  .hero__banner-rectangle:after {
    width: 205px;
    height: 113px;
    right: 0;
    top: -45px;
    bottom: inherit;
    -webkit-animation: cloudAnimateMobile 4.5s forwards;
            animation: cloudAnimateMobile 4.5s forwards;
  }
  .hero__banner-rectangle-image {
    width: auto;
    height: 216px;
  }
  .hero__banner-rectangle-text {
    display: block;
    color: #fff;
    width: 100px;
    position: absolute;
    top: 87px;
    left: 29px;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 2.5s;
            animation-duration: 2.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
            animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-animation-play-state: running;
            animation-play-state: running;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
  .hero__banner-rectangle-sun {
    position: absolute;
    top: -61px;
    left: 150%;
    -webkit-transform: translateX(-30%) translateY(-40px);
            transform: translateX(-30%) translateY(-40px);
    -webkit-animation: sunAnimation 4s forwards;
            animation: sunAnimation 4s forwards;
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
  }
  .hero__banner-rectangle .hero__banner-tooltip-1 {
    top: 10px;
    left: 12px;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-animation-name: fadeInOut;
            animation-name: fadeInOut;
  }
  .hero__banner-rectangle .hero__banner-tooltip-2 {
    top: 30px;
    left: 12px;
    bottom: inherit;
    z-index: 4;
    -webkit-animation-delay: 7s;
            animation-delay: 7s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
  .hero__banner-rectangle .hero__banner-tooltip-3 {
    top: 48px;
    left: 12px;
    right: inherit;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-name: fadeInOut;
            animation-name: fadeInOut;
  }
}

@-webkit-keyframes sunAnimation {
  0% {
    left: 100%;
    -webkit-transform: translateX(-30%) translateY(-40px);
            transform: translateX(-30%) translateY(-40px);
  }
  100% {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}

@keyframes sunAnimation {
  0% {
    left: 100%;
    -webkit-transform: translateX(-30%) translateY(-40px);
            transform: translateX(-30%) translateY(-40px);
  }
  100% {
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@-webkit-keyframes rectangleColorAnimation {
  0% {
    background: linear-gradient(234.55deg, #000 32.04%, #000 96.6%);
  }
  100% {
    background: linear-gradient(234.55deg, #14b784 32.04%, #10825e 96.6%);
  }
}
@keyframes rectangleColorAnimation {
  0% {
    background: linear-gradient(234.55deg, #000 32.04%, #000 96.6%);
  }
  100% {
    background: linear-gradient(234.55deg, #14b784 32.04%, #10825e 96.6%);
  }
}
@-webkit-keyframes cloudAnimate {
  0% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  100% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@keyframes cloudAnimate {
  0% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  100% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@-webkit-keyframes cloudAnimateMobile {
  0% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(-10%) translateY(0);
            transform: translateX(-10%) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(15%) translateY(15%);
            transform: translateX(15%) translateY(15%);
    opacity: 0;
  }
}
@keyframes cloudAnimateMobile {
  0% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(-10%) translateY(0);
            transform: translateX(-10%) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(15%) translateY(15%);
            transform: translateX(15%) translateY(15%);
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLong {
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeInLong {
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.for__who {
  width: 100%;
}
.for__who .mouse-down {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.for__who-head {
  max-width: 693px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 68px;
}
.for__who-head-title {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.15em;
  color: #11b682;
  margin-bottom: 30px;
}
.for__who-head-text {
  font-size: 20px;
  line-height: 28px;
}
.for__who-head-text b {
  font-weight: 700;
}
.for__who-content {
  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;
  margin-bottom: 70px;
  -webkit-box-shadow: 30px 30px 30px rgba(17, 182, 130, 0.03);
          box-shadow: 30px 30px 30px rgba(17, 182, 130, 0.03);
}
.for__who-content-left {
  width: 32%;
  height: 404px;
  background-color: #fff;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  position: relative;
}
.for__who-content-left-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 107%;
  height: auto;
}
.for__who-content-left-cloud {
  position: absolute;
  bottom: 192px;
  left: 20%;
  z-index: 1;
  max-width: 100%;
}
.for__who-content-right {
  width: 68%;
  background-color: #fff;
}
.for__who-content-right-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  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;
}
.for__who-content-right-list li {
  background-color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-left: 1px;
  width: 100%;
  max-width: 250px;
}
.for__who-content-right-list li:first-child {
  padding-left: 32px;
}
.for__who-content-right-list li.active {
  max-width: 100%;
  background-color: #11b682;
}
.for__who-content-right-list li.active .for__who-content-right-list-item .textwrap p {
  width: 240px;
}
.for__who-content-right-list li.active .for__who-content-right-list-item a {
  color: #fff;
}
.for__who-content-right-list-item {
  width: 100%;
  height: 100%;
  padding: 20px 0 28px 25px;
  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;
}
.for__who-content-right-list-item figure {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.for__who-content-right-list-item figure img {
  width: 48px;
  height: auto;
}
.for__who-content-right-list-item .textwrap {
  color: #fff;
}
.for__who-content-right-list-item .textwrap h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  margin: 0 0 7px 0;
}
.for__who-content-right-list-item .textwrap p {
  font-size: 14px;
  line-height: 20px;
  width: 187px;
  width: 100%;
  margin-bottom: 0;
}
.for__who-content-right-list-item a {
  color: #11b682;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
}
@media screen and (max-width: 991px) {
  .for__who {
    padding: 77px 0 0 0;
    position: relative;
    z-index: 0;
  }
  .for__who:after {
    content: "";
    width: 375px;
    height: 375px;
    border-radius: 50%;
    background-color: #fafffd;
    display: block;
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .for__who .mouse-down {
    display: none;
  }
  .for__who-head {
    margin-bottom: 80px;
    position: relative;
    max-width: 335px;
    z-index: 1;
  }
  .for__who-head:after {
    content: "";
    width: 261.84px;
    height: 261.84px;
    background: #eafff8;
    display: block;
    position: absolute;
    right: -12px;
    top: -20px;
    border-radius: 50%;
    z-index: 0;
  }
  .for__who-head:before {
    content: "";
    width: 217.12px;
    height: 217.12px;
    background: #dffff4;
    display: block;
    position: absolute;
    right: 7.48px;
    top: 0;
    border-radius: 50%;
    z-index: 1;
  }
  .for__who-head-title {
    margin: 0 0 1px 0;
    font-size: 18px;
    line-height: 25.2px;
    position: relative;
    z-index: 3;
  }
  .for__who-head-title:after {
    content: "";
    width: 150px;
    height: 4.81px;
    display: block;
    margin: 0 auto 4.19px auto;
    background-image: url("../../images/hero-right-arrow.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .for__who-head-text {
    font-size: 16px;
    line-height: 22.4px;
    position: relative;
    z-index: 3;
  }
  .for__who-content {
    position: relative;
    z-index: 3;
    display: block;
    margin-bottom: 0;
  }
  .for__who-content-tab ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .for__who-content-tab-header {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .for__who-content-tab-header li {
    width: 50px;
    padding-bottom: 10px;
  }
  .for__who-content-tab-header li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #000;
    border-radius: 3px;
  }
  .for__who-content-tab-header li a figure {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    margin: 0;
    font-size: 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .for__who-content-tab-header li a figure img {
    width: 75%;
    height: 75%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .for__who-content-tab-header li.active {
    background-color: #14b784;
    position: relative;
    border-radius: 3px 3px 0 0;
  }
  .for__who-content-tab-header li.active:after, .for__who-content-tab-header li.active:before {
    position: absolute;
    bottom: 0;
    font-size: 0;
  }
  .for__who-content-tab-header li.active:before {
    content: url("../../images/tab-left-corner.svg");
    left: -5px;
  }
  .for__who-content-tab-header li.active:after {
    content: url("../../images/tab-right-corner.svg");
    right: -5px;
  }
  .for__who-content-tab-header li.active a {
    background-color: #14b784;
    border-radius: 3px 3px 0 0;
  }
  .for__who-content-tab-header li:first-child::before {
    display: none;
  }
  .for__who-content-tab-header li:last-child::after {
    display: none;
  }
  .for__who-content-tab-content li {
    padding: 20px;
    display: none;
  }
  .for__who-content-tab-content li:nth-child(1) {
    background: linear-gradient(103.83deg, #14b784 13.89%, #10825e 100%);
    border-radius: 0px 3px 3px 3px;
  }
  .for__who-content-tab-content li:nth-child(2) {
    background: linear-gradient(110.87deg, #14b784 31.23%, #10825e 100%);
    border-radius: 3px;
  }
  .for__who-content-tab-content li:nth-child(3) {
    background: linear-gradient(-110.87deg, #14b784 31.23%, #10825e 100%);
    border-radius: 3px;
  }
  .for__who-content-tab-content li:nth-child(4) {
    background: linear-gradient(-110.87deg, #14b784 31.23%, #10825e 100%);
    border-radius: 3px 0 3px 3px;
  }
  .for__who-content-tab-content li.active {
    display: block;
  }
  .for__who-content-tab-content li h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 7px 0;
  }
  .for__who-content-tab-content li p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 19.6px;
    margin: 0 0 7px 0;
    max-width: 295px;
  }
  .for__who-content-tab-content li a {
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
  }
}

.circle__text text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  fill: #11b682;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: rotater 5s linear infinite;
          animation: rotater 5s linear infinite;
  -webkit-transform: rotate(0deg) scale(0.8);
          transform: rotate(0deg) scale(0.8);
}

.newsletter {
  padding: 70px 0 35px 0;
}
.newsletter .imagewrap {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.newsletter .imagewrap figure {
  position: relative;
  width: 100%;
  max-width: 372px;
  margin: 0;
  padding: 0;
}
.newsletter .imagewrap figure:before {
  content: "";
  position: absolute;
  display: block;
  left: -36px;
  top: 25px;
  right: 76px;
  bottom: -42px;
  background-color: #11b682;
  opacity: 0.99;
  -webkit-box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
}
.newsletter .imagewrap figure img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: 3px;
  overflow: hidden;
}
.newsletter .textwrap {
  max-width: 603px;
  margin-left: 49px;
}
.newsletter .textwrap .title {
  font-weight: 200;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0.15em;
  color: #11b682;
  text-align: center;
  margin-bottom: 9px;
}
.newsletter .textwrap .text {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #000000;
}
.newsletter .textwrap .text b {
  font-weight: 700;
}
.newsletter__form {
  position: relative;
  padding: 40px 0px 40px 50px;
  margin-bottom: 112px;
}
.newsletter__form-input {
  max-width: 500px;
  position: relative;
  padding-right: 11px;
  z-index: 1;
}
.newsletter__form-input button {
  position: absolute;
  right: 0px;
  top: 4px;
}
.newsletter__form-input input {
  background-color: #fff;
  border-radius: 3px;
  height: 56px;
  border: none;
  width: 100%;
  padding-left: 19px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  outline: none;
}
.newsletter__form-input input::-webkit-input-placeholder {
  color: #000;
}
.newsletter__form-input input::-moz-placeholder {
  color: #000;
}
.newsletter__form-input input:-ms-input-placeholder {
  color: #000;
}
.newsletter__form-input input::-ms-input-placeholder {
  color: #000;
}
.newsletter__form-input input::placeholder {
  color: #000;
}
@media screen and (max-width: 991px) {
  .newsletter__form-input {
    -webkit-filter: drop-shadow(1px 2px 10px rgba(19, 183, 131, 0.2));
            filter: drop-shadow(1px 2px 10px rgba(19, 183, 131, 0.2));
    padding-right: 38px;
  }
  .newsletter__form-input button {
    right: 0;
  }
  .newsletter__form-input input {
    height: 40px;
    font-size: 14px;
    line-height: 19.6px;
    font-weight: 300;
  }
  .newsletter__form-input input::-webkit-input-placeholder {
    color: #8c8c8c;
  }
  .newsletter__form-input input::-moz-placeholder {
    color: #8c8c8c;
  }
  .newsletter__form-input input:-ms-input-placeholder {
    color: #8c8c8c;
  }
  .newsletter__form-input input::-ms-input-placeholder {
    color: #8c8c8c;
  }
  .newsletter__form-input input::placeholder {
    color: #8c8c8c;
  }
}
.newsletter__form lottie-player {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.newsletter .mouse-down {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advantages {
  background-color: #daeae5;
  padding: 90px 0 110px 0;
}
.advantages__header {
  text-align: center;
  max-width: 729px;
  margin: 0 auto 84px auto;
  color: #005a3e;
}
.advantages__header .title {
  font-weight: 200;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0.15em;
  margin-bottom: 34px;
}
.advantages__header .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.advantages__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.advantages__content ul li {
  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;
  text-align: center;
  padding: 0 40px;
}
.advantages__content ul li .icon {
  width: 130px;
  height: 130px;
  padding: 10px;
  border-radius: 50%;
  background-color: #11b682;
  margin-bottom: 10px;
}
.advantages__content ul li .icon lottie-player {
  width: 100%;
  height: 100%;
}
.advantages__content ul li .textwrap .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #005a3e;
  margin-bottom: 10px;
}
.advantages__content ul li .textwrap .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #005a3e;
}
@media screen and (max-width: 991px) {
  .advantages {
    background: none;
    padding: 150px 0 70px 0;
    position: relative;
  }
  .advantages:before {
    content: "";
    border: 1px solid rgba(197, 226, 217, 0.5019607843);
    display: block;
    width: 199px;
    height: 199px;
    border-radius: 50%;
    position: absolute;
    top: 72px;
    left: -46px;
    z-index: 0;
  }
  .advantages:after {
    content: "";
    border: 1px solid rgba(197, 226, 217, 0.5019607843);
    display: block;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    position: absolute;
    top: 105px;
    left: -12px;
    z-index: 0;
  }
  .advantages__header {
    text-align: left;
    max-width: none;
    margin-bottom: 0;
  }
  .advantages__header .title {
    font-size: 16px;
    line-height: 22.4px;
    margin-bottom: 18px;
  }
  .advantages__content {
    position: relative;
    z-index: 1;
  }
  .advantages__content ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advantages__content ul li {
    background: #d4fff1;
    border-radius: 3px;
    margin-bottom: 14px;
    padding: 20px 17px;
    width: 100%;
  }
  .advantages__content ul li .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    padding: 5px;
  }
  .advantages__content ul li .textwrap {
    max-width: 310px;
    margin: 0 auto;
  }
  .advantages__content ul li .textwrap .title {
    font-size: 18px;
    line-height: 25.2px;
  }
  .advantages__content ul li .textwrap .text {
    font-weight: 300;
    font-size: 14px;
    line-height: 19.6px;
  }
}

.entegration {
  background-color: #e5e5e5;
  padding: 50px 0;
  overflow: hidden;
}
.entegration .col-6 {
  min-height: 770px;
  position: relative;
}
.entegration .mulk_takibi-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
}
.entegration .logo__item {
  background-color: #fff;
  border-radius: 50%;
  width: 174px;
  height: 174px;
  -webkit-box-shadow: 4px 4px 50px rgba(12, 128, 91, 0.15);
          box-shadow: 4px 4px 50px rgba(12, 128, 91, 0.15);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
}
.entegration .logo__item img {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.entegration .logo__item.top {
  top: -87px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.entegration .logo__item.bottom {
  bottom: -87px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.entegration .logo__item.left {
  top: 50%;
  left: -87px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.entegration .logo__item.right {
  top: 50%;
  right: -87px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.entegration .logo__item.small {
  width: 121px;
  height: 121px;
}
.entegration .logo__item.small.top {
  top: -60px;
}
.entegration .logo__item.small.bottom {
  bottom: -60px;
}
.entegration .logo__item.small.left {
  left: -60px;
}
.entegration .logo__item.small.right {
  right: -60px;
}
.entegration .logo__item.small img {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.entegration .circle__wrap {
  width: 1040px;
  height: 1040px;
  border-radius: 50%;
  position: absolute;
  right: 60px;
  top: 50%;
  background: linear-gradient(179.92deg, rgba(64, 64, 64, 0.3) 0.07%, rgba(64, 64, 64, 0.1) 62.1%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-perspective-origin: center;
          perspective-origin: center;
  -webkit-perspective: 600px;
          perspective: 600px;
}
.entegration .circle__wrap:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background-color: #e5e5e5;
}
.entegration .circle__wrap-item {
  width: 693px;
  height: 693px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: linear-gradient(179.92deg, rgba(64, 64, 64, 0.3) 0.07%, rgba(64, 64, 64, 0.1) 62.1%);
}
.entegration .circle__wrap-item:before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background-color: #e5e5e5;
}
.entegration .circle__wrap-item-animate {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.entegration .circle__wrap-item-animate-2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.entegration .circle__wrap-item-animate-2 img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.entegration__slider {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.entegration__slider .swiper {
  width: 100%;
  max-width: 556px;
  overflow: visible;
  padding: 65px 0;
  margin: 0;
}
.entegration__slider .swiper-slide {
  opacity: 0 !important;
  pointer-events: none;
}
.entegration__slider .swiper-slide-active {
  opacity: 1 !important;
  pointer-events: all;
}
.entegration__slider-buttons {
  width: 90px;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 34px;
}
.entegration__slider-buttons-next, .entegration__slider-buttons-prev {
  width: 44px;
  height: 53px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #11b682;
}
.entegration__slider-buttons-next.swiper-button-disabled, .entegration__slider-buttons-prev.swiper-button-disabled {
  color: #acacac;
  pointer-events: none;
}
.entegration__header {
  text-align: center;
  max-width: 657px;
  margin: 70px auto 5px auto;
}
.entegration__header .title {
  font-size: 30px;
  font-weight: 200;
  line-height: 42px;
  color: #11b682;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
}
.entegration__header .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.entegration__header .text b {
  font-weight: 600;
}
.entegration .mouse-down {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.entegration .app__card {
  width: 100%;
  background: #ffffff;
  opacity: 0.99;
  -webkit-box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.entegration .app__card-header {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 5px 12px;
}
.entegration .app__card-header figure {
  width: 92px;
  height: 92px;
  margin: 0;
  padding: 10px;
  border-radius: 50%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 29px;
}
.entegration .app__card-header figure img {
  max-width: 100%;
  height: auto;
}
.entegration .app__card-header .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33.6px;
}
.entegration .app__card-content {
  padding: 0 46px 26px 31px;
  min-height: 168px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.entegration .app__card-content p {
  font-size: 14px;
  line-height: 19.6px;
}
.entegration .app__card-content a {
  font-size: 14px;
  line-height: 19.6px;
  color: #11b682;
  text-decoration: none;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .entegration {
    background: none;
  }
  .entegration .circles {
    width: 291px;
    height: 291px;
    position: absolute;
    left: -160px;
    top: 50%;
    display: block;
    background-color: #f6fffc;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 0;
    border-radius: 50%;
  }
  .entegration .circles_item-2 {
    width: 261px;
    height: 261px;
    background-color: #eafff8;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 14.16px;
    left: 7.48px;
  }
  .entegration .circles_item-3 {
    width: 217px;
    height: 217px;
    background-color: #d4fff1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 23.24px;
    left: 7.48px;
  }
  .entegration .mulk_takibi-logo {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-left: -55px;
    width: 95px;
    margin-top: -10px;
  }
  .entegration .col-6 {
    height: 300px;
    min-height: 0;
  }
  .entegration .col-6.first {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .entegration .col-6.second {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .entegration .logo__item {
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 4px 4px 50px rgba(12, 128, 91, 0.15);
            box-shadow: 4px 4px 50px rgba(12, 128, 91, 0.15);
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
  }
  .entegration .logo__item img {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    max-width: 100%;
  }
  .entegration .logo__item.top {
    top: inherit;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .entegration .logo__item.bottom {
    bottom: inherit;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .entegration .logo__item.left {
    top: 50%;
    right: -30px;
    left: inherit;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .entegration .logo__item.right {
    top: 50%;
    right: inherit;
    left: -30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .entegration .logo__item.small {
    width: 40px;
    height: 40px;
  }
  .entegration .logo__item.small.top {
    top: inherit;
    bottom: -20px;
  }
  .entegration .logo__item.small.bottom {
    bottom: inherit;
    top: -20px;
  }
  .entegration .logo__item.small.left {
    right: -20px;
    left: inherit;
  }
  .entegration .logo__item.small.right {
    left: -20px;
    right: inherit;
  }
  .entegration .logo__item.small img {
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .entegration .circle__wrap {
    width: 300px;
    height: 300px;
    right: inherit;
    left: 36px;
    background: linear-gradient(179.92deg, #c5e2d9 0.07%, #d7efe7 62.1%);
  }
  .entegration .circle__wrap:before {
    background-color: #fff;
  }
  .entegration .circle__wrap-item {
    width: 199.86px;
    height: 199.86px;
    background: linear-gradient(179.92deg, #c5e2d9 0.07%, #d7efe7 62.1%);
  }
  .entegration .circle__wrap-item:before {
    background-color: #fff;
  }
  .entegration__header {
    width: 171px;
    position: relative;
    z-index: 2;
  }
  .entegration__header .title {
    font-size: 16px;
    line-height: 22.4px;
    margin-bottom: 15px;
    margin-left: -5px;
  }
  .entegration__header .text {
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 300;
  }
  .entegration__slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
  }
  .entegration__slider-buttons {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 10px;
    margin-right: 0;
    width: 60px;
  }
  .entegration__slider-buttons-next, .entegration__slider-buttons-prev {
    width: 27.69px;
    height: 32px;
  }
  .entegration__slider-buttons-next svg, .entegration__slider-buttons-prev svg {
    width: 7.69px;
  }
  .entegration__slider-buttons-next.swiper-button-disabled, .entegration__slider-buttons-prev.swiper-button-disabled {
    pointer-events: none;
  }
  .entegration__slider .swiper {
    width: 171px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
    max-width: none;
    pointer-events: none;
  }
  .entegration .app__card {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    border-radius: 0;
  }
  .entegration .app__card-header {
    padding: 0;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .entegration .app__card-header .title {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
  }
  .entegration .app__card-content {
    text-align: center;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 0;
  }
  .entegration .app__card-content p {
    display: none;
  }
  .entegration .app__card-content a {
    font-size: 10px;
    line-height: 14px;
    pointer-events: all;
  }
  .entegration .app__card figure {
    display: none;
  }
  .entegration .mouse-down {
    display: none;
  }
}

.references {
  padding: 93px 0 103px 0;
  position: relative;
}
.references__header {
  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;
}
.references__header .title {
  font-size: 30px;
  font-weight: 200;
  line-height: 42px;
  letter-spacing: 0.15em;
  color: #11b682;
  margin-bottom: 124px;
}
.references__content .marquee__logos {
  width: 100%;
  overflow: hidden;
  padding-bottom: 50px;
}
.references__content .marquee__logos-inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 3160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.references__content .marquee__logos-inner.forward {
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}
.references__content .marquee__logos-inner.reverse {
  -webkit-animation: scrollReverse 20s linear infinite;
          animation: scrollReverse 20s linear infinite;
}
.references__content .marquee__logos-item {
  width: 316px;
  height: 145px;
}
.references__content .marquee__logos-item-image {
  width: 220px;
  height: 145px;
  background: #ffffff;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.references__footer {
  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;
  margin-top: 15px;
}
@media screen and (max-width: 991px) {
  .references {
    padding: 66px 0 49px 0;
    background: url("../../images/references-mobile-bg.png");
  }
  .references:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), color-stop(45.36%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.8)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 45.36%, rgba(255, 255, 255, 0.8) 100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .references__header {
    display: none;
  }
  .references__content {
    position: relative;
    z-index: 2;
  }
  .references__content .marquee__logos {
    margin-bottom: 18px;
    padding-bottom: 0;
  }
  .references__content .marquee__logos-inner {
    width: 1260px;
  }
  .references__content .marquee__logos-inner.forward {
    -webkit-animation: scrollMobile 20s linear infinite;
            animation: scrollMobile 20s linear infinite;
  }
  .references__content .marquee__logos-inner.reverse {
    -webkit-animation: scrollReverseMobile 20s linear infinite;
            animation: scrollReverseMobile 20s linear infinite;
  }
  .references__content .marquee__logos-item {
    width: 126px;
    height: 106px;
  }
  .references__content .marquee__logos-item-image {
    width: 106px;
    height: 106px;
    background: #f5fffc;
    border-radius: 3px;
    border: 8.83px solid #dffef4;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .references__content .marquee__logos-item-image img {
    width: 100%;
    height: auto;
  }
  .references__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 234px;
    margin: 36px auto 0 auto;
    position: relative;
    z-index: 2;
  }
  .references__footer-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    text-align: center;
    margin-bottom: 20px;
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
  }
}
@-webkit-keyframes scrollReverse {
  0% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes scrollReverse {
  0% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@-webkit-keyframes scrollMobile {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-700px);
            transform: translateX(-700px);
  }
}
@keyframes scrollMobile {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-700px);
            transform: translateX(-700px);
  }
}
@-webkit-keyframes scrollReverseMobile {
  0% {
    -webkit-transform: translateX(-700px);
            transform: translateX(-700px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes scrollReverseMobile {
  0% {
    -webkit-transform: translateX(-700px);
            transform: translateX(-700px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.what__say {
  background-color: #daeae5;
  position: relative;
}
.what__say .app__container {
  padding-top: 182px;
  padding-bottom: 186px;
  position: relative;
}
.what__say .app__container:before {
  content: "";
  display: block;
  width: 432px;
  height: 100%;
  position: absolute;
  left: 140px;
  top: 0;
  z-index: 3;
  background: linear-gradient(270.23deg, #daeae5 0.13%, #daeae5 63.39%, rgba(218, 234, 229, 0) 99.73%);
  -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
          transform: matrix(-1, 0, 0, 1, 0, 0);
}
.what__say-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.what__say-cloud {
  position: absolute;
  right: 0;
  top: -134px;
  z-index: 2;
  pointer-events: none;
}
.what__say-inner {
  position: relative;
  z-index: 6;
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.what__say-content {
  position: relative;
  z-index: 6;
  width: 905px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.what__say-content-left {
  background-color: #11b682;
  width: 370px;
  opacity: 0.99;
  -webkit-box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
  border-radius: 3px 0px 0px 3px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px 42px 0;
}
.what__say-content-left-inner {
  margin-top: -26px;
}
.what__say-content-left-inner figure {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}
.what__say-content-left-inner .textwrap {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: right;
  width: 100%;
  color: #fff;
}
.what__say-content-left-inner .textwrap .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
}
.what__say-content-left-inner .textwrap .text {
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  margin-bottom: 12px;
}
.what__say-content-left-inner .textwrap .stars {
  font-size: 0;
}
.what__say-content-left-inner .textwrap .stars svg {
  margin-left: 5px;
}
.what__say-content-right {
  width: calc(100% - 380px);
}
.what__say-content-right .main-title {
  font-size: 30px;
  font-weight: 200;
  line-height: 42px;
  letter-spacing: 0.15em;
  color: #11b682;
  padding: 0 0 28px 22px;
}
.what__say-content-right .app__card {
  background-color: #fff;
  border-radius: 3px;
  opacity: 0.99;
  -webkit-box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 30px 30px 20px rgba(0, 0, 0, 0.05);
}
.what__say-content-right .app__card-header {
  padding: 5px 0 0 17px;
}
.what__say-content-right .app__card-header img {
  width: 90px;
  height: auto;
}
.what__say-content-right .app__card-content {
  padding: 0 48px 26px 30px;
}
.what__say-content-right .app__card-content .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  color: #000;
  margin-bottom: 7px;
}
.what__say-content-right .app__card-content .text {
  font-size: 14px;
  line-height: 19.6px;
}
.what__say .peoples {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.what__say .peoples-item {
  -webkit-filter: drop-shadow(30px 30px 20px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(30px 30px 20px rgba(0, 0, 0, 0.05));
}
.what__say .peoples-item.active {
  display: none;
}
.what__say .peoples-item figure {
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.what__say .peoples-item figure img {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.what__say .peoples-item figure:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.what__say .peoples > li {
  margin: 0 12px;
}
.what__say .peoples > li[order="0"] {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.what__say .peoples > li[order="1"] {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.what__say .peoples > li[order="2"] {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.what__say .peoples > li[order="3"] {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.what__say .peoples > li[order="4"] {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.what__say .peoples > li[order="5"] {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
@media screen and (max-width: 991px) {
  .what__say {
    overflow: hidden;
    background: none;
  }
  .what__say-cloud, .what__say-image {
    display: none;
  }
  .what__say .circles {
    width: 120px;
    height: 120px;
    position: absolute;
    right: -16px;
    bottom: 50px;
    display: block;
    background-color: #f6fffc;
    z-index: 0;
    border-radius: 50%;
  }
  .what__say .circles_item-2 {
    width: 107px;
    height: 107px;
    background-color: #eafff8;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 5.9px;
    left: 5.9px;
  }
  .what__say .circles_item-3 {
    width: 89.53px;
    height: 89.53px;
    background-color: #d4fff1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 5.9px;
    left: 5.9px;
  }
  .what__say .app__container {
    padding-top: 84px;
    padding-bottom: 75px;
  }
  .what__say .app__container::before {
    display: none;
  }
  .what__say-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
  .what__say-inner-header {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
  }
  .what__say-inner .chat-icon {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .what__say-inner .main-title {
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: 0.15em;
    text-align: center;
    color: #01895e;
  }
  .what__say-inner .swiper {
    overflow: visible;
    width: 100%;
  }
  .what__say-inner .swiper .figure {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(19, 183, 131, 0.1)), to(rgba(19, 183, 131, 0.1)));
    background: linear-gradient(0deg, rgba(19, 183, 131, 0.1), rgba(19, 183, 131, 0.1));
    -webkit-box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
            box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
  }
  .what__say-inner .swiper .figure figure {
    width: 100%;
    height: 295px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    margin: 0;
  }
  .what__say-inner .swiper .figure figure img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .what__say-inner .swiper .textwrap {
    width: 100%;
    padding: 0 12.5px;
  }
  .what__say-inner .swiper .textwrap .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #13b783;
    margin-bottom: 4px;
  }
  .what__say-inner .swiper .textwrap .position {
    font-size: 0;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px;
  }
  .what__say-inner .swiper .textwrap .position span {
    font-size: 10px;
    line-height: 14px;
    font-weight: 300;
    color: #555555;
    margin-left: 2px;
  }
  .what__say-inner .swiper .textwrap .text {
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 500;
    color: #333;
  }
}

.success__section {
  background-color: #e5e5e5;
  padding: 40px 0 191px;
}
.success__section .app__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;
}
.success__section .app__container .title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0.15em;
  color: #11b682;
  margin: 24px 0 45px 0;
}
.success__section .app__container .text {
  font-size: 32px;
  line-height: 44.9px;
  font-weight: 400;
  text-align: center;
  max-width: 767px;
  margin-bottom: 45px;
}
.success__section .app__container .text b {
  font-weight: 700;
}
.success__section .app__container .newsletter__form-input {
  width: 100%;
  max-width: 500px;
}

.mobile_app__banner {
  padding: 158px 0;
  background: url("../../images/background-image-2.png") bottom right, url("../../images/circle-image.png") left center;
  background-color: #fff;
  background-repeat: no-repeat;
}
.mobile_app__banner .content {
  width: 100%;
  max-width: 757px;
  margin: 0 auto;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mobile_app__banner .content .phone {
  position: relative;
  width: 233px;
}
.mobile_app__banner .content .phone:before {
  content: "";
  width: 90%;
  height: 90%;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #f21;
  border-radius: 50%;
  background: #d9d9d9;
  -webkit-box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.6);
          box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.6);
}
.mobile_app__banner .content .phone img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
}
.mobile_app__banner .content .textwrap {
  width: calc(100% - 324px);
}
.mobile_app__banner .content .textwrap .title {
  font-size: 30px;
  font-weight: 200;
  line-height: 42px;
  letter-spacing: 0.15em;
  color: #11b682;
  margin-bottom: 30px;
  text-align: center;
}
.mobile_app__banner .content .textwrap .text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  max-width: 386px;
  margin: 0 auto 30px auto;
}
.mobile_app__banner .content .textwrap .text b {
  font-weight: 700;
}
.mobile_app__banner .content .textwrap .btns {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile_app__banner .content .textwrap .btns a {
  margin: 0 7px;
}
@media screen and (max-width: 991px) {
  .mobile_app__banner {
    padding: 90px 27px 125.2px 27px;
    background: none;
  }
  .mobile_app__banner .content .phone {
    width: 100px;
  }
  .mobile_app__banner .content .phone::before {
    display: none;
  }
  .mobile_app__banner .content .phone .circles {
    width: 291px;
    height: 291px;
    position: absolute;
    right: -56px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    background-color: #f6fffc;
    z-index: 0;
    border-radius: 50%;
  }
  .mobile_app__banner .content .phone .circles_item-2 {
    width: 261px;
    height: 261px;
    background-color: #eafff8;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 15px;
    right: 7.48px;
  }
  .mobile_app__banner .content .phone .circles_item-3 {
    width: 217px;
    height: 217px;
    background-color: #d4fff1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 21.48px;
    right: 7.48px;
  }
  .mobile_app__banner .content .textwrap {
    width: calc(100% - 113px);
    max-width: 208px;
    position: relative;
    z-index: 2;
  }
  .mobile_app__banner .content .textwrap .title {
    display: none;
  }
  .mobile_app__banner .content .textwrap .text {
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
    margin-bottom: 20px;
  }
  .mobile_app__banner .content .textwrap .text b {
    font-weight: 400;
  }
  .mobile_app__banner .content .textwrap .btns a {
    width: calc(50% - 6px);
    display: block;
  }
  .mobile_app__banner .content .textwrap .btns a img {
    width: 100%;
    height: auto;
  }
}

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

@keyframes rotaterLogosReverse {
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotaterLogos {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotaterLogos {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotater {
  100% {
    -webkit-transform: rotate(360deg) scale(0.8);
            transform: rotate(360deg) scale(0.8);
  }
}
@keyframes rotater {
  100% {
    -webkit-transform: rotate(360deg) scale(0.8);
            transform: rotate(360deg) scale(0.8);
  }
}
.mobile__newsletter {
  width: 100%;
  padding: 40px 0;
  background-color: #dffef4;
  background-image: url("../../images/newsletter-bg.png");
  background-size: cover;
}
.mobile__newsletter .newsletter__form-input {
  max-width: 308px;
  margin: 0 auto;
}
.mobile__newsletter .textwrap {
  width: 100%;
  max-width: 248px;
  margin: 0 auto;
  text-align: center;
}
.mobile__newsletter .textwrap .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  color: #01895e;
}
.mobile__newsletter .textwrap .text {
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 30px;
}
.mobile__newsletter .textwrap .text b {
  font-weight: 500;
}

.support__btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

.support__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 100%;
  background: #fff;
  overflow: hidden;
  display: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.support__modal:before {
  content: "";
  width: 100%;
  height: 250px;
  background: rgba(17, 182, 130, 0.1);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.support__modal:after {
  content: "";
  width: 250px;
  height: 250px;
  background: rgba(17, 182, 130, 0.1);
  border-radius: 50%;
  display: block;
  position: absolute;
  right: -165px;
  bottom: 0;
}
.support__modal-inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 0 15px;
  overflow: auto;
}
.support__modal-header {
  width: 100%;
  padding: 10px 0 20px 0;
  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;
  position: relative;
}
.support__modal-header-close {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 15px;
}
.support__modal-header-logo {
  width: 100%;
  max-width: 136.36px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.support__modal-header-logo img {
  width: 100%;
  height: auto;
}
.support__modal-header-textwrap-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  color: #13b783;
  margin-bottom: 10px;
}
.support__modal-header-textwrap-text {
  font-size: 14px;
  line-height: 19.6px;
  color: #333;
}
.support__modal-content .app__card {
  background: #ffffff;
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  border-radius: 3px;
  margin-bottom: 20px;
}
.support__modal-content .app__card figure {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.support__modal-content .app__card figure img {
  width: 100%;
  height: auto;
}
.support__modal-content .app__card-content {
  padding: 16px 24px;
}
.support__modal-content .app__card-content .textwrap .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #13b783;
  margin-bottom: 4px;
}
.support__modal-content .app__card-content .textwrap .text {
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  color: #555555;
}
.support__modal-content .app__card-content .r_1 {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.support__modal-content .app__card-content .r_1 .action {
  width: 90px;
}
.support__modal-content .app__card-content .r_1 .textwrap {
  width: calc(100% - 90px);
  padding-right: 30px;
}
.support__modal-content .app__card-content .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0 8px 0;
}
.support__modal-content .app__card-content .list_item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
  margin-bottom: 2px;
}
.support__modal-content .app__card-content .list_item span {
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  color: #555555;
  margin-left: 8px;
}
.support__modal-content .app__card-content .search {
  width: 100%;
  position: relative;
}
.support__modal-content .app__card-content .search__input {
  width: 100%;
  height: 36px;
  background-color: #f8f8f8;
  border-radius: 3px;
  border: none;
  outline: none;
  font-size: 10px;
  line-height: 14px;
  font-weight: 300;
  color: #333;
  padding: 0 35px 0 10px;
}
.support__modal-content .app__card-content .search__input::-webkit-input-placeholder {
  color: #8c8c8c;
}
.support__modal-content .app__card-content .search__input::-moz-placeholder {
  color: #8c8c8c;
}
.support__modal-content .app__card-content .search__input:-ms-input-placeholder {
  color: #8c8c8c;
}
.support__modal-content .app__card-content .search__input::-ms-input-placeholder {
  color: #8c8c8c;
}
.support__modal-content .app__card-content .search__input::placeholder {
  color: #8c8c8c;
}
.support__modal-content .app__card-content .search__button {
  position: absolute;
  right: 0;
  top: 4px;
  padding: 3px 16.5px;
  line-height: 19.6px;
  font-size: 14px;
  font-weight: 600;
}
.support__modal-content .app__card-footer {
  margin: 0 11px;
  padding: 15px 13px;
  width: calc(100% - 22px);
  border-top: 1px solid rgba(60, 60, 67, 0.36);
}
.support__modal-content .app__card-footer a {
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  color: #13b783;
  text-decoration: none;
}
.supportReady .support__modal {
  display: block;
}

.supportAnimate .support__modal {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.app__page {
  width: 100%;
  margin-top: 70px;
  padding-top: 50px;
  min-height: calc(100vh - 180px);
  position: relative;
}
.app__page-background {
  opacity: 0.4;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 80%;
  z-index: 1;
}
.app__page-background img {
  width: 100%;
  height: auto;
}
.app__page-circle {
  width: 689px;
  height: 689px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -284px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.app__page-circle-1 {
  width: 100%;
  height: 100%;
  background-color: #f7fffc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.app__page-circle-2 {
  width: 90%;
  height: 90%;
  background-color: #eafff8;
  border-radius: 50%;
  position: absolute;
  top: 35.52px;
  left: 17.71px;
}
.app__page-circle-3 {
  width: 75%;
  height: 75%;
  background-color: #d4fff1;
  border-radius: 50%;
  position: absolute;
  top: 86.37px;
  left: 70.8px;
}
.app__page-content {
  max-width: 760px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.app__page-content.full-width {
  max-width: 100%;
  padding: 0;
}
.app__page-content-header {
  max-width: 860px;
  margin: 0 auto 80px auto;
}
.app__page-content-header-action {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 40px;
}
.app__page-content-header-action .app__btn {
  max-width: 500px;
  width: 100%;
}
.app__page-content-header h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 45px;
  text-align: center;
  color: #000000;
}
.app__page-content-header h1 b {
  font-weight: 700;
  color: #11b682;
}

.why__card {
  padding: 80px 0;
}
.why__card-inner {
  padding: 50px;
  background: #fdfdfd;
  border-radius: 3px;
  -webkit-filter: drop-shadow(6px 6px 100px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(6px 6px 100px rgba(0, 0, 0, 0.15));
}
.why__card-header {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.why__card-header h1 {
  font-weight: 400;
  font-size: 28px;
  line-height: 39px;
  text-align: center;
  color: #11b682;
  max-width: 440px;
}
.why__card-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #555555;
  margin: 0 0 30px 0;
}
.why__card-content .actions {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.why__card-content .actions a {
  border: 1px solid #ccc;
  width: calc(33.3333333333% - 8px);
  height: 50px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.why__card-content .actions a span {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  margin-left: 15px;
}
.why__card-content .actions a:hover {
  background-color: rgba(204, 204, 204, 0.6);
}
.why__card-footer {
  margin-top: 50px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.why__card-footer .app__btn {
  width: 100%;
  max-width: 500px;
}

.properties {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(25% - 15px) 20px calc(25% - 15px) 20px calc(25% - 15px) 20px calc(25% - 15px);
  grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
  gap: 20px;
  padding-bottom: 60px;
}
.properties-item {
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 0 24px 24px 24px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 50px 0 40px 0;
}
.properties-item .rectangles {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 180px;
  height: 80px;
  border-top-right-radius: 3px;
}
.properties-item .rectangles::after, .properties-item .rectangles::before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: rotate(33.1deg);
          transform: rotate(33.1deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.properties-item .rectangles::after {
  width: 223px;
  height: 223px;
  background: rgba(33, 209, 154, 0.05);
  border-radius: 50px;
  top: -168px;
  right: -48px;
}
.properties-item .rectangles::before {
  width: 183px;
  height: 183px;
  background: rgba(33, 209, 154, 0.05);
  border-radius: 25px;
  top: -142px;
  right: -28px;
}
.properties-item figure {
  margin-top: -50px;
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  background: #11b682;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.properties-item .textwrap .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.properties-item .textwrap .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #555555;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.properties-item:hover {
  background: #11b682;
  -webkit-box-shadow: 5px 4px 50px 5px rgba(17, 182, 130, 0.5);
          box-shadow: 5px 4px 50px 5px rgba(17, 182, 130, 0.5);
}
.properties-item:hover .rectangles::after {
  background: rgba(33, 209, 154, 0.2);
}
.properties-item:hover .rectangles::before {
  background: rgba(33, 209, 154, 0.5);
}
.properties-item:hover .textwrap .text,
.properties-item:hover .textwrap .title {
  color: #fff;
}
.properties-item:hover figure {
  background-color: #fff;
  color: #222;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1300px) {
  .properties {
    -ms-grid-columns: calc(33.3333333333% - 13.333px) calc(33.3333333333% - 13.333px) calc(33.3333333333% - 13.333px);
    grid-template-columns: calc(33.3333333333% - 13.333px) calc(33.3333333333% - 13.333px) calc(33.3333333333% - 13.333px);
  }
}
@media screen and (max-width: 991px) {
  .properties {
    -ms-grid-columns: calc(50% - 10px) calc(50% - 10px);
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  }
}
@media screen and (max-width: 850px) {
  .properties {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.references__list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(20% - 16px) 20px calc(20% - 16px) 20px calc(20% - 16px) 20px calc(20% - 16px) 20px calc(20% - 16px);
  grid-template-columns: calc(20% - 16px) calc(20% - 16px) calc(20% - 16px) calc(20% - 16px) calc(20% - 16px);
  gap: 20px;
  padding-bottom: 60px;
}
.references__list-item {
  background: #fdfdfd;
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 20px 24px;
}
.references__list-item figure {
  margin: 0 0 20px 0;
  padding: 0;
  border: 1px solid #cccccc;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.references__list-item figure img {
  max-width: 100%;
  height: auto;
}
.references__list-item .textwrap {
  width: 100%;
  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;
}
.references__list-item .textwrap .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #11b682;
}
.references__list-item .textwrap .text {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #555555;
}
@media screen and (max-width: 1300px) {
  .references__list {
    -ms-grid-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
    grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);
  }
}
@media screen and (max-width: 1200px) {
  .references__list {
    -ms-grid-columns: calc(33% - 10px) calc(33% - 10px) calc(33% - 10px);
    grid-template-columns: calc(33% - 10px) calc(33% - 10px) calc(33% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .references__list {
    -ms-grid-columns: calc(50% - 10px) calc(50% - 10px);
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  }
}
@media screen and (max-width: 850px) {
  .references__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.app__user {
  width: 100%;
  min-height: calc(100vh - 110px);
  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;
  background-position: bottom right;
  background-repeat: no-repeat;
}
.app__user-content {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
  position: relative;
}
.app__user-content-circle {
  width: 689px;
  height: 689px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -284px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.app__user-content-circle-1 {
  width: 100%;
  height: 100%;
  background-color: #f7fffc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.app__user-content-circle-2 {
  width: 90%;
  height: 90%;
  background-color: #eafff8;
  border-radius: 50%;
  position: absolute;
  top: 35.52px;
  left: 17.71px;
}
.app__user-content-circle-3 {
  width: 75%;
  height: 75%;
  background-color: #d4fff1;
  border-radius: 50%;
  position: absolute;
  top: 86.37px;
  left: 70.8px;
}
.app__user-content-container {
  max-width: 580px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.app__user-content-container form {
  width: 100%;
}
.app__user-register .app__user-content-container {
  padding: calc(10vh - 50px) 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.app__user-register .app__user-content-container form {
  width: 100%;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.app__user-content-inner {
  background-color: #fdfdfd;
  -webkit-filter: drop-shadow(6px 6px 100px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(6px 6px 100px rgba(0, 0, 0, 0.15));
  border-radius: 3px;
  width: 100%;
  padding: 50px 40px;
}
.app__user-content-header {
  width: 100%;
  margin-bottom: 40px;
}
.app__user-content-header-title {
  font-size: 32px;
  line-height: 44.8px;
  font-weight: 600;
  margin: 0;
  color: #11b682;
  text-align: center;
}
.app__user-content-footer {
  margin-top: 50px;
}
.app__user-content-menu {
  text-align: center;
  width: 100%;
  margin-top: 5vh;
}
.app__user-content-menu ul {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.app__user-content-menu ul li {
  margin-right: 20px;
}
.app__user-content-menu ul li:last-child {
  margin-right: 0;
}
.app__user-content-menu ul li.copyright {
  color: #555;
  font-size: 16px;
  line-height: 22px;
}
.app__user-content-menu ul li a {
  font-size: 16px;
  line-height: 22px;
  color: #11b682;
  text-decoration: none;
}
@media screen and (max-width: 578px) {
  .app__user {
    background: none !important;
  }
  .app__user-content {
    padding: 15px 0;
  }
  .app__user-content-circle {
    display: none;
  }
  .app__user-content-inner {
    padding: 30px 20px;
    border-radius: 0;
  }
  .app__user-content-header {
    margin-bottom: 20px;
  }
  .app__user-content-header-title {
    font-size: 20px;
    line-height: 1;
  }
  .app__user-content-footer {
    margin-top: 30px;
  }
  .app__user-content-menu ul li:not(.copyright) {
    display: none;
  }
  .app__user-content-menu ul li.copyright {
    font-size: 12px;
  }
}

.verification {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 20px;
}
.verification__header {
  width: 100%;
  margin-bottom: 30px;
}
.verification__header figure {
  max-width: 200px;
  font-size: 0;
  margin: 0 auto 30px auto;
  padding: 0;
}
.verification__header figure img {
  width: 100%;
  height: auto;
}
.verification__header p {
  font-size: 14px;
  line-height: 20px;
  color: #555;
  text-align: center;
  margin: 0;
}
.verification__header-info {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 269px;
  margin: 0 auto;
}
.verification__header-info svg {
  width: 40px;
}
.verification__header-info p {
  width: calc(100% - 48px);
  font-size: 16px;
  line-height: 22.4px;
  color: #555555;
}
.verification__input {
  padding: 0;
  text-align: center;
  -webkit-appearance: none;
}
.verification__input::-webkit-outer-spin-button, .verification__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.verification__input::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 38px;
  color: #aaaaaa;
}
.verification__input::-moz-placeholder {
  font-size: 18px;
  line-height: 38px;
  color: #aaaaaa;
}
.verification__input:-ms-input-placeholder {
  font-size: 18px;
  line-height: 38px;
  color: #aaaaaa;
}
.verification__input::-ms-input-placeholder {
  font-size: 18px;
  line-height: 38px;
  color: #aaaaaa;
}
.verification__input::placeholder {
  font-size: 18px;
  line-height: 38px;
  color: #aaaaaa;
}
.verification__footer {
  margin-top: 30px;
}
.verification__success-header {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}
.verification__success-header div {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.verification__success-content {
  padding: 30px 0 10px 0;
}
.verification__success-footer {
  text-align: center;
}
.verification__body-row {
  max-width: 396px;
  margin: 0 auto;
}
.verification__body-row .col-2 {
  padding: 0 10px;
}
.verification__body-row .col-2 .form__group {
  margin-bottom: 0;
}
.verification__body .remaining {
  font-size: 14px;
  line-height: 19.6px;
}
.verification__body .remaining_time {
  font-weight: 600;
}
.verification__body .resend_code .app__link {
  font-size: 14px;
}
.verification hr {
  color: #eee;
  opacity: 1;
  margin: 30px 0 10px 0;
}
.verification .support__wrap-row {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.verification .support__wrap-row-col {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}
.verification .support__wrap-row-col .app__link {
  font-size: 14px;
}
@media screen and (max-width: 578px) {
  .verification {
    padding: 20px 15px;
    border: none;
    border-radius: 0;
    padding: 0;
    background: none;
  }
  .verification__header {
    margin-bottom: 20px;
  }
  .verification__header figure {
    display: none;
  }
  .verification__header p {
    font-size: 12px;
    line-height: 16.8px;
  }
  .verification__header-info {
    max-width: 196px;
  }
  .verification__header-info svg {
    width: 24px;
  }
  .verification__header-info p {
    width: calc(100% - 32px);
  }
  .verification__body-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .verification__body-row .col-2 {
    padding: 0 9.92px;
  }
  .verification__body .remaining {
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
  }
  .verification__body .remaining_time {
    font-weight: 400;
  }
  .verification__body .resend_code .app__link {
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
  }
  .verification__input {
    height: 40px;
  }
  .verification__footer {
    margin-top: 16px;
  }
  .verification hr {
    margin: 16px 0 8px 0;
  }
  .verification .support__wrap-row {
    -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;
  }
  .verification .support__wrap-row-col {
    font-size: 12px;
    font-weight: 300;
    line-height: 16.8px;
  }
  .verification .support__wrap-row-col .app__link {
    font-weight: 300;
    font-size: 12px;
    margin-top: 2px;
  }
}

.prices {
  max-width: 1198px;
  margin: 0 auto;
  padding: 8vh 15px;
}
.prices .info__text {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}
.prices__list {
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
  -ms-grid-columns: 306px 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 306px 1fr 1fr 1fr;
}
.prices__list-item {
  width: 100%;
}
.prices__top {
  background-image: url(../../images/price-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  padding-bottom: 30px;
}
.prices__top .-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 45px;
  color: #11b682;
  margin-top: 30px;
}
.prices__bottom {
  background: #ffffff;
  -webkit-box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 23px 0 59px 0;
  position: relative;
}
.prices__bottom .circle1 {
  display: block;
  position: absolute;
  width: 223px;
  height: 223px;
  left: 0px;
  top: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #b2ffe7));
  background: linear-gradient(180deg, #ffffff 0%, #b2ffe7 99.48%);
  opacity: 0.2;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.prices__bottom .circle2 {
  display: block;
  position: absolute;
  width: 359px;
  height: 359px;
  left: 249px;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #b3ffe7));
  background: linear-gradient(180deg, #ffffff 0%, #b3ffe7 99.48%);
  opacity: 0.5;
  border-radius: 50%;
}
.prices__bottom::before {
  content: "";
  width: 470px;
  height: 470px;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #ddfff4));
  background: linear-gradient(180deg, #ffffff 0%, #ddfff4 99.48%);
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.prices__bottom .-property {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prices__bottom .prices__list {
  padding: 15px 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
  z-index: 2;
  line-height: 1;
  background: transparent;
}
.prices__bottom .prices__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  bottom: 0;
  right: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: transparent;
}
.prices__bottom .prices__list.-list-btns {
  margin-top: 25px;
}
.prices__bottom .prices__list.-list-btns .prices__list-item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prices__bottom .prices__list:not(.-list-btns):not(.-list-title):hover::before {
  right: -18px;
  background: -webkit-gradient(linear, right top, left top, from(#ffffff), color-stop(90%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 90%);
  -webkit-box-shadow: 12px 4px 14px rgba(12, 128, 91, 0.2);
          box-shadow: 12px 4px 14px rgba(12, 128, 91, 0.2);
}
.prices__bottom .prices__list-item {
  position: relative;
  z-index: 3;
}
.prices__bottom .prices__list-item.-title {
  padding-left: 50px;
}
.prices__bottom .prices__list-item .title {
  font-weight: 700;
  font-size: 20px;
  color: #555555;
}
.prices .property__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prices .property__item-icon {
  margin-right: 20px;
  font-size: 0;
}
.prices .property__item-title {
  font-weight: 400;
  font-size: 14px;
  color: #555555;
}
.prices .paket__item {
  background: #ffffff;
  border-radius: 3px;
  padding: 21px 25px 0 25px;
  -webkit-box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.25);
  position: relative;
}
.prices .paket__item:before {
  content: "";
  width: 226px;
  height: 226px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #f5f5f5));
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 99.48%);
  opacity: 0.5;
}
.prices .paket__item-inner {
  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;
  position: relative;
  z-index: 2;
}
.prices .paket__item .price {
  font-size: 54px;
  line-height: 75.6px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}
.prices .paket__item .price:after {
  content: " ";
  font-size: 22px;
  line-height: 1;
  position: absolute;
  right: -15px;
  top: 5px;
}
.prices .paket__item .title {
  font-size: 20px;
  line-height: 28px;
  color: #13b783;
  font-weight: 600;
  margin-bottom: 7px;
}
.prices .paket__item .text {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 25px;
  min-height: 100px;
}
.prices .paket__item .app__btn {
  margin-bottom: -10px;
}
.prices .paket__item.-standart {
  z-index: 1;
  margin: 23px 0 48px;
}
.prices .paket__item.-profesyonel {
  z-index: 3;
  padding: 49px 25px 0 25px;
  -webkit-box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.1);
}
.prices .paket__item.-profesyonel::before {
  width: 270px;
  height: 270px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #b3ffe7));
  background: linear-gradient(180deg, #ffffff 0%, #b3ffe7 99.48%);
  opacity: 0.5;
}
.prices .paket__item.-profesyonel .app__btn {
  margin-bottom: 20px;
}
.prices .paket__item.-premium {
  margin: 23px 0 48px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .prices {
    padding: 0;
  }
  .prices__list {
    -ms-grid-columns: 260px 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 20px;
  }
  .prices__top {
    overflow: auto;
    padding-top: 100px;
  }
  .prices__top .-title {
    font-size: 26px;
  }
  .prices__bottom {
    overflow: auto;
  }
  .prices__bottom .prices__list-item.-title {
    position: sticky;
    left: 0;
    padding-left: 30px;
  }
  .prices .paket__item {
    padding: 21px 25px 0 25px;
  }
  .prices .paket__item .price {
    font-size: 42px;
    line-height: 55.6px;
    margin-bottom: 20px;
  }
  .prices .paket__item .price:after {
    content: "";
    font-size: 18px;
  }
  .prices .paket__item .title {
    font-size: 18px;
    line-height: 26px;
  }
  .prices .paket__item .text {
    font-size: 14px;
    line-height: 19.6px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 25px;
    min-height: 120px;
  }
  .prices .paket__item .app__btn {
    margin-bottom: -10px;
  }
  .prices .paket__item.-standart {
    z-index: 1;
    margin: 23px 0 48px;
  }
  .prices .paket__item.-profesyonel {
    z-index: 3;
    padding: 49px 25px 0 25px;
    -webkit-box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.1);
  }
  .prices .paket__item.-profesyonel::before {
    width: 270px;
    height: 270px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #b3ffe7));
    background: linear-gradient(180deg, #ffffff 0%, #b3ffe7 99.48%);
    opacity: 0.5;
  }
  .prices .paket__item.-profesyonel .app__btn {
    margin-bottom: 20px;
  }
  .prices .paket__item.-premium {
    margin: 23px 0 48px;
    z-index: 1;
  }
  .prices__scroll-area {
    min-width: 1010px;
    position: relative;
  }
  .prices .info__text {
    padding-right: 30px;
    margin-bottom: 20pxs;
  }
}
@media screen and (max-width: 991px) {
  .prices__list {
    -ms-grid-columns: 210px 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 210px 1fr 1fr 1fr;
    gap: 15px;
  }
  .prices__top .-title {
    margin-top: -30px;
    text-align: center;
  }
  .prices__top .prices__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 30px;
  }
  .prices__bottom {
    padding: 20px 0 0 0;
  }
  .prices__bottom .prices__scroll-area {
    min-width: 720px;
    padding-right: 30px;
  }
  .prices__bottom .prices__list {
    padding: 0;
  }
  .prices__bottom .prices__list-item {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
  }
  .prices__bottom .prices__list-item.-title {
    z-index: 4;
    padding-left: 20px;
    background-color: #fff;
    -webkit-box-shadow: 2px 12px 11px rgba(0, 0, 0, 0.15);
            box-shadow: 2px 12px 11px rgba(0, 0, 0, 0.15);
  }
  .prices__bottom .prices__list.-list-btns {
    margin-top: 0;
  }
  .prices__bottom .prices__list.-list-btns .prices__list-item {
    height: 70px;
  }
  .prices .property__item-icon {
    display: none;
  }
  .prices .property__item-title {
    font-size: 12px;
  }
  .prices .paket__item .app__btn {
    margin-bottom: -10px;
  }
  .prices .paket__item .text {
    min-height: 0;
  }
  .prices .paket__item.-standart {
    z-index: 1;
    margin: 0;
  }
  .prices .paket__item.-profesyonel {
    z-index: 3;
    margin: 20px 0;
    padding: 49px 25px 0 25px;
    -webkit-box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.1);
  }
  .prices .paket__item.-profesyonel::before {
    width: 270px;
    height: 270px;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(99.48%, #b3ffe7));
    background: linear-gradient(180deg, #ffffff 0%, #b3ffe7 99.48%);
    opacity: 0.5;
  }
  .prices .paket__item.-profesyonel .app__btn {
    margin-bottom: 20px;
  }
  .prices .paket__item.-premium {
    margin: 0;
    z-index: 1;
  }
}

.message {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #555555;
  border-radius: 3px;
  border-left: 5px solid transparent;
}
.message-error {
  background: #fbeceb;
  border-left-color: #db4437;
}
.message-success {
  background: #ebfbec;
  border-left-color: #11b682;
}
@media screen and (max-width: 578px) {
  .message {
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
  }
}

.form-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.form-loading div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #11b682;
  -webkit-animation: formLoading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: formLoading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.form-loading div:nth-child(1) {
  left: 8px;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}
.form-loading div:nth-child(2) {
  left: 32px;
  -webkit-animation-delay: -0.12s;
          animation-delay: -0.12s;
}
.form-loading div:nth-child(3) {
  left: 56px;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

.loadingIsActive {
  position: relative;
}
.loadingIsActive:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.5;
  z-index: 5;
}
.loadingIsActive .form-loading {
  display: inline-block;
  z-index: 6;
}

@-webkit-keyframes formLoading {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}

@keyframes formLoading {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}


.error__page {
  padding-bottom: 50px;
}
.error__page .app__user-content-menu {
  position: relative;
  z-index: 10;
}
.error__page .app__page-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: #fdfdfd;
  -webkit-filter: drop-shadow(6px 6px 100px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(6px 6px 100px rgba(0, 0, 0, 0.15));
  padding: 50px 100px;
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  text-align: center;
  margin-bottom: 58px;
}
.error__page-content-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 45px;
  color: #11b682;
  margin: 0 0 10px 0;
}
.error__page-content p {
  font-size: 16px;
  line-height: 22px;
  color: #555555;
}
@media screen and (max-width: 850px) {
  .error__page {
    margin-top: 0;
    padding-top: 10px;
  }
  .error__page .app__page-content {
    max-width: 500px;
    padding: 50px 30px;
  }
  .error__page-icon {
    padding: 0 100px;
  }
  .error__page-icon img {
    max-width: 100%;
  }
  .error__page-header {
    padding: 0 100px;
  }
  .error__page-header img {
    max-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .error__page .app__page-content {
    max-width: 500px;
    padding: 50px 30px;
    gap: 30px;
  }
  .error__page-icon {
    padding: 0 70px;
  }
  .error__page-icon img {
    max-width: 100%;
  }
  .error__page-header {
    padding: 0 50px;
  }
  .error__page-header img {
    max-width: 100%;
  }
  .error__page-content-title {
    font-size: 18px;
    line-height: 1;
  }
  .error__page-content p {
    font-size: 14px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 578px) {

  .verification .support__wrap-row-col,
  .verification__body .resend_code .app__link,
  .verification__body .remaining,
  .references__list-item .textwrap .text,
  .support__modal-content .app__card-footer a,
  .support__modal-content .app__card-content .search__input,
  .support__modal-content .app__card-content .list_item span,
  .support__modal-content .app__card-content .textwrap .text,
  .mobile__newsletter .textwrap .text,
  .mobile_app__banner .content .textwrap .text,
  .mobile_app__banner .content .textwrap .title,
  .what__say-inner .swiper .textwrap .position span,
  .what__say-content-right .main-title,
  .advantages__content ul li .textwrap .text,
  .advantages__header .title,
  .for__who-content-tab-content li p,
  .entegration__header .title,
  .entegration__header .text,
  .references__footer-text{
    font-weight: 400 !important;
  }

}
    .price-container{
        margin-top: 100px;
        margin-bottom: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-family: "Altone";
    }

    .p-w-30{
        width: 30%;
    }
    .p-w-40{
        width: 40%;
    }

    .p-w-100{
        width: 100%;
    }

    .p-mt-162{
        margin-top: 162px;
    }

    .p-mt-30{
        margin-top: 30px;
    }

    .p-mt-60{
        margin-top: 60px;
    }

    .p-mt-70{
        margin-top: 60px;
    }

    .app__btn-secondary.price-btn-secondary {
        min-width: 70%;
        color: #fff;
        background-color: #B0B0B0;
        -webkit-box-shadow: 0px 18px 24px rgba(17, 182, 130, 0.21);
                box-shadow: 0px 18px 24px rgba(17, 182, 130, 0.21);
    }
    .app__btn-secondary.price-btn-secondary:hover {
        color: #fff;
        -webkit-transform: translateY(-5px);
                transform: translateY(-5px);
        -webkit-box-shadow: 0px 23px 30px rgba(17, 182, 130, 0.21);
                box-shadow: 0px 23px 30px rgba(17, 182, 130, 0.21);
    }

    .app__btn.price-btn{
        white-space: nowrap;
    }

    .price{
        width: 1157px;
    }

    .price-title{
        color: #11b682;
        font-size: 32px;
        font-weight: 300;
        letter-spacing: 3.2px;
        margin-bottom: 60px;
        text-align: center;
    }

    .price-detail{
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        border-radius: 3px;
        padding: 40px;
        background: #FFF;
        box-shadow: 6px 6px 100px 15px rgba(0, 0, 0, 0.05);
    }

    .price-detail .payment-type{
        background-color: #F0F0F0;
        border: 6px solid #F0F0F0;
        margin-top: 66px;
        border-radius: 77px;
        position: relative;
    }

    .price-detail .payment-type .rounded-btn{
        border-radius: 48px;
        padding: 10px 20px;
        border: 1px solid #11b682;
        font-size: 15px;
        font-weight: 600;
    }

    .price-detail .payment-type .rounded-btn-fill{
        background-color: #11b682;
        color: #fff;
    }

    .price-detail .payment-type .rounded-btn-outline{
        background-color: transparent;
        color: #5B5B5B;
        transition: all .2s;
    }

    .price-detail .payment-type .rounded-btn-outline:hover{
        background-color: #11b682;
        color: #fff;
    }

    .price-detail .payment-type .discount-info{
        position: absolute;
        top: -50px;
        right: -90px; 
    }

    .price-detail .payment-type .discount-info-text{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 40px;
        font-weight: 600;
        color: #5B6260;
    }

    .price-detail .payment-type .discount-info-text-percent{
        font-size: 29px;
    }

    .price-detail .payment-type .discount-info-text-info{
        font-size: 15px;
    }

    .payment-info{
        display: flex;
    }

    .payment-info-item-top{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 0;
        position: relative;
    }

    .payment-info-item-top-bg{
        position: absolute;
        width: 330px;
        height: 330px;
        border-radius: 330px;
        opacity: 0.5;
        background: linear-gradient(180deg, #FFF 0%, #B2FFE7 99.48%);
        z-index: -1;
    }

    .payment-info-item-top-header{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 600;
    }

    .payment-info-item-title{
        font-size: 12px;
        color: #005A3E;
        letter-spacing: 2.4px;
    }

    .payment-info-item-price{
        font-size: 54px;
        color: #11b682;
        line-height: 54px;
    }

    .payment-info-item-product{
        color: #13B783;
        font-size: 20px;
        font-weight: 600;
    }

    .payment-info-item-desc{
        text-align: center;
        font-size: 14px;
        font-weight: 400;
    }

    .payment-info-item-bottom{
        margin-left: 20px;
    }

    .payment-info-item-bottom.center{
        margin-left: 0px;
        display: flex;
        justify-content: center;
    }

    .payment-info-item-bottom.center ul{
        margin: 0;
        padding: 0;
    }

    .payment-info-item-bottom-list{
        list-style-type: none;
        font-size: 14px;
        color: #555;
    }

    .payment-info-item-bottom-list li{
        margin-top: 15px;
    }

    .payment-info-item-bottom-list .active{
        color: ##555555;
    }

    .payment-info-item-bottom-list .passive{
        color: #555555;
        opacity: 0.5;
    }

    .payment-info-item-badge{
        color: #F90;
        font-weight: 700;
        font-size: 12px;
        padding: 5px 15px;
        border-radius: 66px;
        border: 2px dotted #F90;
        background: #FFF;
    }

    .price-customers{
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .price-customers-image{
        display: flex;
    }

    .price-customers-image-item{
        width: 40px;
        height: 40px;
        margin-left: -20px;
    }

    .price-customers-image-item img{
        width: 100%;
        height: 100%;
        border-radius: 100px;
        border: 1px solid #fff;
    }

    .price-customers-text{
        font-size: 14px;
    }

    .price-support{
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .price-support-request{
        display: flex;
        align-items: center;
        padding: 20px;
        background-color: #F4F4F4;
        border-radius: 10px;
        gap: 20px;
        width: 100%;
    }

    .price-support-request-image{
        width: 25%;
        background-color: #15B884;
        padding: 60px 20px;
        border-radius: 10px;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
    }

    .price-support-request-image img{
        margin-bottom: 12px;
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }
    
    .price-support-request-image-title{
        font-weight: 700;
    }

    .price-support-request-text{
        width: 75%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0
    }

    .price-support-request-text-black-sm{
        font-size: 14px;
    }

    .price-support-request-text-black-md{
        font-size: 16px;
    }

    .price-support-request-text-green{
        font-size: 20px;
        color: #11b682;
        letter-spacing: 3px;
    }

    .price-call-request-form{
        display: flex;
        height: 48px;
        width: 70%;
    }

    .price-call-request-form input{
        min-height: 48px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 20px 10px;
    }

    .price-call-request-form button{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .price-support-info{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        gap: 28px;
    }

    .price-support-info-item-text{
        font-size: 16px;
        font-weight: 400;
        margin-left: 10px;
    }

    .price-prop-info-text{
        color: #11b682;
        font-size: 12px;
        font-weight: 600;
    }

    @media (max-width: 768px) {

        .price-container{
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .price{
            width: 100%;
        }

        .price-title{
            text-align: start;
        }

        .payment-info{
            flex-direction: column;
            text-wrap: wrap;
        }

        .payment-info-item{
            aling-items: center;
        }

        .payment-info-item-bottom{
            display: flex;
            align-items: center;
            flex-direction: column;
            margin-left: 0px !important;
        }

        .payment-info-item-bottom-list{
            padding-left: 0px !important;
        }

        .payment-info-item.beginner, .payment-info-item.premium{
            margin-top: 80px;
        }

        .app__btn.price-btn{
            width: 80%;
            padding: 14px 24px;
            white-space: nowrap;
        }

        /* Mobil görünümde sıralamayı değiştirmek için sınıfları güncelliyoruz */
        .payment-info-item.beginner {
            width: 100%;
            order: 2;
        }

        .payment-info-item.professional {
            width: 100%;
            order: 1;
        }

        .payment-info-item.premium {
            width: 100%;
            order: 3;
        }

        .price-support{
            flex-direction: column;
            width: 100%;
        }

        .price-support-request{
            width: 100% !important;
            flex-direction: column;
            align-items: center;
        }

        .price-support-request-image{
            width: 60% !important;
            padding: 20px 20px !important;
        }

        .price-support-request-text{
            width: 100% !important;
        }

        .price-call-request-form{
            width: 100% !important;
        }

        .price-support-info{
            width: 100% !important;
            margin: 88px 0;
            flex-direction: column;
        }

    }
    
    .lds-ring {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
    }
    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #11b682;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #11b682 transparent transparent transparent;
    }
    .lds-ring div:nth-child(1) {
        animation-delay: -0.45s;
    }
    .lds-ring div:nth-child(2) {
        animation-delay: -0.3s;
    }
    .lds-ring div:nth-child(3) {
        animation-delay: -0.15s;
    }
    @keyframes lds-ring {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .accordion-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 70px;
    }

    .faq_accordion {
        box-shadow: 6px 6px 30px rgba(0, 0, 0, .15) !important;
        width: 80%;
    }

    @media screen and (max-width: 991px) {
        .faq_accordion {
            width: 100%;
        }
    }

    .faq_accordion .accordion-button:not(.collapsed) {
        color: #11b682 !important;
        background-color: transparent !important;
        font-weight: bold;
        box-shadow: none !important;
    }

    .faq_accordion .accordion-button:not(.collapsed) .rectangles{
        display: block;
    }

    .faq_accordion .accordion-item {
        /*border: 1px solid #11b682 !important;*/
    }

    .faq_accordion .accordion-button:focus {
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .faq_accordion .accordion-header{
        position: relative;
    }

    .faq_accordion .accordion-header .rectangles {
        position: absolute;
        right: left;
        top: 0;
        overflow: hidden;
        width: 280px;
        height: 80px;
        border-top-right-radius: 3px;
        display: none;
    }

    .faq_accordion .accordion-header .rectangles::after,
    .faq_accordion .accordion-header .rectangles::before {
        content: "";
        display: block;
        position: absolute;
        -webkit-transform: rotate(327deg);
        transform: rotate(327deg);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .faq_accordion .accordion-header .rectangles::after {
        width: 223px;
        height: 223px;
        background: rgba(33, 209, 154, 0.05);
        border-radius: 50px;
        top: -168px;
        left: 28px;
    }

    .faq_accordion .accordion-header .rectangles::before {
        width: 183px;
        height: 183px;
        background: rgba(33, 209, 154, 0.05);
        border-radius: 25px;
        top: -142px;
        left: 48px;
    }

    .faq_accordion .accordion-link{
        color: #11b682;
    }

    .campaign-page{
        margin-top: 0;
    }

    .campaign-title {
        z-index: 1;
    }

    .campaign-banner{
        z-index: 1;
    }

    .campaign-form {
        width: 100%;
        background-color: #FFF;
        position: relative;
        height: 100%;
    }

    .campaign-form .rectangles {
        position: absolute;
        right: 0;
        top: 0;
        overflow: hidden;
        width: 280px;
        height: 80px;
        border-top-right-radius: 3px;
    }

    .campaign-form .rectangles::after,
    .campaign-form .rectangles::before {
        content: "";
        display: block;
        position: absolute;
        -webkit-transform: rotate(327deg);
        transform: rotate(327deg);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .campaign-form .rectangles::after {
        width: 223px;
        height: 223px;
        background: rgba(33, 209, 154, 0.05);
        border-radius: 50px;
        top: -168px;
        left: 28px;
    }

    .campaign-form .rectangles::before {
        width: 183px;
        height: 183px;
        background: rgba(33, 209, 154, 0.05);
        border-radius: 25px;
        top: -142px;
        left: 48px;
    }

    .campaign-form-container {
        z-index: 1;
        flex-grow: 1;
    }

    .campaign-banner{
        flex-grow: 1;
    }

    .campaign-content {
        background-color: #FFF;
        position: relative;
        z-index: 1;
    }

    .campaign-highlight {
        color: #11b682;
        font-size: 12px;
    }

    .campaign_form_btn{
        margin-top: auto;
    }

    .error_input{
        border-color: #f21 !important;
    }

    @media screen and (max-width: 768px) {
        .campaign-content {
            margin: 40px 0;
        }

        .campaign-banner img{
            width: 100%;
        }
    }

    .unsubscribe_container {
        width: 60%;
        background-color: white;
        z-index: 1;
    }

    @media screen and (max-width: 768px) {
        .unsubscribe_container {
            width: 100%;
        }
    }
