@keyframes moveArrow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes moveArrowRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}

.main-header-wrap {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: var(--black);
}

header .expand-menu {
    padding: 50px 40px;
}

header .expand-menu ul li {
    margin-bottom: 20px;
}

header .expand-menu ul li.link-color a {
    color: var(--secondary);
}

header .expand-menu ul li.link-color a:hover {
    color: var(--primary);
}

header .btn-wrap {
    border-left: 3px solid var(--white);
}

header .btn-wrap .button {
    width: 240px;
    height: 100%;
    font-size: 16px;
}

.hero .row {
    justify-content: space-between;
    gap: 30px;
    padding-top: 50px;
}

.hero .row .col {
    max-width: 527px;
}

.hero .row .col.wide {
    max-width: 58%;
}

.hero .hero-title > span {
    color: var(--primary);
}

.hero .text {
    margin-top: 30px;
}
.hero .button {
    margin-top: 100px;
}

/* PARTNERING */
.partnering-title {
    max-width: 937px;
    margin-bottom: 100px;
}
.partnering .row {
    gap: 40px 30px;
}
.partnering .col.wide {
     width: 100%;
 }
.partnering .col.shrink {
    max-width: 390px;
}
.partnering .card-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 250px));
    gap: 25px;
}
.partnering .card-wrap .icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    border: solid 3px var(--white);
}
.partnering .card-wrap .title {
    margin-top: 20px;
}
.partnering .content-wrap button {
    margin-top: 50px;
    width: 100%;
}
.partnering .content-wrap h3,
.partnering .content-wrap h4,
.partnering .content-wrap h5,
.partnering .content-wrap h6 {
    text-transform: uppercase;
}


/* EXPERIENCE */
.experience .row {
    justify-content: space-between;
    gap: 20px;
}
.experience .row .col.wide {
    width: 58%;
}
.experience .text {
    max-width: 800px;
    margin-top: 30px;
}

/* PROJECTS */
.project .row {
    position: sticky;
    top: 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--black);
}
.project .row:nth-child(even) {
    flex-direction: row-reverse;
}
.project .row:not(:first-child) {
    padding-top: 75px;
}
.project .row:not(:last-child) {
    padding-bottom: 75px;
}
.project .row .col {
    width: 50%;
}
.project .row:nth-child(even) .col.block-align {
    display: flex;
    justify-content: flex-end;
}
.project .col .content-wrapper {
    width: 663px;
    padding-left: 1px;
}
.project .col .content-wrapper .title {
    margin-bottom: 50px;
}
.project .col .content-wrapper .text {
    max-width: 527px;
}

.project .site-link {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 300;
    text-decoration: underline;
}

/* Project Images */
.project-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* CONSULTATION */
.consultation {
    color: var(--black);
    background-color: var(--white);
}
.consultation .consultation-title {
    margin-bottom: 50px;
}
.consultation .consultation-subtitle {
    margin-bottom: 30px;
}
.consultation .row {
    justify-content: space-between;
    gap: 40px 30px;
}
.consultation .col.wide {
    width: 58%;
}
.consultation .col.wide .content-wrap {
    max-width: 663px;
}
.consultation .col.shrink {
    max-width: 390px;
}
.consultation .image-arrow-bottom {
    margin-bottom: 50px;
    text-align: center;
}
.consultation .image-arrow-bottom svg {
    animation: moveArrow 1.5s ease-in-out infinite;
}

/* BRAND LOGO */
.brand-logo .wrapper .row:first-child {
    padding-top: 0!important;
}
.brand-logo .row {
    /*position: sticky;*/
    /*top: 0;*/
    justify-content: space-between;
    gap: 40px 30px;
    background-color: var(--black);
}
.brand-logo .col.wide {
    width: 58%;
}
.brand-logo .col.wide .content-wrap {
    max-width: 800px;
}
.brand-logo .col.shrink {
    max-width: 390px;
}
.brand-logo .brand-logo-title {
    margin-bottom: 30px;
}
.brand-logo .content-wrap .brand-logo-subtitle {
    margin-bottom: 50px;
}
.brand-logo .content-wrap > .text {
    margin-bottom: 50px;
}
.brand-logo .content-wrap .offer-list-title {
    margin-bottom: 30px;
}
.brand-logo .content-wrap .offer-list {
    margin-bottom: 50px;
}
.brand-logo .content-wrap .offer-list li {
    margin-bottom: 15px;
    color: var(--primary);
    text-transform: uppercase;
}
.brand-logo .content-wrap .offer-list li:last-child {
    margin-bottom: 0;
}
.brand-logo .content-wrap button {
    margin-top: 50px;
}

/* WORLD MAP */
.world-map .map-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 100px 0 150px;
}

