@charset "UTF-8";

/* ==========================================================================
   1. VARIABLES & CONFIG
   ========================================================================== */
:root {
  /* Fonty */
  --font-inter: 'Inter', sans-serif;
  --font-helvetica: 'helvetica-neue-lt-pro', sans-serif;
  --font-sui-generis: 'sui-generis', sans-serif;

  /* Główne kolory HEX */
  --color-white: #FFFFFF;
  --color-dark: #005697;
  --color-light: #53A4DB;

  /* Skala szarości i inne powtarzające się HEXy */
  --color-gray-light: #f2f2f2;
  --color-gray-text: #aaaaaa;
  --color-gray-dark: #333;
  --color-gray-darker: #2a2a2a;
  --color-gray-muted: #c6c6c6;
  --color-error: #b22d2d;

  /* Zmienne UI */
  --color-border: rgb(230, 230, 230);
  --color-bg-white: var(--color-white);
  --color-label: #999;
  --color-label-focus: #666;
  --color-checkbox-border: #8194a9;
  --color-checkbox-checked: #e25c01;
  --color-read-more: #1d214e;
}

/* ==========================================================================
   2. KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ==========================================================================
   3. RESET & BASE
   ========================================================================== */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box !important;
  scroll-behavior: smooth;
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-style: normal;
  letter-spacing: 3%;
  font-weight: 200;
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-dark);
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

*:focus {
  outline: none !important;
}

a {
  text-decoration: none;
}

main {
  min-width: 360px;
}

/* ==========================================================================
   4. UTILITIES & HELPERS
   ========================================================================== */
.wrap {
  margin: 0 auto;
  max-width: 1008px;
  width: 100%;
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .wrap {
    padding: 0 14px;
  }
}

/* Desktop Spacing Utilities */
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pt110 {
  padding-top: 110px;
}

.pt120 {
  padding-top: 120px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb110 {
  padding-bottom: 110px;
}

.pb120 {
  padding-bottom: 120px;
}

/* Mobile Spacing Utilities (Consolidated) */
@media (max-width: 991px) {
  .mt10 {
    margin-top: 6px;
  }

  .mt20 {
    margin-top: 13px;
  }

  .mt30 {
    margin-top: 20px;
  }

  .mt40 {
    margin-top: 26px;
  }

  .mt50 {
    margin-top: 33px;
  }

  .mt60 {
    margin-top: 40px;
  }

  .mt70 {
    margin-top: 46px;
  }

  .mt80 {
    margin-top: 53px;
  }

  .mt90 {
    margin-top: 60px;
  }

  .mt100 {
    margin-top: 66px;
  }

  .mt110 {
    margin-top: 73px;
  }

  .mt120 {
    margin-top: 80px;
  }

  .mb10 {
    margin-bottom: 6px;
  }

  .mb20 {
    margin-bottom: 13px;
  }

  .mb30 {
    margin-bottom: 20px;
  }

  .mb40 {
    margin-bottom: 26px;
  }

  .mb50 {
    margin-bottom: 33px;
  }

  .mb60 {
    margin-bottom: 40px;
  }

  .mb70 {
    margin-bottom: 46px;
  }

  .mb80 {
    margin-bottom: 53px;
  }

  .mb90 {
    margin-bottom: 60px;
  }

  .mb100 {
    margin-bottom: 66px;
  }

  .mb110 {
    margin-bottom: 73px;
  }

  .mb120 {
    margin-bottom: 80px;
  }

  .pt10 {
    padding-top: 6px;
  }

  .pt20 {
    padding-top: 13px;
  }

  .pt30 {
    padding-top: 20px;
  }

  .pt40 {
    padding-top: 26px;
  }

  .pt50 {
    padding-top: 33px;
  }

  .pt60 {
    padding-top: 40px;
  }

  .pt70 {
    padding-top: 46px;
  }

  .pt80 {
    padding-top: 53px;
  }

  .pt90 {
    padding-top: 60px;
  }

  .pt100 {
    padding-top: 66px;
  }

  .pt110 {
    padding-top: 73px;
  }

  .pt120 {
    padding-top: 80px;
  }

  .pb10 {
    padding-bottom: 6px;
  }

  .pb20 {
    padding-bottom: 13px;
  }

  .pb30 {
    padding-bottom: 20px;
  }

  .pb40 {
    padding-bottom: 26px;
  }

  .pb50 {
    padding-bottom: 33px;
  }

  .pb60 {
    padding-bottom: 40px;
  }

  .pb70 {
    padding-bottom: 46px;
  }

  .pb80 {
    padding-bottom: 53px;
  }

  .pb90 {
    padding-bottom: 60px;
  }

  .pb100 {
    padding-bottom: 66px;
  }

  .pb110 {
    padding-bottom: 73px;
  }

  .pb120 {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   5. TYPOGRAPHY & RICH TEXT
   ========================================================================== */
.text p {
  margin-bottom: 20px;
  /* letter-spacing: 1px; */
}

.text p b,
.text p strong {
  font-weight: 500;
}

.component-text p {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
  margin-bottom: 0px;
}

.component-text p:not(:last-child) {
  margin-bottom: 20px;
}

.component-text strong,
.component-text b {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
}

.component-text ul {
  margin: 0;
  padding: 0;
}

.component-text ul:not(:last-child) {
  margin-bottom: 20px;
}

.component-text li {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
  position: relative;
  padding-left: 20px;
  list-style: none;
  margin-bottom: 6px;
}

.component-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 16px;
  line-height: 19.36px;
}

.content-text {
  line-height: 1.6;
}

.content-text p {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
  margin-bottom: 0;
}

.content-text p:not(:last-child) {
  margin-bottom: 20px;
}

.content-text img {
  display: block;
  margin-bottom: 40px;
  vertical-align: text-bottom;
  width: 100%;
}

.content-text a {
  text-decoration: none;
  background: linear-gradient(180deg, var(--color-bg-white) 0.05%, var(--color-gold-2) 18.03%, var(--color-gold-3) 69.98%, var(--color-light) 99.95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-text a:hover {
  border-bottom: 1px solid var(--color-bg-white);
}

.content-text abbr {
  border-bottom: 1px dotted;
  cursor: help;
}

.content-text cite {
  font-style: italic;
}

.content-text ins {
  background-color: rgba(187, 164, 112, 0.2);
  text-decoration: none;
}

.content-text mark {
  background-color: rgba(187, 164, 112, 0.2);
}

.content-text small {
  font-size: 0.8em;
}

.content-text sub,
.content-text sup {
  font-size: 0.8em;
}

.content-text sub {
  vertical-align: sub;
}

.content-text sup {
  vertical-align: super;
}

.content-text dd {
  margin-left: 1.4em;
}

.content-text hr {
  background: var(--color-bg-white);
  border: none;
  display: block;
  height: 1px;
  margin-bottom: 1.4em;
  margin-top: 1.4em;
}

.content-text strong,
.content-text b {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  color: var(--color-bg-white);
}

.content-text ul,
.content-text ol {
  margin: 0;
  padding: 0;
}

.content-text ul:not(:last-child),
.content-text ol:not(:last-child) {
  margin-bottom: 20px;
}

.content-text li {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
  position: relative;
  padding-left: 20px;
  list-style: none;
  margin-bottom: 4px;
}

.content-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-bg-white);
  font-size: 16px;
  line-height: 19.36px;
}

.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  font-family: var(--font-sui-generis);
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--color-bg-white) 0.05%, var(--color-gold-2) 18.03%, var(--color-gold-3) 69.98%, var(--color-light) 99.95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-text h1:first-child,
.content-text h2:first-child,
.content-text h3:first-child,
.content-text h4:first-child,
.content-text h5:first-child,
.content-text h6:first-child {
  margin-top: 0;
}

.content-text h1 {
  font-size: 40px;
}

.content-text h2 {
  font-size: 35px;
}

.content-text h3 {
  font-size: 30px;
}

.content-text h4 {
  font-size: 25px;
}

.content-text h5 {
  font-size: 20px;
}

.content-text h6 {
  font-size: 18px;
}

.content-text blockquote {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 60px auto;
  padding-left: 40px;
}

.content-text blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 60px;
  font-family: "Georgia", serif;
  color: var(--color-bg-white);
}

