@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

.main.no-scroll {
  overflow: hidden;
}

.w100 {
  width: 100%;
}

.theme-light {
  --color-body: #F8FAFC;
  --color-card: #ffffff;
  --color-main: #000000;
  --color-accent: #2E6BEF;
  --color-accent-hover: #2b6eff;
  --color-accent-2: #ffffff;
  --color-accent-2-hover: #ffffff;
  --color-outline: #DDE2E8;
  --color-neutral: #EFF2F5;
  --color-neutral-hover: #f8fafc;
  --color-light: #FAFAFA;
  --color-neutral-text: #616e85;
  --color-neutral-text-hover: #000000;
}

.theme-dark {
  --color-body: #000000;
  --color-main: #ffffff;
  --color-accent: #ec4500;
  --color-accent-hover: #2b6eff;
  --color-outline: #2B2B2B;
  --color-neutral: #161616;
  --color-neutral-hover: #1E1E1E;
  --color-neutral-1: #1E1E1E;
  --color-light: #141414;
}

body {
  background: var(--color-body);
}

a,
a:hover,
a:visited,
a:active,
a:link {
  color: var(--color-main);
}

.bg-light {
  background: var(--color-light);
}

* {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--color-main);
  font-weight: 400;
}

.title,
.title span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 110%;
}

.subtitle p {
  line-height: 150%;
  font-size: 18px;
}

h1,
.s1,
h1 span,
.s1 span {
  font-size: 40px;
  line-height: 110%;
}

h2,
.s2,
h2 span,
.s2 span {
  font-size: 32px;
  line-height: 110%;
}

h3,
.s3,
h3 span,
.s3 span {
  font-size: 22px;
  line-height: 110%;
}

h4,
.s4,
h4 span,
.s4 span {
  font-size: 20px;
  line-height: 110%;
}

.title-sm {
  font-size: 14px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 12px;
  color: var(--color-neutral-text);
}

.text h1, .text h2, .text h3, .text h4, .text h5 {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.text *:first-child {
  margin-top: 0;
}
.text *:last-child {
  margin-bottom: 0;
}
.text p {
  margin: 20px 0;
}
.text p, .text a {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}
.text b, .text strong {
  font-weight: 600;
}
.text ul {
  margin-top: 20px;
  padding-left: 15px;
}
.text ul li {
  margin: 10px 0;
  line-height: 160%;
}

.title-box {
  margin-bottom: 50px;
}
.title-box .title {
  margin-bottom: 0;
}
.title-box .subtitle {
  margin-top: 20px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-left {
  text-align: right;
}

@media screen and (max-width: 767px) {
  h1,
  .s1,
  h1 span,
  .s1 span {
    font-size: 32px;
  }
  h2,
  .s2,
  h2 span,
  .s2 span {
    font-size: 26px;
  }
  h3,
  .s3,
  h3 span,
  .s3 span {
    font-size: 20px;
  }
  h4,
  .s4,
  h4 span,
  .s4 span {
    font-size: 18px;
  }
  .title-box {
    margin-bottom: 40px;
  }
}
* {
  margin: 0;
  padding: 0;
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  border: none;
  cursor: pointer;
}

body,
html {
  width: 100%;
  height: 100%;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  text-decoration: none;
}

.nav > li > a:hover,
.nav > li > a:active,
.nav > li > a:focus {
  background: none;
}

.clearfix {
  clear: both;
}

.row {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: auto;
}

.container-full {
  width: 100%;
  max-width: 1500px;
  padding: 0 40px;
  margin: auto;
}

.container-text {
  width: 100%;
  max-width: 850px;
  padding: 0 20px;
  margin: auto;
}

.row-grid-6 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-6 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.row-grid-6 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.row-grid-6 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.row-grid-6 > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.row-grid-6 > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}

.row-grid-6 > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}

.row-grid-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-4 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.row-grid-4 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.row-grid-4 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.row-grid-4 > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.row-grid-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-3 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.row-grid-3 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.row-grid-3 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.row-grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-grid-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.row-grid-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.indent {
  padding: 100px 0;
}

.indent-sm {
  padding: 60px 0;
}

