:root {
  --bg-dark: #0d0e1a;
  --bg-black: #000000;
  --bg-section: #14192a;
  --bg-card: #1A1A1A;
  --bg-orange: #f2802d;
  --accent-orange: #ff9548;
  --accent-blue: #4353ff;
  --accent-purple: #61639F;
  --text-primary: #ffffff;
  --text-secondary: #c7c7c7;
  --text-white-light: #F9F9F9;
  --text-dark: #673A26;
  --text-error: #af0000;
  --text-success: #008000;
  --text-muted: #707484;
  --text-form: #303030;
  --border: rgba(255, 255, 255, 0.12);
  --border-card: #262626;
  --font: "Poppins", Arial, sans-serif;
  --wrapper: 1920px;
  --container: 980px;
  --header-h: 120px;
  --transition: 0.35s ease;
}

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

* {
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
}

*:focus {
  outline: none;
}

::-webkit-scrollbar {
  width: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100dvh;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.wrapper {
  width: min(100%, var(--wrapper));
  margin-inline: auto;
  position: relative;
  overflow-x: hidden;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
}

.header__inner {
  --container: 1500px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  padding: 30px 0 30px 100px;
}

.header__logo {
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__logo img {
  height: 60px;
  width: auto;
}

.nav {
  -ms-flex-order: 1;
  order: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.nav__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: Roboto;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--transition);
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 1);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--accent-blue);
}

.nav__link[aria-current="page"] {
  pointer-events: none;
}

.nav__link--home span {
  display: none;
}

.nav__block-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 24.5px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  -ms-flex-order: 3;
  order: 3;
  width: 50px;
  height: 50px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-primary);
  transition: opacity var(--transition), -webkit-transform var(--transition);
  transition: transform var(--transition), opacity var(--transition);
  transition: transform var(--transition), opacity var(--transition), -webkit-transform var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

/* Home page */
/* Hero */
.hero .wrapper {
  background: url(../img/bg-homeBlock.png) no-repeat center center, var(--bg-black);
  background-size: cover;
  padding: 340px 0 30px;
  min-height: 1080px;
}

.hero__title-block {
  padding-left: 90px;
  position: relative;
  margin-bottom: 300px;
}

.hero__title {
  font-size: 72px;
  line-height: 1.7;
  color: var(--text-primary);
  text-transform: capitalize;
}

.hero__title-accent-2 {
  color: var(--text-muted);
}

.hero__title-accent-3 {
  color: var(--accent-orange);
}

.hero__subtitle {
  font-size: 50px;
  line-height: 1.5;
  color: var(--accent-purple);
  text-transform: capitalize;
  position: relative;
}

.hero__subtitle span {
  display: inline-block;
  padding-left: 75px;
}

.hero__decor {
  width: 355px;
  height: 372px;
  position: absolute;
  left: 55px;
  top: -10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.hero__text-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 50px;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}

.hero__imgs-faces {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hero__text-block-inner {
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 300px);
}

