@charset "UTF-8";
@font-face {
  font-family: "AmericanaStd-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/AmericanaStdFUHA-Regular.woff2") format("woff2");
}
:root {
  --wrapper: 100vw;
  --gutter: 40px;
  --rh: calc((var(--wrapper) - (3 * var(--gutter))) / 4);
}

.header {
  z-index: 3;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 24px;
  width: 100%;
  background-color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(196, 196, 196, 0) 100%);
  transition: all 0.3s ease;
}
.header.-dark {
  background-color: #141414;
}
.header.-sticky {
  position: fixed;
  background-color: #141414;
}
.header.-index {
  z-index: 1;
}
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__links {
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__links__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.header__links__link:nth-of-type(2) {
  margin: 0 36px;
}
.header__links__link:hover, .header__links__link:focus {
  color: #17C37B;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.header__logo .header-logo {
  display: block;
  width: 87px;
  height: 64px;
  object-fit: contain;
}
.header__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__lang {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}
.header__lang .lang-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.header__lang:hover .header__lang__box {
  visibility: visible;
  opacity: 1;
}
.header__lang__box {
  visibility: hidden;
  opacity: 0;
  z-index: 4;
  position: absolute;
  top: 60px;
  left: -26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid rgba(130, 130, 130, 0.25);
  background-color: #141414;
  transition: visibility 0s ease-in-out, opacity 0.5s linear;
}
.header__lang__box::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 29px;
  border-top: 1px solid rgba(130, 130, 130, 0.25);
  border-right: 1px solid rgba(130, 130, 130, 0.25);
  background-color: #141414;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
}
.header__lang__box__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(130, 130, 130, 0.25);
  text-decoration: none;
}
.header__lang__box__link:last-of-type {
  border: 0;
}
.header__lang__box__link .lang-text {
  padding: 12px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
  font-weight: 500;
  transition: color 0.5s ease;
}
.header__lang__box__link:hover .lang-text {
  color: #17C37B;
}
.header__search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin: 0 32px;
  text-decoration: none;
  cursor: pointer;
}
.header__hamburger {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  cursor: pointer;
}
.header__hamburger-content {
  z-index: 5;
  position: absolute;
  top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 24px;
  height: 16px;
}
.header__hamburger .line {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 24px;
  height: 0;
  border-bottom: 2px solid #fff;
  transition: border-color 0.3s;
}
.header__hamburger .line.-top {
  top: 0;
  transform: translate(0, 0) rotate(0);
  transition: transform 0.3s;
}
.header__hamburger .line.-center {
  top: 7px;
  transition: opacity 0.3s, transform 0.3s;
}
.header__hamburger .line.-bottom {
  top: 14px;
  transform: translate(0, 0) rotate(0);
  transition: transform 0.3s;
}
.header__hamburger.-active .line {
  border-color: #17C37B;
}
.header__hamburger.-active .line.-top {
  transform: translate(0, 7px) rotate(44deg);
}
.header__hamburger.-active .line.-center {
  opacity: 0;
  transform: translateX(0);
}
.header__hamburger.-active .line.-bottom {
  transform: translate(0, -7px) rotate(-44deg);
}
.header__menu {
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(20, 20, 20, 0.65);
  transition: opacity 0s ease, visibility 0.5s linear;
}
.header__menu.-active {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  overflow-x: hidden;
}
.header__nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 24px 0 24px;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #141414;
}
.header__nav__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid rgba(130, 130, 130, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__nav__link .nav-text {
  color: #fff;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 400;
}
.header__nav__link:hover .nav-text, .header__nav__link:focus .nav-text {
  color: #17C37B;
}
.header__nav__lang {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.header__nav__lang__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0;
  width: 100%;
  text-decoration: none;
}
.header__nav__lang__link:last-of-type {
  padding: 12px 0;
  border-bottom: 1px solid rgba(130, 130, 130, 0.25);
}
.header__nav__lang__link .lang-text {
  color: #fff;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 400;
}
.header__nav__lang__link:hover .lang-text, .header__nav__lang__link:focus .lang-text {
  color: #17C37B;
}

.page-header {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 406px;
  min-height: 406px;
  max-height: 406px;
  background-image: url("/assets/image/contact-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-header.-none {
  display: none;
}
.page-header.-bilgi-bankası, .page-header.-insights {
  background-image: url("/assets/image/data-bank-banner.webp");
}
.page-header.-kariyer, .page-header.-career {
  background-image: url("/assets/image/career-banner.webp");
}
.page-header.-iletişim, .page-header.-arama-sonuçları, .page-header.-search-results, .page-header.-contact, .page-header.-yasal-uyarı, .page-header.-disclaimer, .page-header.-kişisel-verilerin-korunması-politikası, .page-header.-personal-data-protection-policy {
  background-image: url("/assets/image/contact-banner.webp");
}
.page-header.-kurum-kültürümüz, .page-header.-our-culture {
  background-image: url("/assets/image/about-banner.webp");
}
.page-header.-hizmetler, .page-header.-sektörler, .page-header.-uluslararası-masalar, .page-header.-services, .page-header.-industries, .page-header.-international-desks {
  background-image: url("/assets/image/practice-areas-banner.webp");
}
.page-header.-ekibimiz, .page-header.-our-team {
  background-image: url("/assets/image/team-banner.webp");
}
.page-header__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px 120px;
  width: 100%;
  height: 100%;
}
.page-header__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 0 40px 0;
  width: 100%;
  max-height: 44px;
  color: #fff;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  font-weight: 400;
}
.page-header__image {
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid #F3F3F3;
  transform: translate(0px, 120px);
}
.page-header__image .profile-image {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.breadcrumb__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.breadcrumb__link .link {
  color: #a7a7a7;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.breadcrumb__link__arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
}
.breadcrumb__link__arrow img {
  display: block;
  width: 8px;
  height: 16px;
  object-fit: contain;
}
.breadcrumb__link:active, .breadcrumb__link:visited {
  color: #828282;
}
.breadcrumb__text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.breadcrumb__text .text {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}
.breadcrumb__text .-gray {
  color: #828282;
}

input,
select,
textarea,
button {
  border: 0;
  border-radius: 0;
  outline: 0;
  appearance: none;
}
input:invalid,
select:invalid,
textarea:invalid,
button:invalid {
  box-shadow: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 116px 24px;
  width: 100%;
  background-color: #141414;
}
.form__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1160px;
}
.form__content [uploaded-files] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
}
.form__content [uploaded-files] [input-reset] {
  text-align: center;
  color: #828282;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 57.6px;
  line-height: 3.6rem;
}
.form__content [uploaded-files] [input-reset]:hover {
  color: #ff0000;
  cursor: pointer;
}
.form__content .-hide {
  display: none;
}
.form__title {
  color: #fff;
}
.form__text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0 64px 0;
  width: 100%;
  max-width: 760px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  text-align: center;
}
.form__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
}
.form__container.-button {
  padding: 40px 0 12px 0;
}
.form__container.-checkbox {
  padding: 12px 0 0 0;
}
.form__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 40px 0;
  width: 100%;
  max-width: 100%;
}
.form__item.-wide {
  max-width: 100%;
}
.form__item.-upload {
  max-width: 100%;
}
.form__item.-upload::after {
  display: none;
}
.form__item.-invalid .form__item__input,
.form__item.-invalid .form__item__select,
.form__item.-invalid .form__item__textarea,
.form__item.-invalid .form__checkbox__box {
  border: 1px solid #CC4429;
}
.form__item.-invalid .form__item__file {
  border: 1px dashed #CC4429;
}
.form__item.-invalid .form__type {
  display: none;
}
.form__item__hidden {
  display: none;
}
.form__item__label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
}
.form__item__label i {
  color: #828282;
}
.form__item__input:focus, .form__item__textarea:focus {
  color: #17C37B;
  border-bottom: 2px solid #17C37B;
  background-color: rgba(130, 130, 130, 0.1);
}
.form__item__input, .form__item__select, .form__item__textarea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  height: 100%;
  min-height: 42px;
  border-bottom: 2px solid rgba(130, 130, 130, 0.25);
  background-color: #141414;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
}
.form__item__input.-invalid, .form__item__select.-invalid, .form__item__textarea.-invalid {
  border: 1px solid #CC4429;
}
.form__item__select {
  background-image: url("/assets/svg/select-arrow.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right center;
}
.form__item__textarea {
  min-height: 70px;
  resize: none;
}
.form__item__requirement {
  position: absolute;
  bottom: 12px;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #CC4429;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
.form__checkbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.form__checkbox__input {
  display: none;
  margin: 0;
  width: 0;
  height: 0;
}
.form__checkbox__input:checked ~ .form__checkbox__box {
  border: 2px solid #17C37B;
}
.form__checkbox__input:checked ~ .form__checkbox__box::before {
  opacity: 1;
}
.form__checkbox__box {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 12px 0 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid #828282;
  background-color: #141414;
  cursor: pointer;
}
.form__checkbox__box:before {
  content: "";
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-image: url("/assets/svg/tick-icon.svg");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center center;
  transition: opacity 0.2s;
}
.form__checkbox__text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.form__checkbox__text p, .form__checkbox__text a {
  margin: 0;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
}
.form__checkbox__text a {
  text-decoration: underline;
}
.form__checkbox__text a:active,
.form__checkbox__text a:visited {
  color: #828282;
}
.form__checkbox__text a:hover,
.form__checkbox__text a:focus {
  color: #064C37;
}
.form__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 1px solid #fff;
  background-color: #141414;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form__button:hover {
  background-color: #fff;
  color: #141414;
}
.form__uploaded {
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px 0;
}
.form__uploaded.-hidden {
  display: none;
}
.form__uploaded__wrapper {
  display: flex;
  align-items: center;
  max-width: 80%;
}
.form__uploaded__name {
  width: 100%;
  flex-shrink: 0;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  word-break: break-word;
}
.form__uploaded__icon {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 0 12px;
  padding: 0;
  width: 100%;
  height: 100%;
}
.form__uploaded__close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 12px;
  padding: 0;
  width: auto;
  height: 100%;
  cursor: pointer;
}
.form__type {
  position: absolute;
  bottom: 12px;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #CC4429;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
.form button[disabled] {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
}

/*
  File Upload
*/
.files {
  width: 100%;
}

.upload {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  width: 100%;
  height: 338px;
  border-radius: 8px;
  border: 2px dashed #828282;
  background-color: rgba(130, 130, 130, 0.1);
}
.upload input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.upload__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.upload__icon {
  display: block;
  margin: 16px;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.upload__text, .upload__desc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 20px 6px 20px;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  text-align: center;
}

.uppy-FileInput-container {
  margin-bottom: 0;
}

.uploaded-files {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  width: 100%;
}
.uploaded-files ol {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  width: 100%;
}
.uploaded-files__item {
  position: relative !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px !important;
  padding: 12px 18px !important;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 20px 0 rgba(150, 92, 92, 0.15);
  font-size: 16px !important;
  letter-spacing: -0.4px;
  line-height: 1.81em !important;
  text-decoration: none;
  text-align: left;
  color: green !important;
  list-style: none !important;
}
.uploaded-files__item::before, .uploaded-files__item::after {
  display: none;
}
.uploaded-files__name {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: orange;
}
.uploaded-files__size {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: blue;
}
.uploaded-files__delete {
  margin-left: 18px;
  padding: 12px 0 12px 18px;
  border-left: 1px solid red;
  font-size: 12px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: blue;
  cursor: pointer;
}

.uppy-ProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  transition: height 0.2s;
}

