:root {
  --primary-color: #444bdd;
  --secondary-color: #effcb8;
  --background-color: #eff4fe;
  --text-color: #0b1134;
  --primary-font: Inter, sans-serif;
}

.page-template-page-landing {
  font-family: var(--primary-font);
  background-color: var(--background-color);
}
.page-template-page-landing .site-content .ast-container {
  max-width: 100%;
  padding: 0;
}
.page-template-page-landing section.pad-t-5 {
  padding-top: 140px;
}
.page-template-page-landing section.pad-b-5 {
  padding-bottom: 140px;
}
@media (min-width: 1200px) {
  .ast-plain-container.ast-no-sidebar #primary {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .page-template-page-landing section.pad-t-5 {
    padding-top: 80px;
  }
  .page-template-page-landing section.pad-b-5 {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

.land-btn {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  background: var(--secondary-color);
  border: 1px solid #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0b1134;
  margin-top: 32px;
  transition: all 0.2s linear;
}
.land-btn:hover {
  color: #0b1134;
  opacity: 0.8;
}
.land-btn.land-btn-blue {
  max-width: max-content;
  min-width: 378px;
  color: #ffffff;
  background: var(--primary-color);
}
@media (max-width: 768px) {
  .land-btn.land-btn-blue {
    min-width: 100%;
  }
}

/*---
Section Intro
---*/
section.land-intro {
  background: var(--primary-color);
  position: relative;
  overflow-x: hidden;
}
.land-intro__vector {
  display: block;
  width: 191px;
  height: 209px;
  position: absolute;
  top: 37%;
  right: 0;
  background: url(img/landing/plus-dots.svg) no-repeat;
  z-index: 1;
  opacity: 0;
}
.land-intro__wrap {
  padding-top: 96px;
  padding-bottom: 208px;
  position: relative;
  opacity: 0;
  z-index: 2;
}
.land-intro__wrap::before {
  content: "";
  display: block;
  width: 82px;
  height: 59px;
  position: absolute;
  top: 17px;
  left: 0;
  background: url(img/landing/pluses.svg) no-repeat;
}
.land-intro__title {
  font-weight: 600;
  font-size: 72px;
  line-height: 80px;
  color: #ffffff;
}
.land-intro__title span {
  display: inline;
}
.land-intro__title span:nth-of-type(even) {
  padding-left: 100px;
}
.land-intro__title strong {
  font-weight: 700;
  font-size: 72px;
  line-height: 87px;
  color: var(--secondary-color);
}
.land-intro__info {
  max-width: 570px;
  padding-left: 90px;
}
.land-intro__info .info-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #ffffff;
}
.land-intro__img {
  max-width: 605px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s linear;
  /* display: none; */
}
.land-intro__img img {
  object-fit: cover;
  border-radius: 220px 0px 0px 0px;
  transition: all 0.5s linear;
}
.land-intro__img.fixed {
  max-width: 100%;
  width: 100%;
  z-index: 2;
}
.land-intro__img.fixed img {
  width: 100%;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .land-intro__title,
  .land-intro__title strong {
    font-size: 32px;
    line-height: 39px;
  }
  .land-intro__title span:nth-of-type(even) {
    padding-left: 0;
  }
  .land-intro__info {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .land-intro__vector {
    display: block;
    width: 99px;
    height: 209px;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 17.3%;
    background: url(img/landing/dots.svg) no-repeat;
    z-index: 3;
    opacity: 0;
  }
  .land-intro__title {
    margin-bottom: 16px;
  }
  .land-intro__title br {
    display: none;
  }
  .land-intro__info .info-text {
    font-size: 15px;
  }
  .land-intro__img {
    max-width: 100%;
    position: relative;
  }
  .land-intro__img img {
    aspect-ratio: 1 / 0.85;
    border-radius: 0;
  }
  .land-intro__wrap {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .land-intro__wrap::before {
    background-size: 60px;
  }
  .land-intro__img {
    position: relative;
  }
  .land-intro__img::before {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    top: -23px;
    right: 30%;
    background: url(img/landing/plus.svg) no-repeat;
  }
}

/*---
Section Text+Image
---*/
section.land-textimg {
  background: var(--background-color);
}
.land-textimg__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 164px;
  align-items: flex-start;
}
.land-textimg__content .content-text {
  font-size: 24px;
  line-height: 160%;
  color: var(--text-color);
  text-indent: 70px;
}
.land-textimg__content .content-text.text-small {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #687e88;
  text-indent: 0;
  margin-top: 32px;
}
.land-textimg__content .content-text strong {
  color: var(--primary-color);
  font-weight: 700;
}
.land-textimg__image .image-block {
  max-width: 500px;
  margin-left: auto;
}
.land-textimg__content .content-img,
.land-textimg__image .image-block {
  display: flex;
  border-radius: 32px;
  overflow: hidden;
}
.land-textimg__content .content-img img,
.land-textimg__image img {
  width: 100%;
}
.land-textimg__content .content-img {
  max-width: 483px;
  margin-top: 80px;
}
.land-textimg.with-vector .land-textimg__image .image-block {
  max-width: 477px;
  margin-left: auto;
  margin-right: 20px;
}
.land-textimg.with-vector .land-textimg__image {
  width: 100%;
  height: 100%;
  background: url(img/landing/map.png) no-repeat;
  background-size: contain;
  background-position-x: center;
}
@media (max-width: 1024px) {
  .land-textimg__wrap {
    grid-template-columns: 100%;
    grid-gap: 20px;
  }
  .land-textimg:not(.with-vector) .content-img,
  .land-textimg.with-vector .land-textimg__image {
    display: none;
  }
  .land-textimg__image .image-block {
    margin: 0;
  }
  .land-textimg__content .content-text {
    font-size: 20px;
    line-height: 160%;
    text-indent: 40px;
  }
  .land-textimg__content .content-text br {
    display: none;
  }
  .land-textimg__content .content-img {
    margin-top: 32px;
  }
}

/*---
Section Grid Blocks
---*/
section.grid-blocks {
  background: var(--primary-color);
  overflow-x: hidden;
}
.grid-blocks .container {
  padding: 0;
}
.grid-blocks__list {
  padding: 80px 0 140px 0;
}
.grid-blocks__line {
  display: inline-flex;
  align-items: center;
  grid-gap: 45px;
  flex-wrap: nowrap;
  border: 1px solid #ffffff;
  border-width: 0 0 1px 0;
  padding: 24px 0;
  overflow: hidden;
}
.grid-blocks__line .line-item {
  font-weight: 600;
  font-size: 72px;
  line-height: 87px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--primary-color);
  text-shadow: 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
  /* -webkit-text-stroke: 1px #ffffff; */
}
.grid-blocks__line .divider {
  display: block;
  width: 78px;
}
.grid-blocks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-blocks__list-item {
  padding: 24px;
  position: relative;
}
.grid-blocks__list-item::before {
  content: "";
  width: 1px;
  height: calc(100% - 48px);
  position: absolute;
  top: 24px;
  right: 0;
  background: #ffffff;
}
.grid-blocks__list-item::after {
  content: "";
  width: calc(100% - 48px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 24px;
  background: #ffffff;
}
.grid-blocks__list-item:nth-child(3n)::before,
.grid-blocks__list-item:nth-last-child(-n + 3)::after {
  display: none;
}
.grid-blocks__list-item .item-text__title {
  font-weight: 600;
  font-size: 72px;
  line-height: 87px;
  color: #ffffff;
}
.grid-blocks__list-item .item-text__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-top: 32px;
}
.grid-blocks__list-item .item-img {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
/* .grid-blocks__list-item .item-img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: lightgray 0px -87.001px / 100% 158.37% no-repeat;
} */
.grid-blocks__list-item .item-img img {
  width: 100%;
  aspect-ratio: 1 / 0.63;
  object-fit: cover;
  border-radius: 32px;
}
@media (max-width: 1024px) {
  .grid-blocks__list {
    padding: 50px 0 80px 0;
  }
  .grid-blocks__list-item .item-text__title {
    font-size: 40px;
    line-height: 120%;
  }
  .grid-blocks__list-item .item-text__text {
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .grid-blocks__line {
    grid-gap: 25px;
  }
  .grid-blocks__line .line-item {
    font-size: 40px;
    line-height: 120%;
  }
  .grid-blocks__line .divider {
    width: 43px;
  }
  .grid-blocks__list {
    grid-template-columns: 1fr 1fr;
    padding: 24px 0 80px 0;
  }
  .grid-blocks__list-item:nth-child(2n)::before {
    display: none;
  }
  .grid-blocks__list-item .item-text__text {
    font-size: 15px;
  }
}

/*---
Section Quote
---*/
.land-quote {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 213px 0;
  position: relative;
  z-index: 1;
}
.land-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  z-index: -1;
}
.land-quot__wrap {
  max-width: 1184px;
  background: #ffffff;
  border-radius: 32px;
  padding: 48px 200px;
  margin: 0 auto;
  position: relative;
}
.land-quot__wrap::before,
.land-quot__wrap::after {
  content: "";
  width: 90px;
  height: 69px;
  display: block;
  background: url(img/landing/quote.svg) no-repeat;
  background-size: 87px;
  position: absolute;
  left: 48px;
  top: 48px;
}
.land-quot__wrap::after {
  left: auto;
  right: 48px;
}
.land-quote__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  text-indent: 80px;
  color: var(--text-color);
}
.land-quote__text strong {
  color: var(--primary-color);
}
.land-quote__btn {
  margin: 32px auto 0 auto;
}
@media (max-width: 768px) {
  .land-quote {
    padding: 80px 0;
  }
  .land-quot__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 78px 16px;
  }
  .land-quote__text {
    font-size: 20px;
  }
  .land-quot__wrap::before,
  .land-quot__wrap::after {
    top: 32px;
    left: auto;
    right: auto;
    width: 45px;
    height: 35px;
    background-size: 40px;
    margin: 0 auto;
  }
  .land-quot__wrap::after {
    top: auto;
    bottom: 32px;
  }
  .land-quote__btn {
    margin: 10px auto 0 auto;
  }
}