.hero__lead {
  color: var(--text-muted);
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.hero__cta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  padding: 16px 24px;
  background-color: var(--accent-blue);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.hero__cta:hover {
  background-color: var(--accent-purple);
}

.anim-round-img {
  position: absolute;
  left: 20%;
  top: 110px;
  width: 136px;
  height: 136px;
  -webkit-animation: spin-fast 2.5s linear infinite;
  animation: spin-fast 2.5s linear infinite;
}

@-webkit-keyframes spin-fast {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin-fast {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Block 2 */
.section--block2 .wrapper {
  background: var(--bg-black);
  padding: 120px 0 140px;
}

.discover {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.discover__content {
  width: 100%;
  max-width: 805px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
}

.discover__title {
  font-size: 54px;
  text-transform: capitalize;
}

.discover__text {
  font-family: Roboto;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: -0.72px;
  color: var(--text-muted);
  min-height: 260px;
}

.discover__img {
  position: absolute;
  right: 70px;
  top: 10px;
  width: 400px;
  height: 400px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/* Block 3 */
.section--block3 .wrapper {
  background: var(--accent-blue);
  padding: 100px 0 60px;
}

.section--block3 .wrapper::before {
  content: "";
  position: absolute;
  left: 60%;
  top: 80px;
  width: 510px;
  height: 535px;
  background: url(../img/C1.png) no-repeat center center;
  background-size: cover;
  opacity: 0.2;
}

.why-callisto {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.why-callisto::before,
.why-callisto::after {
  content: "";
  position: absolute;
}

.why-callisto::before {
  left: 50%;
  bottom: -60px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150%;
  max-width: 1160px;
  height: 224px;
  background: rgba(7, 26, 44, 0.20);
  border-radius: 20px 20px 0 0;
}

.why-callisto::after {
  top: 70px;
  left: -110px;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  width: 150px;
  height: 150px;
  background: url(../img/home-bl-3-img.png) no-repeat center center;
  background-size: cover;
}

.why-callisto__title-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 20px;
}

.why-callisto__title-1 {
  padding: 10px 30px;
  border-radius: 6px;
  background: var(--bg-black);
  font-family: Roboto;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: -0.9px;
  color: var(--text-primary);
}

.why-callisto__title-2 {
  font-size: 54px;
  line-height: 1.7;
  text-transform: capitalize;
  color: var(--text-primary);
}

.why-callisto__text {
  color: var(--text-white-light);
  font-family: Roboto;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: -0.72px;
  margin-bottom: 50px;
}

.why-callisto__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.why-callisto__item {
  width: calc((100% - 80px) / 3);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
}

.why-callisto__item-title-block {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.why-callisto__item-title {
  color: var(--text-primary);
  font-family: Poppins;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.66px;
}

.why-callisto__item-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.why-callisto__item:nth-of-type(2) .why-callisto__item-icon {
  background: var(--accent-blue);
}

.why-callisto__item-text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.54px;
}

/* Block 4 */
.section--block4 {
  background: var(--bg-black);
}

.section--block4 .wrapper {
  background: var(--bg-black);
  padding: 80px 0;
}

.expertise {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.expertise__title {
  font-size: 54px;
  line-height: 1.7;
  text-transform: capitalize;
  color: var(--text-primary);
  margin-bottom: 56px;
  text-align: center;
}

.expertise__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 36px;
}

.expertise__item {
  width: calc((100% - 72px) / 3);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}

.expertise__item-img {
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.expertise__item-img img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.expertise__item-link {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 20px;
  line-height: normal;
  border-radius: 24px;
  background: #191919;
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 30px;
  transition: opacity var(--transition);
}

.expertise__item-link:hover {
  opacity: 0.8;
}

.expertise__item-title {
  color: var(--text-primary);
  font-size: 27px;
  font-weight: 400;
  line-height: normal;
}

.expertise__item-text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.72px;
}

/* Block Contact */
.section--contact-orange {
  background: var(--bg-orange);
}

.section--contact-blue {
  background: #0057e1;
}

.section--contact-orange .wrapper {
  background: url(../img/bg-contacts-home.png) no-repeat center center, var(--accent-orange);
  background-size: cover;
}

.section--contact-blue .wrapper {
  background: url(../img/bg-contacts-other.png) no-repeat center center, var(--accent-blue);
  background-size: cover;
}

.section--contact .wrapper {
  padding: 60px 0;
}

.contact,
.contact__title-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.contact__title {
  color: var(--text-primary);
  text-align: center;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.7;
  text-transform: capitalize;
}

.section--contact-website .contact__title {
  color: #000;
}

.contact__text {
  font-family: Roboto;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-dark);
  text-align: center;
}

.section--contact-blue .contact__text {
  color: var(--text-primary);
}

.contact-us__form {
  width: 100%;
  max-width: 680px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 415px;
}

.contact-us__content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.contact-us__form[data-state="is-success"] .contact-us__content {
  display: none;
}

.contact-us__fields {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.contact-us__field {
  width: 100%;
}

.field__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
}

.field__label,
.field__error:not(:empty) {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.field__label {
  color: var(--text-primary);
  font-size: 18px;
}

.field__error {
  display: none;
}

.field__error:not(:empty) {
  color: var(--text-error);
  display: block;
}

.field__wrap {
  width: 100%;
}

.field__input,
.field__textarea {
  width: 100%;
  border-radius: 4px;
  background: #ffffff;
  padding: 15px 30px;
  font-size: 16px;
  line-height: normal;
  color: var(--text-form);
}

.field__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-us__button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  padding: 16px 24px;
  background: var(--accent-blue);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.contact-us__button:hover {
  background-color: var(--accent-purple);
}

.section--contact-blue .contact-us__button {
  background: var(--accent-orange);
}

.section--contact-blue .contact-us__button:hover {
  background: var(--bg-orange);
}

.contact-us__success {
  display: none;
  border-radius: 4px;
  background: #ffffff;
  padding: 30px;
  color: var(--text-success);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.72px;
  text-align: center;
}

.contact-us__form[data-state="is-success"] .contact-us__success {
  display: block;
}

/* Footer */
.footer {
  background: var(--bg-section);
}

.footer__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.footer__copy {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__copy span {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.54px;
  padding-left: 60px;
}

.footer__copy-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer__copy-logo img,
.footer__logo img {
  height: 60px;
  width: auto;
}

.footer__logo {
  display: none;
}

.footer__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
}

.footer__link {
  border: 1px solid transparent;
  padding: 5px 10px;
  transition: all 0.3s ease;
  color: var(--text-primary);
  font-size: 14px;
  line-height: normal;
}

.footer__link:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.footer__link[aria-current="page"] {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
  pointer-events: none;
}

/* Inner pages */
.page-hero__title-mob,
.decor-arrow__mob {
  display: none;
}

.inner-page {
  background-color: var(--bg-black);
}

.page-hero__inner {
  position: relative;
  padding: 300px 0 100px;
}

.page-hero__text-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 35px;
  padding-left: 70px;
  max-width: 650px;
}

.page-hero__text-title {
  color: var(--text-primary);
  font-size: 54px;
  line-height: 1.4;
  text-transform: capitalize;
}

.page-hero__text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: -0.72px;
}

.page-hero__img-main {
  position: absolute;
  top: 190px;
  left: calc(50% + 270px);
  width: 500px;
  height: 500px;
}

.page-hero__img-main img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-hero__anim {
  left: -10%;
}

.page-hero__title-block {
  width: 100%;
  margin-top: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 35px;
}

.decor-arrow__desk {
  width: 100%;
}

.page-hero__title {
  font-size: 105px;
  line-height: 0.9;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 1.7px;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.page-hero--website .page-hero__title,
.page-hero--platform .page-hero__title {
  font-size: 80px;
  line-height: 1.4;
  text-transform: initial;
}

.page-hero__title-desk {
  display: -ms-flexbox;
  display: flex;
}

.page-hero--website .page-hero__title-desk,
.page-hero--platform .page-hero__title-desk {
  display: inline-block;
}

.page-hero__title-accent-1 {
  color: var(--accent-orange);
  font-weight: 700;
}

.page-hero--website .page-hero__title-accent-1,
.page-hero--platform .page-hero__title-accent-1 {
  font-weight: 400;
}

.page-hero__title-accent-2 {
  color: var(--accent-blue);
  font-weight: 700;
  margin-right: 20px;
}

.page-hero--website .page-hero__title-accent-2,
.page-hero--platform .page-hero__title-accent-2 {
  margin: 0;
  font-weight: 400;
}

.page-hero__cta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  padding: 16px 24px;
  background-color: var(--accent-orange);
  color: var(--bg-black);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-hero__cta:hover {
  background-color: var(--bg-orange);
}

.block-img-text {
  padding: 50px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  min-height: 700px;
}

.block-img-text__img-wrap {
  width: calc(45% - 30px);
  position: relative;
}

.block-img-text__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 689px;
  height: 589px;
}

.block-img-text__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.block-img-text__content {
  width: calc(55% - 30px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}

.block-img-text__title {
  font-size: 54px;
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--text-primary);
}

.block-img-text__text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.6px;
}

.features {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 0 120px;
}

.features__item {
  width: calc((100% - 80px) / 3);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
}

.features__item-title-block {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.features__item-title {
  color: var(--text-primary);
  font-family: Poppins;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.66px;
}

.features__item-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.features__item:nth-of-type(2) .features__item-icon {
  background: var(--accent-blue);
}

.features__item-text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.48px;
}

.section--text .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  padding: 100px 0 80px;
  position: relative;
}

.section__img {
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 290px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.section__title {
  font-size: 54px;
  line-height: 1.7;
  text-transform: capitalize;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
}

.section__text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 20px;
  line-height: 1.4;
  z-index: 2;
  position: relative;
  max-width: 870px;
}

.section__decor {
  position: absolute;
  bottom: 0;
  left: calc(50% + 300px);
  width: 514px;
  height: 428px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
  opacity: 0.6;
}

.section__decor img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section--info-cards .container {
  position: relative;
  padding-bottom: 150px;
}

.info-cards {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
}

.info-card {
  width: 300px;
  height: 686px;
  padding: 20px;
  padding-top: 120px;
  background: url(../img/website-block-3-itm.png) no-repeat center center;
  background-size: contain;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}

.info-card--2 {
  height: 808px;
  padding-bottom: 130px;
  background: url(../img/website-block-3-itm-2.png) no-repeat center center;
  background-size: contain;
}

.info-card__title {
  font-family: Roboto;
  font-size: 30px;
  line-height: 1.2;
  color: var(--text-primary);
}

.info-card__text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 18px;
  line-height: 1.4;
}