.uppy-ProgressBar[aria-hidden=true] {
  height: 0;
}

.uppy-ProgressBar-inner {
  background-color: #2275d7;
  box-shadow: 0 0 10px rgba(34, 117, 215, 0.7);
  height: 100%;
  width: 0;
  transition: width 0.4s ease;
}

.uppy-ProgressBar-percentage {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.loading-animation {
  display: inline;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 12px;
}

.loading-animation div {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: loading-animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.loading-animation div:nth-child(1) {
  animation-delay: -0.45s;
}

.loading-animation div:nth-child(2) {
  animation-delay: -0.3s;
}

.loading-animation div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loading-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 80px 24px;
  background-color: #fff;
  width: 100%;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newsletter__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 20px 0;
}
.newsletter__text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: -4px;
  padding: 0 0 12px 0;
}
.newsletter__text .gray-text {
  margin: 0;
  font-weight: 500;
}
.newsletter__text .green-text {
  margin: 0;
  color: #17C37B;
  font-weight: 500;
}
.newsletter__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 12px 0;
  height: 56px;
  width: 102%;
}
.newsletter__item.-checkbox {
  justify-content: flex-start;
  margin: 62px 0 -154px 0;
}
.newsletter__item.-invalid .newsletter__item__input,
.newsletter__item.-invalid .newsletter__checkbox__box {
  border: 1px solid #CC4429;
}
.newsletter__item__label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
}
.newsletter__item__input {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  max-width: 320px;
  height: 100%;
  min-height: 56px;
  border: 1px solid #828282;
  color: #17C37B;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}
.newsletter__item__input:focus {
  border: 1px soli #17C37B;
}
.newsletter__item__input::placeholder {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}
.newsletter__item__input.-invalid {
  border: 1px solid #CC4429;
}
.newsletter__item__requirement {
  position: absolute;
  bottom: -60px;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #CC4429;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
.newsletter__item.-captcha {
  margin: 50px 0 0 0;
}
.newsletter__checkbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.newsletter__checkbox__input {
  display: none;
  margin: 0;
  width: 0;
  height: 0;
}
.newsletter__checkbox__input:checked ~ .newsletter__checkbox__box {
  border: 2px solid #17C37B;
}
.newsletter__checkbox__input:checked ~ .newsletter__checkbox__box::before {
  opacity: 1;
}
.newsletter__checkbox__box {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 6px 0 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid #828282;
  cursor: pointer;
}
.newsletter__checkbox__box:before {
  content: "";
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-image: url("/assets/svg/tick-icon.svg");
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center center;
  transition: opacity 0.2s;
}
.newsletter__checkbox__text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.newsletter__checkbox__text p, .newsletter__checkbox__text a {
  margin: 0;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
}
.newsletter__checkbox__text a {
  text-decoration: underline;
}
.newsletter__checkbox__text a:active,
.newsletter__checkbox__text a:visited {
  color: #828282;
}
.newsletter__checkbox__text a:hover,
.newsletter__checkbox__text a:focus {
  color: #064C37;
}
.newsletter__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 56px;
  border: 1px solid #064C37;
  background-color: #064C37;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.newsletter__captcha-warning {
  position: absolute;
  left: 0;
  bottom: -40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 200px;
  color: #CC4429;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 20.8px;
  line-height: 1.3rem;
  font-weight: 400;
  font-style: normal;
}
.newsletter__captcha-warning.-hide {
  display: none;
}

.back-to-top {
  z-index: 4;
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: translateY(100px);
  transition: all 0.5s ease;
}
.back-to-top__image {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.contact-band {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgb(238, 217, 116);
  background: linear-gradient(345deg, rgb(238, 217, 116) 3.08%, rgb(23, 195, 123) 100%);
}
.contact-band.-none {
  display: none;
}
.contact-band__text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}
.contact-band__text p, .contact-band__text a {
  color: #141414;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 500;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0 24px;
  background-color: #141414;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 28px 0;
}
.footer__nav__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
}
.footer__nav__link.-hide {
  display: none;
}
.footer__nav__link .nav-text {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 22px;
  line-height: 1.375rem;
  font-weight: 500;
}
.footer__policies {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 22px 0 28px 0;
  border-top: 0.5px solid rgba(130, 130, 130, 0.5);
  border-bottom: 0.5px solid rgba(130, 130, 130, 0.5);
}
.footer__policies__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
}
.footer__policies__link .policy-text {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 14px;
  line-height: 0.875rem;
  font-weight: 400;
}
.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 24px 0 40px 0;
}
.footer__info {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__info__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer__info__logo .footer-logo {
  display: block;
  margin: 24px 0;
  width: 72px;
  height: 54px;
  object-fit: contain;
}
.footer__info__copyright {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 15px;
  line-height: 0.9375rem;
  font-weight: 400;
}
.footer__socials {
  order: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer__socials__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 10px 0 0;
  text-decoration: none;
}
.footer__socials__link:last-of-type {
  margin: 0;
}

.cookie {
  z-index: 7;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 24px;
  width: 100%;
  height: auto;
  background-color: #141414;
}
.cookie.-hide {
  z-index: 0;
  display: none;
}
.cookie__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  height: 100%;
}
.cookie__icon {
  display: block;
  margin: 0 8px 0 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.cookie__text {
  margin: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 0.9375rem;
  font-weight: 500;
}
.cookie__link {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 0.9375rem;
  font-weight: 500;
}
.cookie__close {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}
.cookie__close .close-icon {
  width: 16px;
  height: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  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;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin: 0;
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell;
  background-color: #fff;
}
body.-fixed {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
}

main {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #F3F3F3;
}

select {
  border: 0;
}

h2 {
  margin: 0;
  color: #064C37;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-weight: 500;
  font-size: 32px;
  font-size: 2rem;
  line-height: 39px;
  line-height: 2.4375rem;
}

h3 {
  margin: 0;
  color: #064C37;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-weight: 500;
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  line-height: 2.5rem;
}

h4 {
  margin: 0;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  text-decoration: none;
}

p {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}

a {
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}

ol li, ul li {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
ol li.ql-indent-1, ul li.ql-indent-1 {
  list-style: circle;
  margin: 0 0 0 16px;
}

blockquote {
  margin: 0 0 30px 50px;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 400;
  font-style: italic;
}

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

.content-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 24px;
  max-width: 1140px;
  width: 100%;
  height: 100%;
}
.content-wrapper.-secondary {
  margin: -78px 0 0 0;
}
@media only screen and (min-width: 374px){
  .header__nav__link {
    padding: 14px 0;
  }
  .header__nav__link .nav-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 640px){
  h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 50px;
    line-height: 3.125rem;
  }
}
@media only screen and (min-width: 1024px){
  .header {
    padding: 26px 100px;
  }
  .header__links {
    display: flex;
  }
  .header__lang {
    display: flex;
  }
  .header__hamburger-content {
    position: absolute;
    top: 50px;
  }
  .header__nav {
    justify-content: center;
    padding: 0 100px;
    max-width: 640px;
  }
  .header__nav__lang {
    display: none;
  }
  .page-header {
    flex-direction: row;
    align-items: flex-end;
    height: 540px;
    min-height: 540px;
    max-height: 540px;
  }
  .page-header__title {
    font-size: 64px;
    font-size: 4rem;
    line-height: 64px;
    line-height: 4rem;
    max-height: unset;
  }
  .page-header__image {
    width: 248px;
    height: 248px;
    border: 8px solid #F3F3F3;
    transform: translate(-90px, 124px);
  }
  .page-header__image .profile-image {
    width: 232px;
    height: 232px;
  }
  .form__container.-checkbox {
    padding: 12px 80px 0 80px;
  }
  .form__checkbox {
    align-items: center;
  }
  .form__checkbox__text p, .form__checkbox__text a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 16px;
    line-height: 1rem;
  }
  .newsletter__checkbox {
    align-items: center;
  }
  .newsletter__checkbox__box {
    margin: 0 12px 0 0;
  }
  .newsletter__checkbox__text p, .newsletter__checkbox__text a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 16px;
    line-height: 1rem;
  }
  .contact-band {
    padding: 66px 24px;
  }
  .contact-band__text p, .contact-band__text a {
    font-size: 32px;
    font-size: 2rem;
    line-height: 38px;
    line-height: 2.375rem;
  }
  .footer {
    padding: 0 100px;
  }
  .footer__nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 64px 0;
  }
  .footer__nav__link {
    padding: 0 12px;
  }
  .footer__nav__link:nth-of-type(2) {
    padding: 0 12px 0 0;
  }
  .footer__nav__link:last-of-type {
    padding: 0 0 0 12px;
  }
  .footer__policies {
    flex-direction: row;
  }
  .footer__policies__link {
    padding: 0 12px;
  }
  .footer__policies__link:first-of-type {
    padding: 0 12px 0 0;
  }
  .footer__policies__link:last-of-type {
    padding: 0 0 0 12px;
  }
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0 64px 0;
  }
  .footer__info {
    flex-direction: row;
    order: 0;
  }
  .footer__info__logo .footer-logo {
    margin: 0 24px 0 0;
  }
  .footer__socials {
    order: 0;
  }
  .cookie {
    flex-direction: row;
    justify-content: space-between;
    height: 64px;
  }
  .cookie__close .close-icon {
    width: 40px;
  }
  .content-wrapper {
    max-width: 900px;
  }
}
@media only screen and (min-width: 1280px){
  .page-header__container {
    padding: 40px 220px;
  }
  .form__content [uploaded-files] {
    flex-direction: row;
    align-items: center;
  }
  .form__content [uploaded-files] [input-reset] {
    text-align: right;
    background-color: #141414;
  }
  .form__text {
    padding: 0;
  }
  .form__container {
    flex-direction: row;
    justify-content: space-between;
    padding: 62px 0 0 0;
  }
  .form__item {
    padding: 0;
    max-width: 560px;
  }
  .form__item__requirement {
    bottom: -30px;
  }
  .form__type {
    bottom: -30px;
  }
  .back-to-top.-active {
    opacity: 1;
    display: flex;
    transform: translateY(0);
  }
  .content-wrapper {
    padding: 0;
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1366px){
  .newsletter {
    padding: 40px 80px;
  }
  .newsletter-form {
    flex-direction: row;
    justify-content: space-between;
  }
  .newsletter__content {
    align-items: flex-start;
    padding: 0 20px 0 0;
    width: 100%;
  }
  .newsletter__item.-checkbox {
    margin: 0;
  }
  .newsletter__item {
    justify-content: flex-end;
    margin: 0;
    height: auto;
    width: 100%;
  }
  .newsletter__item__input {
    width: 320px;
  }
  .newsletter__item__requirement {
    bottom: -30px;
  }
  .newsletter__item.-captcha {
    flex-direction: column;
    margin: 0 0 0 50px;
  }
  .newsletter__captcha-warning {
    bottom: -25px;
  }
}
@media only screen and (min-width: 1440px){
  .header__nav__link {
    padding: 24px 0;
  }
  .header__nav__link .nav-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
  .content-wrapper {
    padding: 0;
    max-width: 1360px;
  }
}
@media only screen and (min-width: 1920px){
  .content-wrapper {
    padding: 0;
    max-width: 1400px;
  }
}
@media only screen and (max-width: 1023px){
  .page-header__container {
    padding: 24px;
  }
  .cookie__close {
    order: 0;
    margin: 0 0 20px 0;
  }
}