.m-screen {
  overflow: hidden;
  background: #EEF3FB;
  position: relative;
}
.m-screen .container {
  position: relative;
  z-index: 4;
}
.m-screen__background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 105rem;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .m-screen__background {
    min-width: auto;
  }
}
.m-screen__circle-1 {
  position: absolute;
  z-index: 1;
  width: 39.01881rem;
  height: 39.01881rem;
  top: -20.14rem;
  right: -19.52rem;
  background-image: url("/assets/img/m-screen/circle-1.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .m-screen__circle-1 {
    display: none;
  }
}
.m-screen__circle-2 {
  position: absolute;
  z-index: 3;
  width: 55.3125rem;
  height: 55.3125rem;
  left: -30rem;
  bottom: -30.31rem;
  background-image: url("/assets/img/m-screen/circle-2.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .m-screen__circle-2 {
    width: 21.49706rem;
    height: 21.49706rem;
    left: -10.75rem;
    bottom: -12.37rem;
  }
}
@media only screen and (max-width: 767px) {
  .m-screen__circle-2 {
    width: 13.83988rem;
    height: 13.83988rem;
    left: -6.92rem;
    bottom: -8.54rem;
  }
}
.m-screen__dots {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("/assets/img/m-screen/dots.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.m-screen__wrapper {
  padding: 9.25rem 0 13.75rem;
}
@media only screen and (max-width: 1024px) {
  .m-screen__wrapper {
    padding: 14.27rem 0 18.13rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .m-screen__wrapper {
    padding: 5.64rem 0 8rem 0;
  }
}
.m-screen__caption {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
@media only screen and (max-width: 1024px) {
  .m-screen__caption {
    gap: 1.5rem;
  }
}
.m-screen__title {
  color: #000;
  font-family: Gilroy;
  font-size: 4rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.04rem;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .m-screen__title {
    font-size: 2rem;
    line-height: 120%;
    letter-spacing: -0.02rem;
  }
}
.m-screen__search {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search {
    gap: 1rem;
  }
}
.m-screen__search-input {
  position: relative;
}
.m-screen__search-input::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6.95rem;
  transform: translateY(-50%);
  width: 17.625rem;
  height: 17.625rem;
  background-image: url("/assets/img/m-screen/circle-3.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-input::before {
    width: 10.77638rem;
    height: 10.77638rem;
    right: -3.64rem;
  }
}
.m-screen__search-input input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 1.25rem 4.99rem 1.25rem 1.625rem;
  border-radius: 0.75rem;
  border: 1px solid #B0C6E8;
  background: #FFF;
  box-shadow: 0 4px 12px 0 rgba(131, 132, 146, 0.1);
  color: #2D2D2D;
  font-family: Gilroy;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-input input {
    border-radius: 0.625rem;
    padding: 1.09rem 3.5rem 1.09rem 1rem;
    font-size: 0.9375rem;
  }
}
.m-screen__search-input input:focus, .m-screen__search-input input:active {
  border: 1px solid #B0C6E8;
  outline: none;
}
.m-screen__search-input input::-moz-placeholder {
  color: rgba(45, 45, 45, 0.5);
}
.m-screen__search-input input::placeholder {
  color: rgba(45, 45, 45, 0.5);
}
.m-screen__search-input button {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.99rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-sizing: border-box;
  box-shadow: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-input button {
    width: 3.5rem;
  }
}
body:not(.mobile) .m-screen__search-input button:hover svg {
  stroke: #3777D8;
}
.m-screen__search-input button svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  stroke: #262B35;
  transition: stroke 300ms ease;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-input button svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.m-screen__search-advanced {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  text-decoration: none !important;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-advanced {
    gap: 0.25rem;
  }
}
body:not(.mobile) .m-screen__search-advanced:hover span {
  border-color: transparent;
  color: #3777D8;
}
.m-screen__search-advanced span {
  color: #2D2D2D;
  font-family: Gilroy;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  border-bottom: 1px solid #2D2D2D;
  transition: border 300ms ease, color 300ms ease;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-advanced span {
    font-size: 0.8125rem;
  }
}
.m-screen__search-advanced svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  stroke: #3695D8;
}
@media only screen and (max-width: 1024px) {
  .m-screen__search-advanced svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-header {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: 4.5rem;
}
@media only screen and (max-width: 1024px) {
  .p-header {
    gap: 3rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-header {
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-header__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}
@media only screen and (max-width: 1024px) {
  .p-header__top {
    gap: 0.75rem;
  }
}
.p-header__title {
  display: block;
  flex: 1;
}
.p-header__title h2 {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #2D2D2D;
  font-family: Gilroy;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.03125rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .p-header__title h2 {
    font-size: 2rem;
    letter-spacing: -0.02rem;
  }
}
.p-header__link {
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .p-header__link {
    display: none;
  }
}
.p-header__body {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-header__tag {
    margin-bottom: 1.5rem;
  }
}
.p-header__tag h2, .p-header__tag span {
  margin: 0;
  padding: 0;
  color: #2D2D2D;
  font-family: Inter;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .p-header__tag h2, .p-header__tag span {
    font-size: 0.75rem;
  }
}
.p-header__description {
  color: #313467;
  font-family: Gilroy;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.0175rem;
}
@media only screen and (max-width: 1024px) {
  .p-header__description {
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
  }
}

.arrow-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
@media only screen and (max-width: 1024px) {
  .arrow-link {
    gap: 0.25rem;
  }
}
.arrow-link:hover span {
  color: #3777D8;
  border-color: transparent;
}
.arrow-link span {
  color: #2D2D2D;
  font-family: Gilroy;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.00938rem;
  text-transform: uppercase;
  border-bottom: 1px solid #2D2D2D;
  transition: color 300ms ease, border 300ms ease;
}
@media only screen and (max-width: 1024px) {
  .arrow-link span {
    font-size: 0.875rem;
    letter-spacing: -0.00875rem;
  }
}
@media only screen and (max-width: 767px) {
  .arrow-link span {
    font-size: 0.8125rem;
    letter-spacing: -0.00813rem;
  }
}
.arrow-link svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  stroke: #3777D8;
}

.ap-card {
  padding: 2rem 2rem 1.5rem 1.75rem;
  border-radius: 1rem;
  background: #EEF3FB;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 14.25rem;
}
@media only screen and (max-width: 1024px) {
  .ap-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
    min-height: 7.375rem;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .ap-card {
    min-height: 7.5625rem;
  }
}
.ap-card__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.ap-card__value {
  font-family: Gilroy;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 75%;
  letter-spacing: -0.0375rem;
}
@media only screen and (max-width: 1024px) {
  .ap-card__value {
    font-size: 2rem;
    line-height: 80%;
    letter-spacing: -0.02rem;
  }
}
.ap-card__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
}
@media only screen and (max-width: 1024px) {
  .ap-card__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.ap-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ap-card__title {
  color: #313467;
  font-family: Inter;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.3125rem */
  min-height: 2.625rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .ap-card__title {
    font-size: 0.75rem;
    min-height: auto;
    display: block;
  }
}

.tc-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 23.6875rem;
  text-decoration: none !important;
}
@media only screen and (max-width: 1024px) {
  .tc-card {
    border-radius: 0.75rem;
    min-height: 16.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .tc-card {
    min-height: 13.75rem;
  }
}
.tc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(17, 138, 223, 0.7) 0%, rgba(17, 138, 223, 0.7) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 300ms ease;
}
@media only screen and (max-width: 1024px) {
  .tc-card::before {
    display: none;
  }
}
body:not(.mobile) .tc-card:hover::before {
  opacity: 1;
}
body:not(.mobile) .tc-card:hover .tc-card__caption::before {
  opacity: 1;
}
.tc-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tc-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.tc-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tc-card__caption {
  position: relative;
  z-index: 3;
  padding: 1.5rem 5.37rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .tc-card__caption {
    padding: 1rem;
    gap: 0.62rem;
  }
}
.tc-card__caption::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url("/assets/img/icons/arrow-white.svg");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 300ms ease;
}
@media only screen and (max-width: 1024px) {
  .tc-card__caption::before {
    display: none;
  }
}
.tc-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #FFF;
  font-family: Gilroy;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.01375rem;
}
@media only screen and (max-width: 1024px) {
  .tc-card__title {
    font-size: 1rem;
    letter-spacing: -0.01rem;
  }
}