.cards-block {
  padding: 50px 0 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 80px;
}

.cards-block__item {
  width: calc(50% - 20px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.cards-block__item--full-bg {
  padding: 40px;
  border-radius: 12px;
}

.cards-block__item--1 {
  background: var(--accent-orange);
  color: #201D1D;
}

.cards-block__item--2 {
  background: var(--accent-blue);
  color: var(--text-primary);
}

.cards-block__item-icon {
  margin-bottom: 60px;
}

.cards-block__item--no-bg .cards-block__item-icon {
  margin-bottom: 40px;
  color: var(--text-primary);
}

.cards-block__item-title {
  font-family: Roboto;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 20px;
}

.cards-block__item-text {
  font-family: Roboto;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: -0.6px;
}

.cards-block__item--no-bg .cards-block__item-text {
  color: var(--text-muted);
  line-height: 1.6;
}

.section--only-title {
  background: #0f2040;
}

.section--only-title .wrapper {
  padding: 115px 0;
  background: url(../img/platform-block-4-bg.png) no-repeat center center;
  background-size: cover;
}

.section--only-title .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.section--protect-info .wrapper {
  padding: 100px 0;
}

.protect {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 42px;
  position: relative;
  padding: 40px 0 40px 110px !important;
}

.protect__title {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.9px;
  position: relative;
  z-index: 2;
}

.protect__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 24px;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.protect__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}

.protect__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.protect__item-text {
  color: var(--text-muted);
  font-family: Roboto;
  font-size: 18px;
  line-height: 1.4;
}

.protect__decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1306px;
  height: 552px;
  z-index: 1;
}

