@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

ul {
  list-style-type: none;
}

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

html {
  width: 100%;
  opacity: 0;
  transition: opacity 1s;
}
html:not(.appearance) {
  overflow: hidden;
}
html.appearance {
  opacity: 1;
}
html > body.inactive {
  overflow: hidden;
}
html > body > .page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html > body > .page > main {
  width: 100%;
  max-width: 1920px;
}
html [data-animation=basic-appearance] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
html [data-animation=basic-appearance][data-animation-done=basic-appearance] {
  opacity: 1;
  transform: translateY(0);
}
html [data-animation=step-appearance]:not([data-animation-loaded=step-appearance]) [data-animation-element*=step-appearance-] {
  opacity: 0;
}
html [data-animation=step-appearance] [data-animation-element*=step-appearance-] {
  overflow: hidden;
}
html [data-animation=step-appearance] [data-animation-element*=step-appearance-][data-animation-element=step-appearance--whitespace] {
  width: auto;
}
html [data-animation=step-appearance] [data-animation-element*=step-appearance-]:not([data-animation-element=step-appearance--whitespace]),
html [data-animation=step-appearance] [data-animation-element*=step-appearance-]:not([data-animation-element=step-appearance--whitespace]) > span {
  display: inline-block;
}
html [data-animation=step-appearance] [data-animation-element*=step-appearance-] > span {
  transform: translateY(100%) translateZ(0) scale(1) rotate(0.02deg);
  transform-origin: 0 50%;
  transition: transform 1s cubic-bezier(0, 0.55, 0.45, 1);
  transition-delay: calc(0.1s * var(--line-index));
}
html [data-animation=step-appearance][data-animation-done=step-appearance] [data-animation-element*=step-appearance] > span {
  transform: none;
}
@media all and (min-width: 1200px) {
  html [data-animation=gsap-scroll-animation] {
    position: relative;
  }
  html [data-animation=gsap-scroll-animation] [data-animation-animate] {
    position: absolute;
  }
  html [data-animation=gsap-scroll-animation] [data-animation-animate]:not(:first-child) {
    opacity: 0;
  }
}
html [data-animation=rail-appearance] > [data-animation-element=rail-appearance]:not([data-animation-start=rail-appearance]) {
  opacity: 0;
}
html [data-animation=rail-appearance] > [data-animation-element=rail-appearance][data-animation-start=rail-appearance] {
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0, 0.7, 1, 1), opacity 0.6s ease-out;
}
html [data-animation=rail-appearance] > [data-animation-element=rail-appearance][data-animation-done=rail-appearance] {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1920px;
  z-index: 10;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
@media all and (min-width: 1600px) {
  header {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media all and (min-width: 992px) and (max-width: 1599px) {
  header {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (max-width: 991px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 1200px) {
  header {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
@media all and (min-width: 576px) and (max-width: 1199px) {
  header {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
@media all and (max-width: 575px) {
  header {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
header:not(.menu-open) > .bg-open-menu {
  left: -100%;
}
header:not(.menu-open) > .content > .menu-button > svg.close {
  visibility: hidden;
  opacity: 0;
}
header:not(.menu-open) > .content > .menu-button > svg.open {
  visibility: visible;
  opacity: 1;
}
header:not(.menu-open) > .content > .nav-container > nav {
  left: -100%;
}
header.menu-open > .bg-open-menu {
  left: 0;
}
header.menu-open > .content > .menu-button > svg.open {
  visibility: hidden;
  opacity: 0;
}
header.menu-open > .content > .menu-button > svg.close {
  visibility: visible;
  opacity: 1;
}
header.menu-open > .content > .nav-container > nav {
  left: 0;
}
header > .bg-open-menu {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 0.3s;
  z-index: -1;
}
header > .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header > .content > .menu-button {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
@media all and (min-width: 1200px) {
  header > .content > .menu-button {
    display: none;
  }
}
header > .content > .menu-button > svg {
  position: absolute;
  transition: visibility 0.2s, opacity 0.2s;
}
header > .content > .menu-button > svg > g > path {
  fill: #1c1c1c;
}
header > .content > .logo > div.logo--hidden {
  display: none;
}
header > .content > .logo > div:not(.logo--hidden) {
  display: block;
}
header > .content > .logo > div > a > svg {
  display: block;
  height: auto;
}
@media all and (min-width: 576px) and (max-width: 991px) {
  header > .content > .logo > div > a > svg {
    width: 300px;
  }
}
@media all and (max-width: 575px) {
  header > .content > .logo > div > a > svg {
    width: 220px;
  }
}
header > .content > .nav-container {
  display: flex;
  align-items: center;
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container {
    padding-right: 40px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1c1c1c;
  }
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    background-color: #ffffff;
    padding: 40px;
    transition: left 0.3s;
  }
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav {
    overflow-y: scroll;
  }
}
header > .content > .nav-container > nav > ul {
  display: flex;
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul {
    flex-direction: column;
  }
}
@media all and (min-width: 576px) and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul {
    gap: 50px;
  }
}
@media all and (max-width: 575px) {
  header > .content > .nav-container > nav > ul {
    gap: 40px;
  }
}
header > .content > .nav-container > nav > ul > li > a {
  color: #1c1c1c;
  font-weight: 500;
  line-height: 20px;
  font-family: "DM Sans", sans-serif;
  transition: color 0.2s;
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > a {
    font-size: 14px;
    display: block;
  }
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > a {
    color: #1c1c1c;
  }
}
@media all and (min-width: 992px) and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > a {
    font-size: 30px;
  }
}
@media all and (min-width: 576px) and (max-width: 991px) {
  header > .content > .nav-container > nav > ul > li > a {
    font-size: 28px;
  }
}
@media all and (max-width: 575px) {
  header > .content > .nav-container > nav > ul > li > a {
    font-size: 26px;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown {
  overflow: hidden;
  max-height: 0;
}
@media all and (min-width: 1600px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown {
    width: 63vw;
  }
}
@media all and (max-width: 1599px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown {
    width: 83vw;
  }
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown {
    padding-top: 28px;
    position: absolute;
    top: 50px;
    right: 48px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown {
    max-height: 0;
    transition: max-height 0.3s;
  }
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown.active {
    visibility: visible;
    opacity: 1;
  }
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content {
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    height: 100%;
  }
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left {
    padding: 40px;
    background-color: #ffffff;
    width: 34%;
  }
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left {
    margin-top: 20px;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left > a {
  padding: 16px;
  display: flex;
  gap: 16px;
  border-radius: 8px;
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left > a + a {
    margin-top: 20px;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left > a.active {
  background-color: #f9f9f9;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left > a > img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left > a > .caption > .name {
  color: #1c1c1c;
  letter-spacing: 0.01em;
  font: 500 16px/20px "DM Sans", sans-serif;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .left > a > .caption > .description {
  margin-top: 5px;
  color: rgba(20, 20, 20, 0.7);
  letter-spacing: 0.01em;
  font: 400 12px/16px "DM Sans", sans-serif;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right {
  background-color: #f9f9f9;
  position: relative;
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right {
    width: 66%;
  }
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .bg-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  position: absolute;
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu {
    padding: 40px;
    display: flex;
    gap: 40px;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu.active {
  visibility: visible;
  opacity: 1;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu > .column {
  z-index: 1;
  position: relative;
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu > .column + .column {
    margin-top: 20px;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu > .column > .title {
  padding-bottom: 12px;
  border-bottom: solid 1px #dddddd;
  color: #1c1c1c;
  letter-spacing: 0.01em;
  font: 500 16px/20px "DM Sans", sans-serif;
}
@media all and (max-width: 1199px) {
  header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu > .column > .title {
    width: 100% !important;
  }
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu > .column > a {
  display: block;
  margin-top: 12px;
  color: #1c1c1c;
  letter-spacing: 0.01em;
  font: 500 14px/20px "DM Sans", sans-serif;
}
header > .content > .nav-container > nav > ul > li > .hover-dropdown > .content > .right > .submenu > .column > a:hover {
  text-decoration: underline;
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > nav > ul > li + li {
    margin-left: 24px;
  }
}
header > .content > .nav-container > .search {
  cursor: pointer;
}
@media all and (min-width: 1200px) {
  header > .content > .nav-container > .search {
    margin-left: 150px;
  }
}
header > .content > .nav-container > .search > svg > path {
  transition: fill 0.2s;
}

footer {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 8px;
}
@media all and (min-width: 1600px) {
  footer {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media all and (min-width: 992px) and (max-width: 1599px) {
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (max-width: 991px) {
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
footer.no-padding {
  padding: 0;
  border-radius: 0;
}
footer .title-2 {
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.01em;
  font: 400 14px/20px "DM Sans", sans-serif;
}
footer > .contact-area {
  width: 100%;
  background-color: #2b3664;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@media all and (min-width: 1200px) {
  footer > .contact-area {
    padding-top: 80px;
  }
}
footer > .contact-area > .background-image {
  position: absolute;
  top: 128px;
  right: 0;
  bottom: 0;
  width: 100%;
}
footer > .contact-area > .background-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
footer > .contact-area > .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 1600px) {
  footer > .contact-area > .container {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media all and (min-width: 768px) and (max-width: 1599px) {
  footer > .contact-area > .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (min-width: 768px) {
  footer > .contact-area > .container {
    padding-top: 100px;
    padding-bottom: 148px;
  }
}
@media all and (max-width: 767px) {
  footer > .contact-area > .container {
    padding: 50px 16px;
  }
}
footer > .contact-area > .container > .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1648px;
}
@media all and (min-width: 1200px) {
  footer > .contact-area > .container > .content {
    width: 100%;
  }
}
@media all and (max-width: 1199px) {
  footer > .contact-area > .container > .content {
    flex-direction: column;
    gap: 40px;
  }
}
@media all and (min-width: 1200px) {
  footer > .contact-area > .container > .content > .text {
    max-width: 428px;
  }
}
@media all and (max-width: 1199px) {
  footer > .contact-area > .container > .content > .text {
    width: 100%;
    max-width: 592px;
  }
}
@media all and (min-width: 1200px) {
  footer > .contact-area > .container > .content > .text > .title-container {
    max-width: 422px;
  }
}
footer > .contact-area > .container > .content > .text > .title-container > h3 {
  color: #ffffff;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 64px;
  font-family: "DM Sans", sans-serif;
}
@media all and (max-width: 1199px) {
  footer > .contact-area > .container > .content > .text > .title-container > h3 {
    text-align: center;
  }
}
@media all and (min-width: 992px) {
  footer > .contact-area > .container > .content > .text > .title-container > h3 {
    font-size: 64px;
  }
}
@media all and (min-width: 576px) and (max-width: 991px) {
  footer > .contact-area > .container > .content > .text > .title-container > h3 {
    font-size: 60px;
  }
}
@media all and (max-width: 575px) {
  footer > .contact-area > .container > .content > .text > .title-container > h3 {
    font-size: 40px;
  }
}
footer > .contact-area > .container > .content > .text > .description-container {
  margin-top: 28px;
}
footer > .contact-area > .container > .content > .text > .description-container p {
  color: #ffffff;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
}
@media all and (max-width: 1199px) {
  footer > .contact-area > .container > .content > .text > .description-container p {
    text-align: center;
  }
}
@media all and (min-width: 992px) {
  footer > .contact-area > .container > .content > .text > .description-container p {
    font-size: 18px;
  }
}
@media all and (min-width: 576px) and (max-width: 991px) {
  footer > .contact-area > .container > .content > .text > .description-container p {
    font-size: 17px;
  }
}
@media all and (max-width: 575px) {
  footer > .contact-area > .container > .content > .text > .description-container p {
    font-size: 16px;
  }
}
footer > .contact-area > .container > .content > form {
  width: 100%;
  max-width: 592px;
  background-color: rgba(231, 238, 247, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 12px;
}
@media all and (min-width: 1600px) {
  footer > .contact-area > .container > .content > form {
    padding: 64px;
  }
}
@media all and (max-width: 1599px) {
  footer > .contact-area > .container > .content > form {
    padding: 40px;
  }
}
footer > .contact-area > .container > .content > form > .input-line {
  width: 100%;
  min-height: 56px;
  padding-bottom: 14px;
  border-bottom: 1px solid;
  align-items: flex-end;
  transition: border-bottom-color 0.3s;
}
@media all and (min-width: 576px) {
  footer > .contact-area > .container > .content > form > .input-line {
    display: flex;
  }
}
footer > .contact-area > .container > .content > form > .input-line:hover {
  border-bottom-color: #ffffff;
}
footer > .contact-area > .container > .content > form > .input-line:hover > label {
  opacity: 1;
}
footer > .contact-area > .container > .content > form > .input-line:hover > input,
footer > .contact-area > .container > .content > form > .input-line:hover textarea {
  opacity: 1;
}
footer > .contact-area > .container > .content > form > .input-line:hover > input::placeholder,
footer > .contact-area > .container > .content > form > .input-line:hover textarea::placeholder {
  opacity: 1;
}
footer > .contact-area > .container > .content > form > .input-line:not(.invalid) {
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
footer > .contact-area > .container > .content > form > .input-line:not(.invalid) > label {
  color: #ffffff;
}
footer > .contact-area > .container > .content > form > .input-line.invalid {
  border-bottom-color: #e13131;
}
footer > .contact-area > .container > .content > form > .input-line.invalid > label {
  color: #e13131;
}
footer > .contact-area > .container > .content > form > .input-line + .input-line {
  margin-top: 16px;
}
footer > .contact-area > .container > .content > form > .input-line > label {
  width: 120px;
  opacity: 0.8;
  letter-spacing: -0.36px;
  font-weight: 400;
  line-height: 26px;
  font-family: "DM Sans", sans-serif;
  transition: opacity 0.3s;
}
@media all and (min-width: 576px) {
  footer > .contact-area > .container > .content > form > .input-line > label {
    flex-shrink: 0;
    font-size: 16px;
  }
}
@media all and (max-width: 575px) {
  footer > .contact-area > .container > .content > form > .input-line > label {
    font-size: 14px;
  }
}
footer > .contact-area > .container > .content > form > .input-line > input,
footer > .contact-area > .container > .content > form > .input-line textarea {
  max-height: 500px;
  width: 100%;
  color: #ffffff;
  letter-spacing: -0.36px;
  background-color: transparent;
  border: none;
  outline: none;
  resize: none;
  overflow: hidden;
  caret-color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 26px;
}
@media all and (min-width: 576px) {
  footer > .contact-area > .container > .content > form > .input-line > input,
  footer > .contact-area > .container > .content > form > .input-line textarea {
    margin-left: 20px;
    font-size: 16px;
  }
}
@media all and (max-width: 575px) {
  footer > .contact-area > .container > .content > form > .input-line > input,
  footer > .contact-area > .container > .content > form > .input-line textarea {
    margin-top: 6px;
    font-size: 14px;
  }
}
footer > .contact-area > .container > .content > form > .input-line > input::placeholder,
footer > .contact-area > .container > .content > form > .input-line textarea::placeholder {
  color: #ffffff;
  opacity: 0.5;
  letter-spacing: -0.36px;
  transition: opacity 0.3s;
}
@media all and (max-width: 575px) {
  footer > .contact-area > .container > .content > form > .input-line > textarea {
    min-height: 36px;
  }
}
footer > .contact-area > .container > .content > form > button {
  margin-top: 44px;
  cursor: pointer;
  padding: 12px 22px;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #1c1c1c;
  letter-spacing: -0.03em;
  font: 500 18px/27px "DM Sans", sans-serif;
  transition: background-color 0.3s, color 0.3s;
}
@media all and (max-width: 1199px) {
  footer > .contact-area > .container > .content > form > button {
    width: 100%;
  }
}
footer > .contact-area > .container > .content > form > button > svg {
  transition: transform 0.3s;
}
footer > .contact-area > .container > .content > form > button > svg > path {
  fill: #1c1c1c;
  transition: fill 0.3s;
}
footer > .contact-area > .container > .content > form > button:hover {
  background-color: #2b3664;
  color: #ffffff;
}
footer > .contact-area > .container > .content > form > button:hover > svg {
  transform: translate(4px);
}
footer > .contact-area > .container > .content > form > button:hover > svg > path {
  fill: #ffffff;
}
footer > .footer-area {
  width: 100%;
}
footer > .footer-area > .container > .footer-main {
  background-color: #2b3664;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  display: flex;
  justify-content: center;
}
footer > .footer-area > .container > .footer-main > .content {
  width: 100%;
  max-width: 1648px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1199px) {
  footer > .footer-area > .container > .footer-main > .content {
    flex-direction: column;
  }
}
@media all and (min-width: 768px) {
  footer > .footer-area > .container > .footer-main > .content {
    padding-top: 70px;
  }
}
@media all and (max-width: 767px) {
  footer > .footer-area > .container > .footer-main > .content {
    padding-top: 40px;
  }
}
@media all and (min-width: 576px) {
  footer > .footer-area > .container > .footer-main > .content {
    gap: 40px;
  }
}
@media all and (max-width: 575px) {
  footer > .footer-area > .container > .footer-main > .content {
    gap: 48px;
  }
}
footer > .footer-area > .container > .footer-main > .content > .left-area {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (max-width: 1199px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area {
    order: 2;
    align-items: center;
    gap: 20px;
  }
}
@media all and (max-width: 575px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area {
    width: 100%;
  }
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info {
  display: flex;
}
@media all and (min-width: 1200px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info {
    gap: 80px;
  }
}
@media all and (max-width: 1199px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info {
    gap: 20px;
  }
}
@media all and (max-width: 575px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info {
    flex-direction: column;
    width: 100%;
  }
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column {
  max-width: 193px;
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column > ul {
  margin-top: 16px;
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column > ul > li + li {
  margin-top: 8px;
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column > ul > li > a {
  color: #ffffff;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 992px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column > ul > li > a {
    font-size: 18px;
  }
}
@media all and (max-width: 991px) {
  footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column > ul > li > a {
    font-size: 16px;
  }
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .contact-info > .column > ul > li.address > a {
  line-height: 33px;
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .partners {
  display: flex;
  gap: 22px;
}
footer > .footer-area > .container > .footer-main > .content > .left-area > .partners > img {
  height: min-content;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns {
  display: flex;
}
@media all and (min-width: 576px) {
  footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns {
    gap: 58px;
  }
}
@media all and (max-width: 575px) {
  footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns {
    flex-direction: column;
    width: 100%;
    gap: 48px;
  }
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .title-1 {
  color: #ffffff;
  letter-spacing: 0.01em;
  font: 500 16px/20px "DM Sans", sans-serif;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns {
  margin-top: 16px;
  display: flex;
  gap: 48px;
}
@media all and (max-width: 575px) {
  footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns {
    flex-direction: column;
  }
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns > .column > .links-group {
  margin-top: 16px;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns > .column > .links-group + .links-group {
  margin-top: 24px;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns > .column > .links-group > .title-3 {
  color: #dddddd;
  letter-spacing: 0.01em;
  font: 400 14px/20px "DM Sans", sans-serif;
  opacity: 0.74;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns > .column > .links-group > ul {
  margin-top: 16px;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns > .column > .links-group > ul > li + li {
  margin-top: 8px;
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .products > .columns > .column > .links-group > ul > li > a {
  color: #ffffff;
  letter-spacing: 0.01em;
  font: 400 14px/20px "DM Sans", sans-serif;
}
@media all and (min-width: 576px) {
  footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .main-links > li + li {
    margin-top: 32px;
  }
}
@media all and (max-width: 575px) {
  footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .main-links > li + li {
    margin-top: 16px;
  }
}
footer > .footer-area > .container > .footer-main > .content > .footer-nav-columns > .main-links > li > a {
  color: #ffffff;
  letter-spacing: 0.01em;
  font: 500 16px/20px "DM Sans", sans-serif;
}
footer > .footer-area > .container > .footer-bottom {
  margin-top: 10px;
  border-radius: 16px;
  background-color: #141414;
  padding: 20px;
  display: flex;
  justify-content: center;
}
footer > .footer-area > .container > .footer-bottom > .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  footer > .footer-area > .container > .footer-bottom > .content {
    flex-direction: column;
    gap: 10px;
  }
}
footer > .footer-area > .container > .footer-bottom > .content > .copyright {
  color: #ffffff;
  letter-spacing: -0.03em;
  font: 400 14px/20px "DM Sans", sans-serif;
}
footer > .footer-area > .container > .footer-bottom > .content > .policy {
  display: flex;
  align-items: center;
}
footer > .footer-area > .container > .footer-bottom > .content > .policy > li > a {
  color: #ffffff;
  letter-spacing: -0.03em;
  font: 400 14px/20px "DM Sans", sans-serif;
}
footer > .footer-area > .container > .footer-bottom > .content > .policy > li + li {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
footer > .footer-area > .container > .footer-bottom > .content > .policy > li + li:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  margin-right: 8px;
  border-radius: 100%;
  background-color: #ffffff;
}

html {
  font-family: "DM Sans", sans-serif;
}
html body .button {
  padding: 12px 22px;
  border-radius: 4px;
  font: 500 18px/27px "DM Sans", sans-serif;
  letter-spacing: -0.03em;
}
html body .button.button--filled {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #1c1c1c;
  transition: background-color 0.3s, color 0.3s;
}
html body .button.button--filled:hover {
  background-color: transparent;
  color: #ffffff;
}
html body .button.button--with-arrow {
  display: flex;
  align-items: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  transition: background-color 0.3s, color 0.3s;
}
html body .button.button--with-arrow > svg {
  margin-left: 26px;
  transition: transform 0.3s;
}
html body .button.button--with-arrow > svg > path {
  fill: #ffffff;
  transition: fill 0.3s;
}
html body .button.button--with-arrow:hover {
  background-color: #ffffff;
  color: #1c1c1c;
}
html body .button.button--with-arrow:hover > svg {
  transform: translate(4px);
}
html body .button.button--with-arrow:hover > svg > path {
  fill: #1c1c1c;
}
html body .button.button--filled-with-arrow {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #1c1c1c;
  transition: background-color 0.3s, color 0.3s;
}
html body .button.button--filled-with-arrow > svg {
  margin-left: 24px;
  transition: transform 0.3s;
}
html body .button.button--filled-with-arrow > svg > path {
  fill: #1c1c1c;
  transition: fill 0.3s;
}
html body .button.button--filled-with-arrow:hover {
  background-color: transparent;
  color: #ffffff;
}
html body .button.button--filled-with-arrow:hover > svg {
  transform: translate(4px);
}
html body .button.button--filled-with-arrow:hover > svg > path {
  fill: #ffffff;
}
html body > .page > .scroll-indicator {
  position: fixed;
  top: 40%;
  right: 36px;
  flex-direction: column;
  align-items: center;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
}
@media all and (max-width: 1199px) {
  html body > .page > .scroll-indicator {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  html body > .page > .scroll-indicator {
    display: flex;
  }
}
html body > .page > .scroll-indicator.active {
  visibility: visible;
  opacity: 1;
}
html body > .page > .scroll-indicator > .indicator-item-container {
  width: 12px;
  height: 22px;
  display: flex;
  align-items: center;
}
html body > .page > .scroll-indicator > .indicator-item-container + .indicator-item-container {
  margin-top: 34px;
}
html body > .page > .scroll-indicator > .indicator-item-container > .indicator-item {
  display: block;
  width: 100%;
  height: 12px;
  border: 1px solid #ffffff;
  border-radius: 29px;
  opacity: 0.57;
  transition: height 0.2s;
}
html body > .page > .scroll-indicator > .indicator-item-container > .indicator-item.active {
  height: 22px;
  border: 3px solid #ffffff;
  opacity: 1;
}
html body > .page > main > section:not(.contact-section) {
  width: 100%;
  position: relative;
}
html body > .page > main > section:not(.contact-section) > .background-img > img {
  object-fit: cover;
}
html body > .page > main > section:not(.contact-section) > .container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
}
html body > .page > main > section:not(.contact-section) > .container > .content {
  display: flex;
}
html body > .page > main > section:not(.contact-section) > .container > .content > .title-container > h3 {
  color: #ffffff;
  letter-spacing: 0.02em;
  font: 500 64px/64px "DM Sans", sans-serif;
}
html body > .page > main > section:not(.intro-section) > .container > .content > .description-container p {
  margin-top: 20px;
  color: #ffffff;
  font-size: 16px;
}
html body > .page > main > section:not(.intro-section) > .container > .content > a.button {
  margin-top: 44px;
}
html body > .page > main > section:not(.intro-section, .bullet-section) > .container > .content > .description-container p {
  font-weight: 400;
  line-height: 24px;
}
html body > .page > main > section:not(.intro-section, .contact-section) > .container > .content {
  flex-direction: column;
  align-items: flex-start;
}
html body > .page > main > section:not(.contact-section) {
  height: 100vh;
}
html body > .page > main > section:not(.contact-section) > .background-img {
  width: 100%;
  height: 100%;
  position: absolute;
}
html body > .page > main > section:not(.contact-section) > .background-img > img {
  width: 100%;
  height: 100%;
  position: absolute;
}
html body > .page > main > section:not(.bullet-section) > .container > .content > .description-container > p {
  letter-spacing: 0.01em;
}
html body > .page > main > section.intro-section > .background-img > img {
  transform: scalex(-1);
}
html body > .page > main > section.intro-section > .background-img:before, html body > .page > main > section.intro-section > .background-img:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  background-color: #312b28;
  opacity: 0.57;
  z-index: 1;
}
html body > .page > main > section.intro-section > .background-img:before {
  width: 68%;
}
html body > .page > main > section.intro-section > .background-img:after {
  width: 17%;
  top: 0;
  right: 0;
}
html body > .page > main > section.intro-section > .container {
  padding: 110px 40px;
}
html body > .page > main > section.intro-section > .container > .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
html body > .page > main > section.intro-section > .container > .content > .title-container {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #ffffff;
}
html body > .page > main > section.intro-section > .container > .content > .title-container > h2 {
  max-width: 822px;
  color: #ffffff;
  letter-spacing: 0.02em;
  font: 400 104px/94px "DM Sans", sans-serif;
}
html body > .page > main > section.intro-section > .container > .content > .description-container p {
  margin-top: 50px;
  max-width: 808px;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.intro-section > .container > .content > .description-container p {
    font-size: 18px;
    line-height: 27px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.intro-section > .container > .content > .description-container p {
    font-size: 16px;
    line-height: 24px;
  }
}
html body > .page > main > section.intro-section > .container > .content > .button--filled {
  margin-top: 32px;
}
html body > .page > main > section.bullet-section > .background-img > img {
  object-position: left;
}
html body > .page > main > section.bullet-section > .container {
  justify-content: flex-end;
  align-items: flex-end;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.bullet-section > .container {
    padding: 80px 40px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.bullet-section > .container {
    padding: 54px 70px;
  }
}
html body > .page > main > section.bullet-section > .container > .content {
  max-width: 526px;
}
html body > .page > main > section.bullet-section > .container > .content > .description-container p {
  max-width: 458px;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.bullet-section > .container > .content > .description-container p {
    font-weight: 700;
    line-height: 19px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.bullet-section > .container > .content > .description-container p {
    font-weight: 400;
    line-height: 24px;
  }
}
html body > .page > main > section.forced-entry-section > .background-img::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 83%;
  clip-path: polygon(0 0, 83% 0, 100% 100%, 0% 100%);
  background-color: #152940;
  opacity: 0.42;
  z-index: 1;
}
html body > .page > main > section.forced-entry-section > .container {
  justify-content: flex-start;
  align-items: center;
  padding-right: 40px;
  padding-left: 40px;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.forced-entry-section > .container {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.forced-entry-section > .container {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}
html body > .page > main > section.forced-entry-section > .container > .content {
  max-width: 550px;
}
html body > .page > main > section.forced-entry-section > .container > .content > .description-container p {
  max-width: 420px;
  font-weight: 400;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.forced-entry-section > .container > .content > .button--with-arrow {
    font-weight: 700;
  }
}
html body > .page > main > section.forced-entry-section > .container > .content > .button--with-arrow > svg {
  margin-left: 24px;
}
html body > .page > main > section.school-section > .container {
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 40px;
  padding-left: 40px;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.school-section > .container {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.school-section > .container {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}
html body > .page > main > section.school-section > .container > .content {
  max-width: 550px;
}
html body > .page > main > section.school-section > .container > .content > .description-container p {
  max-width: 420px;
  font-weight: 400;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.school-section > .container > .content > .button--with-arrow {
    font-weight: 700;
  }
}
html body > .page > main > section.school-section > .container > .content > .button--with-arrow > svg {
  margin-left: 24px;
}
html body > .page > main > section.bird-section {
  background-color: #09387d;
}
html body > .page > main > section.bird-section > .background-img > img {
  transform: scalex(-1);
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.bird-section > .background-img > img {
    object-position: right;
  }
}
html body > .page > main > section.bird-section > .container {
  justify-content: flex-start;
  padding-left: 40px;
  padding-right: 40px;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.bird-section > .container {
    padding-top: 190px;
    padding-bottom: 190px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.bird-section > .container {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
html body > .page > main > section.bird-section > .container > .content {
  max-width: 560px;
}
html body > .page > main > section.bird-section > .container > .content > .description-container p {
  max-width: 474px;
  font-weight: 400;
}
html body > .page > main > section.correctional-section > .background-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 48%;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  background-color: #152940;
  opacity: 0.6;
  z-index: 1;
}
html body > .page > main > section.correctional-section > .container {
  justify-content: flex-end;
  align-items: flex-end;
  padding-left: 40px;
  padding-right: 40px;
}
@media all and (min-width: 1600px) {
  html body > .page > main > section.correctional-section > .container {
    padding-top: 190px;
    padding-bottom: 190px;
  }
}
@media all and (max-width: 1599px) {
  html body > .page > main > section.correctional-section > .container {
    padding-top: 230px;
    padding-bottom: 230px;
  }
}
html body > .page > main > section.correctional-section > .container > .content {
  max-width: 560px;
}
html body > .page > main > section.correctional-section > .container > .content > .description-container p {
  max-width: 474px;
  font-weight: 400;
}
html body > .page > main > section.want-section > .background-img:after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #312b28;
  opacity: 0.57;
  z-index: 1;
}
html body > .page > main > section.want-section > .container {
  justify-content: flex-start;
  align-items: flex-end;
  padding: 46px 40px;
}
html body > .page > main > section.want-section > .container > .content {
  max-width: 550px;
}
html body > .page > main > section.want-section > .container > .content > .description-container p {
  max-width: 420px;
  font-weight: 400;
}
html body > .page > main > section.want-section > .container > .content > a.button--with-arrow {
  font-weight: 500;
}