.content-text blockquote p {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  max-width: 640px;
  margin-bottom: 8px;
}

.content-text blockquote em {
  display: block;
  align-self: flex-end;
  font-size: 12px;
  color: var(--color-gray-text);
  font-weight: 400;
  font-style: italic;
}

.content-text code,
.content-text kbd,
.content-text samp,
.content-text pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  background-color: var(--color-gray-light);
  color: var(--color-gray-dark);
  font-size: 0.9em;
  max-width: 100%;
  overflow: hidden;
  white-space: pre-wrap;
}

.content-text code,
.content-text kbd,
.content-text samp {
  border-radius: 3px;
  line-height: 1.77778;
  padding: 0.1em 0.4em 0.2em;
  vertical-align: baseline;
}

.content-text pre {
  overflow: auto;
  padding: 1em 1.2em;
}

.content-text pre code {
  background: none;
  font-size: 1em;
  line-height: 1em;
}

.content-text figure {
  margin-bottom: 2.8em;
  text-align: center;
}

.content-text figure:first-child {
  margin-top: 0;
}

.content-text figure:last-child {
  margin-bottom: 0;
}

.content-text figcaption {
  font-size: 0.8em;
  margin-top: 0.875em;
}

.content-text table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
}

.content-text thead tr {
  background: var(--color-bg-white);
  color: var(--color-white);
  height: 50px;
}

.content-text th,
.content-text td {
  padding: 0.7em;
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
}

.content-text tbody td {
  border-bottom: 1px solid rgba(187, 164, 112, 0.2);
}

.content-text tfoot tr {
  background: var(--color-bg-white);
  color: var(--color-white);
}


/* ==========================================================================
   6. UI ELEMENTS (Buttons, Forms, Global Headers)
   ========================================================================== */
.btn-normal {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  margin-right: 20px;
  background: var(--color-bg-white);
  transition: all .3s ease;
  border: 1px solid transparent;
}

.btn-normal:first-child {
  margin-left: 0px;
}

.btn-normal.b-border {
  background: transparent;
  border: 1px solid var(--color-bg-white);
}

.btn-normal.b-border:hover {
  border-color: var(--color-light)
}

.btn-normal:hover {
  background: var(--color-light);
}

.btn-normal:hover span {
  color: var(--color-bg-white);
}

.btn-normal span {
  display: inline-block;
  color: var(--color-light);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 40px;
  transition: color .3s ease;
}

.btn-normal.b-border span {
  color: var(--color-white);
}

.btn-normal.b-border:after {
  transition: opacity 0.3s;
  background: none;
  border: 1px solid var(--color-bg-white);
  opacity: 1;
}

.btn-normal.b-border:before {
  transition: opacity 0.3s;
  background: none;
  border: 1px solid var(--color-light);
  opacity: 0;
}

.btn-normal.b-border:hover:after {
  opacity: 0;
}

.btn-normal.b-border:hover:before {
  opacity: 1;
}

.btn-white {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.btn-white span {
  display: inline-block;
  color: var(--color-white);
  font-weight: 600;
  text-transform: uppercase;
}

.btn-white:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .skew-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.header {
  margin-bottom: 44px;
}

.header.h-dark .title {
  color: var(--color-dark);
}

.header.h-short .title {
  max-width: 400px;
}

.header.h-deco {
  position: relative;
  margin-bottom: 60px;
}

.header.h-deco:before,
.header.h-deco:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
}

.header.h-deco:before {
  width: 100vw;
  height: 66px;
  background: url("../img/header-deco-1.svg") no-repeat left;
  left: 0px;
  bottom: -10px;
}

.header.h-deco:after {
  width: 100vw;
  height: 66px;
  background: var(--color-light);
  left: -100vw;
  bottom: -10px;
}

.header .title {
  font-family: var(--font-sui-generis);
  color: var(--color-bg-white);
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

@media screen and (max-width: 960px) {

  .header.h-deco:after,
  .header.h-deco:before {
    display: none;
  }
}

.header-decoration {
  position: relative;
  background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-light) 100%);
  display: inline-flex;
  min-width: 51%;
  padding: 10px;
  padding-left: 0;
  padding-right: 40px;
  transform: skew(-45deg);
  margin-bottom: 60px;
}

.header-decoration.h-dark {
  background: var(--color-bg-white);
}

.header-decoration:before {
  content: '';
  position: absolute;
  background: var(--color-dark);
  width: 100vw;
  height: 100%;
  top: 0;
  left: -99vw;
}

.header-decoration.h-dark:before {
  background: var(--color-bg-white);
}

.header-decoration.h-dark .title {
  color: var(--color-dark);
}

.header-decoration .title {
  font-family: var(--font-sui-generis);
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  transform: skew(45deg);
}

/* Formularz kontaktowy */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 6px;
}

.contact-form .form-group .hidden {
  display: none;
}

.contact-form .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--color-bg-white);
  background-color: var(--color-dark);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23BBA470'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  width: 100%;
  height: 37px;
  padding: 0px 40px 0px 10px;
  font-size: 16px;
  font-weight: 200;
  font-family: var(--font-helvetica);
  color: var(--color-bg-white);
}

.contact-form .form-group select:focus {
  border-color: var(--color-bg-white);
  outline: none;
}

.contact-form .form-group select option {
  background-color: var(--color-dark);
  color: var(--color-bg-white);
  padding: 15px;
}

.contact-form .form-group select option:hover,
.contact-form .form-group select option:focus,
.contact-form .form-group select option:active,
.contact-form .form-group select option:checked {
  background-color: var(--color-bg-white);
  color: var(--color-dark);
}

.contact-form .form-group select[aria-invalid="true"] {
  border-color: red;
  outline: none;
}

