:root {
    --colors--white: white;
    --colors--black: black;

    --colors--cream: #f2f1e0;
    --colors--cream-2: #f3f2e8;
    --colors--cream-3: #f3f2e850;

    --colors--grey: #c6c6bc;
    --colors--grey-2: #a4a496;

    --colors--brown: #938469;

    --colors--textile-2: #b2a86d;
    --colors--textile: #d6cc91;
}

body {
    color: var(--colors--black);
    background: var(--colors--cream-2);
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.8125rem;
    font-size: clamp(2.8125rem, 0.25rem + 12.812499999999998vw, 15.625rem);
    color: var(--colors--cream);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1.2;
}

h2 {
    font-size: 3.125rem;
    font-size: clamp(3.125rem, 1.5rem + 8.125vw, 11.25rem);
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1;
}

h3 {
    font-size: 2.8125rem;
    font-size: clamp(2.8125rem, 2rem + 4.0625vw, 6.875rem);
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1;
}

h4 {
    font-size: 1.875rem;
    font-size: clamp(1.875rem, 1.65rem + 1.125vw, 3rem);
    color: var(--colors--white);
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1;
}

h5 {
    font-size: 1.75rem;
    font-size: clamp(1.75rem, 1.6rem + 0.75vw, 2.5rem);
    margin-top: 0;
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 1;
}

p {
    margin-bottom: 25px;
}

p:last-of-type {
    margin: 0;
}

.white-link-inner {
    text-decoration: none;
    color: var(--colors--white);
    white-space: nowrap;
    margin-right: 20px;
}

.white-link-inner:hover {
    text-decoration: underline;
}

.black-link-inner {
    text-decoration: none;
    color: var(--colors--black);
    white-space: nowrap;
}

.black-link-inner:hover {
    text-decoration: underline;
}

.container {
    position: relative;
}

.container.contact {
    background-color: var(--colors--cream-2);
}

/* ----- Slide Hero ----- */

.slides {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 100%;
    place-items: center;
}

.slide {
    width: 100%;
    height: 100%;
    grid-area: 1 / 1 / -1 / -1;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    will-change: transform, opacity;
}

.slide__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    will-change: transform, opacity, filter;
}

.slide--current {
    pointer-events: auto;
    opacity: 1;
}

/* ----- Slide Hero ----- */

.hero {
    justify-content: center;
    align-items: flex-end;
    height: 100dvh;
    text-decoration: none;
    display: flex;
}

.scroll-down {
    font-size: 0.8rem;
    line-height: 1;
    color: var(--colors--cream);
    letter-spacing: 2px;
    transition: opacity 0.5s ease;
    margin: 75px 0 0 0 !important;
    position: relative;
    display: inline-block;
}

.scroll-down::before {
    content: '';
    display: block;
    background: var(--colors--cream);
    width: 1px;
    height: 40px;
    position: absolute;
    left: 50%;
    margin: 0 0 0 -0.5px;
    top: -60px;
}