.n-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .n-card {
    gap: 1.25rem;
  }
}
body:not(.mobile) .n-card:hover .n-card__image img {
  transform: scale(1.025);
}
@media only screen and (max-width: 767px) {
  .n-card--no-image-mobile .n-card__image {
    display: none;
  }
}
.n-card--no-image .n-card__image {
  display: none;
}
.n-card--line-clamp-2 .n-card__title {
  -webkit-line-clamp: 2 !important;
}
.n-card--lg {
  gap: 2rem;
}
@media only screen and (max-width: 1024px) {
  .n-card--lg {
    gap: 1.5rem;
  }
}
.n-card--lg .n-card__image {
  aspect-ratio: 42.0625/26.875;
}
@media only screen and (max-width: 1024px) {
  .n-card--lg .n-card__image {
    aspect-ratio: 25.4375/16.3125;
  }
}
.n-card--lg .n-card__caption {
  gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .n-card--lg .n-card__caption {
    gap: 1rem;
  }
}
.n-card--lg .n-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.0175rem;
  -webkit-line-clamp: 3;
}
@media only screen and (max-width: 1024px) {
  .n-card--lg .n-card__title {
    -webkit-line-clamp: 3;
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
  }
}
@media only screen and (max-width: 767px) {
  .n-card--lg .n-card__title {
    -webkit-line-clamp: 4;
  }
}
.n-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 437/277.96;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  .n-card__image {
    aspect-ratio: 289/201.39;
    border-radius: 0.75rem;
  }
}
.n-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 600ms ease;
}
.n-card__caption {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 1024px) {
  .n-card__caption {
    gap: 0.62rem;
  }
}
.n-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #2D2D2D;
  font-family: Gilroy;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 135%; /* 1.85625rem */
  letter-spacing: -0.01375rem;
}
@media only screen and (max-width: 1024px) {
  .n-card__title {
    -webkit-line-clamp: 2;
    font-size: 1rem;
    letter-spacing: -0.01rem;
  }
}