/* Legal pages */
.legal {
  padding: calc(var(--header-h) + 40px) 0 80px;
}

.legal__title {
  margin: 0 0 20px;
  text-align: right;
  font-size: 54px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text-primary);
  letter-spacing: -1.62px;
}

.legal .decor-arrow {
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  margin-bottom: 32px;
}

.legal .decor-arrow img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.legal__title-accent {
  color: var(--accent-blue);
}

.legal__section {
  margin-bottom: 32px;
}

.legal__section h4 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted);
}

.legal__section p,
.legal__list {
  margin: 0 0 16px;
  color: var(--text-primary);
  line-height: 1.4;
  font-size: 16px;
}

.legal__list {
  padding-left: 20px;
}

.legal__list li {
  margin-bottom: 6px;
}

/* Media queries */
@media (max-width: 1200px) {
  .header__logo img {
    height: 40px;
  }

  .hero .wrapper {
    padding-top: 270px;
    min-height: auto;
  }

  .header__inner {
    padding-left: 0;
  }

  .nav__block {
    gap: 20px;
  }

  .discover__content {
    max-width: 630px;
  }

  .discover__title {
    line-height: 1.2;
  }

  .discover__img {
    right: 0;
    width: 300px;
    height: 300px;
    -webkit-transform: none;
    transform: none;
  }

  .why-callisto::before {
    width: calc(100% + 40px);
  }

  .why-callisto::after {
    top: -70px;
    left: auto;
    right: 20px;
    width: 80px;
    height: 80px;
    -webkit-transform: none;
    transform: none;
  }

  .anim-round-img {
    left: 50px;
  }

  .page-hero__text-block {
    padding-left: 0;
  }

  .page-hero__img-main {
    top: 135px;
    left: calc(50% + 190px);
    width: 350px;
    height: 350px;
  }

  .hero__title {
    font-size: 54px;
  }

  .hero__text-block-inner {
    padding-left: 100px;
  }

  .section--block2 .wrapper {
    padding: 100px 0 60px;
  }

  .page-hero__text-title,
  .hero__subtitle,
  .discover__title,
  .block-img-text__title,
  .why-callisto__title-2,
  .expertise__title,
  .contact__title,
  .section__title {
    font-size: 42px;
    line-height: 1.2;
  }

  .page-hero__text,
  .discover__text,
  .why-callisto__text,
  .contact__text,
  .expertise__item-text {
    font-size: 20px;
  }

  .contact__text {
    max-width: 680px;
  }

  .page-hero__title {
    font-size: 80px;
  }

  .page-hero--website .page-hero__title,
  .page-hero--platform .page-hero__title {
    font-size: 60px;
  }

  .page-hero__inner {
    padding-bottom: 50px;
  }

  .block-img-text__img {
    width: 445px;
    height: 382px;
  }

  .block-img-text {
    min-height: auto;
  }

  .section__img {
    -webkit-transform: none;
    transform: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 90px;
  }

  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section--text .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__inner {
    padding: 20px;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: block;
    z-index: 120;
  }

  .menu-toggle.is-open {
    position: fixed;
    right: 20px;
    top: 20px;
  }

  .menu-toggle span {
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100dvw;
    height: 100dvh;
    background: var(--accent-blue);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.4s ease, transform 0.3s ease;
    transition: opacity 0.4s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    padding: 80px 20px 20px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    z-index: -10;
  }

  .nav.is-open {
    z-index: 110;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header__logo {
    -ms-flex-order: 1;
    order: 1;
  }

  .nav__link {
    font-size: 20px;
    line-height: 1.4;
    min-height: 56px;
    text-transform: initial;
    text-shadow: none;
    padding: 0 30px;
    letter-spacing: 1.5px;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .nav__link:hover,
  .nav__link[aria-current="page"] {
    color: var(--accent-orange);
  }

  .nav__block-separator,
  .nav__block-icon {
    display: none;
  }

  .nav__link--home span {
    display: block;
  }

  .nav__link--home svg {
    display: none;
  }

  .hero__decor {
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
  }

  .hero__title-block {
    margin-bottom: 220px;
  }

  .discover__img {
    display: none;
  }

  .section--block2 .wrapper {
    padding: 40px 0;
  }

  .discover__content {
    max-width: 100%;
  }

  .discover__text {
    min-height: auto;
  }

  .hero__text-block {
    row-gap: 20px;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .hero__subtitle span {
    padding-left: 0;
  }

  .hero__text-block-inner {
    width: calc(100% - 240px);
  }

  .why-callisto__items,
  .features {
    gap: 10px;
  }

  .why-callisto__item,
  .features__item {
    width: calc((100% - 20px) / 3);
  }

  .why-callisto__item-title-block,
  .features__item-title-block {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
  }

  .page-hero__text-title {
    max-width: calc(100% - 230px);
  }

  .page-hero__img-main {
    top: 100px;
    left: calc(50% + 110px);
    width: 250px;
    height: 250px;
  }

  .decor-arrow__desk {
    width: 170px;
  }

  .page-hero__title {
    width: 100%;
  }

  .block-img-text__img {
    width: 100%;
  }

  .block-img-text {
    gap: 30px;
  }

  .block-img-text__img-wrap {
    width: calc(45% - 15px);
  }

  .block-img-text__content {
    width: calc(55% - 15px);
  }

  .section__decor {
    left: calc(50% + 54px);
    width: 350px;
    height: 290px;
  }

  .info-cards {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: center;
    align-items: center;
  }

  .cards-block {
    padding: 50px 0;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 40px;
  }

  .expertise__items {
    gap: 20px;
  }

  .cards-block__item {
    width: calc(50% - 10px);
  }

  .expertise__item {
    width: calc((100% - 40px) / 3);
  }

  .cards-block__item--full-bg {
    padding: 20px;
  }
}

@media (max-width: 700px) {
  .header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
  }

  .hero .wrapper {
    padding-top: var(--header-h);
    background-size: 100%;
    background-position: center -160px;
  }

  .hero__content {
    padding-top: 100px;
  }

  .anim-round-img {
    position: relative;
    top: initial;
    left: initial;
    width: 100px;
    height: 100px;
  }

  .hero__decor {
    display: none;
  }

  .hero__text-block {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: initial;
    align-items: initial;
    gap: 40px;
  }

  .hero__text-block-inner {
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 0;
    gap: 20px;
  }

  .hero__imgs-faces {
    -ms-flex-order: 3;
    order: 3;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero__lead {
    font-weight: 400;
  }

  .hero__cta {
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }

  .hero__title-block {
    padding: 0;
    margin-bottom: 80px;
  }

  .hero__title {
    font-size: 36px;
    font-weight: 500;
  }

  .hero__subtitle {
    font-size: 24px;
    padding-left: 40px;
    line-height: 1.4;
  }

  .discover__title {
    max-width: 320px;
  }

  .page-hero__text-title,
  .discover__title,
  .block-img-text__title,
  .why-callisto__title-2,
  .expertise__title,
  .contact__title,
  .section__title {
    font-size: 32px;
  }

  .page-hero__text,
  .discover__text,
  .why-callisto__text,
  .contact__text,
  .expertise__item-text,
  .block-img-text__text {
    font-size: 18px;
    line-height: 1.4;
  }

  .section--block3 .wrapper::before,
  .why-callisto::after,
  .why-callisto::before {
    display: none;
  }

  .section--block3 .wrapper {
    padding: 50px 0;
  }

  .why-callisto {
    overflow: hidden;
  }

  .why-callisto__title-block {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    position: relative;
    gap: 30px;
  }

  .why-callisto__title-1 {
    position: relative;
    left: -30px;
    max-width: 260px;
    font-size: 20px;
  }

  .why-callisto__text {
    margin-bottom: 40px;
  }

  .why-callisto__items,
  .features,
  .expertise__items {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .why-callisto__item,
  .features__item,
  .expertise__item {
    width: 100%;
  }

  .why-callisto__item-title-block,
  .features__item-title-block {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
  }

  .section--block4 .wrapper {
    padding: 50px 0;
  }

  .expertise__title {
    margin-bottom: 20px;
  }

  .expertise__items {
    gap: 40px;
  }

  .expertise__item {
    -ms-flex-align: center;
    align-items: center;
  }

  .expertise__item-img {
    width: 80%;
  }

  .expertise__item-title,
  .expertise__item-text {
    width: 100%;
  }

  .section--contact .wrapper {
    padding: 50px 0;
  }

  .contact-us__button {
    max-width: initial;
  }

  .footer__inner {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .footer__logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .footer__logo img {
    height: 40px;
  }

  .footer__links {
    width: 100%;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__copy {
    -ms-flex-order: 3;
    order: 3;
    text-align: center;
  }

  .footer__copy-logo {
    display: none;
  }

  .footer__copy span {
    padding: 0;
  }

  .footer__links {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: initial;
    justify-content: initial;
    gap: 20px;
  }

  .page-hero__inner {
    padding-top: 140px;
    padding-bottom: 30px;
  }

  .page-hero__title-mob {
    display: -ms-flexbox;
    display: flex;
  }

  .decor-arrow__desk,
  .page-hero__title-desk {
    display: none !important;
  }

  .page-hero__title {
    font-size: 48px;
    margin-bottom: 60px;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-hero--website .page-hero__title,
  .page-hero--platform .page-hero__title {
    font-size: 36px;
    display: inline-block;
  }

  .page-hero__img-main {
    position: relative;
    top: initial;
    left: initial;
    margin: 0 auto 40px;
    width: 80dvw;
    height: 80dvw;
  }

  .decor-arrow__mob {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 40dvw;
  }

  .page-hero__text-block {
    gap: 20px;
  }

  .page-hero__text-title {
    max-width: initial;
  }

  .page-hero__title-block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }

  .page-hero__cta {
    width: 100%;
  }

  .block-img-text {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .block-img-text__img-wrap,
  .block-img-text__content {
    width: 100%;
  }

  .block-img-text__img {
    position: static;
    width: 80dvw;
    height: 70dvw;
    margin: 0 auto;
  }

  .features {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section--text .container {
    padding: 30px 20px 240px;
    gap: 40px;
  }

  .section__title {
    -ms-flex-order: 1;
    order: 1;
  }

  .section__img {
    position: static;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-item-align: self-end;
    -ms-grid-row-align: self-end;
    align-self: self-end;
  }

  .section__text {
    -ms-flex-order: 3;
    order: 3;
  }

  .section__decor {
    left: calc(50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 250px;
    height: 210px;
  }

  .cards-block {
    padding: 30px 20px;
    gap: 20px;
  }

  .cards-block__item {
    width: 100%;
  }

  .cards-block__item-icon {
    margin-bottom: 20px;
  }

  .cards-block__item-text {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .section--only-title .wrapper {
    padding: 70px 20px;
  }

  .section--protect-info .wrapper {
    padding: 30px 20px;
  }

  .protect {
    gap: 20px;
    padding-left: 60px !important;
  }

  .protect__item-text {
    font-size: 14px;
  }

  .protect__decor {
    height: 100%;
    left: -40px;
  }

  .protect__decor img {
    height: 100%;
    max-width: initial;
  }

  .protect__title {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.6px;
    padding-left: 44px;
  }

  .legal {
    padding: var(--header-h) 0 40px;
  }

  .legal__title {
    font-size: 38px;
  }

  .legal .decor-arrow {
    width: 150px;
    margin-bottom: 20px;
  }

  .protect__items {
    max-width: 440px;
  }
}

@media (max-width: 520px) {
  .hero .wrapper {
    background-size: 130%;
    background-position: center -100px;
  }
}

@media (max-width: 320px) {
  .nav__link {
    font-size: 30px;
  }

  .page-hero__title {
    font-size: 36px;
  }

  .page-hero--website .page-hero__title,
  .page-hero--platform .page-hero__title {
    font-size: 24px;
  }
}

/* Animations */
@-webkit-keyframes motion-glide-in {
  from {
    opacity: 0;
    -webkit-transform: translate(var(--motion-translate-x, 0),
      var(--motion-translate-y, 0));
    transform: translate(var(--motion-translate-x, 0),
      var(--motion-translate-y, 0));
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes motion-glide-in {
  from {
    opacity: 0;
    -webkit-transform: translate(var(--motion-translate-x, 0),
      var(--motion-translate-y, 0));
    transform: translate(var(--motion-translate-x, 0),
      var(--motion-translate-y, 0));
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.motion-glide-in {
  opacity: 0;
  -webkit-transform: translate(var(--motion-translate-x, 0),
    var(--motion-translate-y, 0));
  transform: translate(var(--motion-translate-x, 0),
    var(--motion-translate-y, 0));
}

.hero__title.motion-glide-in {
  --motion-translate-x: -120px;
  --motion-translate-y: 0;
}

.hero__subtitle .motion-glide-in {
  --motion-translate-x: 120px;
  --motion-translate-y: 0;
}

.why-callisto__items.motion-glide-in {
  --motion-translate-x: 0;
  --motion-translate-y: 111px;
  --motion-duration: 1200ms;
  --motion-delay: 1ms;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-glide-in.is-visible {
    -webkit-animation: motion-glide-in var(--motion-duration, 1600ms) var(--motion-delay, 400ms) cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation: motion-glide-in var(--motion-duration, 1600ms) var(--motion-delay, 400ms) cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  }
}

@media (prefers-reduced-motion: reduce) {

  .motion-glide-in,
  .motion-glide-in.is-visible {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes motion-curve-in {
  from {
    opacity: 0;
    -webkit-transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 180deg)) translateZ(calc(var(--motion-width, 433px) * 3));
    transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 180deg)) translateZ(calc(var(--motion-width, 433px) * 3));
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(0deg) rotateY(0deg) translateZ(calc(var(--motion-width, 433px) * 3));
    transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(0deg) rotateY(0deg) translateZ(calc(var(--motion-width, 433px) * 3));
  }
}

@keyframes motion-curve-in {
  from {
    opacity: 0;
    -webkit-transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 180deg)) translateZ(calc(var(--motion-width, 433px) * 3));
    transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 180deg)) translateZ(calc(var(--motion-width, 433px) * 3));
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(0deg) rotateY(0deg) translateZ(calc(var(--motion-width, 433px) * 3));
    transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(0deg) rotateY(0deg) translateZ(calc(var(--motion-width, 433px) * 3));
  }
}

.motion-curve-in {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 180deg)) translateZ(calc(var(--motion-width, 433px) * 3));
  transform: perspective(200px) translateZ(calc(var(--motion-width, 433px) * -3)) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, 180deg)) translateZ(calc(var(--motion-width, 433px) * 3));
}

.hero__imgs-faces.motion-curve-in {
  --motion-width: 433px;
  --motion-rotate-x: 0deg;
  --motion-rotate-y: 180deg;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-curve-in.is-visible {
    -webkit-animation: motion-curve-in 1400ms 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation: motion-curve-in 1400ms 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

@media (prefers-reduced-motion: reduce) {

  .motion-curve-in,
  .motion-curve-in.is-visible {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes motion-reveal-in {
  from {
    opacity: 0;
    clip-path: var(--motion-clip-start, polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%));
  }

  to {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes motion-reveal-in {
  from {
    opacity: 0;
    clip-path: var(--motion-clip-start, polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%));
  }

  to {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.motion-reveal-in {
  display: inline-block;
  opacity: 0;
}

.why-callisto__title-1 .motion-reveal-in {
  --motion-clip-start: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-reveal-in.is-visible {
    -webkit-animation: motion-reveal-in 1950ms 100ms cubic-bezier(0.645, 0.045, 0.355, 1) both;
    animation: motion-reveal-in 1950ms 100ms cubic-bezier(0.645, 0.045, 0.355, 1) both;
  }
}

@media (prefers-reduced-motion: reduce) {

  .motion-reveal-in,
  .motion-reveal-in.is-visible {
    opacity: 1;
    clip-path: none;
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes motion-flip-in {
  from {
    opacity: 0;
    -webkit-transform: perspective(800px) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, -45deg));
    transform: perspective(800px) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, -45deg));
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes motion-flip-in {
  from {
    opacity: 0;
    -webkit-transform: perspective(800px) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, -45deg));
    transform: perspective(800px) rotateX(var(--motion-rotate-x, 0deg)) rotateY(var(--motion-rotate-y, -45deg));
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  }
}

@-webkit-keyframes motion-fold-in {
  from {
    opacity: 0;
    -webkit-transform: perspective(800px) rotateY(var(--motion-rotate-y, 90deg));
    transform: perspective(800px) rotateY(var(--motion-rotate-y, 90deg));
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(800px) rotateY(0deg);
    transform: perspective(800px) rotateY(0deg);
  }
}

@keyframes motion-fold-in {
  from {
    opacity: 0;
    -webkit-transform: perspective(800px) rotateY(var(--motion-rotate-y, 90deg));
    transform: perspective(800px) rotateY(var(--motion-rotate-y, 90deg));
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(800px) rotateY(0deg);
    transform: perspective(800px) rotateY(0deg);
  }
}

.motion-flip-in,
.motion-fold-in {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.motion-fold-in {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.expertise__item:nth-child(1) .motion-fold-in,
.features__item:nth-child(1).motion-flip-in {
  --motion-rotate-y: 90deg;
  --motion-delay: 400ms;
}

.expertise__item:nth-child(2) .motion-flip-in,
.features__item:nth-child(2).motion-flip-in {
  --motion-rotate-y: -45deg;
  --motion-delay: 800ms;
}

.expertise__item:nth-child(3) .motion-flip-in,
.features__item:nth-child(3).motion-flip-in {
  --motion-rotate-y: -45deg;
  --motion-delay: 1200ms;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-flip-in.is-visible {
    -webkit-animation: motion-flip-in var(--motion-duration, 1400ms) var(--motion-delay, 400ms) cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation: motion-flip-in var(--motion-duration, 1400ms) var(--motion-delay, 400ms) cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .motion-fold-in.is-visible {
    -webkit-animation: motion-fold-in var(--motion-duration, 1400ms) var(--motion-delay, 400ms) cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation: motion-fold-in var(--motion-duration, 1400ms) var(--motion-delay, 400ms) cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }
}

@media (prefers-reduced-motion: reduce) {

  .motion-flip-in,
  .motion-flip-in.is-visible,
  .motion-fold-in,
  .motion-fold-in.is-visible {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-animation: none;
    animation: none;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
  transition: opacity 1.4s ease, -webkit-transform 1.4s ease;
  transition: opacity 1.4s ease, transform 1.4s ease;
  transition: opacity 1.4s ease, transform 1.4s ease, -webkit-transform 1.4s ease;
}

.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}