.indent-top {
  padding-top: 100px;
}

.indent-bottom {
  padding-bottom: 100px;
}

.w100 {
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .container-full {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .row-grid-4,
  .row-grid-3,
  .row-grid-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
  }
  .row-grid-4 > *:nth-child(1), .row-grid-3 > *:nth-child(1), .row-grid-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .row-grid-6 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-grid-6 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .row-grid-6 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .row-grid-6 > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}
@media screen and (max-width: 767px) {
  .indent {
    padding: 60px 0;
  }
  .indent-top {
    padding-top: 60px;
  }
  .indent-bottom {
    padding-bottom: 60px;
  }
}
.header {
  padding: 30px 0;
  position: absolute;
  background: var(--color-body);
  width: 100%;
  z-index: 9999;
}
.header .logo {
  display: block;
}
.header .logo img {
  max-width: 200px;
  max-height: 20px;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 20px 0;
  }
  .header .logo img {
    max-width: 200px;
    max-height: 16px;
  }
}
.footer {
  padding: 30px 0;
  background: var(--color-body);
}
.footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer p, .footer a {
  font-size: 12px;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer__links a {
  text-decoration: underline;
}

.btn {
  margin-top: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--color-neutral);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  height: 46px;
}
.btn--icon {
  stroke: #fff;
  height: 20px;
  width: 20px;
}
.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent .btn--icon {
  stroke: #fff;
}
.btn--accent:hover {
  background: var(--color-accent-hover);
}

.btn-state {
  position: relative;
}
.btn-state--main, .btn-state--active {
  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;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.btn-state--active {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.btn-state.active .btn-state--main {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.btn-state.active .btn-state--active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}

.faq details {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0fr;
  grid-template-rows: auto 0fr;
  -webkit-transition: grid-template-rows 260ms ease;
  transition: grid-template-rows 260ms ease;
  transition: grid-template-rows 260ms ease, -ms-grid-rows 260ms ease;
  border-bottom: 1px solid var(--color-outline);
  padding: 20px 0;
}

.faq details:last-child {
  border-bottom: none;
}

.faq details[open] {
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  position: relative;
  padding-right: 28px;
  font-size: 18px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  line-height: 80%;
  font-size: 22px;
  opacity: 0.6;
  -webkit-transition: opacity 200ms ease, -webkit-transform 200ms ease;
  transition: opacity 200ms ease, -webkit-transform 200ms ease;
  transition: transform 200ms ease, opacity 200ms ease;
  transition: transform 200ms ease, opacity 200ms ease, -webkit-transform 200ms ease;
}

.faq details[open] summary::after {
  content: "–";
  opacity: 0.8;
}

/* animated content */
.faq .faq-content {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-transition: opacity 200ms ease, -webkit-transform 200ms ease;
  transition: opacity 200ms ease, -webkit-transform 200ms ease;
  transition: opacity 200ms ease, transform 200ms ease;
  transition: opacity 200ms ease, transform 200ms ease, -webkit-transform 200ms ease;
}

.faq details[open] .faq-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.faq .faq-content p {
  margin-top: 8px;
  max-width: 560px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .faq details,
  .faq .faq-content,
  .faq summary::after {
    -webkit-transition: none;
    transition: none;
  }
}
.count {
  position: relative;
  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;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: var(--color-neutral);
  border-radius: 8px;
}
.count-input {
  height: 40px;
  border: none;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: var(--color-neutral);
}
.count input[type=number]::-webkit-outer-spin-button,
.count input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.count-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-accent-2);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
}
.count-btn svg {
  stroke: var(--color-neutral-text);
}
.count-btn:hover {
  background: var(--color-accent-2-hover);
}
.count-btn:hover svg {
  stroke: var(--color-neutral-text-hover);
}

.radio-group {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.radio-option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-option-circle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-outline);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.radio-option-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.radio-option-input:checked + .radio-option-circle {
  border-color: var(--color-accent);
}