.contact-form .form-group select[aria-invalid="true"]:focus {
  border-color: var(--color-bg-white);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.contact-form .form-group input {
  border: 1px solid var(--color-bg-white);
  background-color: var(--color-dark);
  max-width: 100%;
  min-width: 100%;
  height: 37px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 200;
  font-family: var(--font-helvetica);
  color: var(--color-white);
  box-sizing: border-box;
}

.contact-form .form-group textarea {
  border: 1px solid var(--color-bg-white);
  background-color: var(--color-dark);
  max-width: 100%;
  min-width: 100%;
  min-height: 125px;
  padding: 10px;
  font-size: 16px;
  font-weight: 200;
  font-family: var(--font-helvetica);
  color: var(--color-white);
  box-sizing: border-box;
}

.contact-form .form-group input:focus,
.contact-form .form-group label,
.contact-form .form-group textarea:focus {
  border-color: var(--color-bg-white);
  outline: none;
}

.contact-form .form-group label {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 16px;
  font-weight: 200;
  color: var(--color-bg-white);
  transition: 0.2s ease all;
  pointer-events: none;
}

.contact-form .form-group input:focus~label,
.contact-form .form-group input:not(:placeholder-shown)~label,
.contact-form .form-group textarea:focus~label,
.contact-form .form-group textarea:not(:placeholder-shown)~label,
.contact-form .form-group label.active,
.contact-form .form-group label.focused {
  top: -7px;
  left: 12px;
  font-size: 10px;
  line-height: 14px;
  color: var(--color-label-focus);
  background-color: var(--color-bg-white);
  border-radius: 10px;
  padding: 0 5px;
  position: absolute;
  transition: all 0.3s ease;
}

.contact-form .form-group label.active,
.contact-form .form-group label.focused {
  color: var(--color-white);
  background-color: var(--color-dark);
}

.contact-form .form-group textarea[aria-invalid="true"],
.contact-form .form-group input[aria-invalid="true"] {
  border-color: red;
  outline: none;
}

.contact-form .form-group textarea[aria-invalid="true"]:focus,
.contact-form .form-group input[aria-invalid="true"]:focus {
  border-color: var(--color-label);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.contact-form .form-group .wpcf7-not-valid-tip {
  display: none;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: transparent;
}

.contact-form .disclaimer p {
  font-size: 11px;
  line-height: 20px;
}

.contact-form .disclaimer p:not(:first-child) {
  margin-top: 10px;
}

.contact-form .disclaimer .read-more {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-read-more);
  cursor: pointer;
}

.contact-form .disclaimer .hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0px !important;
}

.contact-form .required {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-family: var(--font-helvetica);
  font-size: 12px;
  font-weight: 200;
  line-height: 14.52px;
}

.contact-form .required input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.contact-form .required .checkmark {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid var(--color-bg-white);
  display: inline-block;
  position: relative;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-form .required .checkmark.active,
.contact-form .required input:checked~.checkmark {
  background-color: var(--color-dark);
  border-color: var(--color-bg-white);
}

.contact-form .required .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.contact-form .required .checkmark.active::after,
.contact-form .required input:checked~.checkmark::after {
  display: block;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form .required .wpcf7-form-control-wrap {
  display: none;
}

.contact-form .wpcf7 .wpcf7-response-output {
  background: var(--color-error);
  border-radius: 4px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 12px;
}

.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  padding: 10px !important;
  border: none !important;
}

.contact-form .form-button {
  margin-top: 30px;
}

.contact-form .required-fields-note {
  font-size: 12px;
  font-weight: 400;
}

/* ==========================================================================
   7. GLOBAL LAYOUT (Header & Footer)
   ========================================================================== */
/* Header */
#site-header {
  min-width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: var(--color-dark);
}

#site-header .wrap {
  max-width: 1600px;
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#site-header .logo img {
  max-height: 44px;
}

#site-header .hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 10;
}

#site-header .hamburger span {
  display: block;
  background-color: var(--color-white);
  height: 3px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

#site-header .hamburger span:nth-child(1) {
  top: 0;
}

#site-header .hamburger span:nth-child(2) {
  top: 10px;
}

#site-header .hamburger span:nth-child(3) {
  top: 20px;
}

#site-header .hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

#site-header .hamburger.open span:nth-child(2) {
  opacity: 0;
}

#site-header .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

#site-header .main-nav {
  margin-left: auto;
  margin-right: 60px;
}

#site-header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  margin: 0;
  padding: 0;
}

#site-header .main-nav a {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  transition: color 0.5s;
}

#site-header .main-nav a:hover,
#site-header .main-nav .current-menu-item a,
#site-header .main-nav a.active {
  color: var(--color-light);
}

#site-header .lang-switcher {
  position: relative;
  display: inline-flex;
  background: var(--color-dark);
  border: 1px solid var(--color-bg-white);
  gap: 4px;
}

#site-header .lang-switcher .lang-option {
  height: 17px;
  width: calc(17px * 2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#site-header .lang-switcher .lang-option span {
  display: inline-block;
  color: var(--color-bg-white);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
}

#site-header .lang-switcher .slider {
  position: absolute;
  left: 0px;
  top: 0px;
  background: var(--color-bg-white);
  height: 17px;
  width: calc(17px * 2);
  transition: 0.3s;
}

#site-header .lang-switcher .lang-option.active span,
#site-header .lang-switcher .lang-option:hover span {
  color: var(--color-dark);
}

#site-header.scroll-header {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 50px;
  background: var(--color-white);
  box-shadow: 0px 0px 38px 0px rgba(27, 16, 7, 0.11);
}

#site-header.scroll-header .wrap {
  min-height: 50px;
}

#site-header.scroll-header .logo img {
  height: 36px;
  width: auto;
  display: block;
}

#site-header.scroll-header .hamburger {
  transform: scale(0.8);
}

#site-header.scroll-header .main-nav {
  top: 50px !important;
  margin-right: 40px;
}

#site-header.scroll-header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 26px;
}

#site-header.scroll-header .main-nav a {
  font-size: 13px;
}

@media screen and (max-width: 1000px) {
  #site-header {
    flex-wrap: wrap;
  }

  #site-header .wrap {
    min-height: 80px;
  }

  #site-header .logo img {
    max-height: 40px;
  }

  #site-header .hamburger {
    display: block;
    order: 3;
  }

  #site-header .main-nav {
    display: none;
    opacity: 0;
  }

  #site-header .main-nav.open {
    animation: fadeIn 0.3s forwards;
    z-index: 99999;
    position: absolute;
    width: 100%;
    height: calc(100vh - 40px);
    left: 0;
    top: 80px;
    display: block;
    background: rgba(43, 41, 37, 0.75);
  }

  #site-header .main-nav.open ul {
    display: block;
    margin-top: 20px;
  }

  #site-header .main-nav.open a {
    background-color: var(--color-light);
    text-align: center;
    margin: 4px 10px;
    padding: 16px 20px;
    display: block;
    transition: background-color 0.3s;
  }

  #site-header .main-nav.open a:before {
    display: none;
  }

  #site-header .main-nav.open a:hover,
  #site-header .main-nav.open .current-menu-item a,
  #site-header .main-nav.open a.active {
    color: var(--color-white);
    background-color: var(--color-dark);
  }

  #site-header .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 20px;
  }
}

/* Footer */
#site-footer {
  min-width: 360px;
  font-family: var(--font-inter);
}

#site-footer a {
  color: var(--color-white);
}

#site-footer .top {
  padding: 60px 0;
  padding-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px 40px;
}

#site-footer .company-logo {
  flex-shrink: 0;
}

#site-footer .company-logo img {
  display: block;
}

#site-footer .content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 100px;
}

#site-footer .content address {
  font-style: normal;
}

#site-footer .nav {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

#site-footer .nav li {
  margin-bottom: 10px;
}

#site-footer .nav a {
  font-weight: 700;
}

#site-footer .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 30px;
  padding-top: 40px;
  padding-bottom: 46px;
  border-top: 2px var(--color-bg-white) solid;
}

#site-footer .socialmedia {
  padding-top: 10px;
  padding-bottom: 20px;
}

#site-footer .socialmedia nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

#site-footer .socialmedia img {
  height: 24px;
  width: auto;
}

@media screen and (max-width: 676px) {
  #site-footer .socialmedia nav {
    justify-content: start;
  }
}

/* ==========================================================================
   8. COMPONENTS
   ========================================================================== */