/*---
Section Banner
---*/
section.land-banner {
  background: var(--primary-color);
  position: relative;
}
.land-banner::before {
  content: "";
  display: block;
  width: 99px;
  height: 135px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(img/landing/dots-3.svg) no-repeat;
  background-size: contain;
}
.land-banner::after {
  content: "";
  display: block;
  width: 132px;
  height: 208px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(img/landing/dots-2.svg) no-repeat;
  background-size: contain;
}
.land-banner__wrap {
  max-width: 1184px;
  margin: 0 auto;
  padding: 150px 0 165px 0;
  position: relative;
}
.land-banner__wrap::before {
  content: "";
  display: block;
  width: 82px;
  height: 59px;
  position: absolute;
  top: 67px;
  left: 90px;
  background: url(img/landing/pluses.svg) no-repeat;
}
.land-banner__wrap::after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 40%;
  bottom: 73px;
  background: url(img/landing/plus.svg) no-repeat;
}
.land-banner__text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 56px;
  line-height: 120.9%;
  color: #ffffff;
}
.land-banner__text span:nth-of-type(even) {
  text-indent: 120px;
}
.land-banner__text strong {
  color: var(--secondary-color);
  font-weight: 700;
}
.land-banner__btn {
  min-width: 476px;
  max-width: max-content;
  margin-left: auto;
  margin-top: -60px;
  position: relative;
}
.land-banner__btn::before {
  content: "";
  display: block;
  width: 47px;
  height: 134px;
  position: absolute;
  top: -155px;
  right: 120px;
  background: url(img/landing/arrow-down.svg) no-repeat;
}
@media (max-width: 1200px) {
  .land-banner__btn {
    margin: 30px auto 0 auto;
  }
  .land-banner__btn::before {
    width: 21px;
    height: 56px;
    top: -70px;
    right: 20px;
    background: url(img/landing/arrow-down-small.svg) no-repeat;
  }
}
@media (max-width: 1024px) {
  .land-banner__text span:nth-of-type(even) {
    text-indent: 0;
  }
  .land-banner::before,
  .land-banner::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .land-banner__wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .land-banner__wrap::before {
    width: 47px;
    height: 35px;
    top: 27px;
    left: 0;
    background-size: contain;
  }
  .land-banner__wrap::after {
    width: 34px;
    height: 34px;
    right: 0;
    bottom: 21px;
    background-size: contain;
  }
  .land-banner__text {
    display: inline;
    font-size: 32px;
  }
  .land-banner__btn {
    min-width: max-content;
    max-width: 100%;
  }
  .land-banner__btn::before {
    right: 0;
  }
}