.radio-option-input:checked + .radio-option-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.switch-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 2px;
  background: var(--color-neutral);
  border-radius: 8px;
}
.switch-group--sm {
  border-radius: 6px;
}
.switch-group-btn {
  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;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-text);
}
.switch-group-btn .icon-fill {
  fill: var(--color-neutral-text);
}
.switch-group-btn .icon-stroke {
  stroke: var(--color-neutral-text);
}
.switch-group-btn--sm {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 6px;
}
.switch-group-btn--sq {
  padding: 0;
  height: 36px;
  width: 36px;
}
.switch-group-btn:not(.active):hover {
  color: var(--color-main);
}
.switch-group-btn:not(.active):hover .icon-fill {
  fill: var(--color-neutral-text-hover);
}
.switch-group-btn:not(.active):hover .icon-stroke {
  stroke: var(--color-neutral-text-hover);
}
.switch-group-btn.active {
  background: var(--color-accent-2);
  color: var(--color-main);
}
.switch-group-btn.active .icon-fill {
  fill: var(--color-main);
}
.switch-group-btn.active .icon-stroke {
  stroke: var(--color-main);
}

.select {
  position: relative;
  width: 100%;
  font-size: 14px;
}
.select.is-open .select-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.select.is-open .select-menu {
  display: block;
}

.select-control {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border-radius: 8px;
  background: var(--color-neutral);
  cursor: pointer;
  text-align: left;
  color: var(--color-main);
  -webkit-transition: border-color 0.15s ease;
  transition: border-color 0.15s ease;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.15s;
  transition: -webkit-transform 0.15s;
  transition: transform 0.15s;
  transition: transform 0.15s, -webkit-transform 0.15s;
  stroke: var(--color-neutral-text);
}

.select-value {
  color: var(--color-main);
}

.select-menu {
  list-style: none;
  margin: 4px 0 0;
  padding: 2px;
  border-radius: 8px;
  background: var(--color-neutral);
  display: none;
  position: absolute;
  width: 100%;
  top: calc(100% + 2px);
  z-index: 10;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-outline) transparent;
}
.select-menu::-webkit-scrollbar {
  width: 4px;
}
.select-menu::-webkit-scrollbar-track {
  background: transparent;
}
.select-menu::-webkit-scrollbar-thumb {
  background: var(--color-outline);
  border-radius: 3px;
}

.select-option {
  padding: 10px 14px;
  cursor: pointer;
  color: var(--color-main);
  border-radius: 8px;
}
.select-option:hover {
  background: var(--color-neutral-hover);
}

.textgen {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  padding-right: 2px;
  gap: 40px;
  margin: auto;
  border-radius: 12px;
  background: var(--color-card);
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02), 0 12px 32px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02), 0 12px 32px rgba(15, 23, 42, 0.04);
}
.textgen .col-text {
  width: 100%;
}
.textgen .item {
  margin-bottom: 30px;
}
.textgen .item:last-child {
  margin-bottom: 0;
}
.textgen-top {
  position: absolute;
  top: 10px;
  right: 10px;
}
.textgen-sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 240px;
}
.textgen-content {
  max-height: calc(100vh - 100px);
  min-height: 500px;
  padding-right: 40px;
  padding-bottom: 40px;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-outline) transparent;
}
.textgen-content::-webkit-scrollbar {
  width: 4px;
}
.textgen-content::-webkit-scrollbar-track {
  background: transparent;
}
.textgen-content::-webkit-scrollbar-thumb {
  background: var(--color-outline);
  border-radius: 3px;
}
.textgen-text {
  width: 100%;
  padding-top: 24px;
}
.textgen-text *:first-child {
  margin-top: 0;
}
.textgen-text *:last-child {
  margin-bottom: 0;
}
.textgen-text p {
  margin: 20px 0;
  line-height: 160%;
}