/* Archive Post Component */
.archive-post-component {
  overflow-x: hidden;
  position: relative;
  font-family: var(--font-inter) !important;
  letter-spacing: normal;
}

.archive-post-component .wrap {
  max-width: 1224px;
}

.archive-post-component::before,
.archive-post-component::after {
  content: "";
  max-height: 265px;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}
.archive-post-component::before {
  top: 0;
}

.archive-post-component::after {
  bottom: 0;
}

.archive-post-component.gradient-bottom-blue::after {
  background: linear-gradient(0deg, var(--color-dark) 0%, rgba(155, 178, 212, 0.00) 100%);
}

.archive-post-component.gradient-top-blue::before {
  background: linear-gradient(180deg, var(--color-dark) 0%, rgba(155, 178, 212, 0.00) 100%);
}

.archive-post-component.gradient-bottom-white::after {
  background: linear-gradient(0deg, #FFF 0%, rgba(155, 178, 212, 0.00) 100%);
}

.archive-post-component.gradient-top-white::before {
  background: linear-gradient(180deg, #FFF 0%, rgba(155, 178, 212, 0.00) 100%);
}

.archive-post-component.disable-btn .alm-btn-wrap,
.archive-post-component.disable-btn .alm-load-more-btn {
  display: none !important;
}

.archive-post-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.archive-post-component .item {
  flex: 0 1 calc(25% - (20px * 3) / 3);
  background: var(--color-bg-white);
  cursor: pointer;
}

.archive-post-component.negative .item {
  border: 1px solid var(--color-bg-white);
  background: transparent;
}

.archive-post-component .item img {
  display: block;
  width: 100%;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.archive-post-component .item .image {
  width: 100%;
  aspect-ratio: 240/200;
  background: transparent;
  position: relative;
}

.archive-post-component .item .content {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.archive-post-component .item .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  color: var(--color-light);
}

.archive-post-component.negative .item .title {
  color: var(--color-bg-white);
}

.archive-post-component .item .text {
  font-size: 12px;
  font-weight: 200;
  line-height: 14.52px;
  color: var(--color-light);
}

.archive-post-component.negative .item .text {
  color: var(--color-white);
}

.archive-post-component .alm-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
}

.archive-post-component .alm-load-more-btn.more {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0px 50px;
  cursor: pointer;
  height: 40px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  background: none;
}

.archive-post-component .alm-load-more-btn.more span {
  display: inline-block;
  color: var(--color-white);
  font-weight: 600;
  text-transform: uppercase;
}

.archive-post-component .alm-load-more-btn.more:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(-45deg);
  border: 1px solid var(--color-bg-white);
}

.archive-post-component .alm-load-more-btn.more:hover {
  opacity: 0.7;
}

.archive-post-component .alm-load-more-btn.more[disabled] {
  display: none;
}

@media (max-width: 1024px) {
  .archive-post-component .item {
    flex: 0 1 calc(33.333% - 30px);
  }
}

@media (max-width: 768px) {
  .archive-post-component .item {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .archive-post-component .item {
    flex: 1 1 100%;
  }
}

/* Alternating Gallery Component */
.alternating-gallery-component {
  overflow-x: hidden;
}

.alternating-gallery-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 160px;
}

.alternating-gallery-component .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.alternating-gallery-component .item:nth-child(even) {
  direction: rtl;
}

.alternating-gallery-component .item:nth-child(even) .content,
.alternating-gallery-component .item:nth-child(even) .image,
.alternating-gallery-component .item:nth-child(even) .images {
  direction: ltr;
}

.alternating-gallery-component .item:nth-child(even) .content .center {
  margin-left: auto;
  margin-right: 0;
}

.alternating-gallery-component .content {
  grid-row: 1 / 3;
  grid-column: 1;
  display: flex;
  align-items: center;
}

.alternating-gallery-component .content .center {
  max-width: 410px;
}

.alternating-gallery-component .content .button {
  margin-top: 40px;
}

.alternating-gallery-component .item.wide-gallery .content {
  grid-area: 1 / 1;
}

.alternating-gallery-component .image {
  display: flex;
  align-items: end;
  grid-area: 1 / 2;
}

.alternating-gallery-component .images {
  grid-area: 2 / 2;
}

.alternating-gallery-component .images .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.alternating-gallery-component .images img {
  width: calc((100% - 24px) / 2);
  display: block;
}

.alternating-gallery-component .item.wide-gallery .images {
  grid-row: 2;
  grid-column: 1 / 3;
}

.alternating-gallery-component .item.wide-gallery .images img {
  width: calc((100% - 72px) / 4);
}

@media screen and (max-width: 1100px) {
  .alternating-gallery-component .items {
    gap: 100px;
  }
}

@media screen and (max-width: 860px) {
  .alternating-gallery-component .items {
    gap: 80px;
  }

  .alternating-gallery-component .item {
    grid-template-columns: 1fr;
  }

  .alternating-gallery-component .content {
    grid-row: auto;
    grid-column: auto;
    order: 3;
  }

  .alternating-gallery-component .content .center {
    max-width: 100%;
  }

  .alternating-gallery-component .image {
    grid-area: auto;
  }

  .alternating-gallery-component .images {
    grid-area: auto;
  }

  .alternating-gallery-component .item.wide-gallery .content {
    grid-area: auto;
  }

  .alternating-gallery-component .item.wide-gallery .images {
    grid-row: auto;
    grid-column: auto;
  }

  .alternating-gallery-component .item.wide-gallery .images img {
    width: calc(50% - 12px);
  }
}

/* Alternating Text Component */
.alternating-text-component {
  overflow: hidden;
}

.alternating-text-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 130px;
}

.alternating-text-component .item {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.alternating-text-component .item:nth-child(odd) {
  flex-direction: row-reverse;
}

.alternating-text-component .image {
  max-width: 355px;
}

.alternating-text-component .image img {
  display: block;
}

.alternating-text-component.item-add-logo .item:first-child {
  position: relative;
}

.alternating-text-component.item-add-logo .item:first-child:before {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 676px;
  background: url("../img/text-alternatung-deco-3.svg") no-repeat left;
  left: -180px;
  top: calc(50% - (676px / 2));
}

.alternating-text-component .item:nth-child(odd) .image {
  position: relative;
}

.alternating-text-component .content {
  position: relative;
  z-index: 3;
  max-width: 460px;
}

.alternating-text-component .content .button {
  margin-top: 50px;
}

@media screen and (min-width: 820px) and (max-width: 960px) {
  .alternating-text-component .image {
    max-width: 260px;
  }

  .alternating-text-component.item-add-logo .item:first-child {
    position: relative;
  }

  .alternating-text-component.item-add-logo .item:first-child:before {
    display: none;
  }
}

@media screen and (max-width: 819px) {
  .alternating-text-component .item {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  .alternating-text-component .item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .alternating-text-component .content {
    max-width: 100%;
  }

  .alternating-text-component.item-add-logo .item:first-child:before {
    display: none;
  }
}

@media screen and (max-width: 486px) {

  .alternating-text-component .image,
  .alternating-text-component .image img {
    width: 100%;
    max-width: 100%;
  }
}

/* Alternating Text Square Component */
.alternating-text-square-component {
  overflow-x: hidden;
  background: url("../img/text-alternatung-deco-3.svg") no-repeat left/auto min(80%, 1200px);
}

.alternating-text-square-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 130px;
}

.alternating-text-square-component .item {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.alternating-text-square-component .item:nth-child(odd) {
  flex-direction: row-reverse;
}

.alternating-text-square-component .image {
  max-width: 355px;
}

.alternating-text-square-component .image img {
  display: block;
}

.alternating-text-square-component .item:nth-child(3) .image {
  position: relative;
}

.alternating-text-square-component .content {
  position: relative;
  z-index: 3;
  max-width: 460px;
}

.alternating-text-square-component .content .button {
  margin-top: 50px;
}

@media screen and (min-width: 820px) and (max-width: 960px) {
  .alternating-text-square-component .image {
    max-width: 260px;
  }
}

@media screen and (max-width: 819px) {
  .alternating-text-square-component {
    background: none;
  }

  .alternating-text-square-component .item {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  .alternating-text-square-component .item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .alternating-text-square-component .content {
    max-width: 100%;
  }
}

@media screen and (max-width: 486px) {

  .alternating-text-square-component .image,
  .alternating-text-square-component .image img {
    width: 100%;
    max-width: 100%;
  }
}

/* Banner 404 Component */
.banner-404-component {
  position: relative;
  height: 100vh;
  min-height: 700px;
  min-width: 360px;
  overflow: hidden;
}

.banner-404-component::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-dark) 0%, transparent 0px, transparent calc(100% - 200px), var(--color-dark) 100%);
  z-index: 4;
}

