/* makes sizing simpler */
/* remove default spacing */
/* force styling of type through styling, rather than elements */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* dark mode user-agent-styles */
/* min body height */
body {
  min-height: 100dvh;
}

/* responsive images/videos */
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* hide broken images */
img:not([src]):not([srcset]) {
  visibility: hidden;
}

p, h1, h2, h3, h4 {
  overflow-wrap: break-word;
  font-weight: 300;
}
p strong, p b, h1 strong, h1 b, h2 strong, h2 b, h3 strong, h3 b, h4 strong, h4 b {
  font-weight: 600;
}

a {
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  max-width: 100%;
  list-style: none;
}
ul li, ol li {
  margin: 0;
  padding: 0;
}

select {
  width: 100%;
  height: 50px;
  padding: 10px 30px;
  border: none;
  appearance: none;
}

button {
  outline: none;
  border: none;
}

:root {
  --header-height: 75px;
}
@font-face {
  font-family: "openSans-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/open-sans/OpenSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/open-sans/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/open-sans/OpenSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/open-sans/OpenSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Thin";
  font-style: normal;
  font-weight: 100;
  src: url("/assets/font/IvyMode/IvyMode-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/IvyMode/IvyMode-Light.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/IvyMode/IvyMode-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/IvyMode/IvyMode-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/IvyMode/IvyMode-Bold.woff2") format("woff2");
}
html {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  width: 100vw;
  max-width: 100%;
  min-height: 100dvh;
  font-family: "openSans-Regular";
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  background-color: #F3F3F3;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body.-fixed {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
}
body.-home .main {
  padding: 0;
}

main {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 50dvh;
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
}
.container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 30px;
  max-width: 1240px;
  width: 100%;
  height: 100%;
}
.container.-lg {
  max-width: 1135px;
}
.container.-md {
  max-width: 1040px;
}
.container.-sm {
  max-width: 1028px;
}
.container .relative {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: #285F5E;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
}
p img {
  display: initial;
}

strong {
  font-family: "openSans-Bold";
  font-weight: 700;
}

h1 {
  color: #fff;
  --font-size: 54px;
  --font-size-rem: 3.375rem;
  --line-height: 70px;
  --line-height-rem: 4.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}

h2 {
  color: #285F5E;
  --font-size: 46px;
  --font-size-rem: 2.875rem;
  --line-height: 58px;
  --line-height-rem: 3.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}

h3 {
  color: #285F5E;
  --font-size: 44px;
  --font-size-rem: 2.75rem;
  --line-height: 56px;
  --line-height-rem: 3.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}

h4 {
  color: #285F5E;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 40px;
  --line-height-rem: 2.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}
h4.-white {
  color: #fff;
}

