@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 > body > .page {
  background-color: #ffffff;
}
@media all and (min-width: 1600px) {
  html > body > .page > main > section {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media all and (min-width: 992px) and (max-width: 1599px) {
  html > body > .page > main > section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section:not(.banner-section) {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section:not(.banner-section) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
html > body > .page > main > section h2 {
  color: #1c1c1c;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section h2 {
    font-size: 56px;
  }
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  html > body > .page > main > section h2 {
    font-size: 48px;
  }
}
@media all and (min-width: 992px) {
  html > body > .page > main > section h2 {
    line-height: 130%;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section h2 {
    font-size: 42px;
    line-height: 110%;
  }
}
html > body > .page > main > section h3 {
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section h3 {
    max-width: 600px;
  }
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section h3 {
    font-size: 64px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section h3 {
    font-size: 58px;
  }
}
@media all and (min-width: 576px) and (max-width: 1199px) {
  html > body > .page > main > section h3 {
    font-size: 48px;
  }
}
@media all and (max-width: 575px) {
  html > body > .page > main > section h3 {
    font-size: 38px;
  }
}
html > body > .page > main > section h3:has([data-animation-element*=step-appearance-]) {
  line-height: 98%;
}
html > body > .page > main > section h3:not(:has([data-animation-element*=step-appearance-])) {
  line-height: 100%;
}
html > body > .page > main > section h4 {
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 130%;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section h4 {
    font-size: 42px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section h4 {
    font-size: 38px;
  }
}
@media all and (min-width: 576px) and (max-width: 1199px) {
  html > body > .page > main > section h4 {
    font-size: 34px;
  }
}
@media all and (max-width: 575px) {
  html > body > .page > main > section h4 {
    font-size: 28px;
  }
}
html > body > .page > main > section h4:has([data-animation-element*=step-appearance-]) {
  line-height: 110%;
}
html > body > .page > main > section h4:not(:has([data-animation-element*=step-appearance-])) {
  line-height: 130%;
}
html > body > .page > main > section h6 {
  color: #1c1c1c;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section h6 {
    font-size: 32px;
  }
}
@media all and (min-width: 576px) and (max-width: 1399px) {
  html > body > .page > main > section h6 {
    font-size: 30px;
  }
}
@media all and (min-width: 576px) {
  html > body > .page > main > section h6 {
    line-height: 44px;
  }
}
@media all and (max-width: 575px) {
  html > body > .page > main > section h6 {
    font-size: 24px;
    line-height: 40px;
  }
}
html > body > .page > main > section .wp-block-separator {
  background-color: #09e2f6;
  margin-top: 24px;
  width: 58px;
  height: 4px;
  border-radius: 2px;
  border: none;
}
html > body > .page > main > section.banner-section {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-height: 1000px;
  margin-bottom: 40px;
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.banner-section {
    height: 100vh;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.banner-section {
    height: 50vh;
  }
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.banner-section {
    padding-top: 40px;
  }
}
@media all and (max-width: 1399px) {
  html > body > .page > main > section.banner-section {
    padding-top: 20px;
  }
}
html > body > .page > main > section.banner-section > .background-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
html > body > .page > main > section.banner-section > .background-img > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
html > body > .page > main > section.banner-section > .content {
  position: absolute;
  background-color: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(9px);
  border-radius: 12px;
}
@media all and (min-width: 1600px) {
  html > body > .page > main > section.banner-section > .content {
    bottom: 60px;
    margin-left: 60px;
  }
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.banner-section > .content {
    width: 46%;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.banner-section > .content {
    width: 65%;
  }
}
@media all and (min-width: 992px) and (max-width: 1599px) {
  html > body > .page > main > section.banner-section > .content {
    bottom: 40px;
    margin-left: 40px;
  }
}
@media all and (min-width: 768px) and (max-width: 991px) {
  html > body > .page > main > section.banner-section > .content {
    bottom: 40px;
    margin-left: 40px;
  }
}
@media all and (min-width: 768px) {
  html > body > .page > main > section.banner-section > .content {
    padding: 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.banner-section > .content {
    padding: 20px;
    right: 20px;
    bottom: 0;
    left: 20px;
  }
}
html > body > .page > main > section.banner-section > .content > h1 {
  color: #ffffff;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
html > body > .page > main > section.banner-section > .content > h1:not(:first-child) {
  margin-top: 8px;
}
html > body > .page > main > section.banner-section > .content > h1:has([data-animation-element*=step-appearance-]) {
  line-height: 85%;
}
html > body > .page > main > section.banner-section > .content > h1:not(:has([data-animation-element*=step-appearance-])) {
  line-height: 100%;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.banner-section > .content > h1 {
    font-size: 64px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section.banner-section > .content > h1 {
    font-size: 56px;
  }
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  html > body > .page > main > section.banner-section > .content > h1 {
    font-size: 42px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.banner-section > .content > h1 {
    font-size: 28px;
  }
}
html > body > .page > main > section.banner-section > .content > p {
  margin-top: 8px;
  max-width: 756px;
  color: #f9f9f9;
  letter-spacing: 0.01em;
  font: 400 16px/150% "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}
html > body > .page > main > section.banner-section > .content > p:has([data-animation-element*=step-appearance-]) {
  line-height: 130%;
}
html > body > .page > main > section.banner-section > .content > p:not(:has([data-animation-element*=step-appearance-])) {
  line-height: 150%;
}
html > body > .page > main > section.banner-section > .content > a {
  margin-top: 24px;
  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: #141414;
  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) {
  html > body > .page > main > section.banner-section > .content > a {
    width: 100%;
  }
}
html > body > .page > main > section.banner-section > .content > a > svg {
  transition: transform 0.3s;
}
html > body > .page > main > section.banner-section > .content > a > svg > path {
  fill: #141414;
  transition: fill 0.3s;
}
html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group {
  margin-top: 64px;
  gap: 32px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
  background-color: #ecf3f8;
  border: none;
  border-radius: 12px;
  flex-wrap: nowrap;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    padding: 40px;
  }
}
@media all and (max-width: 1399px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    padding: 24px;
  }
}
@media all and (min-width: 992px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    gap: 130px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    gap: 80px;
  }
}
html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group {
  gap: 8px;
}
html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
  color: #141414;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
    font-size: 18px;
  }
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
    font-size: 17px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.grid-cards-bg-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
    font-size: 16px;
  }
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container {
  background-color: #2b3664;
  border-radius: 12px;
  position: relative;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container {
    padding: 100px 80px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container {
    padding: 60px 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container {
    padding: 40px 20px;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content {
  padding: 0;
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content {
    max-width: 660px;
  }
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > h3 {
  color: #ffffff;
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > p {
  margin-top: 16px;
  color: #f9f9f9;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > p {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > p {
    font-size: 17px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > p {
    font-size: 16px;
  }
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a {
  margin-top: 32px;
  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) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a {
    width: 100%;
  }
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a > svg {
  transition: transform 0.3s;
}
html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a > svg > path {
  fill: #1c1c1c;
  transition: fill 0.3s;
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > figure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > figure {
    right: 80px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section.blue-bg-section > .wp-block-group__inner-container > .wp-block-media-text > figure {
    right: 20px;
    max-width: 46%;
  }
}
html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > p {
  margin-top: 24px;
  max-width: 780px;
  text-align: justify;
  color: rgba(20, 20, 20, 0.7);
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 150%;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > p {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > p {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > p {
    font-size: 16px;
  }
}
html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul {
    margin-top: 26px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1199px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul {
    margin-top: 18px;
  }
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul {
    gap: 12px;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul {
    margin-top: 10px;
    gap: 10px;
  }
}
html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul > li {
  background-color: rgba(20, 20, 20, 0.02);
  border: 1px solid rgba(20, 20, 20, 0.5);
  border-radius: 8px;
  padding: 4px 12px;
  color: rgba(20, 20, 20, 0.5);
  font-weight: 400;
  line-height: 150%;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul > li {
    font-size: 24px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul > li {
    font-size: 22px;
  }
}
@media all and (min-width: 1200px) and (max-width: 1199px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul > li {
    font-size: 19px;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > ul > li {
    font-size: 16px;
  }
}
html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group {
  gap: 18px;
}
@media all and (min-width: 992px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group {
    margin-top: 64px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group {
    margin-top: 40px;
  }
}
html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group > figure {
  border-radius: 12px;
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group > figure:first-child {
    display: none;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group > figure {
    height: 200px;
  }
}
html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group > figure > img {
  border-radius: 12px;
  object-fit: cover;
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.who-we-are-section > .wp-block-group__inner-container > .wp-block-group > figure > img {
    height: 100%;
  }
}
html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group {
  margin-top: 64px;
  gap: 32px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  flex-wrap: nowrap;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    padding: 40px;
  }
}
@media all and (max-width: 1399px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    padding: 24px;
  }
}
@media all and (min-width: 992px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    gap: 130px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group {
    gap: 80px;
  }
}
html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group {
  gap: 8px;
}
html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
  color: #1c1c1c;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
    font-size: 18px;
  }
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
    font-size: 17px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.grid-cards-border-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group > .wp-block-group > p {
    font-size: 16px;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group {
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px 24px;
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure {
  border-radius: 12px;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure {
    flex-basis: 44%;
  }
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure {
    flex-basis: 43%;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure {
    width: 100%;
  }
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure:first-child {
    order: 2;
  }
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure:last-child {
    order: 4;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > figure > img {
  width: 100%;
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) {
  background-color: #2b3664;
  border-radius: 12px;
  justify-content: center;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) {
    padding: 100px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) {
    padding: 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) {
    padding: 40px 20px;
  }
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) {
    flex-basis: 54%;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) > h4 {
  color: #ffffff;
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) > p {
  margin-top: 24px;
  text-align: justify;
  color: #f9f9f9;
  font-weight: 400;
  line-height: 150%;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) > p {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) > p {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) > p {
    font-size: 16px;
  }
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(2) > p {
    max-width: 644px;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) {
  flex-basis: 100%;
  order: 3;
  background-color: rgba(9, 226, 246, 0.15);
  border-radius: 12px;
  padding: 64px 100px;
  justify-content: space-between;
  gap: 40px;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) {
    padding: 64px 100px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) {
    padding: 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) {
    padding: 40px 20px;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) {
    flex-direction: column;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) > h4 {
  color: #2b3664;
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) > h4 {
    width: 50%;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) > a {
  cursor: pointer;
  padding: 12px 22px;
  background-color: #2b3664;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  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) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) > a {
    width: 100%;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) > a > svg {
  transition: transform 0.3s;
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(3) > a > svg > path {
  fill: #ffffff;
  transition: fill 0.3s;
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) {
  background-color: #ecf3f8;
  border-radius: 12px;
  justify-content: center;
  grid-column: 2;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) {
    padding: 100px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) {
    padding: 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) {
    padding: 40px 20px;
  }
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) {
    flex-basis: 54%;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) {
    width: 100%;
    order: 5;
  }
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) > h4 {
  color: #1c1c1c;
}
html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) > p {
  margin-top: 24px;
  text-align: justify;
  color: rgba(20, 20, 20, 0.7);
  font-weight: 400;
  line-height: 150%;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) > p {
    font-size: 20px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) > p {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) > p {
    font-size: 16px;
  }
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.culture-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group:nth-child(4) > p {
    max-width: 644px;
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text {
  gap: 20px;
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text {
    display: flex;
    flex-direction: column;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > figure {
    width: 100%;
    order: 5;
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content {
  padding-right: 0;
  align-self: auto;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content {
    padding-left: 80px;
  }
}
@media all and (max-width: 1399px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content {
    padding-left: 0;
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group {
  margin-top: 40px;
  gap: 20px;
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group {
  position: relative;
  gap: 4px;
}
@media all and (min-width: 768px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group {
    left: 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group {
    left: 30px;
    width: calc(100% - 30px);
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_2599_10357%29%22%3E%3Cpath%20d%3D%22M3.75%2014L9%2019.25L21%207.25%22%20stroke%3D%22%2310C8D9%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/g%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_2599_10357%22%3E%3Crect%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22white%22%20transform%3D%22translate%280%200.5%29%22/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  position: absolute;
  top: 7px;
}
@media all and (min-width: 768px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group:before {
    left: -40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group:before {
    left: -30px;
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group > p:first-child {
  color: #1c1c1c;
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 150%;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group > p:first-child {
    font-size: 26px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group > p:first-child {
    font-size: 23px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group > p:first-child {
    font-size: 20px;
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > .wp-block-group > .wp-block-group > p:nth-child(2) {
  color: rgba(20, 20, 20, 0.5);
  letter-spacing: 0.01em;
  font: 400 16px/24px "DM Sans", sans-serif;
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a {
  margin-top: 40px;
  cursor: pointer;
  padding: 12px 22px;
  background-color: #2b3664;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  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) {
  html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a {
    width: 100%;
  }
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a > svg {
  transition: transform 0.3s;
}
html > body > .page > main > section.list-and-photo-section > .wp-block-group__inner-container > .wp-block-media-text > .wp-block-media-text__content > a > svg > path {
  fill: #ffffff;
  transition: fill 0.3s;
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container {
  background-color: #ecf3f8;
  border-radius: 12px;
  position: relative;
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > figure {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > figure > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 1600px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group {
    padding: 144px 80px;
  }
}
@media all and (min-width: 1400px) and (max-width: 1599px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group {
    padding: 120px 60px;
  }
}
@media all and (min-width: 768px) and (max-width: 1399px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group {
    padding: 100px 40px;
  }
}
@media all and (max-width: 767px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group {
    padding: 80px 20px;
  }
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 1200px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container {
    max-width: 716px;
  }
}
@media all and (max-width: 1199px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container {
    max-width: 592px;
  }
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > h3 {
  max-width: 700px;
  color: #2b3664;
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > p {
  margin-top: 16px;
  color: #1c1c1c;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 28px;
  font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 1400px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > p {
    font-size: 18px;
  }
}
@media all and (min-width: 992px) and (max-width: 1399px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > p {
    font-size: 17px;
  }
}
@media all and (max-width: 991px) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > p {
    font-size: 16px;
  }
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > a {
  margin-top: 32px;
  cursor: pointer;
  padding: 12px 22px;
  background-color: #2b3664;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  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) {
  html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > a {
    width: 100%;
  }
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > a > svg {
  transition: transform 0.3s;
}
html > body > .page > main > section.download-for-employment-section > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container > a > svg > path {
  fill: #ffffff;
  transition: fill 0.3s;
}