.banner-404-component.b-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(-90deg, var(--color-dark) 33.5%, rgba(43, 41, 37, 0) 100%);
}

.banner-404-component .background-video,
.banner-404-component .background-image {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-404-component .wrap-slogan {
  position: relative;
  max-width: 2600px;
  z-index: 3;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}

.banner-404-component .wrap-slogan .title {
  font-family: var(--font-sui-generis);
  font-size: 190px;
  font-weight: 400;
  line-height: 1;
  margin-left: calc(-0.063em - 20px);
  transform: translateY(0.15em);
  text-transform: uppercase;
}

.banner-404-component .wrap-slogan .s-mark {
  position: relative;
}

.banner-404-component .wrap-slogan .s-mark:after {
  content: '';
  position: absolute;
  bottom: calc(clamp(16px, 10vw, 190px) * 0.68);
  right: calc(clamp(16px, 10vw, 190px) * -1.53);
  background: url("../img/hero-banner-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(clamp(16px, 10vw, 190px) * 3);
  height: calc(clamp(16px, 10vw, 190px) * 3.22);
}

.banner-404-component .wrap-content {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 1400px;
  transform: translateX(-50%);
  z-index: 10;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.banner-404-component .wrap-content .content {
  max-width: 480px;
}

.banner-404-component .wrap-content h1,
.banner-404-component .wrap-content h2,
.banner-404-component .wrap-content h3,
.banner-404-component .wrap-content h4,
.banner-404-component .wrap-content h5,
.banner-404-component .wrap-content h6 {
  font-family: var(--font-sui-generis);
  font-size: 40px;
  font-weight: 400;
  line-height: 120px;
}

.banner-404-component .wrap-content a {
  color: var(--color-white);
}

.banner-404-component .wrap-content .custom-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-404-component .wrap-content .custom-links a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  text-transform: uppercase;
  color: var(--color-white);
  transform: translateX(20px);
}

.banner-404-component .wrap-content .custom-links a:before {
  content: '';
  display: block;
  height: 50px;
  width: 3px;
  transform: rotate(45deg);
  background: linear-gradient(180deg, var(--color-bg-white) 0.05%, var(--color-gold-2) 18.03%, var(--color-gold-3) 69.98%, var(--color-light) 99.95%);
}

.banner-404-component .wrap-content .button {
  margin-top: 60px;
}

.banner-404-component .person-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  margin-top: 30px;
}

.banner-404-component .person-card .person-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
}

.banner-404-component .person-card .person-position,
.banner-404-component .person-card .person-email {
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
}

.banner-404-component .person-card .person-photo,
.banner-404-component .person-card .photo-placeholder {
  padding-top: 4px;
  width: 105px;
  height: 105px;
  display: block;
  transform: skew(45deg) translateX(52px);
  position: relative;
  z-index: 1;
}

.banner-404-component .person-card .person-image {
  position: relative;
  background: var(--color-dark);
  transform: skew(-45deg);
  width: 100px;
}

.banner-404-component .person-card .person-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 55px;
  width: 100vw;
  height: 100%;
  background: var(--color-dark);
}

.banner-404-component .person-card:nth-of-type(even) .person-image {
  background: var(--color-dark) !important;
}

.banner-404-component .person-card:nth-of-type(even) .person-image:after {
  background: var(--color-light) !important;
}

@media (max-width: 1366px) {
  .banner-404-component .wrap-slogan .title {
    font-size: clamp(120px, 15vw, 190px);
  }
}

@media (max-width: 1200px) {
  .banner-404-component .person-card .person-image {
    width: 150px;
  }
}

@media (max-width: 1024px) {
  .banner-404-component {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .banner-404-component.b-photo::after {
    background: linear-gradient(90deg, rgba(43, 41, 37, 0.8) 33.5%, rgba(43, 41, 37, 0.3) 100%);
  }

  .banner-404-component .wrap-content {
    position: relative;
    min-height: auto;
    left: 0;
    transform: translateX(0%);
    justify-content: start;
  }

  .banner-404-component .wrap-content .content {
    max-width: 768px;
  }

  .banner-404-component .wrap-slogan {
    min-height: auto;
  }

  .banner-404-component .wrap-slogan .title {
    font-size: clamp(60px, 10vw, 190px);
    font-weight: 400;
    line-height: 1;
    margin-left: -0.063em;
    transform: translateY(0em);
  }
}

@media (max-width: 486px) {
  .banner-404-component {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .banner-404-component .custom-links {
    margin-top: 40px !important;
    gap: 14px !important;
  }

  .banner-404-component .button {
    margin-top: 40px !important;
  }

  .banner-404-component .person-card {
    margin-top: 20px;
  }

  .banner-404-component .person-card .person-photo,
  .banner-404-component .person-card .photo-placeholder {
    padding-top: 2px;
    width: 48px;
    height: 48px;
    transform: skew(45deg) translateX(20px);
  }

  .banner-404-component .person-card .person-image {
    transform: skew(-45deg);
    width: 60px;
  }

  .banner-404-component .person-card .person-image:after {
    background: var(--color-bg-white);
  }
}

/* Contact Component */
.contact-componenet {
  overflow-x: hidden;
  background: url("../img/text-alternatung-deco-3.svg") no-repeat calc(100% - 10vw)/auto min(100%, 1200px);
}

.contact-componenet .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.contact-componenet .header {
  margin-bottom: 0;
  width: 100%;
}

.contact-componenet .header .header-decoration {
  margin-bottom: 0;
}

.contact-componenet .contact {
  width: 410px;
}

.contact-componenet .socialmedia {
  width: calc(100% - 410px - 60px);
  display: flex;
  justify-content: flex-end;
}

.contact-componenet .socialmedia .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-componenet .socialmedia .content .header .title {
  text-align: center;
}

.contact-componenet .socialmedia .nav-socialmedia {
  display: flex;
  gap: 40px;
}

.contact-componenet .socialmedia .nav-socialmedia a img {
  height: 40px;
  display: block;
  width: auto;
  transition: filter 0.3s;
}

.contact-componenet .socialmedia .nav-socialmedia a:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 890px) {
  .contact-componenet .wrap {
    flex-direction: column;
  }

  .contact-componenet .contact,
  .contact-componenet .socialmedia {
    width: 100%;
  }

  .contact-componenet .socialmedia {
    justify-content: center;
  }
}

/* Countdown Component */
.countdown-component {
  min-width: 360px;
  position: relative;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  overflow: hidden;
}

.countdown-component::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-dark) 450px, transparent 580px, transparent calc(100% - 80px), var(--color-dark) 100%);
  z-index: 2;
}