h5 {
  color: #285F5E;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}

h6 {
  color: #285F5E;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}

ul,
ol {
  padding: 0 0 0 8px;
}

ul li::marker {
  font-size: 22px;
}

figure img {
  width: 100%;
  height: 100%;
}

picture {
  width: 100%;
  height: 100%;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

::selection {
  background: #164948;
  color: #fff;
}

:focus {
  outline: none;
}

[hidden],
.-hidden {
  display: none !important;
}

.-mobile {
  display: inherit;
}

.-desktop {
  display: none !important;
}

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

.ql-align-justify {
  text-align: justify;
}

.ql-align-right,
.-text-right {
  text-align: right;
}

.button-type {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 60px;
  background-color: #285F5E;
  color: #fff;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 20px;
  --line-height-rem: 1.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
}
.button-type:hover {
  background-color: #164948;
}
.button-type.-white {
  background-color: #fff;
  color: #285F5E;
}
.button-type.-white:hover {
  color: #fff;
  background-color: #285F5E;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
}

table {
  position: relative;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
  text-align: center;
}
table tbody tr:last-child td {
  border-bottom: 0;
}
table th {
  padding: 30px 0;
  color: #285F5E;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
table th:first-child {
  width: 212px;
}
table th:last-child {
  border-right: 0;
}
table td {
  padding: 18px 0;
  color: #285F5E;
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 20px;
  --line-height-rem: 1.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
table td:last-child {
  border-right: 0;
}

ul:not(.breadcrumb__content) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  list-style-position: outside;
}
ul:not(.breadcrumb__content) li {
  position: relative;
  color: #285F5E;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
  font-style: normal;
  text-align: left;
  text-indent: 8px;
}
ul:not(.breadcrumb__content) li:first-child {
  margin: 0;
}
ul:not(.breadcrumb__content) li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #285F5E;
}
ul:not(.breadcrumb__content) li a {
  color: #285F5E;
  transition: color 0.3s;
}
ul:not(.breadcrumb__content) li a:hover {
  color: #285F5E;
}

.header {
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid #d9d9d9;
  background-color: #F3F3F3;
}
.header__logo {
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header__logo__icon {
  width: 143px;
  height: auto;
  transition: opacity 0.3s;
}
.header__logo__icon.-mobile {
  opacity: 0;
  position: absolute;
}
.header__icon {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 83px;
  height: var(--header-height);
  cursor: pointer;
}
.header__icon-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 23px;
  height: 29px;
}
.header__icon .line {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 23px;
  height: 0;
  border-bottom: 3px solid #285F5E;
  transition: width 0.3s, border-color 0.3s;
}
.header__icon .line.-top {
  top: 0;
}
.header__icon .line.-center {
  top: 13px;
}
.header__icon .line.-bottom {
  top: 26px;
}
.header__icon.-on .line {
  border-color: #fff;
}
.header__icon.-on .line.-center {
  width: 12px;
}
.header__open-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.header__nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border-top: 1px solid rgba(217, 217, 217, 0.3);
  border-bottom: 1px solid rgba(217, 217, 217, 0.3);
}
.header__nav__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.header__nav__item span {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "openSans-SemiBold";
  --font-size: 36px;
  --font-size-rem: 2.25rem;
  --line-height: 82px;
  --line-height-rem: 5.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 600;
  font-style: normal;
  transition: color 0.3s;
}
.header__nav__item span:after {
  content: "";
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 0;
  border-bottom: 3px solid #285F5E;
  transition: opacity 0.3s;
}
.header__nav__item:hover span::after, .header__nav__item.-active span::after {
  opacity: 1;
}
.header__language {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 96px;
}
.header__language a {
  padding: 15px;
  color: #fff;
  font-family: "IvyMode-Regular";
  --font-size: 22px;
  --font-size-rem: 1.375rem;
  --line-height: 30px;
  --line-height-rem: 1.875rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
.header.-on .header__logo__icon {
  opacity: 0;
}
.header.-on .header__logo__icon.-mobile {
  opacity: 1;
}
.header.-on .header__open-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.header:not(.-sticky).-home {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  background-color: transparent;
}
.header:not(.-sticky).-home .header__logo__icon {
  opacity: 0;
}
.header:not(.-sticky).-home .header__logo__icon.-mobile {
  display: flex;
  opacity: 1;
}
.header:not(.-sticky).-home .header__nav__item span {
  color: #fff;
}
.header:not(.-sticky).-home .header__nav__item span:after {
  border-bottom: 3px solid #fff;
}
.header:not(.-sticky).-home .header__language a {
  color: #fff;
}

.breadcrumb {
  display: none;
  background-color: #F3F3F3;
  border-bottom: 1px solid #d9d9d9;
}
.breadcrumb__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  height: 45px;
}
.breadcrumb__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: "openSans-Regular";
  --font-size: 12px;
  --font-size-rem: 0.75rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 400;
  font-style: normal;
}
.breadcrumb__item:after {
  content: "";
  opacity: 0.5;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 2px 6px 0 6px;
  width: 3px;
  height: 0;
  border-bottom: 1px solid #285F5E;
}
.breadcrumb__item:last-child:after {
  display: none;
}
.breadcrumb__text {
  color: #285F5E;
}
.breadcrumb__link {
  opacity: 0.5;
  color: #285F5E;
  transition: opacity 0.3s;
}
.breadcrumb__link:hover {
  opacity: 1;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.form__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
.form__item__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
.form__item.-button {
  margin-top: 24px;
  align-items: center;
}
.form__input {
  padding: 10px 40px;
  width: 100%;
  height: 78px;
  color: #285F5E;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
  background-color: transparent;
  border: 1px solid rgba(40, 95, 94, 0.5);
  text-align: left;
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
}
.form__input::placeholder {
  color: #285F5E;
}
.form__input:focus, .form__input:active {
  border: 1px solid rgb(40, 95, 94);
  background-color: #fff;
}
.form__textarea {
  padding: 30px 40px 30px 40px;
  width: 100%;
  height: 242px;
  background-color: transparent;
  border: 1px solid rgba(40, 95, 94, 0.5);
  outline: 0;
  color: #285F5E;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
  text-align: left;
  resize: none;
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s;
}
.form__textarea::placeholder {
  color: #285F5E;
}
.form__textarea:focus, .form__textarea:active {
  border: 1px solid rgb(40, 95, 94);
  background-color: #fff;
}
.form__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 192px;
  height: 60px;
  color: #fff;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22px;
  --line-height-rem: 1.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
  background-color: #285F5E;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form__button:hover {
  background-color: #164948;
}
.page-tab__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.page-tab__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  color: #285F5E;
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 22px;
  --line-height-rem: 1.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
  letter-spacing: 0.07rem;
  cursor: pointer;
  white-space: nowrap;
}
.page-tab__item:last-of-type {
  margin: 0;
}
.page-tab__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 64px;
}
.page-tab__icon-content {
  position: relative;
  width: 20px;
  height: 17px;
}
.page-tab__icon .line {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 20px;
  height: 0;
  border-bottom: 3px solid #285F5E;
  transform-origin: center;
  transition: width 0.3s;
}
.page-tab__icon .line.-top {
  top: 0;
  transform: translate(0, 0) rotate(0);
  transition: transform 0.3s;
}
.page-tab__icon .line.-center {
  top: 7px;
  transition: opacity 0.3s, transform 0.3s;
}
.page-tab__icon .line.-bottom {
  top: 14px;
  transform: translate(0, 0) rotate(0);
}

