@import url(https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
:root,
body,
button,
input {
  font-family: "Alumni Sans", sans-serif;
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1365px), (max-height: 767px) {
  html {
    font-size: 14px;
  }
}
body {
  font-size: 1rem;
  background-color: var(--color__grey-extralight);
  line-height: 1.25;
  color: var(--color__white);
  --sections-margin: 7rem;
  max-width: 100vw;
  min-height: 100vh;
  height: 100%;
}
@media screen and (max-width: 991px) {
  body {
    overflow: hidden;
    padding: 2rem;
    position: relative;
    background-image: -webkit-image-set(url(../img/header_bg.jpg) 1x);
    background-image: url(../img/header_bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    --section-margin: 2rem;
  }
  body::before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  body > * {
    position: relative;
    z-index: 1;
  }
}
picture {
  display: block;
}
picture img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  line-height: 0;
}
.container {
  padding: 0 2.75rem;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 120rem;
}
@media screen and (max-width: 991px) {
  .container {
    padding: 0;
  }
}
.bg-dark {
  position: relative;
}
.bg-dark::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.bg-dark > * {
  position: relative;
  z-index: 1;
}
.page-wrapper {
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .page-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
    padding: 0;
    overflow-block: hidden;
  }
}
@media screen and (max-width: 991px) {
  .main {
    height: 100%;
  }
}
.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 52.5rem;
  flex: 1 1 52.5rem;
}
@media screen and (max-width: 991px) {
  .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: clip;
    padding: 0 1rem;
    background-color: var(--color__grey-extralight);
  }
}
@media screen and (max-width: 399px) {
  .content {
    padding: 0 0.5rem;
  }
}
.chatbot {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  margin-left: 10rem;
}
@media screen and (max-width: 1365px) {
  .chatbot {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .chatbot {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .mobile-page {
    max-height: calc(100% - 5rem);
    width: 95vw;
    margin: 0 auto;
    overflow: auto;
    padding: 1rem 1.5rem 1rem;
    scrollbar-width: 0;
    position: absolute;
    top: 47.5%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 33rem;
    overflow-x: clip;
  }
  .mobile-page::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: -webkit-image-set(url(../img/iphone.png) 1x);
    background-image: url(../img/iphone.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 3;
  }
  .mobile-page > ::-webkit-scrollbar {
    width: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer,
  .header {
    display: none;
  }
}
.footer.--mobile,
.header.--mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer.--mobile,
  .header.--mobile {
    display: block;
  }
}
:root {
  --color__dark: #121526;
  --color__text: #111526;
  --color__blue: #162638;
  --color__white: #ffffff;
  --color__brown: #7f220f;
  --color__brown-light: #973b29;
  --color__red: #e93324;
  --color__grey: #878787;
  --color__grey-light: #a0a0a0;
  --color__grey-extralight: #c4c4c4;
  --color__purple: #8276ea;
  --color__yellow: #f5dd4f;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.--just-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.--just-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.--just-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.--just-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.--align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.--align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.--button,
.--link,
a,
button {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.buttons__main {
  border: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  color: var(--color__white);
  background-color: var(--color__blue);
  cursor: pointer;
  font-weight: 400;
  font-size: 2.5rem;
  font-style: normal;
  padding: 0.25em;
  border-radius: 0.25em;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  margin-bottom: 0.25em;
  display: grid;
  grid-template-columns: auto 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-height: 799px) {
  .buttons__main {
    font-size: 1.75rem;
  }
}
.buttons__main:hover {
  background-color: var(--color__dark);
}
.buttons__main:focus {
  outline: transparent;
}
.buttons__main:focus-visible {
  outline: 0.25rem solid var(--color__dark);
}
.buttons__main:active {
  background-color: var(--color__text);
}
.buttons__main.--is-hidden {
  opacity: 0;
  overflow: hidden;
}
.buttons__main-text {
  margin-left: 1.75em;
  font-weight: 300;
}
.buttons__main-logo {
  height: 1.25em;
  width: 1.25em;
  min-width: 1.25em;
  background-color: var(--color__grey-extralight);
  border-radius: 50%;
  padding: 0.125em;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .buttons__main-logo {
    font-size: 1.5rem;
  }
}
.buttons__main-logo img {
  display: inline-block;
  max-height: 1em;
  margin: 0 auto;
}
.buttons__menu {
  -webkit-transform: translateY(250%);
  -ms-transform: translateY(250%);
  transform: translateY(250%);
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s;
  position: relative;
  z-index: 1;
}
.buttons__menu-title {
  font-size: 1.25rem;
  background-color: var(--color__yellow);
  padding: 0.25em 0.75em;
  border-radius: 0.5em;
}
@media screen and (max-height: 767px) {
  .buttons__menu-title {
    font-size: 1rem;
  }
}
.buttons__menu-title-text.--left {
  padding-right: 0.5em;
  margin-right: 0.5em;
  border-right: 1px solid var(--color__white);
}
.buttons__menu-title-logo {
  margin-left: auto;
  height: 2em;
  width: 2em;
  border-radius: 50%;
  padding: 0.25rem;
  background-color: var(--color__white);
  text-align: center;
}
.buttons__menu-title-img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.buttons__menu-wrapper {
  margin-top: 1rem;
}
.buttons__item {
  border: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  color: var(--color__white);
  background-color: var(--color__blue);
  cursor: pointer;
  font-weight: 400;
  font-size: 1.5rem;
  font-style: normal;
  padding: 0.5em 0.25em;
  text-align: center;
  border-radius: 0.25em;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  margin-bottom: 0.25em;
  position: relative;
  text-decoration: none;
}
.buttons__item.--back-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0.5em;
}
.buttons__item.--back-icon::before {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  background-image: url(../img/arrow_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s;
}
@media screen and (max-height: 799px) {
  .buttons__item {
    font-size: 1rem;
  }
}
.buttons__item:hover {
  background-color: var(--color__dark);
}
.buttons__item:focus {
  outline: transparent;
}
.buttons__item:focus-visible {
  outline: 0.125em solid var(--color__dark);
}
.buttons__item:active {
  background-color: var(--color__text);
}
.buttons__item + .buttons__item {
  margin-left: 0.25em;
}
.buttons__item.--dropdown-link {
  font-size: 1rem;
  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;
  width: 100%;
  margin: 0;
  min-height: 3.5em;
}
.buttons__item.--red,
.buttons__item[data-current="true"] {
  background-color: var(--color__red);
}
.buttons__item.--red::before,
.buttons__item[data-current="true"]::before {
  opacity: 1;
}
.buttons__item.--red:hover::before,
.buttons__item[data-current="true"]:hover::before {
  left: 0.75em;
}
.buttons__item.--red:focus,
.buttons__item[data-current="true"]:focus {
  outline: transparent;
}
.buttons__item.--red:focus-visible,
.buttons__item[data-current="true"]:focus-visible {
  outline: 0.125em solid var(--color__brown);
}
.buttons__item.--red:active::before,
.buttons__item[data-current="true"]:active::before {
  left: 0.25em;
}
.buttons__dropdown {
  position: absolute;
  bottom: calc(100% + 1rem);
  width: calc(100% + 2rem);
  height: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.buttons__dropdown-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.25rem;
  overflow: hidden;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color__grey-extralight);
  height: 0;
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s;
}
.advantages {
  background-color: var(--color__brown-light);
  padding: 5rem 3rem;
  border-radius: 0.75rem;
  margin-top: var(--sections-margin);
}
@media screen and (max-width: 991px) {
  .advantages {
    padding: 3rem 1.25rem;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
.advantages__suptext {
  position: relative;
  padding-left: 4.75rem;
  font-size: 1.25rem;
  font-weight: 300;
}
.advantages__suptext::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 2.25rem;
  top: 50%;
  left: 0;
  background-color: var(--color__white);
}
@media screen and (max-width: 991px) {
  .advantages__suptext {
    font-size: 1rem;
    padding-left: 2.75rem;
  }
}
.advantages__title {
  margin-top: 4.5rem;
  font-size: 4rem;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .advantages__title {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
}
.advantages__text {
  margin-top: 1.75rem;
  font-weight: 300;
  font-size: 2.25rem;
}
@media screen and (max-width: 991px) {
  .advantages__text {
    font-size: 1.25rem;
  }
}
.advantages__items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 991px) {
  .advantages__items {
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.advantages__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20rem;
  flex: 0 1 20rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .advantages__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.advantages__item + .advantages__item {
  margin-left: 1rem;
}
@media screen and (max-width: 991px) {
  .advantages__item + .advantages__item {
    margin-left: 0;
    margin-top: 2.5rem;
  }
}
.advantages__item-top.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .advantages__item-top.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__item-icon {
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .advantages__item-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.25rem;
    flex: 0 0 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
  }
}
.advantages__item-title {
  margin-top: 2.5rem;
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .advantages__item-title {
    margin-left: 1rem;
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.advantages__item-text {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1.25rem;
}
@media screen and (max-width: 991px) {
  .advantages__item-text {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.callback {
  margin-top: var(--sections-margin);
  background-image: -webkit-image-set(url(../img/form_bg.jpg) 1x);
  background-image: url(../img/form_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0.75rem;
  padding: 11rem 2rem;
}
@media screen and (max-width: 991px) {
  .callback {
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
.callback__inner {
  max-width: 35rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .callback__inner {
    max-width: 16rem;
  }
}
.callback__title {
  font-weight: 500;
  font-size: 3rem;
}
@media screen and (max-width: 991px) {
  .callback__title {
    font-size: 1.25rem;
  }
}
.callback__label {
  display: block;
  margin-top: 3.5rem;
  position: relative;
  width: 100%;
  max-width: 32.75rem;
}
@media screen and (max-width: 991px) {
  .callback__label {
    max-width: 12.75rem;
    margin-top: 1.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.callback__placeholder {
  position: absolute;
  top: 50%;
  left: 3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--color__brown);
  z-index: 1;
  font-size: 2rem;
  font-weight: 300;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  white-space: no-wrap;
}
@media screen and (max-width: 991px) {
  .callback__placeholder {
    left: 1.5rem;
    font-size: 1rem;
  }
}
.callback__input {
  position: relative;
  width: 100%;
  z-index: 0;
  color: var(--color__dark);
  padding: 0.75em 1.5em;
  font-size: 2rem;
  font-weight: 300;
  border-radius: 0.75rem;
  border: none;
}
@media screen and (max-width: 991px) {
  .callback__input {
    font-size: 1rem;
  }
}
.callback__input:focus {
  outline: transparent;
}
.callback__input:valid + .callback__placeholder,
.callback__label:focus-within .callback__placeholder {
  top: -50%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  color: var(--color__white);
  font-weight: 500;
  left: 1rem;
}
@media screen and (max-width: 991px) {
  .callback__input:valid + .callback__placeholder,
  .callback__label:focus-within .callback__placeholder {
    left: 0.75rem;
    top: -1.25rem;
  }
}
.callback__btn {
  margin-top: 7.5rem;
  background-color: var(--color__brown);
  font-weight: 500;
  text-align: center;
  font-size: 2.25rem;
  border-radius: 0.75rem;
  border: none;
  width: 100%;
  color: var(--color__white);
  padding: 0.5em;
  max-width: 32.75rem;
  cursor: pointer;
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s;
  display: block;
}
@media screen and (max-width: 991px) {
  .callback__btn {
    margin-top: 4.5rem;
    font-size: 1.25rem;
    max-width: 12.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.callback__btn:hover {
  background-color: var(--color__brown-light);
}
.callback__btn:focus {
  outline: transparent;
}
.callback__btn:focus-visible {
  outline: transparent;
  -webkit-box-shadow: 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.5);
  box-shadow: 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.5);
}
.callback__btn:active {
  -webkit-box-shadow: inset 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.5);
  box-shadow: inset 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 991px) {
  .chatbot {
    display: none;
  }
}
.chatbot.--mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .chatbot.--mobile {
    display: block;
    min-height: 100vh;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    background-image: -webkit-image-set(url(../img/bricks.jpg) 1x);
    background-image: url(../img/bricks.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.chatbot__inner {
  width: 100%;
  height: calc(100% + 110vh);
  background-color: var(--color__grey-extralight);
  border-radius: 4rem 0 0 0;
  position: relative;
  top: -15rem;
}
@media screen and (max-height: 767px) {
  .chatbot__inner {
    top: -5rem;
  }
}
@media screen and (max-width: 991px) {
  .chatbot__inner {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    position: static;
    top: auto;
  }
}
.chatbot__phone {
  height: 88vh;
  width: 44vh;
  max-width: 37.5rem;
  background-color: var(--color__white);
  background-image: -webkit-image-set(url(../img/bricks.webp) 1x);
  background-image: url(../img/bricks.webp);
  border-radius: 6vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  z-index: 100;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .chatbot__phone {
    height: auto;
    width: 100%;
    border-radius: 0;
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: 0 0;
    padding: 0;
  }
}
.chatbot__phone::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-image-set(url(../img/iphone.png) 1x);
  background-image: url(../img/iphone.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .chatbot__phone::before {
    display: none;
  }
}
.chatbot__phone-inner {
  height: calc(100vh - 7rem);
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.chatbot__phone-header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding: 2em 1.5em 0.5em;
  background-color: var(--color__purple);
  font-size: 1.75rem;
}
@media screen and (max-height: 799px) {
  .chatbot__phone-header {
    font-size: 1.5rem;
  }
}
.chatbot__phone-header-left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.chatbot__phone-link {
  text-decoration: none;
  margin-left: 0.5rem;
}
.chatbot__phone-title {
  display: block;
  font-weight: 700;
}
.chatbot__phone-subtitle {
  display: block;
}
.chatbot__phone-content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.chatbot__phone-menu {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  padding: 0 2.5rem 2rem;
}
@media screen and (max-width: 991px) {
  .chatbot__phone-menu {
    position: fixed;
    padding-top: 1rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    background-color: var(--color__grey-extralight);
    border-radius: 0 0 4.5rem 4.5rem;
  }
}
.screens {
  padding: 2rem 2rem 0.5rem;
  overflow: auto;
}
.screens__item,
.screens__main {
  color: #000;
  -webkit-transition: all 0.24s;
  -o-transition: all 0.24s;
  transition: all 0.24s;
  height: 100%;
}
.screens__main-text {
  font-size: 1.25rem;
}
@media screen and (max-height: 799px) {
  .screens__main-text {
    font-size: 1rem;
  }
}
.screens__main-text + .screens__main-text {
  margin-top: 1em;
}
.screens__slider {
  height: 0;
  padding: 0;
  overflow: hidden;
}
.screens__slider .swiper-slide {
  max-height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 30%);
  grid-gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  grid-auto-flow: column;
}
.screens__slider .swiper-slide__pic {
  height: 100%;
}
.screens__slider .swiper-slide__pic img {
  max-width: unset;
  height: 100%;
  line-height: 0;
}
.checklist {
  padding: 6.75rem 3.5rem 6.75rem 3.5rem;
  background-image: -webkit-image-set(url(../img/checkpoints_bg.jpg) 1x);
  background-image: url(../img/checkpoints_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: var(--sections-margin);
}
@media screen and (max-width: 991px) {
  .checklist {
    padding: 4.5rem 1rem 4.5rem 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
.checklist__title {
  max-width: 40rem;
  font-weight: 500;
  font-size: 3rem;
}
@media screen and (max-width: 991px) {
  .checklist__title {
    font-size: 1.5rem;
    max-width: 15rem;
  }
}
.checklist__list {
  padding: 0;
  list-style: none;
  margin-top: 9.5rem;
}
@media screen and (max-width: 991px) {
  .checklist__list {
    margin-top: 4.75rem;
  }
}
.checklist__item {
  position: relative;
  font-size: 2.25rem;
  font-weight: 500;
  padding-left: 2em;
}
@media screen and (max-width: 991px) {
  .checklist__item {
    font-size: 1.5rem;
  }
}
.checklist__item::before {
  content: "";
  position: absolute;
  height: 1em;
  width: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.checklist__item + .checklist__item {
  margin-top: 1em;
}
.checklist__btn {
  background-color: var(--color__white);
  display: block;
  text-align: center;
  padding: 1.75rem;
  width: 100%;
  max-width: 25.75rem;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--color__brown);
  font-size: 2.25rem;
  font-weight: 500;
  -webkit-transition: 0.24s;
  -o-transition: 0.24s;
  transition: 0.24s;
  margin-top: 11rem;
}
@media screen and (max-width: 991px) {
  .checklist__btn {
    font-size: 1.25rem;
    margin-top: 5rem;
  }
}
.checklist__btn:hover {
  color: var(--color__brown-light);
}
.checklist__btn:focus {
  outline: transparent;
}
.checklist__btn:focus-visible {
  outline: transparent;
  -webkit-box-shadow: 0.25rem 0.25rem 1rem var(--color__dark);
  box-shadow: 0.25rem 0.25rem 1rem var(--color__dark);
}
.checklist__btn:active {
  -webkit-box-shadow: inset 0.25rem 0.25rem 1rem var(--color__dark);
  box-shadow: inset 0.25rem 0.25rem 1rem var(--color__dark);
}
.footer {
  margin-top: var(--sections-margin);
  padding: 6rem 0;
  background-image: -webkit-image-set(url(../img/footer_bg.jpg) 1x);
  background-image: url(../img/footer_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 991px) {
  .footer {
    display: none;
  }
}
.footer.--mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer.--mobile {
    display: block;
    padding: 3.5rem 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 991px) {
  .footer__inner {
    padding-left: 3rem;
  }
}
.footer__title {
  font-weight: 600;
  font-size: 4rem;
  max-width: 46.5rem;
}
@media screen and (max-width: 1199px) {
  .footer__title {
    max-width: 35rem;
  }
}
@media screen and (max-width: 991px) {
  .footer__title {
    font-size: 1.5rem;
  }
}
.footer__title::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--color__white);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  margin-left: 2.75rem;
}
@media screen and (max-width: 991px) {
  .footer__title::after {
    margin-left: 1.5rem;
    height: 1px;
  }
}
.footer__title-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.footer__links-wrapper {
  width: 100%;
  max-width: 27.5rem;
  margin-left: 5rem;
}
@media screen and (max-width: 991px) {
  .footer__links-wrapper {
    margin-left: 0;
  }
}
.footer__link-iconed {
  margin-top: 3.25rem;
  width: 100%;
  text-decoration: none;
  color: var(--color__white);
  font-size: 2.25rem;
  font-weight: 500;
  -webkit-transition: 0.24s;
  -o-transition: 0.24s;
  transition: 0.24s;
}
@media screen and (max-width: 991px) {
  .footer__link-iconed {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
}
.footer__link-iconed:hover {
  color: var(--color__grey-light);
}
.footer__link-iconed:focus {
  outline: transparent;
}
.footer__link-iconed:focus-visible {
  outline: transparent;
  text-decoration: underline;
}
.footer__link-iconed:active {
  color: var(--color__grey);
}
.footer__link-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 15rem;
  flex: 0 1 15rem;
  margin-left: 1em;
}
.footer__link-icon {
  height: 1em;
  width: 1em;
  fill: currentColor;
}
.footer__link-btn {
  background-color: var(--color__white);
  display: block;
  text-align: center;
  padding: 0.5em;
  width: 100%;
  max-width: 27.5rem;
  border-radius: 1rem;
  text-decoration: none;
  color: var(--color__brown);
  font-size: 2.25rem;
  font-weight: 500;
  -webkit-transition: 0.24s;
  -o-transition: 0.24s;
  transition: 0.24s;
  margin-top: 3.25rem;
}
@media screen and (max-width: 991px) {
  .footer__link-btn {
    margin-top: 2rem;
    font-size: 1.25rem;
    max-width: 12.75rem;
    border-radius: 0.75rem;
  }
}
.footer__link-btn:hover {
  color: var(--color__brown-light);
}
.footer__link-btn:focus {
  outline: transparent;
}
.footer__link-btn:focus-visible {
  outline: transparent;
  -webkit-box-shadow: 0.25rem 0.25rem 1rem var(--color__dark);
  box-shadow: 0.25rem 0.25rem 1rem var(--color__dark);
}
.footer__link-btn:active {
  -webkit-box-shadow: inset 0.25rem 0.25rem 1rem var(--color__dark);
  box-shadow: inset 0.25rem 0.25rem 1rem var(--color__dark);
}
.header {
  min-height: 100vh;
  background-image: -webkit-image-set(url(../img/header_bg.jpg) 1x);
  background-image: url(../img/header_bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 991px) {
  .header {
    background-image: none;
    min-height: auto;
    padding: 2rem 1rem;
  }
  .header::before {
    display: none;
  }
}
.header .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header__title {
  font-size: 4rem;
  max-width: 75rem;
  text-align: center;
  font-weight: 400;
  margin-top: 5.25rem;
}
@media screen and (max-width: 1399px) {
  .header__title {
    max-width: 65rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .header__title {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
}
.header__inner {
  margin-right: auto;
  width: 50%;
  max-width: 39rem;
}
@media screen and (max-width: 991px) {
  .header__inner {
    width: 100%;
  }
}
.header__text {
  font-size: 2.5rem;
  font-weight: 300;
}
@media screen and (max-width: 1399px) {
  .header__text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 991px) {
  .header__text {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    padding: 0 0.25rem;
  }
}
.services {
  margin-top: var(--sections-margin);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 3.75rem;
  grid-column-gap: 4.75rem;
  color: var(--color__white);
}
@media screen and (max-width: 1199px) {
  .services {
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .services {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.service-item {
  border-radius: 0.75rem;
  background-color: var(--color__blue);
  padding: 2rem 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .service-item {
    border-radius: 1.5rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 991px) {
  .service-item__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .service-item__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 3rem;
    flex: 0 0 3rem;
    height: 3rem;
    min-width: 3rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.service-item__title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .service-item__title {
    font-size: 2rem;
  }
}
.service-item__text {
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 1.5rem;
  max-width: 20rem;
  min-height: 7rem;
}
.service-item__link {
  display: block;
  text-decoration: none;
  color: var(--color__white);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  margin-top: auto;
  width: 100%;
  -webkit-transition: 0.24s;
  -o-transition: 0.24s;
  transition: 0.24s;
}
@media screen and (max-width: 991px) {
  .service-item__link {
    font-size: 1.5rem;
  }
}
.service-item__link::after {
  content: "";
  position: absolute;
  display: block;
  height: 1.25em;
  width: 1.25em;
  background-image: url(../img/arrow_right.svg);
  background-size: 95% 95%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.service-item__link:hover::after {
  right: 0;
}
.service-item__link:focus {
  outline: transparent;
}
.service-item__link:focus-visible {
  outline: transparent;
  color: var(--color__white);
}
.service-item__link:active {
  color: var(--color__white);
}
.top-bar {
  background-color: var(--color__white);
  padding: 2.5rem 0;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .top-bar {
    display: none;
  }
}
.top-bar__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.top-bar__nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40rem;
  flex: 0 1 40rem;
  margin: 0 2rem;
}
.top-bar__menu {
  padding: 0;
  list-style: none;
}
.top-bar__menu-link {
  font-size: 2.25rem;
  text-decoration: none;
  color: var(--color__blue);
  -webkit-transition: 0.24s;
  -o-transition: 0.24s;
  transition: 0.24s;
}
.top-bar__menu-link:hover {
  color: var(--color__brown);
}
.top-bar__menu-link:focus {
  outline: transparent;
}
.top-bar__menu-link:focus-visible {
  outline: transparent;
  text-decoration: underline;
}
.top-bar__menu-link:active {
  color: var(--color__dark);
}
.top-bar__btn {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17rem;
  flex: 0 0 17rem;
  padding: 0.75rem 2.5rem;
  text-align: center;
  color: var(--color__white);
  background-color: var(--color__brown);
  font-size: 1.75rem;
  line-height: 1.1;
  text-decoration: none;
  border-radius: 0.75rem;
  -webkit-transition: 0.24s;
  -o-transition: 0.24s;
  transition: 0.24s;
}
.top-bar__btn:hover {
  background-color: var(--color__brown-light);
}
.top-bar__btn:focus {
  outline: transparent;
}
.top-bar__btn:focus-visible {
  outline: transparent;
  -webkit-box-shadow: 0.25rem 0.25rem 0.5rem var(--color__brown);
  box-shadow: 0.25rem 0.25rem 0.5rem var(--color__brown);
}
.top-bar__btn:active {
  -webkit-box-shadow: inset 0.25rem 0.25rem 0.5rem var(--color__brown);
  box-shadow: inset 0.25rem 0.25rem 0.5rem var(--color__brown);
}
@import url(https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
:root,
body,
button,
input {
  font-family: "Alumni Sans", sans-serif;
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1365px), (max-height: 767px) {
  html {
    font-size: 14px;
  }
}
body {
  font-size: 1rem;
  background-color: var(--color__grey-extralight);
  line-height: 1.25;
  color: var(--color__white);
  --sections-margin: 7rem;
  max-width: 100vw;
  min-height: 100vh;
  height: 100%;
}
@media screen and (max-width: 991px) {
  body {
    overflow: hidden;
    padding: 2rem;
    position: relative;
    background-image: -webkit-image-set(url(../img/header_bg.jpg) 1x);
    background-image: url(../img/header_bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    --section-margin: 2rem;
  }
  body::before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  body > * {
    position: relative;
    z-index: 1;
  }
}
picture {
  display: block;
}
picture img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  line-height: 0;
}
.container {
  padding: 0 2.75rem;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 120rem;
}
@media screen and (max-width: 991px) {
  .container {
    padding: 0;
  }
}
.bg-dark {
  position: relative;
}
.bg-dark::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.bg-dark > * {
  position: relative;
  z-index: 1;
}
.page-wrapper {
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .page-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
    padding: 0;
    overflow-block: hidden;
  }
}
@media screen and (max-width: 991px) {
  .main {
    height: 100%;
  }
}
.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 52.5rem;
  flex: 1 1 52.5rem;
}
@media screen and (max-width: 991px) {
  .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: clip;
    padding: 0 1rem;
    background-color: var(--color__grey-extralight);
  }
}
@media screen and (max-width: 399px) {
  .content {
    padding: 0 0.5rem;
  }
}
.chatbot {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  margin-left: 10rem;
}
@media screen and (max-width: 1365px) {
  .chatbot {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .chatbot {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .mobile-page {
    max-height: calc(100% - 5rem);
    width: 95vw;
    margin: 0 auto;
    overflow: auto;
    padding: 1rem 1.5rem 1rem;
    scrollbar-width: 0;
    position: absolute;
    top: 47.5%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 33rem;
    overflow-x: clip;
  }
  .mobile-page::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: -webkit-image-set(url(../img/iphone.png) 1x);
    background-image: url(../img/iphone.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 3;
  }
  .mobile-page > ::-webkit-scrollbar {
    width: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer,
  .header {
    display: none;
  }
}
.footer.--mobile,
.header.--mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer.--mobile,
  .header.--mobile {
    display: block;
  }
}
:root {
  --color__dark: #121526;
  --color__text: #111526;
  --color__blue: #162638;
  --color__white: #ffffff;
  --color__brown: #7f220f;
  --color__brown-light: #973b29;
  --color__red: #e93324;
  --color__grey: #878787;
  --color__grey-light: #a0a0a0;
  --color__grey-extralight: #c4c4c4;
  --color__purple: #8276ea;
  --color__yellow: #f5dd4f;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.--just-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.--just-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.--just-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.--just-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.--align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.--align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.--align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.--button,
.--link,
a,
button {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
/*# sourceMappingURL=../sourcemaps/style.min.css.map */