.countdown-component::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-dark) 0%, transparent 0px, transparent calc(100% - 1000px), var(--color-dark) 100%);
  z-index: 2;
}

.countdown-component.hide-countdown .timer {
  display: none;
}

.countdown-component.hide-countdown:before {
  background: linear-gradient(180deg, var(--color-dark) 80px, transparent 380px, transparent calc(100% - 80px), var(--color-dark) 100%) !important;
}

.countdown-component.hide-countdown .banner {
  min-height: auto !important;
}

.countdown-component .wrap {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 60px;
}

.countdown-component .timer .header .title {
  text-align: center;
}

.countdown-component .timer .countdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  transform: skew(-45deg);
  background: var(--color-bg-white);
  height: 170px;
  width: calc(100% - 100px);
  padding: 10px 0 0 100px;
  color: var(--color-dark);
}

.countdown-component .timer .countdown:before {
  background: linear-gradient(90deg, var(--color-bg-white) 0%, var(--color-light) 100%);
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 15%;
  transform: skew(45deg);
  top: 0;
}

.countdown-component .timer .countdown:after {
  background: linear-gradient(-90deg, var(--color-bg-white) 0%, var(--color-light) 100%);
  background-repeat: no-repeat;
  background-position: right center;
  content: '';
  width: 50vw;
  height: 28px;
  position: absolute;
  right: 50%;
  transform: skew(0);
  bottom: -48px;
}

.countdown-component .timer .countdown-item {
  text-align: center;
  transform: skew(45deg);
}

.countdown-component .timer .countdown-number {
  display: block;
  width: 174px;
  font-family: var(--font-sui-generis);
  font-size: 100px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 20px;
}

.countdown-component .timer .countdown-label {
  font-size: 16px;
  font-weight: 200;
  line-height: 20px;
  font-family: var(--font-sui-generis);
}

.countdown-component .timer .countdown-separator {
  font-family: var(--font-sui-generis);
  font-size: 100px;
  font-weight: 400;
  line-height: 60px;
  transform: skew(45deg) translateY(-30px);
}

.countdown-component .banner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  min-height: 640px;
  width: 100%;
}

.countdown-component .banner .content {
  max-width: 460px;
  padding: 120px 0 0;
}

.countdown-component .banner .content .button {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}

.countdown-component .banner .content .button a {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 991px) {
  .countdown-component .timer .countdown {
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: skew(0deg);
    height: 120px;
    width: calc(100%);
    padding: 10px 0 0;
  }

  .countdown-component .timer .countdown:after,
  .countdown-component .timer .countdown:before {
    display: none;
  }

  .countdown-component .timer .countdown-item {
    transform: skew(0deg);
  }

  .countdown-component .timer .countdown-number {
    width: 100px;
    font-size: 80px;
    line-height: 50px;
    margin-bottom: 16px;
  }

  .countdown-component .timer .countdown-label {
    font-size: 14px;
    line-height: 18px;
  }

  .countdown-component .timer .countdown-separator {
    font-size: 80px;
    line-height: 50px;
    transform: skew(0deg) translateY(-25px);
  }
}

@media screen and (max-width: 819px) {
  .countdown-component .banner {
    min-height: 440px;
  }

  .countdown-component .banner .content {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .countdown-component .timer .countdown-number {
    width: 80px;
    font-size: 60px;
    line-height: 40px;
    margin-bottom: 14px;
  }

  .countdown-component .timer .countdown-label {
    font-size: 13px;
    line-height: 16px;
  }

  .countdown-component .timer .countdown-separator {
    font-size: 60px;
    line-height: 40px;
    transform: skew(0deg) translateY(-20px);
  }
}

@media screen and (max-width: 479px) {
  .countdown-component .timer .countdown-number {
    width: 60px;
    font-size: 32px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .countdown-component .timer .countdown-label {
    font-size: 11px;
    line-height: 14px;
  }

  .countdown-component .timer .countdown-separator {
    font-size: 40px;
    line-height: 30px;
    transform: skew(0deg) translateY(-15px);
  }

  .countdown-component {
    background-position: center;
    background-size: cover;
  }
}

/* Download Component */
.download-component {
  background-color: var(--color-bg-white);
}

.download-component .wrap {
  position: relative;
  max-width: 1224px;
}

.download-component .type-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  color: var(--color-dark);
}

.download-component .download-documents .items,
.download-component .download-branding .items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 40px;
}

.download-component .download-documents .item,
.download-component .download-branding .item {
  border: 1px var(--color-dark) solid;
  padding: 10px 14px;
  flex: 0 1 calc(25% - (20px * 3) / 3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: rgba(187, 164, 112, 0) url("../img/download-icon.svg") no-repeat right 14px center;
  transition: background 0.3s;
  padding-right: 64px;
}

/* .download-component .download-documents .item:hover, .download-component .download-branding .item:hover { background: rgba(187, 164, 112, 0.2) url("../img/download-icon.svg") no-repeat right 14px center; } */
.download-component .download-documents .file,
.download-component .download-documents .title,
.download-component .download-branding .file,
.download-component .download-branding .title {
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
  color: var(--color-dark);
}

.download-component .download-documents .file,
.download-component .download-branding .file {
  color: var(--color-light);
}

.download-component .download-videos .items,
.download-component .download-photos .items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 40px;
}

.download-component .download-videos .item,
.download-component .download-photos .item {
  position: relative;
  cursor: pointer;
}

.download-component .download-videos .item:after,
.download-component .download-photos .item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  opacity: .9;
  transition: opacity 0.3s;
}

.download-component .download-videos .item:hover:after,
.download-component .download-photos .item:hover:after {
  opacity: 0;
}

.download-component .download-videos img,
.download-component .download-photos img {
  display: block;
  aspect-ratio: 1/1;
  max-width: 178px;
}

.download-component .download-videos .overlay,
.download-component .download-photos .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 1;
}

.download-component .download-videos .title,
.download-component .download-photos .title {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: var(--color-white);
}

@media (max-width: 768px) {

  .download-component .download-documents .item,
  .download-component .download-branding .item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 560px) {

  .download-component .download-documents .item,
  .download-component .download-branding .item {
    width: 100%;
  }

  .download-component .download-videos .items,
  .download-component .download-photos .items {
    gap: 10px;
  }

  .download-component .download-videos .item,
  .download-component .download-photos .item {
    width: calc(50% - 5px);
  }

  .download-component .download-videos img,
  .download-component .download-photos img {
    width: 100%;
    height: auto;
  }
}

/* Footer Banner Component */
.footer-banner-component {
  min-width: 360px;
  position: relative;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-banner-component::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-dark) 0%, transparent 200px, transparent calc(100% - 200px), var(--color-dark) 100%);
  z-index: 2;
}

.footer-banner-component.banner-homepage::before {
  background: linear-gradient(180deg, var(--color-bg-white) 0%, transparent 200px, transparent calc(100% - 200px), var(--color-dark) 100%);
}