/* DISCUSS */
.discuss {
    color: var(--black);
    background-color: var(--white);
}
.discuss .discuss-title {
    margin-bottom: 50px;
}
.discuss .row {
    justify-content: space-between;
    gap: 40px 30px;
}
.discuss .col.wide {
    width: 58%;
}
.discuss .col.wide .content-wrap {
    max-width: 663px;
}
.discuss .col.shrink {
    margin-top: -190px;
    max-width: 390px;
}
.discuss .image-arrow-bottom {
    margin-bottom: 30px;
    text-align: center;
}
.discuss .image-arrow-bottom svg {
    animation: moveArrow 1.5s ease-in-out infinite;
}

/* PROCESS */
.process-title {
    max-width: 937px;
    margin-bottom: 50px;
}
.process .text {
    max-width: 800px;
    margin-bottom: 50px;
}

.accordion {
    margin-bottom: 100px;
}

.accordion__item {
    margin-bottom: -2px;
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}
.accordion__item:first-child {
    border-top: 0;
}
.accordion__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    padding: 50px 0;
    text-transform: uppercase;
    border: 0;
    outline: none;
    color: var(--white);
    transition: all 0.3s ease;
    background-color: transparent;
    cursor: pointer;
}
.accordion__indicator {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: transform .3s, color .3s;
}
.accordion__title:hover {
    color: var(--primary);
}
.accordion__title.active {
    /*padding: 50px 0 23px;*/
    padding-bottom: 0;
    color: var(--primary);
}
.accordion__title.active .accordion__indicator {
    transform: rotate(-90deg);
}
.accordion__content {
    max-width: 83%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

.accordion__title.active + .accordion__content {
    margin-top: 30px;
    margin-bottom: 50px;
}

.accordion__text {
    /*padding-bottom: 50px;*/
}

.process .disclaimer {
    max-width: 800px;
}

.process .disclaimer p {
    font-size: 40px;
    font-weight: bold;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--primary);
}

/* BRIEF */
.brief {
    color: var(--black);
    background-color: var(--white);
}
.brief .brief-title {
    margin-bottom: 50px;
}
.brief .row {
    justify-content: space-between;
    gap: 40px 30px;
}
.brief .col.wide {
    max-width: 663px;
}
.brief .col.wide .content-wrap {

}
.brief .col.shrink {
    max-width: 390px;
}
.brief .image-arrow-bottom {
    margin-bottom: 30px;
    text-align: center;
}
.brief .image-arrow-bottom svg {
    animation: moveArrowRight 1.5s ease-in-out infinite;
}

.footer-landing .footer-contact-item:not(:last-child) {
    margin-bottom: 30px;
}
.footer-landing .footer-contact-link {
    display: inline-block;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--white);
}
.footer-landing .footer-contact-link:hover {
    color: var(--primary);
}

/*.scroll-text {
    !*color: rgb(128, 128, 128);*!
    color: transparent;
    -webkit-text-stroke: 1px rgb(128, 128, 128);
    transition: color 1s, -webkit-text-stroke 0.3s;
    transition-delay: calc(var(--index) * 0.05s);
}

.scroll-text span {
    !*color: rgb(128, 128, 128);;*!
    !*transition: color 0.3s;*!
    color: transparent;
    -webkit-text-stroke: 1px rgb(128, 128, 128);
    transition: color 0.3s, -webkit-text-stroke 0.3s;
    transition-delay: calc(var(--index) * 0.05s);
}

.scroll-text span.active {
    !*color: #fff;*!
    color: var(--white);
    -webkit-text-stroke: 0px;
}*/

.scroll-text {
    color: transparent;
    /*-webkit-text-stroke: 1px rgb(128, 128, 128);*/
    transition: color .5s, -webkit-text-stroke .5s;
}

.scroll-text span {
    color: transparent;
    /*-webkit-text-stroke: 1px rgb(128, 128, 128); */
    transition: color .5s ease, -webkit-text-stroke .5s ease;
    transition-delay: calc(var(--index) * 0.05s);
}

.scroll-text span.active {
    color: var(--white);
    /*-webkit-text-stroke: 0px; */
}

.discuss-title.scroll-text span.active,
.brief-title.scroll-text span.active,
.consultation-title.scroll-text span.active {
    color: var(--black);
    /*-webkit-text-stroke: 0px;*/
}