.hero.hero-1 {
    background-image: url('../images/hero-bg1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.hero.hero-2 {
    background-image: url('../images/hero-bg2.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.hero.hero-3 {
    background-image: url('../images/hero-bg3.jpeg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.hero.hero-4 {
    background-image: url('../images/hero-bg4.jpeg');
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.hero.hero-4 h1 {
    /* font-size: 2.8125rem;
    font-size: clamp(2.8125rem, -0.625rem + 17.1875vw, 20rem); */
    font-size: 2.8125rem;
    font-size: clamp(2.8125rem, 0.25rem + 12.812499999999998vw, 15.625rem);
}

.hero.hero-4.w--current {
    background-image: url('../images/hero-bg4.jpeg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.content.side-c,
.content.dream-c {
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-box {
    text-align: center;
    position: relative;
}

.anchor-point {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: var(--colors--cream-3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: -55%;
}

.hero-text {
    font-size: 1.125rem;
    font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
    color: var(--colors--cream);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px !important;
}

.header {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 20;
}

.header.header-static {
    position: static;
}

.header.header-static .header-wr {
    border-bottom: 1px solid var(--colors--black);
}

/* .header.header-fixed {
    position: fixed;
    mix-blend-mode: exclusion;
} */

.header-wr {
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
}

.header a {
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-gap: 15px;
    color: inherit;
}

.header .white-link {
    color: var(--colors--cream);
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 20px;
}

.links-language {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 10px;
}

.links-language a { 
    font-size: 1rem;
}

.contact-link {
    padding: 0 20px 0 0;
}

.contact-link::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: url(../images/arrow-white.svg) no-repeat right top;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.contact-link:hover::before {
    transform: rotate(45deg);
    top: 5px;
}

.header-static .contact-link::before {
    background: url(../images/arrow-black.svg) no-repeat right top;
}

.header-static .hamburger {
    background: var(--colors--black);
}

.header-static .hamburger:before {
    background: var(--colors--black);
}

.header-static .hamburger:after {
    background: var(--colors--black);
}

.header-wr.border-btm {
    border-bottom: 1px solid var(--colors--black);
}

/* ----- Start Hamburger Menu ----- */

.menu {
    z-index: 9999;
    width: 100%;
    display: none;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
}

.menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 5vw;
    background-color: #c6c6bc;
}

.menu-links {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 70%;
    display: flex;
}

.menu-link {
    color: var(--colors--black);
    border-bottom: 1px solid #000;
    align-self: stretch;
    margin-bottom: 4vh;
    padding-bottom: 4vh;
    font-size: 1.25rem;
    font-size: clamp(1.25rem, 0.8rem + 2.25vw, 3.5rem);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-position 0.3s;
}

.menu-link:last-of-type {
    margin: 0;
}

.menu-right {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    border-left: 1px solid #000;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 30%;
    height: 100%;
    padding: 5vw;
    display: flex;
}

.menu-details-box:first-of-type {
    margin: 0 0 40px 0;
}

.menu-details-box p {
    font-size: 1rem;
    margin: 0 0 10px 0;
}

.menu-details-box p:first-of-type {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.menu-details-box p:last-of-type {
    margin: 0;
}

.social-links {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.close-column {
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    max-width: 70px;
    width: 100%;
    padding-top: 20px;
    display: flex;
    border-left: 1px solid #000;
}

/* ----- End Hamburger Menu ----- */

.sub-container {
    border: 1px solid var(--colors--black);
    justify-content: space-between;
    align-items: stretch;
    display: flex;
    position: relative;
}

.sub-right {
    color: var(--colors--white);
    flex-flow: column;
    justify-content: space-between;
    width: 50%;
    padding: 40px;
    display: flex;
    border-left: 1px solid var(--colors--black);
}

.sub-right.sub-right-creatie {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: var(--colors--brown);
    padding-left: 40px;
    padding-right: 40px;
}

.sub-right.sub-right-viziune {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: var(--colors--grey-2);
}

.sub-right.sub-right-poveste {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: var(--colors--textile-2);
}

.sub-right.sub-right-parteneri {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: var(--colors--brown);
    width: 100%;
    border-left: none;
}

.sub-right.sub-right-parteneri h4 {
    max-width: 800px;
    width: 100%;
}

.sub-image {
    width: 50%;
}

.sub-inner {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
}

.sub-inner-right {
    text-align: right;
    max-width: 380px;
}

.side-number {
    border-bottom: 1px solid #000;
    margin-bottom: 60px;
    padding-bottom: 15px;
    font-size: 1.2rem;
    margin: 0 0 60px 0 !important;
}

.side-block {
    margin-bottom: 120px;
}
.side-block:last-of-type {
    margin: 0;
}

.side-block-top {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 90px;
    display: flex;
}

.side-block-right {
    width: 50%;
    max-width: 620px;
}

.side-block-btm {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-end;
    display: flex;
}

.side-block-btm.space-between {
    justify-content: space-between;
}

.side-block-btm img {
    width: 70%;
}

.side-block-left {
    max-width: 620px;
    width: 45%;
}

.image-right-fade img {
    display: block;
    margin-left: auto;
    position: sticky;
    top: 0;
    width: 100%;
}

.image-right-fade {
    width: 55%;
}

.side-block-discover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-creations-wr {
    width: 75%;
    place-self: flex-end;
}

.slider-creations .slick-slide {
    margin: 0 12.5px;
}

.slider-creations .slick-list {
    margin: 0 -12.5px;
}

.slider-creations-arrows {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 10px;
}

.slider-creations-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 40px;
    flex-wrap: wrap;
    width: calc(100% - 130px);
}

.slider-creations-dots {
    width: calc(100% - 200px);
}

.slider-creations-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-gap: 40px;
    margin: 60px 0 0;
    width: 100%;
}

.slider-creations-nav .slick-arrow {
    display: block;
    width: 42px;
    height: 42px;
    font-size: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.slider-creations-nav .slick-prev {
    background: url(../images/creations-arrow-left.svg) no-repeat center;
}

.slider-creations-nav .slick-prev:hover {
    transform: translate(-5px, 0);
}

.slider-creations-nav .slick-next {
    background: url(../images/creations-arrow-right.svg) no-repeat center;
}

.slider-creations-nav .slick-next:hover {
    transform: translate(5px, 0);
}

.slider-creations-nav .slick-dots {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.slick-dots li {
    padding: 0;
}

.slick-dots button {
    font-size: 0;
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    background: var(--colors--grey-2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-active button {
    width: 7px;
    height: 7px;
    background: var(--colors--black);
}

.video-wr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    grid-gap: 30px;
}

.video-wr img:not(.video-play) {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.video-wr a {
    position: relative;
    width: 50%;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -25.5px 0 0 -25.5px;
    transition: all 0.3s ease;
}

.video-wr a:hover .video-play {
    transform: scale(1.3);
}

.section-planning {
    border-top: 1px solid var(--colors--black);
    border-bottom: 1px solid var(--colors--black);
    background-color: var(--colors--textile);
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}

.no-border-top {
    border-top: none;
}

.planning-left {
    width: 50%;
    padding: 120px 40px;
}

.planning-right {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    border-left: 1px solid var(--colors--black);
    flex-flow: column;
    justify-content: space-between;
    width: 50%;
    padding: 120px 40px;
    display: flex;
}

.dream-wr {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    text-align: center;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr auto;
    grid-auto-columns: 1fr;
    display: grid;
}

.dream-box {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.cta {
    background-color: var(--colors--grey);
    color: var(--colors--black);
    border-radius: 6px;
    padding: 20px 50px 20px 40px;
    font-size: 1.2rem;
}

.cta span {
    position: relative;
}

.cta.cta-black {
    background-color: var(--colors--black);
    color: var(--colors--white);
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

.cta span::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: url(../images/arrow-black.svg) no-repeat right top;
    position: absolute;
    right: -15px;
    top: 4px;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.cta:hover span::before {
    transform: rotate(45deg);
    top: 7px;
}

.cta-black span::before {
    background: url(../images/arrow-white.svg) no-repeat right top;
}
/*
.cta-black:hover {    
    background-color: var(--colors--white);
    color: var(--colors--black);   
    transition:all 0.3s ease;
}    

.cta-black:hover span::before {    
    background: url(../images/arrow-black.svg) no-repeat right top;
}
*/
.footer {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-top: 1px solid var(--colors--black);
    background-color: var(--colors--grey);
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.75fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: stretch;
    display: grid;
}

.footer-left {
    grid-gap: 60px;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    padding: 60px 40px;
    display: flex;
}

.footer-right {
    border-left: 1px solid var(--colors--black);
    padding: 40px;
}

.footer-left-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 40px;
    height: 100%;
}

.footer-one {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 40px;
}

.footer-two {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 40px;
}

.list {
    grid-column-gap: 10px;
    grid-row-gap: 25px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    margin: 0;
}

.form {
    display: flex;
}

.text-field {
    border-style: solid none solid solid;
    border-width: 1px;
    border-color: var(--colors--black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    height: 60px;
    margin-bottom: 0;
}

.text-field::placeholder {
    color: var(--colors--brown);
    font-size: 1rem;
}

.submit-button {
    background-color: var(--colors--white);
    color: var(--colors--black);
    border: 1px solid #000;
    border-radius: 6px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.2rem;
}

.footer-left-inner p {
    font-size: 1rem;
    margin: 0 0 10px 0;
}

.footer-left-inner p a {
    color: inherit;
}

.footer-left-inner p a:hover {
    text-decoration: none;
}

.footer-left-inner p:first-of-type {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.footer-left-inner p:last-of-type {
    margin: 0;
}

ul.list a {
    font-size: 1.2rem;
    color: var(--colors--black);
    text-decoration: none;
    position: relative;
    padding: 0 20px 0 0;
}

ul.list a::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: url(../images/arrow-black.svg) no-repeat right top;
    position: absolute;
    right: 0;
    top: 4px;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

ul.list a:hover::before {
    transform: rotate(45deg);
    top: 7px;
}

.logo-link {
    width: 220px;
}

.hero-contact {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.75fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.banner-left {
    justify-content: center;
    align-items: center;
    padding: 90px 40px;
    display: flex;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.banner-right {
    border-left: 1px solid var(--colors--black);
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    padding: 90px 40px;
    display: flex;
}

.banner-right h4 {
    color: var(--colors--black);
}

.banner-right.thanks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-gap: 40px;
}

.banner-right.thanks div:last-of-type {
    align-self: flex-end;
    max-width: 330px;
    text-align: right;
}

.banner-right.thanks h3 {
    margin: 0 0 40px 0;
}

form {
    margin-top: 60px;
}

form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

form ul li {
    margin: 0 0 10px 0;
}

.field {
    border: 1px solid var(--colors--black);
    border-radius: 6px;
    height: 60px;
    margin-bottom: 0;
}

.field::placeholder {
    color: var(--colors--brown);
    font-size: 1rem;
}

.field.textarea {
    height: 200px;
    resize: none;
}

.hide {
    display: none;
}

.buttons .cta.cta-black {
    width: 100%;
}

.was-validated *:invalid,
.was-validated *:invalid ~ label {
    border-color: red;
}

.cta-black img {
    max-width: 120px;
    margin-left: 15px;
}

@media screen and (min-width: 1920px) {
    .side-block-right,
    .side-block-left {
        width: 35%;
        max-width: unset;
    }
}
@media screen and (max-width: 1366px) {
    .anchor-point {
        width: 80px;
        height: 80px;
        top: -45%;
    }

    .anchor-point img {
        width: 18px;
    }
}

@media screen and (max-width: 1024px) {
    .content.side-c,
    .content.dream-c {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .sub-container {
        flex-flow: column;
    }

    .sub-right.sub-right-creatie {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .sub-right.sub-right-viziune,
    .sub-right.sub-right-poveste,
    .sub-image {
        width: 100%;
    }

    .side-block {
        margin-bottom: 90px;
    }

    .side-block-top {
        margin-bottom: 60px;
    }

    .side-block-btm img {
        width: 100%;
    }
    .side-block-btm {
        flex-flow: wrap-reverse;
    }

    .side-block-left,
    .image-right-fade {
        max-width: unset;
        width: 100%;
    }

    .planning-left,
    .planning-right {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .dream-wr {
        display: block;
    }

    .dream-box {
        display: none;
    }

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

    .footer-left {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-right {
        border-bottom: 1px solid var(--colors--black);
        border-left-style: none;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-left-inner {
        width: auto;
    }

    .hero-contact {
        grid-template-columns: 1fr;
    }

    .banner-left {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner-right {
        border-top: 1px solid var(--colors--black);
        border-left-style: none;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .banner-right.thanks h3 {
        margin: 0 0 20px 0;
    }
}

@media screen and (max-width: 932px) {
    .content.side-c,
    .content.dream-c {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .page-wrapper,
    .fullpage-wrapper {
        display: none;
    }

    .page-mobile {
        display: block;
    }

    .page-mobile {
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
        height: 100svh;
    }

    .hero {
        scroll-snap-align: start;
        height: 100svh;
    }

    .menu-details-box:first-of-type {
        margin: 0 0 20px 0;
    }

    .social-links {
        flex-flow: row;
    }

    .menu-inner {
        padding-left: 20px;
    }

    .menu-right {
        flex-flow: column-reverse;
        padding: 20px;
    }

    .sub-right.sub-right-creatie,
    .sub-right.sub-right-viziune,
    .sub-right.sub-right-poveste,
    .sub-right.sub-right-parteneri {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
    }

    .side-number {
        margin-bottom: 40px;
    }

    .side-block {
        margin-bottom: 60px;
    }

    .side-block-top {
        flex-flow: column;
        margin-bottom: 40px;
    }

    .side-block-top br {
        display: none;
    }

    .side-block-right {
        max-width: unset;
        width: 100%;
    }

    .section-planning {
        flex-flow: column;
    }

    .planning-left {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .planning-right {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        border-top: 1px solid var(--colors--black);
        border-left-style: none;
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .slider-creations-nav .slick-dots {
        display: none !important;
    }
}

@media screen and (max-width: 479px) {
    .open-menu {
        font-size: 0 !important;
    }

    .menu-inner {
        align-items: stretch;
        flex-direction: column;
        padding-left: 0;
    }

    .menu-links {
        width: 100%;
        padding: 10px 40px 20px;
        order: 2;
    }

    .menu-link {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .menu-details-box p:first-of-type {
        font-size: 1rem;
        margin: 0 0 15px 0;
    }

    .menu-details-box p {
        font-size: 0.8rem;
        margin: 0 0 5px 0;
    }

    .menu-link:last-of-type {
        border-bottom: none;
        padding: 0;
    }

    .menu-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid #000;
        padding: 20px 40px 80px;
        justify-content: flex-end;
        order: 3;
    }

    .close-column {
        border: none;
        order: 1;
        align-self: flex-end;
    }

    .header .contact-link {
        display: none;
    }

    .header .logo-link {
        width: 140px;
    }

    .header-right {
        grid-gap: 10px;
    }

    .sub-inner {
        flex-flow: column-reverse;
        justify-content: space-between;
        align-items: flex-start;
    }

    .sub-inner-right {
        text-align: left;
    }

    .slider-creations-wr {
        width: 100%;
        place-self: unset;
    }

    .slider-creations-inner {
        flex-direction: column;
        grid-gap: 0;
    }

    .slider-creations-nav {
        flex-direction: column;
        margin: 40px 0 0;
    }

    .video-wr {
        flex-direction: column;
    }

    .video-wr a {
        width: 100%;
    }

    .anchor-point {
        display: none;
    }

    .cta {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-left-top {
        grid-row-gap: 40px;
        grid-template-columns: 1fr;
    }

    .form {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        flex-flow: column;
    }

    .text-field {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .submit-button {
        height: 60px;
    }

    .field {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .banner-right.thanks div:last-of-type {
        align-self: flex-start;
        text-align: left;
    }
}

#w-node-_55e9427e-14a2-1172-ff4f-b1da21896630-482c3d0c,
#w-node-cf6a1ceb-3e1f-d7ab-3242-3b659395e633-9b19497c,
#w-node-da5b391e-8bbe-d00c-7111-ea1e10575a05-e752b8a4,
#w-node-da5b391e-8bbe-d00c-7111-ea1e10575a05-691e071f,
#w-node-_71f2351a-5aa6-b465-c693-2a7af0b66051-1410a056 {
    grid-area: 1 / 2 / 3 / 3;
}

@media screen and (max-width: 991px) {
    #w-node-_77dc60ab-5a10-d91c-112f-ffd48c03bff5-482c3d0c,
    #w-node-cf6a1ceb-3e1f-d7ab-3242-3b659395e649-9b19497c,
    #w-node-da5b391e-8bbe-d00c-7111-ea1e10575a1b-e752b8a4,
    #w-node-da5b391e-8bbe-d00c-7111-ea1e10575a1b-691e071f,
    #w-node-_71f2351a-5aa6-b465-c693-2a7af0b66067-1410a056 {
        grid-area: 1 / 1 / 3 / 2;
    }
}

@media screen and (max-width: 479px) {
    #w-node-_55e9427e-14a2-1172-ff4f-b1da21896630-482c3d0c,
    #w-node-cf6a1ceb-3e1f-d7ab-3242-3b659395e633-9b19497c,
    #w-node-da5b391e-8bbe-d00c-7111-ea1e10575a05-e752b8a4,
    #w-node-da5b391e-8bbe-d00c-7111-ea1e10575a05-691e071f,
    #w-node-_71f2351a-5aa6-b465-c693-2a7af0b66051-1410a056 {
        grid-area: 3 / 1 / 4 / 2;
    }
}