@media screen and (max-width: 1023px) {
  .textgen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .textgen-content {
    max-height: none;
  }
  .textgen-sidebar,
  .textgen-content {
    padding: 24px;
  }
  .textgen-content {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .textgen-text {
    padding-top: 0;
  }
}
.hero-text {
  text-align: center;
  padding-top: 160px;
}
.hero-text .subtitle {
  max-width: 650px;
  margin: auto;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .hero-text {
    padding-top: 120px;
  }
  .hero-text .subtitle br {
    display: none;
  }
}
.img-text .row-grid-2 {
  grid-column-gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-text .col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.img-text .col-text .title {
  margin-bottom: 30px;
}
.img-text .col-text .btn {
  margin-top: 40px;
}

.img-text.reverse .row-grid-2 .col-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.img-text.reverse .row-grid-2 .col-text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 1200px) {
  .img-text .row-grid-2 {
    grid-column-gap: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 1023px) {
  .img-text.reverse .row-grid-2 .col-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .img-text.reverse .row-grid-2 .col-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 1023px) {
  .img-text .row-grid-2 {
    grid-row-gap: 30px;
  }
  .img-text .col-text .title {
    margin-bottom: 20px;
  }
}
.title-text {
  background: #fff;
}
.title-text .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.title-text .col-title .title {
  max-width: 400px;
}
.title-text--border .container {
  border-bottom: 1px solid var(--color-outline);
}

@media screen and (max-width: 767px) {
  .title-text .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-head {
  text-align: center;
  background: #000000;
}
.page-head.blue {
  background: #D1E3E1;
}
.page-head.blue .page-head__title {
  color: #000000;
}
.page-head.blue .page-head__title span {
  -webkit-text-stroke-color: #000000;
  -webkit-text-fill-color: none;
  color: transparent !important;
}
.page-head.pink {
  background: #FFDBE6;
}
.page-head.pink .page-head__title {
  color: #000000;
}
.page-head.pink .page-head__title span {
  -webkit-text-stroke-color: #000000;
  -webkit-text-fill-color: none;
  color: transparent !important;
}
.page-head.green02 {
  background: #F6FFDB;
}
.page-head.green02 .page-head__title {
  color: #000000;
}
.page-head.green02 .page-head__title span {
  -webkit-text-stroke-color: #000000;
  -webkit-text-fill-color: none;
  color: transparent !important;
}
.page-head.yellow {
  background: #F7B97C;
}
.page-head.yellow .page-head__title {
  color: #000000;
}
.page-head.yellow .page-head__title span {
  -webkit-text-stroke-color: #000000;
  -webkit-text-fill-color: none;
  color: transparent !important;
}
.page-head .container {
  position: relative;
}
.page-head .row {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 540px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-head .shapes .shape {
  position: absolute;
}
.page-head .shapes .shape01 {
  top: 120px;
  left: 15%;
}
.page-head .shapes .shape02 {
  top: 60%;
  left: 20px;
}
.page-head .shapes .shape03 {
  bottom: -30px;
  right: 50%;
  z-index: 3;
}
.page-head .shapes .shape04 {
  top: 30%;
  right: 20px;
  z-index: 3;
}
.page-head .shapes .shape05 {
  top: 75%;
  right: 10%;
  z-index: 2;
}
.page-head__title {
  position: relative;
  z-index: 2;
  font-size: 120px;
  font-family: "Inter", sans-serif;
  color: #fff;
}
.page-head__title span {
  -webkit-text-stroke: 1.5px #fff;
  -webkit-text-fill-color: none;
  color: transparent !important;
  font-size: 120px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.page-head-light {
  background: none;
}
.page-head-light .page-head__title {
  font-size: 65px;
  color: #000000;
}
.page-head-light .project-card__cat {
  margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
  .page-head__title {
    font-size: 80px;
  }
}
@media screen and (max-width: 1023px) {
  .page-head__title {
    font-size: 60px;
    -webkit-text-stroke-width: 1px;
  }
  .page-head__title span {
    font-size: 60px;
  }
  .page-head .row {
    padding-top: 60px;
    min-height: 400px;
  }
  .page-head .shapes .shape03 {
    bottom: -10px;
  }
  .page-head .shapes .shape02 {
    top: 70%;
    left: 20px;
  }
  .page-head .shapes .shape05 {
    top: 70%;
  }
  .page-head-light .page-head__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .page-head__title {
    font-size: 45px;
  }
  .page-head__title span {
    font-size: 45px;
  }
  .page-head-light .page-head__title {
    font-size: 38px;
  }
}