.footer-banner-component .wrap {
  display: flex;
  align-items: center;
  min-height: 640px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-banner-component .content {
  position: relative;
  z-index: 3;
  max-width: 460px;
}

.footer-banner-component .content .button {
  margin-top: 50px;
}

/* Gallery Component */
.gallery-component .gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  max-width: 2000px;
  margin: 0 auto;
}

.gallery-component .item {
  width: 100%;
  height: 100%;
}

.gallery-component .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-component .item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-component .item:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.gallery-component .item:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}

.gallery-component .item:nth-child(4) {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}

.gallery-component .item:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.gallery-component .item:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 4 / 5;
}

.gallery-component .item:nth-child(7) {
  grid-column: 4 / 7;
  grid-row: 3 / 5;
}

@media screen and (max-width: 992px) {
  .gallery-component .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .gallery-component .item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .gallery-component .item:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
  }

  .gallery-component .item:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
  }

  .gallery-component .item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
  }

  .gallery-component .item:nth-child(5) {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
  }

  .gallery-component .item:nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 4 / 5;
  }

  .gallery-component .item:nth-child(7) {
    grid-column: 1 / 5;
    grid-row: 5 / 7;
  }
}

@media screen and (max-width: 576px) {
  .gallery-component .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, auto);
  }

  .gallery-component .item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Hero Banner Component */
.hero-banner-component {
  position: relative;
  height: 100vh;
  min-height: 500px;
  min-width: 360px;
  overflow: hidden;
}

.hero-banner-component::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.hero-banner-component.blue::before {
  background: linear-gradient(180deg, var(--color-dark) 0%, transparent 0px, transparent calc(100% - 200px), var(--color-dark) 100%);
}

.hero-banner-component.white::before {
  background: linear-gradient(180deg, var(--color-bg-white) 0%, transparent 0px, transparent calc(100% - 200px), var(--color-bg-white) 100%);
}



.hero-banner-component.b-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(-90deg, var(--color-dark) 33.5%, rgba(43, 41, 37, 0) 100%);
}

.hero-banner-component .background-video,
.hero-banner-component .background-image {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-component .wrap-slogan {
  position: relative;
  max-width: 2600px;
  z-index: 3;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-banner-component .wrap-slogan .title {
  font-family: var(--font-sui-generis);
  font-size: 190px;
  font-weight: 300;
  line-height: 1;
  margin-left: calc(-0.063em - 20px);
  transform: translateY(0.15em);
  text-transform: uppercase;
}

.hero-banner-component .wrap-slogan .title b,
.hero-banner-component .wrap-slogan .title strong {
  font-weight: 700;
}

.hero-banner-component .wrap-slogan .s-mark {
  position: relative;
}

.hero-banner-component .wrap-slogan .s-mark:after {
  content: '';
  position: absolute;
  bottom: calc(clamp(16px, 10vw, 190px) * 0.68);
  right: calc(clamp(16px, 10vw, 190px) * -1.53);
  background: url("../img/hero-banner-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(clamp(16px, 10vw, 190px) * 3);
  height: calc(clamp(16px, 10vw, 190px) * 3.22);
}

.hero-banner-component .wrap-content {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 1400px;
  transform: translateX(-50%);
  z-index: 10;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.hero-banner-component .wrap-content .content {
  max-width: 480px;
}

.hero-banner-component .wrap-content h1,
.hero-banner-component .wrap-content h2,
.hero-banner-component .wrap-content h3,
.hero-banner-component .wrap-content h4,
.hero-banner-component .wrap-content h5,
.hero-banner-component .wrap-content h6 {
  font-family: var(--font-sui-generis);
  font-size: 40px;
  font-weight: 400;
  line-height: 120px;
}

.hero-banner-component .wrap-content a {
  color: var(--color-white);
}

.hero-banner-component .wrap-content .custom-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-banner-component .wrap-content .custom-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding-left: 22px;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  text-transform: uppercase;
  color: var(--color-white);
  transform: translateX(20px);
}

.hero-banner-component .wrap-content .custom-links a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  height: 40px;
  width: 3px;
  transform: skew(-45deg);
  background: var(--color-light);
}

.hero-banner-component .wrap-content .custom-links a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  height: 40px;
  width: 300px;
  transform: skew(-45deg);
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-dark) 80%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-banner-component .wrap-content .custom-links a:hover:after {
  opacity: 1;
}

.hero-banner-component .wrap-content .button {
  margin-top: 60px;
}

.hero-banner-component .person-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  margin-top: 30px;
}

.hero-banner-component .person-card .person-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
}

.hero-banner-component .person-card .person-position,
.hero-banner-component .person-card .person-email {
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
}

.hero-banner-component .person-card .person-photo,
.hero-banner-component .person-card .photo-placeholder {
  padding-top: 4px;
  width: 105px;
  height: 105px;
  display: block;
  transform: skew(45deg) translateX(52px);
  position: relative;
  z-index: 1;
}

.hero-banner-component .person-card .person-image {
  position: relative;
  background: var(--color-bg-white);
  transform: skew(-45deg);
  width: 150px;
}

.hero-banner-component .person-card .person-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 55px;
  width: 100vw;
  height: 100%;
  background: var(--color-bg-white);
}

.hero-banner-component .person-card:nth-of-type(even) .person-image {
  background: var(--color-light) !important;
}

.hero-banner-component .person-card:nth-of-type(even) .person-image:after {
  background: var(--color-light) !important;
}

@media (min-width: 1400px) {
  .hero-banner-component .wrap-slogan .title {
    font-size: clamp(120px, 15vw, 190px);
  }
}

@media (max-width: 1366px) {
  .hero-banner-component .wrap-slogan .title {
    font-size: clamp(120px, 15vw, 140px);
  }
}

@media (max-width: 1300px) {
  .hero-banner-component .person-card .person-image {
    width: 150px;
  }
}

@media (max-width: 1024px) {
  .hero-banner-component {
    height: auto;
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .hero-banner-component.b-photo::after {
    background: linear-gradient(90deg, rgba(43, 41, 37, 0.8) 33.5%, rgba(43, 41, 37, 0.3) 100%);
  }

  .hero-banner-component .wrap-content {
    position: relative;
    min-height: auto;
    left: 0;
    transform: translateX(0%);
    justify-content: start;
  }

  .hero-banner-component .wrap-content .content {
    max-width: 768px;
  }

  .hero-banner-component .wrap-slogan {
    min-height: auto;
  }

  .hero-banner-component .wrap-slogan .title {
    font-size: clamp(60px, 10vw, 190px);
    font-weight: 400;
    line-height: 1;
    margin-left: -0.063em;
    transform: translateY(0em);
  }
}

@media (max-width: 486px) {
  .hero-banner-component {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-banner-component .custom-links,
  .hero-banner-component .button {
    margin-top: 40px !important;
  }

  .hero-banner-component .custom-links {
    gap: 14px !important;
  }

  .hero-banner-component .person-card {
    margin-top: 20px;
  }

  .hero-banner-component .person-card .person-photo,
  .hero-banner-component .person-card .photo-placeholder {
    padding-top: 2px;
    width: 48px;
    height: 48px;
    transform: skew(45deg) translateX(20px);
  }

  .hero-banner-component .person-card .person-image {
    transform: skew(-45deg);
    width: 60px;
  }

  .hero-banner-component .person-card .person-image:after {
    background: var(--color-bg-white);
  }
}

@media (max-height: 700px) {
  .hero-banner-component .wrap-slogan .title {
    font-size: clamp(60px, 10vw, 140px);
  }

  .hero-banner-component .content h1 {
    line-height: 80px;
  }

  .hero-banner-component .custom-links {
    margin-top: 40px !important;
    gap: 14px !important;
  }
}

/* Interactive Gallery Component */
.interactive-gallery-component {
  min-width: 360px;
}
.interactive-gallery-component .wrap {
  max-width: 1224px;
}

.interactive-gallery-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: space-between;
  /* background: linear-gradient(180deg, var(--color-bg-white) 0.05%, var(--color-bg-white) 18.03%, var(--color-bg-white) 69.98%, var(--color-light) 99.95%); */
}

.interactive-gallery-component .item {
  width: calc((100%) / 3);
  max-width: 323px;
  position: relative;
  cursor: pointer;
}

.interactive-gallery-component .item .content {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(30px);
  padding: 14px;
}

.interactive-gallery-component .item .content .center {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.interactive-gallery-component .item .content .content-title,
.interactive-gallery-component .item .content .content-text {
  font-family: var(--font-sui-generis);
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  text-align: center;
  max-width: 220px;
}

.interactive-gallery-component .item .content .content-button {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s;
  width: 100%;
}

.interactive-gallery-component .item .image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.interactive-gallery-component .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interactive-gallery-component .item .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-light) 80%);
  transition: opacity 0.7s;
}