.mp-card {
  text-decoration: none !important;
}
body:not(.mobile) .mp-card:hover .mp-card__image img {
  transform: scale(1.025);
}
@media only screen and (max-width: 767px) {
  .mp-card .row {
    flex-direction: column-reverse;
  }
}
.mp-card__caption {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 3.75rem;
  gap: 3.5rem;
}
@media only screen and (max-width: 1024px) {
  .mp-card__caption {
    padding-right: 1rem;
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .mp-card__caption {
    gap: 1.5rem;
    padding-right: 0;
  }
}
.mp-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .mp-card__header {
    gap: 0.62rem;
  }
}
@media only screen and (max-width: 767px) {
  .mp-card__header {
    gap: 1rem;
  }
}
.mp-card__title {
  color: #2D2D2D;
  font-family: Gilroy;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.0175rem;
}
@media only screen and (max-width: 1024px) {
  .mp-card__title {
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
  }
}
.mp-card__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #3D3D3D;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
@media only screen and (max-width: 1024px) {
  .mp-card__description {
    font-size: 0.875rem;
    line-height: 150%;
  }
}
.mp-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 42.0625/26.875;
  min-height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  .mp-card__image {
    border-radius: 0.75rem;
    aspect-ratio: 25.4375/16.3125;
  }
}
@media only screen and (max-width: 767px) {
  .mp-card__image {
    aspect-ratio: 21.4375/13.75;
    margin-bottom: 1.5rem;
  }
}
.mp-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 600ms ease;
}

.news-slider:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .news-slider:not(.swiper-initialized) .swiper-wrapper {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider:not(.swiper-initialized) .swiper-wrapper {
    gap: 1.5rem;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider:not(.swiper-initialized) .swiper-slide {
    width: 15.87525rem !important;
    flex-shrink: 0;
  }
}

@media only screen and (max-width: 767px) {
  .news-slider {
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider .swiper-slide {
    width: 15.87525rem !important;
    flex-shrink: 0;
  }
}

.m-section__wrapper {
  padding: 6.88rem 0;
}
@media only screen and (max-width: 1024px) {
  .m-section__wrapper {
    padding: 3.75rem 0;
  }
}
.m-section--border .m-section__wrapper {
  border-bottom: 1px solid #E0E0E0;
}
.m-section--blue {
  background: #EEF3FB;
}

.m-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .m-about__grid {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .m-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.m-more-link {
  display: none;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .m-more-link {
    display: flex;
    justify-content: center;
  }
}

.m-tcases__card {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .m-tcases__card {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .m-tcases__card {
    margin-bottom: 0.75rem;
  }
}

.m-analytics__main-post {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .m-analytics__main-post {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #B4BCC9;
  }
}
.m-analytics__post {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  margin-left: 2.25rem;
  border-bottom: 1px solid #B4BCC9;
}
@media only screen and (max-width: 1024px) {
  .m-analytics__post {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .m-analytics__post {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    margin-left: 0;
  }
}
.m-analytics__post:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .m-analytics__post:nth-child(1) .n-card__image {
    display: none !important;
  }
}
.m-analytics__post:nth-child(1n+2) .n-card__image {
  display: none !important;
}

.m-news__grid {
  display: flex;
  flex-direction: column;
}
.m-news__main-post {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid #E0E0E0;
}
@media only screen and (max-width: 1024px) {
  .m-news__main-post {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .m-news__main-post {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