.footer {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: #164948;
}
.footer__top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 74px 0 50px 0;
  background-color: #285F5E;
}
.footer__top .container {
  padding-left: 60px;
}
.footer__logo {
  margin-bottom: 45px;
  width: 120px;
  height: auto;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 24px 0;
}
.footer__nav__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__nav__title {
  margin: 0 0 20px 0;
  color: #fff;
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
  font-style: normal;
}
.footer__nav__title.-mobile {
  display: flex !important;
}
.footer__nav__title.-desktop {
  display: none !important;
}
.footer__nav__list {
  display: none;
}
.footer__nav__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0.43;
  color: #fff;
  font-family: "openSans-Light";
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 25px;
  --line-height-rem: 1.5625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 300;
  letter-spacing: 1.4px;
  font-style: normal;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.footer__nav__link:hover {
  opacity: 1;
}
.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__social__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 6px 0 0;
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: border 0.3s ease;
}
.footer__social__item:last-child {
  margin: 0;
}
.footer__social__item:hover {
  border: 1px solid #91B5B4;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 90px;
}
.footer__bottom .container {
  align-items: center;
  justify-content: center;
}
.footer__copyright {
  color: #91B5B4;
  font-family: "openSans-Regular";
  --font-size: 12px;
  --font-size-rem: 0.75rem;
  --line-height: 18px;
  --line-height-rem: 1.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 400;
  font-style: normal;
}
.footer__links {
  display: none;
}
.footer__text {
  margin-right: 32px;
  color: #91B5B4;
  font-family: "openSans-Regular";
  --font-size: 12px;
  --font-size-rem: 0.75rem;
  --line-height: 18px;
  --line-height-rem: 1.125rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s ease;
}
.footer__text:last-child {
  margin-right: 0;
}
.footer__text:hover {
  color: #fff;
}
.footer__gricreative {
  display: none;
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
  .-mobile {
    display: none;
  }
  .-desktop {
    display: inherit !important;
  }
  .button-type {
    padding: 0 48px;
    height: 62px;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 22px;
    --line-height-rem: 1.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  table td {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 28px;
    --line-height-rem: 1.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .breadcrumb {
    display: flex;
  }
  .form__item {
    margin-bottom: 25px;
  }
  .form__item__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .form__item.-button {
    align-items: flex-end;
    margin-top: 8px;
  }
  .form__textarea {
    height: 206px;
  }
  .form__button {
    width: 144px;
    height: 62px;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 24px;
    --line-height-rem: 1.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header-height: 101px;
  }
  main {
    padding-top: var(--header-height);
    min-height: 50vh;
  }
  .container {
    align-items: stretch;
  }
  .container.-row {
    flex-direction: row;
  }
  p {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 28px;
    --line-height-rem: 1.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  h1 {
    --font-size: 74px;
    --font-size-rem: 4.625rem;
    --line-height: 96px;
    --line-height-rem: 6rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  h2 {
    --font-size: 66px;
    --font-size-rem: 4.125rem;
    --line-height: 78px;
    --line-height-rem: 4.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  h3 {
    --font-size: 50px;
    --font-size-rem: 3.125rem;
    --line-height: 62px;
    --line-height-rem: 3.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  h4 {
    --font-size: 46px;
    --font-size-rem: 2.875rem;
    --line-height: 54px;
    --line-height-rem: 3.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  h5 {
    --font-size: 32px;
    --font-size-rem: 2rem;
    --line-height: 40px;
    --line-height-rem: 2.5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  h6 {
    --font-size: 24px;
    --font-size-rem: 1.5rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.2s cubic-bezier(0.35, 0.46, 0.29, 1.07), transform 0.5s 0.2s cubic-bezier(0.35, 0.46, 0.29, 1.07);
  }
  .-animation.-done {
    opacity: 1;
    transform: translateY(0);
  }
  .-opacity {
    opacity: 0;
    transition: opacity 0.5s 0.2s cubic-bezier(0.35, 0.46, 0.29, 1.07);
  }
  .-opacity.-done {
    opacity: 1;
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: space-between;
    height: var(--header-height);
    border-bottom: 1px solid #ccd7d7;
  }
  .header__logo {
    padding: 0 65px;
    border-right: 1px solid #ccd7d7;
  }
  .header__logo__icon {
    width: 186px;
  }
  .header__logo__icon.-mobile {
    display: none;
  }
  .header__icon {
    display: none;
  }
  .header__nav {
    flex-direction: row;
    justify-content: flex-start;
    padding-right: 30px;
    border: 0;
    border-right: 1px solid #ccd7d7;
  }
  .header__nav__item {
    justify-content: flex-start;
    padding: 0 20px;
  }
  .header__nav__item span {
    color: #285F5E;
    --font-size: 14px;
    --font-size-rem: 0.875rem;
    --line-height: 20px;
    --line-height-rem: 1.25rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .header__nav__item span:after {
    bottom: -2px;
    border-bottom: 3px solid #285F5E;
  }
  .header__language {
    justify-content: flex-start;
    align-items: stretch;
    height: initial;
    border-top: none;
  }
  .header__language a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 38px;
    color: #285F5E;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 22px;
    --line-height-rem: 1.375rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    background-color: transparent;
    transition: color 0.3s, background-color 0.3s;
  }
  .header__language a:hover {
    color: #fff;
    background-color: #285F5E;
  }
  .header:not(.-sticky).-transparent {
    background-color: transparent;
  }
  .header:not(.-sticky).-home .header__logo {
    border-right: 1px solid rgba(255, 255, 255, 0.19);
  }
  .header:not(.-sticky).-home .header__nav {
    border-right: 1px solid rgba(255, 255, 255, 0.19);
  }
  .header:not(.-sticky).-home .header__language a {
    color: #fff;
  }
  .header:not(.-sticky).-home .header__language a:hover {
    background-color: transparent;
  }
  .page-tab {
    z-index: 10;
    margin-top: -39px;
  }
  .page-tab.-sticky {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-tab__content {
    flex-direction: row;
    padding: 9px;
    background-color: #fff;
    box-shadow: 0px 14px 54px 0px rgba(0, 0, 0, 0.0509803922);
  }
  .page-tab__item {
    padding: 0 26px;
    height: 60px;
    transition: color 0.3s, background-color 0.3s;
  }
  .page-tab__item:hover, .page-tab__item.-active {
    background-color: #285F5E;
    color: #fff;
  }
  .page-tab__icon {
    display: none;
  }
  .page-tab.-version {
    position: absolute;
    top: 100vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
  .page-tab.-version.-sticky {
    position: fixed;
    top: auto;
    bottom: 20px;
  }
  .footer__top {
    padding: 105px 0 50px 0;
    height: 372px;
  }
  .footer__top .container {
    position: relative;
    padding-left: 24px;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__nav {
    flex-direction: row;
    margin: 0 0 0 14%;
  }
  .footer__nav__item {
    margin: 0 70px 0 0;
    min-width: 80px;
  }
  .footer__nav__item:last-child {
    margin: 0;
    text-align: right;
  }
  .footer__nav__title {
    margin: 0 0 32px 0;
    width: 100%;
  }
  .footer__nav__title.-mobile {
    display: none !important;
  }
  .footer__nav__title.-desktop {
    display: flex !important;
  }
  .footer__nav__list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer__social {
    position: absolute;
    bottom: 0;
    left: 24px;
  }
  .footer__bottom {
    height: 78px;
  }
  .footer__bottom .container {
    justify-content: flex-start;
  }
  .footer__links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 110px;
    margin-left: auto;
  }
  .footer__gricreative {
    display: flex;
  }
}
@media only screen and (min-width: 1248px) {
  .container {
    padding: 0;
  }
  .header__nav__item {
    padding: 0 30px;
  }
  .footer__top .container {
    padding-left: 0;
  }
  .footer__nav {
    margin: 0 0 0 17%;
  }
  .footer__social {
    left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .header__open-menu {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-direction: column;
    padding-top: var(--header-height);
    height: 100dvh;
    background-color: #285F5E;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
  }
  .page-tab {
    position: absolute;
    top: calc(100dvh - 260px + var(--header-height) - 107px);
    left: 43px;
    align-items: stretch;
    width: calc(100% - 86px);
    max-height: 64px;
    background-color: #fff;
    box-shadow: 0px 14px 54px 0px rgba(0, 0, 0, 0.11);
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .page-tab.-on {
    max-height: 100%;
  }
  .page-tab.-on .page-tab__icon-content {
    transform: rotate(45deg);
  }
  .page-tab.-on .page-tab__icon-content .line.-top {
    transform: translate(0, 7px);
  }
  .page-tab.-on .page-tab__icon-content .line.-center {
    transform: rotate(90deg);
  }
  .page-tab.-on .page-tab__icon-content .line.-bottom {
    opacity: 0;
  }
  .page-tab__content {
    align-items: stretch;
  }
  .page-tab__item {
    flex-shrink: 0;
    padding: 0 32px;
    height: 64px;
    order: 1;
  }
  .page-tab__item.-active {
    order: 0;
  }
  .page-tab.-version {
    position: relative;
    top: initial;
    left: initial;
    margin: 0 0 30px 0;
    width: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .container {
    height: 100%;
  }
}