/*----------------------------------------- CONSULTATION --------------------------------------------*/
.consultation {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 100px;
  gap: 40px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.consultation__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
}
.consultation__header {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
.consultation__know-how-description {
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}
.consultation__list {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  gap: 24px;
}
.consultation__list-point {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Montserrat", "sans-serif";
  font-weight: normal;
  font-style: normal;
}
.consultation__list-point-number {
  color: #df2686;
  font-size: 28px;
  min-width: 50px;
  margin-right: 10px;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-style: normal;
}
.consultation__list-point-description {
  font-size: 18px;
  flex-grow: 1;
}
.consultation__proclamation {
  display: none;
}
.consultation__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
.consultation__image {
  max-width: 441px;
  width: 75%;
  height: auto;
}

@media (min-width: 800px) {
  .consultation__description {
    margin-bottom: 0;
  }
  .consultation__header {
    font-size: 46px;
    line-height: normal;
  }
  .consultation__know-how-description {
    font-size: 19px;
  }
  .consultation__list {
    font-size: 19px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
    grid-column-gap: 40px;
  }
  .consultation__list-point-number {
    font-size: 46px;
    min-width: 80px;
  }
  .consultation__list-point-description {
    font-size: 19px;
  }
  .consultation__proclamation {
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: #df2686;
  }
}
@media (min-width: 1400px) {
  .consultation {
    flex-direction: row;
  }
  .consultation__image {
    margin-top: 55px;
    margin-bottom: 20px;
    min-width: 250px;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .consultation {
    margin-bottom: 150px;
  }
  .consultation__header {
    font-size: 64px;
    line-height: 77px;
  }
  .consultation__know-how-description {
    font-size: 20px;
    white-space: normal;
    justify-content: center;
  }
  .consultation__list-point-number {
    min-width: 110px;
    line-height: 90px;
    font-size: 64px;
  }
  .consultation__list-point-description {
    font-size: 20px;
  }
  .consultation__proclamation {
    font-size: 28px;
    line-height: 34px;
  }
}
/*----------------------------------------- CONTACT-FORM --------------------------------------------*/
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 100px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.contact-form__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form__header {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
.contact-form__information p:first-child {
  margin-bottom: 18px;
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
  font-size: 18px;
  max-width: 1400px;
  margin-right: auto;
}
.contact-form a {
  color: #df2686;
}
.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field-label {
  line-height: 25px;
  margin-bottom: 10px;
}
.contact-form__field-input {
  font-size: 18px;
  border: 0;
  background-color: #F2F2F2;
  height: 45px;
  padding: 12px;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Arboria", "sans-serif";
  font-weight: 500;
  font-style: normal;
}
.contact-form__field-input-textarea {
  height: 100%;
  min-height: 150px;
  resize: vertical;
}
.contact-form__field-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 18px;
}
.contact-form__field-input:focus {
  outline: 2px solid #df2686;
}
.contact-form__additional-information {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form__additional-information p {
  margin: 12px 0;
}
.contact-form__submit-btn {
  display: flex;
  justify-content: center;
}
.contact-form__submit-btn button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 200px;
  background-color: #df2686;
  border-radius: 5px;
  border-color: #df2f8a;
  border-style: unset;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px #c11e7f;
  transition: all 0.2s ease-in-out;
  font-family: "Arboria", "sans-serif";
  font-weight: 700;
  font-style: normal;
}
.contact-form__submit-btn button:hover {
  transform: translate(0px, 0px);
  box-shadow: none;
}
.contact-form__required-star {
  color: #df2686;
}

@media (min-width: 800px) {
  .contact-form__header {
    font-size: 46px;
    line-height: normal;
  }
  .contact-form__information {
    font-size: 21px;
    line-height: 34px;
  }
  .contact-form__information p:first-child {
    margin-bottom: 0;
  }
  .contact-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    row-gap: 20px;
    column-gap: 40px;
    grid-template-areas: "text-input tel-input" "email-input ." "textarea textarea";
  }
  .contact-form__text-input {
    grid-area: text-input;
  }
  .contact-form__tel-input {
    grid-area: tel-input;
  }
  .contact-form__email-input {
    grid-area: email-input;
  }
  .contact-form__textarea {
    grid-area: textarea;
  }
  .contact-form__field-label {
    font-size: 20px;
  }
  .contact-form__field-input {
    font-size: 20px;
    height: 50px;
  }
  .contact-form__field-input::placeholder {
    font-size: 20px;
  }
  .contact-form__additional-information {
    font-size: 19px;
  }
}
@media (min-width: 1000px) {
  .contact-form__submit-btn {
    justify-content: flex-start;
  }
}
@media (min-width: 1600px) {
  .contact-form__header {
    font-size: 64px;
    line-height: 77px;
  }
  .contact-form__information {
    font-size: 24px;
  }
  .contact-form__field-label {
    font-size: 22px;
  }
  .contact-form__field-input {
    font-size: 22px;
    height: 55px;
  }
  .contact-form__field-input::placeholder {
    font-size: 22px;
  }
  .contact-form__additional-information {
    font-size: 20px;
  }
}
/*----------------------------------------- OFFER --------------------------------------------*/
.offer {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 100px;
  gap: 40px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.offer__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  justify-content: center;
}
.offer__header {
  font-size: 28px;
  font-weight: 700;
}
.offer__text {
  font-size: 18px;
  line-height: 25px;
}
.offer__proclamation {
  font-size: 24px;
  color: #df2686;
  font-weight: 700;
}
.offer__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
.offer__image {
  max-width: 441px;
  width: 75%;
  height: auto;
}

@media (min-width: 800px) {
  .offer {
    gap: 48px;
  }
  .offer__header {
    font-size: 46px;
  }
  .offer__text {
    font-size: 19px;
    line-height: 25px;
  }
  .offer__proclamation {
    font-size: 26px;
  }
  .offer__image-container {
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .offer {
    flex-direction: row;
  }
  .offer__image {
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .offer__header {
    font-size: 64px;
  }
  .offer__text {
    font-size: 20px;
  }
  .offer__proclamation {
    font-size: 28px;
  }
}
/*----------------------------------------- SUPPORT END --------------------------------------------*/
.support-end {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 80px;
  gap: 40px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.support-end__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
}
.support-end__header {
  font-size: 28px;
  font-weight: 700;
}
.support-end__proclamation {
  font-size: 24px;
  color: #df2686;
  font-weight: 700;
}
.support-end__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
  margin: 0;
}
.support-end__list li {
  list-style-image: url("../../../assets/icons/tick.svg");
}
.support-end__text {
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}
.support-end__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
.support-end__image {
  max-width: 441px;
  width: 75%;
  height: auto;
}

@media (min-width: 800px) {
  .support-end__header {
    font-size: 46px;
  }
  .support-end__proclamation {
    font-size: 26px;
  }
  .support-end__list {
    font-size: 20px;
  }
  .support-end__text {
    font-size: 19px;
    line-height: 25px;
  }
}
@media (min-width: 1000px) {
  .support-end {
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .support-end {
    flex-direction: row-reverse;
  }
  .support-end__image {
    margin-top: 55px;
    margin-bottom: 20px;
    min-width: 250px;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .support-end__header {
    font-size: 64px;
  }
  .support-end__proclamation {
    font-size: 28px;
  }
  .support-end__list {
    font-size: 20px;
  }
  .support-end__text {
    font-size: 20px;
  }
}
/*----------------------------------------- HEADER --------------------------------------------*/
.header {
  width: 100%;
  height: 80px;
  background-color: #df2686;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(165, 165, 165);
  justify-content: space-between;
  font-family: "Arboria", "sans-serif";
  font-weight: 500;
  font-style: normal;
  /*----------------------------------------- NAVBAR ACTIVE --------------------------------------------*/
}
.header__logo {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 62.25px;
}
.header__logo img {
  width: 60%;
  max-width: 50px;
}
.header__navbar {
  display: none;
}
.header__list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.header__list-item {
  display: flex;
  list-style: none;
}
.header__list-item a {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 10px 20px;
  color: #FFF;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
}
.header__menu-toggle {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 62.25px;
  cursor: pointer;
}
.header__menu-toggle img {
  width: 70%;
}
.header__navbar.active {
  height: 450px;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(220, 46, 135, 0.8);
  z-index: 999;
}
.header__navbar.active .header__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 10px;
}
.header--client-page .header__menu-toggle img {
  cursor: default;
  display: none;
}

@media (min-width: 767px) {
  .header__navbar.active {
    height: 590px;
  }
  .header__navbar.active .header__list {
    margin-right: 10px;
  }
  .header__navbar.active .header__list-item a {
    font-size: 24px;
  }
  .header__logo {
    border-right: 1px solid rgb(165, 165, 165);
  }
  .header__menu-toggle {
    border-left: 1px solid rgb(165, 165, 165);
  }
}
/*----------------------------------------------------------------------------------------------------*/
@media (min-width: 1050px) {
  .header__navbar {
    height: 100%;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
  }
  .header__list {
    height: 100%;
    margin-right: 30px;
  }
  .header__list-item {
    height: 100%;
    display: flex;
    list-style: none;
  }
  .header__list-item a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px;
    color: #FFF;
    font-weight: 500;
    font-size: 18px;
    text-decoration: underline white;
  }
  .header__menu-toggle {
    cursor: default;
  }
  .header__menu-toggle img {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    width: 6.77vw;
  }
  .header__menu-toggle {
    width: 6.77vw;
  }
}
@media (min-width: 1600px) {
  .header {
    height: 100px;
  }
  .header__logo img {
    width: 80%;
    max-width: 60px;
  }
  .header__list {
    margin-right: 20px;
  }
  .header__list-item a {
    font-size: 22px;
  }
}
/*----------------------------------------- FOOTER --------------------------------------------*/
.footer {
  background-color: #414042;
  color: white;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.footer__content {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  padding: 40px 6.77vw;
}
.footer__address-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.footer__address-header {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.footer__address-text {
  font-size: 15px;
  line-height: 20px;
  margin: 0;
}
.footer__info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: right;
}
.footer__info-contact {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}
.footer__info-legal {
  font-size: 16px;
  margin-bottom: 20px;
}
.footer__info-legal-link {
  color: white;
  text-decoration: none;
}
.footer__info-cookies {
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
.footer__info-cookies-link, .footer__info-cookies-settings {
  color: white;
  text-decoration: none;
}
.footer__info-cookies-delimiter {
  display: none;
}
.footer__info-cookies-settings {
  cursor: pointer;
  margin: 0;
}

@media (max-width: 550px) {
  .footer__content {
    justify-content: space-between;
  }
}
@media (min-width: 767px) {
  .footer__content {
    margin: 0 61.25px;
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
    height: 100%;
    justify-content: space-between;
    padding: 40px 6.77vw;
  }
}
@media (min-width: 850px) {
  .footer__address-wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    column-gap: 70px;
    row-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .footer__content {
    margin-left: 6.77vw;
    margin-right: 6.77vw;
  }
  .footer__info-cookies {
    display: flex;
    flex-direction: row;
  }
  .footer__info-cookies-delimiter {
    display: inline-block;
    white-space: pre;
  }
}
@media (min-width: 1400px) {
  .footer__content {
    justify-content: space-between;
  }
  .footer__address-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
}
@media (min-width: 1600px) {
  .footer__address-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 70px;
  }
}
.claim {
  position: relative;
  background-color: #df2686;
  font-family: "Arboria", "sans-serif";
  font-weight: 200;
  font-style: normal;
}
.claim__left-aside {
  visibility: hidden;
}
.claim__list {
  display: flex;
  flex-direction: row;
  position: absolute;
  visibility: visible;
  gap: 20px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
}
.claim__list-item {
  list-style-type: none;
}
.claim__list-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.claim__list-item-link img {
  width: 30px;
  height: 30px;
}
.claim__content {
  display: flex;
  padding: 50px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 100px;
}
.claim__content-banner-container {
  display: none;
}
.claim__content-announcement {
  color: white;
}
.claim__content-title {
  text-align: left;
  font-size: 46px;
  line-height: 68px;
  margin-bottom: 10px;
}
.claim__content-title--client-page {
  margin-bottom: 150px;
}
.claim__content-subtitle {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 130px;
}
.claim__right-aside {
  visibility: hidden;
}

@media (min-width: 500px) {
  .claim__content-title--client-page {
    font-size: 56px;
  }
}
@media (min-width: 767px) {
  .claim {
    display: flex;
    flex-direction: row;
  }
  .claim__left-aside {
    position: relative;
    visibility: visible;
    min-width: 62.25px;
    width: 62.25px;
    display: flex;
    border-right: 1px solid rgb(165, 165, 165);
  }
  .claim__list {
    display: flex;
    flex-direction: column;
  }
  .claim__content {
    display: flex;
    align-items: flex-start;
    padding: 100px 0 150px 6.77vw;
    flex-grow: 1;
  }
  .claim__content.client-page {
    justify-content: center;
  }
  .claim__content-title {
    font-size: 100px;
    line-height: 100px;
  }
  .claim__content-title--client-page {
    font-size: 100px;
    line-height: 100px;
    margin: 75px 0;
  }
  .claim__content-subtitle {
    font-size: 28px;
    line-height: 30px;
    margin: 0;
  }
  .claim__content-links {
    display: none;
  }
  .claim__right-aside {
    visibility: visible;
    width: 62.25px;
    min-width: 62.25px;
    justify-content: center;
    display: flex;
    border-left: 1px solid rgb(165, 165, 165);
    align-items: flex-end;
  }
}
@media (min-width: 1024px) {
  .claim__left-aside {
    min-width: 6.77vw;
  }
  .claim__right-aside {
    min-width: 6.77vw;
  }
}
@media (min-width: 1500px) {
  .claim__content {
    display: flex;
    flex-direction: row;
    padding: 50px 50px 50px 6.77vw;
    max-height: 590px;
  }
  .claim__content-announcement {
    margin: 50px 0 100px 0;
  }
  .claim__content-banner-container {
    display: block;
    height: 100%;
    width: 100%;
    max-height: initial;
  }
  .claim .claim__content-banner {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: contain;
  }
}
.promo-video {
  margin-bottom: 80px;
}
.promo-video video {
  height: auto;
  margin-left: -6.77vw;
  margin-right: -6.77vw;
  width: calc(100% + 13.54vw);
}

@media (min-width: 766px) {
  .promo-video {
    display: flex;
    justify-content: center;
  }
  .promo-video video {
    margin: 0;
    max-width: 800px;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .promo-video {
    margin-bottom: 100px;
  }
}
/*----------------------------------------- CASE-STUDIES --------------------------------------------*/
.case-studies {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 100px;
  gap: 40px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.case-studies__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-studies__header {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
.case-studies__know-how-description {
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}
.case-studies__study-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  gap: 40px;
}
.case-studies__study-list-item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  height: auto;
  gap: 24px;
  justify-content: center;
}
.case-studies__external-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 60px;
  width: 180px;
  padding: 10px;
  border: 2px solid #df2686;
  border-radius: 5px;
  margin: 0 auto;
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px rgb(223, 38, 134);
  transition: all 0.2s ease-in-out;
}
.case-studies__external-link:hover {
  transform: translate(0px, 0px);
  box-shadow: none;
}
.case-studies__external-link--no-gap {
  gap: 0;
}
.case-studies__image {
  height: auto;
  max-height: 100%;
  width: fit-content;
  max-width: 120px;
  margin: 0 auto;
}
.case-studies__svg {
  height: 20px;
  width: auto;
}
.case-studies__text {
  font-size: 18px;
}

@media (min-width: 800px) {
  .case-studies__header {
    font-size: 46px;
    line-height: normal;
  }
  .case-studies__know-how-description, .case-studies__text {
    font-size: 19px;
  }
  .case-studies__study-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .case-studies__study-list-item {
    justify-content: flex-start;
  }
  .case-studies__local-link {
    font-size: 22px;
  }
}
@media (min-width: 1400px) {
  .case-studies__study-list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
  }
}
@media (min-width: 1600px) {
  .case-studies__header {
    font-size: 64px;
    line-height: 77px;
  }
  .case-studies__know-how-description, .case-studies__text {
    font-size: 20px;
  }
  .case-studies__local-link {
    font-size: 24px;
  }
}
/*----------------------------------------- NEW-COOPERATION --------------------------------------------*/
.new-cooperation {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 100px;
  gap: 80px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.new-cooperation p, .new-cooperation h1, .new-cooperation h2, .new-cooperation h3 {
  margin: 0;
}
.new-cooperation__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.new-cooperation__header {
  font-size: 28px;
  font-weight: 700;
}
.new-cooperation__text {
  font-size: 18px;
  line-height: 25px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.new-cooperation__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
.new-cooperation__image {
  max-width: 385px;
  width: 100%;
  height: auto;
}

@media (min-width: 800px) {
  .new-cooperation__header {
    font-size: 46px;
  }
  .new-cooperation__text {
    font-size: 19px;
  }
  .new-cooperation__image-container {
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .new-cooperation {
    flex-direction: row;
    gap: 40px;
  }
  .new-cooperation__description {
    flex: 1 1 600px;
    max-width: 800px;
  }
  .new-cooperation__image {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .new-cooperation__header {
    font-size: 64px;
  }
  .new-cooperation__text {
    font-size: 20px;
  }
}
/*----------------------------------------- COOPERATION-DETAIL --------------------------------------------*/
.cooperation-detail {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 150px 0 100px;
  gap: 80px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.cooperation-detail p, .cooperation-detail h1, .cooperation-detail h2, .cooperation-detail h3 {
  margin: 0;
}
.cooperation-detail__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.cooperation-detail__header {
  font-size: 28px;
  font-weight: 700;
}
.cooperation-detail__text {
  font-size: 18px;
  line-height: 25px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cooperation-detail__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
.cooperation-detail__image {
  max-width: 385px;
  width: 100%;
  height: auto;
}

@media (min-width: 800px) {
  .cooperation-detail__header {
    font-size: 46px;
  }
  .cooperation-detail__text {
    font-size: 19px;
  }
  .cooperation-detail__image-container {
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .cooperation-detail {
    flex-direction: row-reverse;
    gap: 40px;
  }
  .cooperation-detail__description {
    flex: 1 1 600px;
    max-width: 800px;
  }
  .cooperation-detail__image {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .cooperation-detail__header {
    font-size: 64px;
  }
  .cooperation-detail__text {
    font-size: 20px;
  }
}
/*----------------------------------------- PROJECT-NEGOTIATION --------------------------------------------*/
.project-negotiation {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 100px;
  gap: 80px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.project-negotiation p, .project-negotiation h1, .project-negotiation h2, .project-negotiation h3 {
  margin: 0;
}
.project-negotiation__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.project-negotiation__header {
  font-size: 28px;
  font-weight: 700;
}
.project-negotiation__text {
  font-size: 18px;
  line-height: 25px;
}
.project-negotiation__text--bold {
  font-weight: 700;
}
.project-negotiation__proclamation {
  font-size: 18px;
  font-weight: 700;
  color: #df2686;
}
.project-negotiation__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}
.project-negotiation__image {
  max-width: 385px;
  width: 100%;
  height: auto;
}

@media (min-width: 800px) {
  .project-negotiation__header {
    font-size: 46px;
  }
  .project-negotiation__text, .project-negotiation__proclamation {
    font-size: 19px;
  }
  .project-negotiation__image-container {
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .project-negotiation {
    flex-direction: row-reverse;
    gap: 40px;
  }
  .project-negotiation__description {
    flex: 1 1 600px;
    max-width: 800px;
  }
  .project-negotiation__image {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .project-negotiation__header {
    font-size: 64px;
  }
  .project-negotiation__text, .project-negotiation__proclamation {
    font-size: 20px;
  }
}
/*----------------------------------------- CONTACT-FORM --------------------------------------------*/
.cooperation-reference {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 100px;
  font-family: "Arboria", "sans-serif";
  font-weight: 300;
  font-style: normal;
}
.cooperation-reference__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cooperation-reference__header {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
.cooperation-reference__information {
  line-height: 25px;
  font-size: 18px;
}
.cooperation-reference__local-link-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cooperation-reference__local-link {
  display: flex;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #df2686;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.cooperation-reference__local-link-chevron {
  width: 50px;
  height: auto;
}

@media (min-width: 800px) {
  .cooperation-reference__header {
    font-size: 46px;
    line-height: normal;
  }
  .cooperation-reference__information {
    font-size: 21px;
  }
  .cooperation-reference__local-link {
    flex-direction: row;
    font-size: 24px;
    gap: 10px;
  }
  .cooperation-reference__local-link-chevron {
    width: 60px;
    height: auto;
  }
}
@media (min-width: 1600px) {
  .cooperation-reference__header {
    font-size: 64px;
    line-height: 77px;
  }
  .cooperation-reference__information {
    font-size: 20px;
  }
  .cooperation-reference__local-link {
    font-size: 28px;
  }
}
/*----------------------------------------- MODAL-WINDOW --------------------------------------------*/
.modal-window {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 2147483647;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modal-window__content-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  flex-direction: column;
  max-width: 600px;
  width: 80%;
  height: fit-content;
  background-color: #FFF;
  border-radius: 5px;
  border: none;
  font-family: "Arboria", "sans-serif";
  font-weight: 400;
  font-style: normal;
}
.modal-window__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: fit-content;
  margin: 40px 0;
}
.modal-window__header {
  color: #df2686;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}
.modal-window__text-content {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.modal-window__button-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  width: fit-content;
  background-color: #df2686;
  text-decoration: none;
  border-radius: 5px;
  border-color: #df2686;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px #c11e7f;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  margin: 10px 0;
  padding: 0 40px;
}
.modal-window__button-cta:hover {
  transform: translate(0);
  box-shadow: none;
}
.modal-window__button-close {
  border: none;
  background: transparent;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #df2686;
  text-decoration: underline #df2686;
  cursor: pointer;
}
.modal-window__button-close-x {
  background-color: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
}
.modal-window__button-close-x img {
  width: 30px;
  height: 30px;
}

/*----------------------------------------- GLOBAL --------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 100%;
  position: relative;
}

p, ul, ol, h1, h2, h3 {
  margin: 0;
}

/*----------------------------------------- MAIN + CONTAINER --------------------------------------------*/
.main {
  display: flex;
  flex-direction: column;
}
.main__content {
  display: flex;
  flex-direction: column;
  padding: 0 6.77vw;
  position: relative;
}
.main .bottom-navigation {
  margin-bottom: 100px;
}
.main .navigation-button,
.main .bottom-navigation .navigation-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: auto;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  transform: translate(-5px, -5px);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.main .navigation-button:hover,
.main .bottom-navigation .navigation-button:hover {
  transform: translate(0px, 0px);
  box-shadow: none;
}
.main .navigation-button span,
.main .bottom-navigation .navigation-button span {
  width: auto;
  height: auto;
  font-size: 16px;
  color: white;
  line-height: 16px;
  margin-left: 20px;
  font-family: "Arboria", "sans-serif";
  font-weight: 500;
  font-style: normal;
}
.main .navigation-button--top,
.main .bottom-navigation .navigation-button--top {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #414042;
  box-shadow: 5px 5px #1a1a1a;
}
.main .navigation-button--bottom-back,
.main .bottom-navigation .navigation-button--bottom-back {
  width: 200px;
  background-color: #df2686;
  box-shadow: 5px 5px #c11e7f;
}

@media (min-width: 767px) {
  .main__content {
    margin: 0 61.25px;
    padding: 0 6.77vw;
    border-left: 1px solid #a5a5a5;
    border-right: 1px solid #a5a5a5;
  }
}
@media (min-width: 1050px) {
  .main__content {
    margin: 0 calc(6.77vw - 1px);
    padding: 0 6.77vw;
  }
}
/*----------------------------------------- MAIN-HEADER --------------------------------------------*/
.main__header {
  display: block;
  text-align: center;
  width: 100%;
  color: #000;
  font-size: 28px;
  line-height: normal;
  height: auto;
  padding: 0 5%;
  margin: 50px 0 70px 0;
  font-family: "Arboria", "sans-serif";
  font-weight: 700;
  font-style: normal;
}

@media (min-width: 800px) {
  .main__header {
    padding: 0 10%;
    font-size: 46px;
    margin: 70px 0 100px 0;
  }
}
@media (min-width: 1600px) {
  .main__header {
    font-size: 64px;
    font-weight: 700;
  }
}
/*----------------------------------------- COOKIEBOT LOGO --------------------------------------------*/
#CybotCookiebotDialogPoweredbyLink img {
  min-height: 70px;
}

/*# sourceMappingURL=scss-styles.css.map */
