@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/myriad-pro/MyriadPro-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/myriad-pro/MYRIADPRO-SEMIBOLD.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Ext';
    src: url('../fonts/myriad-pro/MyriadPro-LightSemiExt.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Ext';
    src: url('../fonts/myriad-pro/MyriadPro-BoldSemiExt.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Ext';
    src: url('../fonts/myriad-pro/MyriadPro-SemiExt.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AlternateGothic';
    src: url('../fonts/alternate-gothic/AlternateGotNo3D.otf') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AlternateGothicATF';
    src: url('../fonts/alternate-gothic/AlternateGothicATF-Semilight.otf') format('woff2');
    font-weight: 300;
    font-style: normal;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

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

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

.text-uppercase {
    text-transform: uppercase;
}

/* Form */

input,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}


button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

ul,
li {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
:root {
    --black: #000;
    --white: #FFFFFF;
    --accent-color: #C7DCE6;
    --dark: #2B2E34;
    --blue: #5694B8;
    --yellow: #C88927;
}

body {
    font-family: 'MyriadPro-Ext';
}

section {
    padding: 60px 0;
}

.container {
    max-width: 1520px;
    padding: 0 25px;
    width: 100%;
    margin: 0 auto;
}

.container-small {
    max-width: 630px;
    padding: 0 25px;
    width: 100%;
    margin: 0 auto;
}

.button-wrapper {
    display: flex;
    justify-content: center;
}

.button {
    border: 0.25px solid #bababa;
    min-width: 257px;
    padding: 18px 20px;
    display: inline-block;
    gap: 0.2rem;
    display: flex;
    align-items: start;
    justify-content: center;
    width: fit-content;
    margin-top: 90px;
}

.button span {
    padding-right: 22px;
    position: relative;
}

.button span::after {
    content: "";
    background-image: url("../img/svg/right-arrow.svg");
    width: 14px;
    height: 14px;
    position: absolute;
    right: 0;
    top: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    transition: right 0.3s linear;
}

.button:hover span::after {
    right: -8px;
}

.button strong {
    font-weight: 700;
}

/***************************************************************************************************************/
/***************************************************************************************************************/
h1 {
    font-weight: 300;
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 7.8px;
    text-transform: uppercase;
}

h2 {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 6.25px;
    font-weight: 400;
}

p {
    font-size: 14px;
    letter-spacing: 0.35px;
    line-height: 28px;
    font-weight: 300;
    font-family: 'MyriadPro';
}

li {
    line-height: normal;
    font-weight: 300;
    font-size: 17px
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.7px;
    font-weight: 300;
}


/***************************************************************************************************************/
/************************************************** HEADER *****************************************************/

header {
    transition: background-color 1s, transform 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 18px 0;
    background-color: transparent;
}

header+.video-block {
    padding-top: 66px;
}

header.sticky_head {
    transform: translateY(-105%);
}

header.white_bg {
    background-color: var(--white);
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

.header .header_nav {
    display: flex;
    height: 12px;
    gap: 82px;
}

.header .header_nav .header_nav_links-mobile {
    display: none !important;
}

.header .header_nav .header_nav_links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .header_nav .header_nav_links-text {
    color: var(--dark);
}

.header .header_nav .header_nav_links-text span {
    color: var(--bright-green);
    text-transform: uppercase;
}

.header .header_nav .header_nav_links a {
    font-size: 10px;
    letter-spacing: 0.95px;
    transition: all .3s linear;
    position: relative;
    font-weight: 400;
}

.header .header_nav .header_nav_links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 30px;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: all .3s linear;
}

.header .header_nav .header_nav_links a:hover,
.header .header_nav .header_nav_links .current-menu-item a {
    text-shadow: 0.2px 0 currentColor, -0.2px 0 currentColor;
}

.header .header_nav .header_nav_links a:hover::after,
.header .header_nav .header_nav_links .current-menu-item a::after {
    transform: translateX(-50%) scaleX(1);
}

.header_nav_links a span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.header .header_nav .header_menu {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    display: none;
}

.header .header_nav .header_menu>span {
    color: var(--dark);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.header_menu_burger {
    padding: 0;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
}

.header_menu_burger.menu-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.header_menu_burger.menu-open span {
    margin: 0;
}

.header_menu_burger.menu-open {
    margin-bottom: 0.5rem;
}

.header_menu_burger.menu-open span:nth-child(2) {
    display: none;
}

.header_menu_burger.menu-open span:last-child {
    transform: translateY(2px) rotate(-45deg);
}

.header_menu_burger>span {
    display: inline-block;
    width: 25px;
    height: 1.5px;
    background-color: var(--dark);
    transition: 0.4s;
    margin: 2px 0;
}

.header_menu_burger>span:first-child {
    background-color: var(--dark);
}

.header_menu_burger>span:nth-child(2) {
    width: 15px;
}

.header .header_brand,
.navigation .header_brand {
    width: 400px;
    height: auto;
}

.logo-mobile {
    display: none;
}

.modal-open {
    overflow: hidden;
}

.navigation_items_row {
    display: flex;
    gap: 37px;
    align-items: center;
}

.sidebar-inner .navigation_items_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.sidebar-inner .navigation_items_row li {
    width: 100%;
}

.sidebar-inner .navigation_items_row li a {
    position: relative;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #bababa;
    padding-bottom: 1.5rem;
    padding-right: 2.5rem;
}

.sidebar-inner .navigation_items_row li a::after {
    content: "+ + +";
    position: absolute;
    right: 0;
    top: 0;
    color: inherit;
    font-size: inherit;
}

.sidebar {
    position: absolute;
    top: 60px;
    right: -420px;
    height: 100vh;
    overflow-y: auto;
    width: 341px;
    z-index: 9999;
    transition: 0.4s ease;
}

.sidebar.active {
    right: 0;
}

header.sticky_head .sidebar.active {
    padding-top: 64px;
}

.sidebar-inner {
    padding: 30px 15px;
    background: var(--white);
    height: 100%;
    padding-top: 45px;
}

.sidebar-close {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    cursor: pointer;
    padding-left: 16px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.siderbar-close-wrapper {
    display: flex;
    justify-content: end;
}

.sidebar-logo {
    margin-bottom: 1.5rem;
}

.cross-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 1px;
    background-color: var(--dark);
    transform-origin: center;
}

.cross-line.line1 {
    transform: translateY(-50%) rotate(45deg);
}

.cross-line.line2 {
    transform: translateY(-50%) rotate(-45deg);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-weight: 500;
}

/******************************************************/
/***********************BLOCKS*************************/
/******************************************************/
/***********Hero*************/
.hero-block-container {
    position: relative;
    aspect-ratio: 16 / 8.3;
    width: 100%;
    padding: 0;
    height: 100%;
}

.hero-block .disturbance-font {
    font-size: 55px;
}

.hero-block {
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.scroll-line-wrapper-mobile {
    display: none;
}

.hero_background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero_background_mobile {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-title::before,
.hero-title::after {
    content: "";
    width: 100px;
    background-color: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-title::before {
    height: 1px;
    top: 0;
}

.hero-title::after {
    height: 6px;
    bottom: 0;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transition:
        transform 1.3s linear,
        opacity 1.3s linear;
}

.hero-title-line--left {
    transform: translateX(-150px);
}

.hero-title-line--right {
    transform: translateX(150px);
    transition-delay: 0.2s;
}

.hero-title.is-visible .hero-title-line {
    opacity: 1;
    transform: translateX(0);
}

.hero-title::before,
.hero-title::after {
    transform: translateX(-50%) scaleX(0);
    transition: transform 1s ease;
}

.hero-title.is-visible::before,
.hero-title.is-visible::after {
    transform: translateX(-50%) scaleX(1);
}

.hero-title.is-visible::after {
    transition-delay: 0.5s;
}

.hero-title {
    margin-top: 220px;
    padding: 50px 0;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    font-family: 'AlternateGothicATF';
}

.hero-title br {
    display: none;
}

.hero-title strong {
    font-family: 'AlternateGothic';
}


.hero-title h1 strong,
.hero-title h1 b {
    font-weight: 400;
}

.hero_background_video {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero_background_gif {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_video_mobile {
    display: none;
}


.container-hero {
    height: 100%;
}

/*******************************/
.text-line {
    color: var(--blue);
    font-size: 14px;
    font-weight: 300;
    font-family: 'MyriadPro';
}

.text-line-left {
    margin-right: 0.5rem;
}

.text-line-right {
    margin-left: 0.5rem;
}

.text-line-group {
    white-space: nowrap;
}

.text-block-inner-text .myriadpro-ext,
.details-text .myriadpro-ext {
    font-family: 'MyriadPro-Ext';
    letter-spacing: 1.56px;
    font-size: 13px;
}

.details-text .myriadpro-ext strong {
    font-family: 'MyriadPro-Ext';
    font-weight: 700;
}

.info-item-text .myriadpro-ext {
    font-size: 17px;
}

.text-block-inner-text strong,
.text-block-inner-text b {
    font-weight: 700;
}

.text-block-inner-title,
.text-block-inner-title h1,
.details-text h2 {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 4.42px;
    text-align: center;
    font-family: 'AlternateGothicATF';
    margin-bottom: 60px;
}

.text-block-inner-title strong {
    font-family: 'AlternateGothic';
    font-weight: 400;
}

/******************Cards****************/
.cards-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.cards-item-img-wrapper {
    aspect-ratio: 3 / 2.25;
    position: relative;
}

.cards-item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards-item-title {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    text-align: center;
    font-family: 'AlternateGothic';
    white-space: nowrap;
}

.cards-item-title .cards-arrow {
    font-size: 15px;
    position: relative;
    top: -2px;
}

.cards-item-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    padding: 20px;
    padding-bottom: 40px;
    margin-top: 40px;
    height: clamp(220px, 22.6vw, 357px);
    padding-top: clamp(100px, 9.1vw, 174px);
    width: 60%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.cards-item-text p {
    font-size: 17px;
    letter-spacing: 2.04px;
    font-weight: 300;
    line-height: 31px;
}

.cards-item-text p br {
    display: none;
}

.cards-item-text p strong {
    font-weight: 700;
}

.cards-item-text::after {
    content: "";
    background-image: url(../img/svg/card-arr.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    right: 15px;
    top: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cards-item:hover .cards-item-text {
    opacity: 1;
    visibility: visible;
}

/*******************Grid*****************/
.grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-item {
    aspect-ratio: 3 / 2.25;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-number--image {
    position: absolute;
    right: 18px;
    bottom: 17px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.33px;
}

.grid-inner-content {
    margin-top: 53px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grid-number--content {
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 0.3px;
    margin-right: 26px;
    font-weight: 700;
}

.grid-title {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.04px;
    line-height: 16px;
    color: var(--dark);
}

.grid-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.42px;
    color: var(--dark);
    position: relative;
    padding-left: 32px;
}

.grid-text::before {
    content: ">";
    color: var(--blue);
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 0.5px;
    font-family: Arial, sans-serif;
}

.grid-item-content {
    display: grid;
    grid-template-columns: 1fr 5.5fr;
    align-items: baseline;
}

/********************Info***************/
.info-item-wrapper {
    aspect-ratio: 2 / 3;
    margin-bottom: 78px;
}

.info-item-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-item-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 17px;
    font-family: 'AlternateGothicATF';
}

.info-item-title strong {
    font-family: 'AlternateGothic';
    font-weight: 400;
    font-size: 18px;
}

.info-plus,
.info-plus-yellow,
.info-plus-blue,
.info-plus-purple,
.info-plus-beige {
    font-size: 14px;
    letter-spacing: 5.6px;
    line-height: 21px;
    font-family: 'MyriadPro';
}

.info-plus-yellow {
    color: var(--yellow);
}

.info-plus-blue {
    color: var(--blue);
}

.info-plus-purple {
    color: #c8b8d1;
}

.info-plus-beige {
    color: #bdac98;
}


.info-link {
    font-size: 17px;
    line-height: 23px;
    font-weight: 300;
    letter-spacing: 2.04px;
    font-family: 'MyriadPro';
    margin-top: 37px;
    display: inline-block;
}

.info-link strong {
    font-weight: 700;
    font-family: 'MyriadPro-Ext';
}

.info-link span {
    position: relative;
    padding-right: 32px;
}

.info-link span::after {
    content: "";
    background-image: url("../img/svg/arrow-right-yellow.svg");
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    transition: right 0.3s linear;
}

.info-link:hover span::after {
    right: -8px;
}

.info-item-text {
    margin-top: 66px;
}

.info-item-text p {
    font-size: 17px;
    letter-spacing: 0.42px;
}

.info-item-text .text-line {
    color: var(--yellow);
}

.info-item-text strong {
    font-family: 'MyriadPro-Ext';
    font-weight: 700;
    letter-spacing: 2.46px;
}

.info-inner {
    max-width: 695px;
    margin: 0 auto;
    width: 100%;
}

.info-item-top {
    max-width: 610px;
}

p .info-plus-blue:first-of-type,
p .info-plus-yellow:first-of-type,
p .info-plus:first-of-type,
p .info-plus-purple:first-of-type,
p .info-plus-beige:first-of-type {
    margin-right: 1rem;
}

h2 .info-plus-blue:first-of-type,
h2 .info-plus-yellow:first-of-type,
h2 .info-plus:first-of-type,
h2 .info-plus-purple:first-of-type,
h2 .info-plus-beige:first-of-type {
    margin-right: 1rem;
}

p .info-plus-blue:nth-of-type(2),
p .info-plus-yellow:nth-of-type(2),
p .info-plus:nth-of-type(2),
p .info-plus-purple:nth-of-type(2),
p .info-plus-beige:nth-of-type(2) {
    margin-left: 1rem;
}

h2 .info-plus-blue:nth-of-type(2),
h2 .info-plus-yellow:nth-of-type(2),
h2 .info-plus:nth-of-type(2),
h2 .info-plus-purple:nth-of-type(2),
h2 .info-plus-beige:nth-of-type(2) {
    margin-left: 1rem;
}

/**************************************/
.intro-inner {
    text-align: center;
    position: relative;
    padding: 40px 0;
    padding-bottom: 70px;
}

.intro-block:has(+ .text-block) {
    padding-bottom: 0;
}

.intro-title {
    font-size: 168px;
    letter-spacing: 42px;
    font-family: 'AlternateGothic';
    line-height: normal;
    text-transform: uppercase;
    color: var(--accent-color);
}




.intro-text {
    margin-bottom: 0;
}

.intro-inner::before {
    height: 1px;
    top: 0;
}

.intro-inner::after {
    height: 6px;
    bottom: 0;
}

.intro-inner::before,
.intro-inner::after {
    content: "";
    width: 100px;
    background-color: var(--black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/******************************************/
.contact-form-inner {
    padding: 60px 0;
}

.contact-form {
    padding: 0;
    background: #ffffff;
}

.contact-form form {
    max-width: 902px;
    margin: auto;
}

.seed-contact-form {
    --form-green: #C8B8D1;
    --form-text: #000000;
    --form-border: #00000080;
    --field-height: 48px;
    --column-gap: 42px;
    --row-gap: 44px;
    width: 100%;
    color: var(--form-text);
}

/* Field layout */

.seed-contact-form .form-grid {
    display: grid;
    gap: var(--row-gap) var(--column-gap);
    margin-bottom: 43px;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: none;
}

.seed-contact-form .form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seed-contact-form .form-grid--address {
    grid-template-columns: minmax(0, 2fr) minmax(160px, 1fr);
}

.seed-contact-form .form-grid--location {
    grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1fr) minmax(0, 2fr);
}

.seed-contact-form .form-field {
    display: block;
    margin: 0 0 var(--row-gap);
}

.seed-contact-form .form-grid .form-field {
    margin-bottom: 0;
}

.seed-contact-form .form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--form-text);
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'MyriadPro-Ext';
    font-weight: 300;
}

.seed-contact-form .form-field--required .form-label {
    color: var(--form-green);
    font-weight: 700;
}

/* CF7 inputs */

.seed-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.seed-contact-form input[type="text"],
.seed-contact-form input[type="email"],
.seed-contact-form input[type="tel"],
.seed-contact-form textarea,
.seed-contact-form select {
    display: block;
    width: 100%;
    min-width: 0;
    height: var(--field-height);
    padding: 10px 14px;
    border: 1px solid #bababa;
    border-radius: 0;
    background: #fff;
    color: var(--form-text);
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.seed-contact-form textarea {
    height: 254px;
    resize: none;
}

.seed-contact-form input:focus,
.seed-contact-form textarea:focus,
.seed-contact-form select:focus {
    border-color: var(--form-green);
    box-shadow: 0 0 0 2px rgb(124 175 36 / 18%);
}

/* Topics */

.seed-contact-form .form-topics {
    min-width: 0;
    margin: 30px 0 42px;
    padding: 0;
    border: 0;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #bababa;
}

.seed-contact-form .form-topics legend {
    margin-bottom: 18px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.seed-contact-form .form-topics .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
    width: 100%;
    gap: 14px 20px;
}

.seed-contact-form .form-topics .wpcf7-list-item {
    margin: 0;
}

.seed-contact-form .wpcf7-list-item label,
.seed-contact-form .form-consent label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.seed-contact-form .form-consent label {
    align-items: self-start;
}

.seed-contact-form .wpcf7-list-item-label {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: var(--dark);
}

/* Custom checkboxes */

.seed-contact-form input[type="checkbox"] {
    appearance: none;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin: 0;
    border: 1px solid #bababa;
    border-radius: 0;
    background: #fff;
    cursor: pointer;
}

.seed-contact-form input[type="checkbox"]:checked {
    border-color: var(--form-green);
    background-color: var(--form-green);
    background-image: url("../img/svg/check-mark.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.seed-contact-form input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--form-green);
    outline-offset: 3px;
}

/* Consent */

.seed-contact-form .form-consent {
    margin-bottom: 42px;
}

.seed-contact-form .form-consent .wpcf7-list-item {
    margin: 0;
}

.seed-contact-form .form-consent .wpcf7-list-item-label {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.seed-contact-form .consent-heading {
    color: var(--form-green);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.seed-contact-form .consent-description {
    max-width: 650px;
    color: #454545;
    font-size: 13px;
    line-height: 1.8;
}

/* Submit */

.seed-contact-form .form-submit {
    display: flex;
    justify-content: flex-end;
}

.seed-contact-form .form-submit>p {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.seed-contact-form input[type="submit"] {
    width: min(100%, 430px);
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid var(--form-green);
    border-radius: 0;
    background-color: #C8B8D166;
    color: var(--form-green);
    font-size: 14px;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
    background-image:
        url("../img/svg/right-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 150px center;
    background-size: 14px;
    color: var(--black);
    font-family: 'MyriadPro-Ext';
    font-weight: 700;
}

.seed-contact-form input[type="submit"]:hover,
.seed-contact-form input[type="submit"]:focus-visible {
    border-color: var(--form-green);
    background-color: var(--form-green);
    color: #fff;
}

/* CF7 validation */

.seed-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
}

.seed-contact-form .wpcf7-response-output {
    margin: 24px 0 0;
}

/***************/
.feature-block {
    padding: 20px 0;
}

.feature-inner {
    text-align: center;
    display: flex;
    margin: 0 auto;
    gap: 2rem;
    justify-content: center;
}

.feature-item-title {
    font-size: 16px;
    letter-spacing: 1.92px;
    font-family: 'MyriadPro-Ext';
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    padding-right: 0.5rem;
}

.feature-item-title::after {
    content: "+";
    font-size: 16px;
    color: var(--plus-color);
    font-family: 'MyriadPro-Ext';
    font-weight: 400;
    position: absolute;
    left: -26px;
    top: -2px;
}

.feature-item-title:first-child:after {
    content: none;
}

.feature-video-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100px;
    width: 200px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.feature-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-wrapper {
    position: relative;
}

/*******************************************************************************************************/

.video-block {
    width: 100%;
    position: relative;
    padding-bottom: 150px;
    overflow: hidden;
}

.video-block-inner {
    width: 1140px;
    max-width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 auto;
    transform: scale(1.4);
    transform-origin: center center;
    transition:
        transform 2s cubic-bezier(0.22, 1, 0.36, 1),
        gap 2s ease;
}

.video-block.is-animated .video-block-inner {
    transform: scale(1);
    gap: 8px;
}

.video-block-item {
    width: 100%;
    overflow: hidden;
}

.video-block-video,
.video-block-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/2.5;
    object-fit: cover;
}

.video-block-title {
    font-size: 159px;
    text-transform: uppercase;
    font-family: 'AlternateGothic';
    line-height: normal;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.video-block .container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.video-block-content {
    text-align: center;
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 2.5s;
}

.video-block.is-animated .video-block-content {
    opacity: 1;
    transform: translateY(0);
}

.video-block--images .video-block-inner {
    transform: scale(1);
    gap: 8px;
    transition: none;
}

.video-block--images .video-block-content {
    transition-delay: 0s;
}

/*******************************************************************************************************/

.image-block-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.image-block-mobile {
    display: none;
}

/*******************************************************************************************************/
/***************************************** FOOTER ******************************************************/

footer {
    padding-bottom: 50px;
}

.footer_item_wrapper-tel strong {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    width: 10px;
    display: inline-block;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;

}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    width: 100%;
    gap: 25px;
    align-items: end;
    margin-top: 15rem;
}

.footer-inner,
.footer-inner a {
    font-size: 17px;
    letter-spacing: 2.04px;
    line-height: 23px;
}

.footer_item_list a {
    position: relative;
    padding-left: 15px;
}

.footer_item_list a::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--black);
    font-family: 'MyriadPro-Ext';
    font-weight: 400;
}

.footer-inner strong {
    font-family: 'MyriadPro-Ext';
    font-weight: 700;
    letter-spacing: 2.04px;
}

.footer p,
.footer a {
    color: var(--dark);
    font-size: 0.8rem;
    line-height: 23px;
    letter-spacing: 2.04px;
    font-family: 'MyriadPro';
}

.footer_item_list-link {
    margin-bottom: 41px;
    display: inline-block;
}

.footer_item_wrapper-first {
    margin-bottom: 46px;
    display: inline-block;
}



.footer .footer_title {
    text-transform: uppercase;
    color: #9A9B9F;
    font-weight: 500;
    letter-spacing: 2px;
}

.footer_item_logo img {
    max-width: 312px;
    height: auto;
    width: 100%;
}

/**************************/
header+.details-block {
    padding-top: 250px;
}

.details-inner {
    max-width: 1230px;
    padding: 0 25px;
    width: 100%;
    margin: 0 auto;
}

.details-text h1,
.details-text p,
.details-text h2 {
    text-align: left;
}

.details-text h2 {
    margin-bottom: 30px;
}

.details-text h2 span:first-of-type {
    margin: 0;
}

.details-text h2 span:nth-of-type(2) {
    margin: 0;
}

.details-text p {
    text-transform: none;
}

.details-text p strong {
    font-family: 'MyriadPro-Ext';
    font-weight: 700;
}

.details-text ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-text ul li {
    position: relative;
    padding-left: 33px;
    font-family: 'MyriadPro-Ext';
    text-transform: none;
    letter-spacing: 1.56px;
    font-size: 13px;
}

.details-text ul li::before {
    content: "";
    width: 17px;
    height: 0.5px;
    background-color: var(--yellow);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/************************************************/
.language-switcher ul{
    display: flex;
    gap: 0.35rem;
    flex-direction: row-reverse;
}

.language-switcher  ul li:last-child{
    position: relative;
    padding-right: 9px;
}
   
.language-switcher  ul li:last-child::after{
    content: "|";
    color: var(--black);
    right: 0;
    top: -1px;
    position: absolute;
    display: inline-block;
}

.language-switcher ul li.current a{
    font-weight: 700;
}
.language-switcher ul li,.language-switcher ul li a{
    font-size: 10px;
    line-height: 10px;
}



/*************************/
.navigation_items_row-footer{
    display: flex;
    flex-direction: column;
}
    

@media (max-width: 1480px) {
    .footer {
        gap: 50px;
    }

    .feature-video-wrapper {
        left: 0;
    }

    .cards-item-text {
        padding-top: 50px;
    }
}

@media (max-width: 1280px) {
    .cards-item-title .cards-arrow {
        font-size: 13px;
        position: relative;
        top: -1px;
    }

    .cards-item-text {
        width: 80%;
    }

    .cards-item-img-wrapper {
        aspect-ratio: 3/2.7;
    }

    .feature-video-wrapper {
        position: unset;
        transform: none;
        margin: 0 auto;
    }

    .cards-item-text p {
        font-size: 14px;
    }

    .cards-item-title {
        top: 20px;
    }

    .footer {
        gap: 40px;
    }

    h2 {
        font-size: 19px;
        line-height: 29px;
    }

    h1 {
        font-size: 24px;
        line-height: 43px;
    }

    .header .header_nav .header_menu {
        display: flex;
    }

    .header .header_nav .header_nav_links-desk {
        display: none;
    }

    .header .header_nav .header_nav_links-mobile {
        display: flex !important;
    }

    .hero-title {
        margin-top: 150px;
    }

    .grid-item-content {
        display: grid;
        grid-template-columns: 1fr 4.5fr;
    }

    .footer {
        grid-template-columns: 100%;
        gap: 0;
    }

    .footer-inner {
        margin-top: 0;
    }
}

@media (max-width: 1024px) {


    .intro-title {
        font-size: 125px;
    }
}

@media (max-width: 992px) {


    .intro-title {
        font-size: 90px;
    }



    .grid-item-content {
        display: grid;
        grid-template-columns: 1fr 3fr;
    }

    .hero-title {
        margin-top: 85px;
    }

    h1 {
        font-size: 20px;
        line-height: 37px;
    }

    .cards-inner {
        grid-template-columns: 100%;
    }

    .video-block-title {
        font-size: 90px;
    }

    .video-block .container {
        bottom: 80px;
    }

    .cards-item .cards-item-text {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .cards-item.is-visible .cards-item-text {
        opacity: 1;
        visibility: visible;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 768px) {
    .details-inner {
        padding: 0 15px;
    }

    .video-block {
        padding-bottom: 29px;
    }

    .video-block .container {
        position: unset;
        transform: none;
        margin-top: 0.5rem;
    }

    .video-block-content {
        transition-delay: 1s;
    }

    .video-block .video-block-inner,
    .video-block-inner {
        transform: scale(1);
        gap: 8px;
    }

    .logo-mobile {
        display: block;
    }

    header {
        padding: 15px 0;
    }

    .logo-lg {
        display: none;
    }

    .image-block-wrapper {
        display: none;
    }

    .image-block-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .image-block-mobile-item {
        aspect-ratio: auto;
        height: 100%;
    }

    .image-block-mobile-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .intro-title {
        font-size: 50px;
        margin-bottom: 1rem;
    }

    .grid-inner-content {
        margin-top: 25px;
    }

    .sidebar {
        right: -100%;
        height: auto;
        top: 62px;
    }

    .sidebar-inner {
        height: 100vh;
        padding-top: 45px;
        overflow-y: auto;
    }

    .sidebar.active {
        width: 100%;
    }

    .seed-contact-form {
        --field-height: 48px;
        --row-gap: 18px;
    }

    .seed-contact-form .form-grid--2,
    .seed-contact-form .form-grid--address,
    .seed-contact-form .form-grid--location {
        grid-template-columns: minmax(0, 1fr);
    }

    .seed-contact-form .form-grid {
        gap: var(--row-gap);
        margin-bottom: var(--row-gap);
    }

    .seed-contact-form .form-grid .form-field {
        margin-bottom: 0;
    }

    .seed-contact-form .form-topics {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .seed-contact-form .form-topics .wpcf7-checkbox {
        display: grid;
        grid-template-columns: 100%;
        gap: 14px;
        justify-content: center;
        width: fit-content;
        margin: auto;
    }

    .seed-contact-form .form-topics .wpcf7-list-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .seed-contact-form .form-submit {
        display: block;
    }

    .seed-contact-form input[type="submit"] {
        width: 100%;
        max-width: none;
        background-position: right 40% center
    }

    .grid-item-content {
        display: grid;
        grid-template-columns: 1fr 2.5fr;
        align-items: baseline;
    }

    .hero-block-container {
        aspect-ratio: 9/16;
    }

    .hero-block-container .container {
        height: auto;
    }

    .hero-title {
        margin-top: 85px;
        justify-content: flex-start;
    }

    .hero-block {
        aspect-ratio: 9/16;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .hero_background_video {
        transform: scale(1.1);
    }

    .has-mobile-video .hero_video_mobile {
        display: block;
    }

    .footer_item_wrapper-first,
    .footer_item_list-link {
        margin-bottom: 20px;
    }

    .header .header_brand {
        width: 300px;
    }

    .info-item-wrapper {
        margin-bottom: 40px;
    }

    .cards-item-img-wrapper {
        aspect-ratio: 1/1;
    }

    .feature-inner {
        flex-direction: column;
    }

    .feature-item-title {
        padding-right: 0;
    }

    .feature-item-title:first-child:after {
        content: "+";
    }

    .feature-item-title:nth-child(3):after {
        content: none;
    }

    .feature-item-title::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -23px;
        right: auto;
        top: auto;
    }

    .container {
        padding: 0 15px;
    }

    .container-small {
        padding: 0 15px;
    }

    section {
        padding: 29px 0;
    }

    .contact-form-inner {
        padding-top: 1px;
        padding-bottom: 5px;
    }

    header+.details-block {
        padding-top: 125px;
    }

    .details-text h1 {
        margin-bottom: 10px;
    }

    .hero_background_gif {
        transform: scale(1.1);
    }
    .header .header_nav{
        gap: 50px;
    }
}

@media (max-width: 650px) {

    .cards-item-text {
        width: 92%;
    }

    .footer_item_logo img {
        max-width: 250px;
    }

    .grid-item-content {
        display: grid;
        grid-template-columns: 100%;
        align-items: baseline;
        gap: 0.5rem;
    }

    .grid-inner {
        grid-template-columns: 100%;
        gap: 8px;
    }

    .grid-number--content {
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .cards-item-text {
        padding: 20px;
        padding-top: 30px;
    }

    .footer-inner {
        grid-template-columns: 100%;
    }

    .seed-contact-form input[type="submit"] {
        background-position: right 35% center;
    }

    .cards-item-text::after {
        right: 13px;
        top: 12px;
    }

    .intro-title {
        font-size: 45px;
        letter-spacing: 1rem;
    }

    .header .header_brand {
        width: 250px;
    }

    .video-block-title {
        font-size: 55px;
    }

    .header .header_nav {
        gap: 25px;
    }

    .sidebar {
        top: 56px;
    }
}



@media (max-width: 479px) {
    .header .header_nav {
        gap: 15px;
    }
    .header .header_brand {
        width: 180px;
    }

    .cards-item-title {
        white-space: normal;
    }

    .sidebar {
        top: 49px;
    }
}

/***************************************************************************************************************/
/***************************************************************************************************************/