.interactive-gallery-component .item .background img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.interactive-gallery-component .item:hover .background {
  opacity: 1;
}

.interactive-gallery-component .item:hover .content-button {
  opacity: 1;
  transform: translateY(0px);
}

@media (max-width: 768px) {
  .interactive-gallery-component .item {
    width: calc((100%) / 2);
  }
}

@media (max-width: 486px) {
  .interactive-gallery-component .item {
    width: 100%;
  }
}

/* Partners Component */
.partners-component {
  overflow: hidden;
  background-color: var(--color-bg-white);
}

.partners-component.gradient-top {
  background: linear-gradient(180deg, var(--color-dark) 0%, #fff 200px);
}

.partners-component.gradient-bottom {
  background: linear-gradient(180deg, #fff calc(100% - 200px), var(--color-dark) 100%);
}

.partners-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 90px;
  padding: 25px;
}

.partners-component .item {
  width: calc((100% - (90px * 3)) / 4);
}

.partners-component .item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .partners-component .items {
    gap: 40px 60px;
  }

  .partners-component .item {
    width: calc((100% - (60px * 2)) / 3);
  }
}

@media (max-width: 768px) {
  .partners-component .items {
    gap: 30px 40px;
  }

  .partners-component .item {
    width: calc((100% - 40px) / 2);
  }
}

@media (max-width: 486px) {
  .partners-component .items {
    gap: 20px;
    padding: 0 30px;
  }

  .partners-component .item {
    width: 100%;
  }
}

/* Single Page Component */
.single-page-componene {
  position: relative;
  background: url("../img/text-alternatung-deco-3.svg") no-repeat calc(50% - 500px)/auto min(40vw, 800px);
}

.single-page-componene .featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}

.single-page-componene .featured-image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.single-page-componene .featured-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--color-dark) 0%, rgba(43, 41, 37, 0.7) 45%, rgba(43, 41, 37, 0) 100%);
  z-index: 4;
}

.single-page-componene .wrap {
  padding-top: 220px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.single-page-componene .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.single-page-componene .info .category a {
  color: var(--color-white);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.single-page-componene .info .category,
.single-page-componene .info .separator,
.single-page-componene .info .publication {
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
}

.single-page-componene .header {
  margin-bottom: 60px;
}

.single-page-componene .header * {
  font-family: var(--font-sui-generis);
  font-size: 40px;
  font-weight: 400;
  line-height: 53px;
}

/* Team Component */
.team-component .items {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  background: linear-gradient(180deg, var(--color-bg-white) 40%, var(--color-bg-white) 30%, var(--color-light) 100%);
  background-size: 100% 421.55px
}

.team-component .item {
  width: calc((100%) / 3);
  position: relative;
  background: linear-gradient(180deg, var(--color-bg-white) 40%, #53A4DB 100%);
}

.team-component .item img {
  display: block;
  width: 100%;
  height: auto;
}

.team-component .item .content {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-bg-white) 50%, var(--color-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}

.team-component .item .content * {
  cursor: default;
}

.team-component .item .content .info {
  transition: transform 0.5s;
  text-align: center;
  transform: translateY(120px);
  padding: 10px;
}

.team-component .item .content .name {
  font-family: var(--font-sui-generis);
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
}

.team-component .item .content .position {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.team-component .item:hover .content {
  opacity: 0.9;
}

.team-component .item:hover .content .info {
  transform: translateY(80px);
}

@media (max-width: 768px) {
  .team-component .item {
    width: calc((100%) / 2);
  }
}

@media (max-width: 486px) {
  .team-component .item {
    width: 100%;
  }
}

/* Text Two Component */
.text-two-component .wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.text-two-component .items {
  width: 310px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.text-two-component .item .item-header {
  position: relative;
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 200;
  line-height: 19.36px;
  border: 1px solid var(--color-bg-white);
  background: none;
  cursor: pointer;
  width: 100%;
  padding: 20px 14px;
  text-align: left;
  color: var(--color-white);
  transition: all 0.3s;
  letter-spacing: 3%;
}

.text-two-component .item .item-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity 0.3s;
  background: linear-gradient(90deg, var(--color-light) 0%, var(--color-dark) 80%);
  opacity: 0;
}

.text-two-component .item .item-header:hover:before {
  opacity: 1;
}

.text-two-component .item .item-content {
  border: 1px solid var(--color-bg-white);
  border-top: none;
  background: none;
  cursor: default;
  width: 100%;
  text-align: left;
  color: var(--color-white);
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.text-two-component .item.active .item-header {
  position: relative;
  background: linear-gradient(90deg, var(--color-light) 0%, var(--color-dark) 80%);
}

.text-two-component .item.active .item-content {
  max-height: 1000px;
  opacity: 1;
  padding: 20px 14px;
}

.text-two-component .prompt {
  position: relative;
  width: calc(100% - 420px);
  border: 1px solid var(--color-bg-white);
}

.text-two-component .prompt .content {
  padding: 20px 14px;
  overflow: hidden;
  transition: height 0.3s ease-out, opacity 0.3s ease-out;
}

.text-two-component .line-horizontal-button {
  position: absolute;
  top: 30px;
  left: -110px;
  width: 56px;
  height: 1px;
  background: var(--color-bg-white);
  display: block;
}

.text-two-component .line-vertical {
  position: absolute;
  top: 30px;
  left: -55px;
  width: 1px;
  height: 1px;
  background: var(--color-bg-white);
  display: block;
}

.text-two-component .line-horizontal-prompt {
  position: absolute;
  top: 30px;
  left: -55px;
  width: 55px;
  height: 1px;
  background: var(--color-bg-white);
  display: block;
}

@media screen and (min-width: 821px) {
  .text-two-component .item .item-content {
    display: none;
  }
}

@media screen and (max-width: 820px) {
  .text-two-component .items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .text-two-component .prompt {
    display: none;
  }
}

/* ==========================================================================
   9. WORDPRESS ADMIN OVERRIDES
   ========================================================================== */
#wpadminbar {
  top: auto !important;
  bottom: 0;
}

.admin-bar.masthead-fixed .site-header {
  top: 0;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }

  html {
    margin-bottom: 46px !important;
  }
}