@media(max-width: 1024px) {
    .hero>.row {
        flex-wrap: wrap;
    }
    .hero .row .col {
        width: 100%;
        max-width: unset;
    }
    .hero .row .col.wide {
        max-width: unset;
    }
    .hero .img-wrap img {
        width: 100%;
    }
    .hero .button {
        margin-top: 70px;
    }

    /* PARTNERING */
    .partnering-title {
        margin-bottom: 70px;
    }
    .partnering .col.shrink {
        max-width: 100%;
    }
    .partnering .content-wrap button {
        width: unset;
    }

    /* EXPERIENCE */
    .experience .row .col.wide {
        width: 100%;
    }
    .experience .img-wrap img {
        width: 100%;
    }

    /* PROJECTS */
    .project .row:nth-child(even) {
        flex-direction: column;
    }
    .project .row .col {
        width: 100%;
    }
    .project .row:nth-child(even) .col.block-align {
        display: unset;
        justify-content: center;
    }
    .project .col .content-wrapper {
        width: 100%;
    }
    .project .col .content-wrapper .text {
        max-width: 100%;
    }
    .project .img-wrap img {
        width: 100%;
    }

    /* CONSULTATION */
    .consultation .col.wide {
        width: 100%;
    }
    .consultation .col.wide .content-wrap {
        max-width: 100%;
    }
    .consultation .col.shrink {
        max-width: 100%;
    }
    .consultation .col.shrink .content-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* BRAND LOGO */
    .brand-logo .col.wide {
        width: 100%;
    }
    .brand-logo .col.wide .content-wrap {
        max-width: 100%;
    }
    .brand-logo .col.shrink {
        max-width: 100%;
    }
    .brand-logo .col.shrink .image img {
        width: 100%;
        height: auto;
    }

    /* DISCUSS */
    .discuss .col.wide {
        width: 100%;
    }
    .discuss .col.shrink {
        margin-top: unset;
        max-width: 100%;
    }
    .discuss .col.wide .content-wrap {
        max-width: unset;
    }

    /* PROCESS */
    .accordion {
        margin-bottom: 70px;
    }

    /* BRIEF */
    .brief .col.wide {
        max-width: 100%;
    }
    .brief .col.shrink {
        max-width: 100%;
    }
    .brief .image-arrow-bottom {
        transform: rotate(90deg);
    }
    .brief .image-arrow-bottom svg {
        animation: moveArrowRight 1.5s ease-in-out infinite;
    }
}

@media(max-width: 768px) {
    header .btn-wrap .button {
        width: 140px;
        font-size: 12px;
    }


    .hero .button {
        margin-top: 40px;
    }

    /* PARTNERING */
    .partnering-title {
        margin-bottom: 50px;
    }
    .partnering .content-wrap button {
        width: 100%;
        margin-top: 30px;
    }
    .partnering .card-wrap {
        justify-content: center;
    }

    .partnering .card-wrap .title {
        font-size: 16px;
    }

    /* PROJECTS */
    .project .col .content-wrapper .title {
        margin-bottom: 30px;
    }
    .project .site-link {
        margin-bottom: 20px;
        font-size: 18px;
    }

    /* CONSULTATION */
    .consultation .consultation-title {
        margin-bottom: 30px;
    }
    .consultation .consultation-subtitle {
        margin-bottom: 20px;
    }
    .consultation .image-arrow-bottom svg {
        width: 120px;
        height: 125px;
    }

    /* BRAND LOGO */
    .brand-logo .brand-logo-title {
        margin-bottom: 20px;
    }
    .brand-logo .content-wrap .brand-logo-subtitle {
        margin-bottom: 30px;
    }
    .brand-logo .content-wrap > .text {
        margin-bottom: 30px;
    }
    .brand-logo .content-wrap .offer-list-title {
        margin-bottom: 20px;
    }
    .brand-logo .content-wrap .offer-list {
        margin-bottom: 30px;
    }
    .brand-logo .content-wrap .offer-list li {
        margin-bottom: 10px;
    }
    .brand-logo .content-wrap button {
        margin-top: 30px;
    }

    /* WORLD MAP */
    .world-map .map-wrapper {
        padding: 50px 0 70px;
    }

    /* DISCUSS */
    .discuss .discuss-title {
        margin-bottom: 30px;
    }
    .discuss .image-arrow-bottom svg {
        width: 120px;
        height: 125px;
    }

    /* PROCESS */
    .process-title {
        margin-bottom: 30px;
    }
    .process .text {
        margin-bottom: 30px;
    }
    .accordion {
        margin-bottom: 50px;
    }
    .accordion__title {
        padding: 20px 0;
    }
    .accordion__title h2 {
        font-size: 20px;
    }
    .accordion__indicator {
        width: 20px;
        height: 20px;
    }
    .accordion__indicator svg {
        width: 20px;
        height: 20px;
    }
    .accordion__title.active + .accordion__content {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .process .disclaimer p {
        font-size: 20px;
    }

    /* BRIEF */
    .brief .image-arrow-bottom svg {
        width: 120px;
        height: 125px;
    }

    /*  FOOTER  */
    .footer-landing .footer-contact-link {
        font-size: 20px;
    }
}
