/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Text selection styles */
*::selection {
  background: #101010;
  color: #ffffff;
}
*::-moz-selection {
  background: #101010;
  color: #ffffff;
}
*::-webkit-selection {
  background: #101010;
  color: #ffffff;
}

/* Document defaults */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    --color-primary: #477445;
    --color-black: #101010;
    --color-white: #FBF7F2;
    --color-grey: #7D7D7D;
}

body {
    font-family: 'Chivo', sans-serif;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove text decoration from links */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form elements reset */
button,
input,
textarea {
    font: inherit;
}

/* Headings styles */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
}

h1{
    font-size: 50px;
    font-weight: 900;
    line-height: 67px;
}
h2{
    font-size: 32px;
    font-weight: 900;
    line-height: 26px;
}

/* Appear animations */
.appear{
    opacity: 0;
    &.visible{
        opacity: 1;
    }
}

.button{
    font-size: 16px;
    font-weight: bold;
    line-height: 19px;
    padding: 6px 15px;
    display: inline-block;
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 20px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s;
    text-transform: uppercase;
    &:hover,&:focus{
        background-color: var(--color-black);
        color: var(--color-white);
    }
}

/* Row layout */
.full-row{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

header{
    .full-row{
        .blocks-container{
            .block{
                &.logo{
                    a{
                        display: block;
                        max-width: 55px;
                        margin: 0 auto;
                        top: 14px;
                        position: relative;
                        z-index: 999;
                        img{
                            max-width: 55px;
                            transition: all 0.3s;
                        }
                        &:hover,&:focus{
                            img{
                                transform: scale(1.1);
                            }
                        }
                    }
                }
                &.menu{
                    position: fixed;
                    width: 100%;
                    top: 0;
                    left: 50%;
                    max-width: 1400px;
                    transform: translateX(-50%);
                    z-index: 998;

                    nav{
                        ul{
                            list-style: none;
                            display: flex;
                            justify-content: space-around;
                            margin: 0;
                            padding: 5px 0;
                            position: relative;
                            top: 20px;
                            margin: 0 auto;
                            width: 100%;
                            box-sizing: border-box;
                            transition: all 0.5s;
                            transition-timing-function: cubic-bezier(.4,0,.2,1);

                            &:before{
                                content: '';
                                background-color: var(--color-black);
                                width: 500px;
                                height: 100%;
                                top: -15px;
                                left: 50%;
                                transform: translateX(-50%);
                                position: absolute;
                                opacity: 0;
                                transition: all 0.7s;
                                transition-timing-function: cubic-bezier(.4,0,.2,1);
                            }

                            li{
                                padding: 0 5px;
                                transition: all 0.3s;
                                transition-timing-function: cubic-bezier(.4,0,.2,1);
                                color: var(--color-black);
                                position: relative;
                                cursor: pointer;

                                a{
                                    font-size: 16px;
                                    font-weight: 600;
                                    text-transform: uppercase;
                                    &:before{
                                        content: '';
                                        position: absolute;
                                        width: 0;
                                        height: 1px;
                                        background-color: var(--color-black);
                                        top: calc(100% - 2px);
                                        left: 5px;
                                        transition: all 0.3s;
                                        transition-timing-function: cubic-bezier(.4,0,.2,1);
                                    }
                                    &:hover,&:focus{
                                        &:before{
                                            width: calc(100% - 10px);
                                        }
                                    }
                                }
                                &.current-menu-item{
                                    a{
                                        &:before{
                                            width: calc(100% - 10px);
                                        }
                                    }
                                }
                                &.back-up{
                                    font-size: 20px;
                                    font-weight: bold;
                                    width: 48px;
                                    height: 48px;
                                    background-color: var(--color-black);
                                    color: var(--color-white);
                                    border-radius: 50%;
                                    position: absolute;
                                    position: fixed;
                                    right: 15px;
                                    top: 80vh;
                                    opacity: 0;
                                    pointer-events: none;
                                    text-align: center;
                                    line-height: 48px;
                                    padding: 0;
                                    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
                                    transition: transform 0.3s;
                                    &:hover{
                                        transform: scale(1.1);
                                        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
                                        transition: transform 0.3s, box-shadow 0.3s;
                                    }
                                    a{
                                        display: block;
                                        &:before{
                                            display: none;
                                        }
                                        img{
                                            margin: 0 auto;
                                            padding: 7px 0;
                                            height: 48px;
                                        }
                                    }
                                }
                            }
                            &.scrolled{
                                width: 500px;
								@media screen and (max-width: 500px) {
                                    width: 100%;
                                }
                                &:before{
                                    opacity: 1;
                                    top: 0;
                                }
                                li{
                                    color: var(--color-white);
                                    a{
                                        &:before{
                                            background-color: var(--color-white);
                                        }
                                    }
                                    &.back-up{
                                        opacity: 1;
                                        pointer-events: auto;
                                    }
                                }
                            }

                            @media screen and (max-width: 650px) {
                                top: 60px;
                                &.scrolled{
                                    top: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

main{
    padding: 200px 0;
    @media screen and (max-width: 700px) {
        overflow: hidden;
    }
    .row{
        margin-bottom: 200px;
        scroll-margin-top: 100px;
        &.row1{
			overflow: hidden;
    		padding: 0 0 10px 0;
            .full-row{
                .blocks-container{
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    position: relative;
                    .block-group{
                        &.content{
                            display: flex;
                            flex-wrap: wrap;
                            flex-direction: column;
                            width: 40%;
                            min-width: 450px;
                            .block{
                                &.title{
                                    margin-bottom: 140px;
                                    display: flex;
                                    flex-wrap: wrap;
                                    gap: 24px;
                                    .inner-block{
                                        &.disc{
                                            transform: translateY(-100%);
                                            transition: transform 1s ease;
                                            max-width: 121px;
                                            overflow: hidden;
                                            img{
                                                height: auto;
                                                object-fit: cover;
                                                object-position: left center;
                                                max-width: 200%;
                                                animation: jiggle 0.2s infinite alternate linear;
                                                &.rotation{
                                                    object-fit: cover;
                                                    object-position: left center;
                                                    position: absolute;
                                                    top: 0;
                                                    animation: rotate 2s linear infinite;
                                                }
                                            }
                                        }
                                        &.title{
                                            display: flex;
                                            flex-wrap: wrap;
                                            flex-direction: column;
                                            gap: 24px;
                                            overflow: hidden;
                                            h1{
                                                font-family: 'Cinzel', serif;
                                                font-size: 50px;
                                                font-weight: 900;
                                                line-height: 67px;
                                                transform: translateX(-100%);
                                                span{
                                                    display: inline-block;
                                                }
                                            }
                                            ul{
                                                display: flex;
                                                gap: 35px;
                                                transform: translateX(-100%);
                                                li{
                                                    padding-left: 24px;
                                                    font-weight: bold;
                                                    font-size: 18px;
                                                    letter-spacing: -3%;
                                                    text-transform: uppercase;
                                                    position: relative;
                                                    &:before{
                                                        content: '';
                                                        display: block;
                                                        width: 15px;
                                                        height: 15px;
                                                        background-image: url(../files/star-green.svg);
                                                        position: absolute;
                                                        left: 0;
                                                        top: 50%;
                                                        transform: translateY(-50%);
                                                    }
                                                }
                                            }
                                            .button{
                                                transform: translateX(-100%);
                                                margin-bottom: 5px;
                                            }
                                        }
                                    }
                                    &.appear.visible{
                                        .inner-block{
                                            &.disc{
                                                transform: translateY(0);
                                            }
                                            &.title{
                                                h1{
                                                    transform: translateX(0);
                                                    opacity: 1;
                                                    transition: transform 1s ease 1s, opacity 1s ease 1s;
                                                }
                                                ul{
                                                    transform: translateX(0);
                                                    opacity: 1;
                                                    transition: transform 1s ease 1.25s, opacity 1s ease 1.25s;
                                                }
                                                .button{
                                                    transform: translateX(0);
                                                    opacity: 1;
                                                    transition: transform 1s ease 1.5s, opacity 1s ease 1.5s, background-color 0.3s;
                                                }
                                            }
                                        }
                                    }
                                }
                                &.intro{
                                    padding: 20px 24px;
                                    margin-left: 60px;
                                    margin-bottom: 80px;
                                    position: relative;
                                    &:before{
                                        content: '';
                                        display: block;
                                        width: 0px;
                                        height: 0px;
                                        background-image: url(../files/star.svg);
                                        background-size: cover;
                                        position: absolute;
                                        left: 0;
                                        top: 0;
                                        transform: translate(-50%, -50%);
                                    }
                                    &:after{
                                        content: '';
                                        display: block;
                                        height: 0%;
                                        width: 0%;
                                        position: absolute;
                                        left: 0;
                                        top: 0;
                                        border-top: 1px solid var(--color-black);
                                        border-left: 1px solid var(--color-black);
                                    }
                                    .inner-block{
                                        &.text{
                                            overflow: hidden;
											position: relative;
                      						z-index: 1;
                                            p{
                                                transform: translateY(-100%);
                                                position: relative;
                                                display: inline-block;
                                            }
                                        }
                                    }
                                    &.appear.visible{
                                        &:before{
                                            width: 40px;
                                            height: 40px;
                                            transition: width 0.5s ease-out 0.5s, height 0.5s ease-out 0.5s;
                                        }
                                        &:after{
                                            width: 100%;
                                            height: 100%;
                                            transition: width 1s ease-out 0.5s, height 0.5s ease-out 0.5s;
                                        }
                                        p{
                                            transform: translateX(0);
                                            transition: transform 1s ease-out;
                                        }
                                    }
                                }
                            }
                            @media screen and (max-width: 500px) {
                                min-width: 100%;
                                .block{
                                    &.title{
                                        .inner-block{
                                            &.disc{
                                                max-width: 100%;
                                                max-height: 121px;
                                                width: 100%;
                                                img{
                                                    width: auto;
                                                    height: 200%;
                                                }
                                            }
                                        }
										&.appear.visible{
                                            .inner-block{
                                                &.title{
                                                    h1{
                                                        transition: transform 1s ease 0s, opacity 1s ease 0s;
                                                    }
                                                    ul{
                                                        transition: transform 1s ease 0.25s, opacity 1s ease 0.25s;
                                                    }
                                                    .button{
                                                        transition: transform 1s ease 0.5s, opacity 1s ease 0.5s, background-color 0.3s;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    &.intro{
                                        margin-left: 20px;
                                    }
                                }
                            }
                        }
                        &.image{
                            width: 33.33%;
                            min-width: 450px;
                            transform: scale(1.5) rotate(4deg);
                            opacity: 0;
                            @media screen and (max-width: 500px) {
                                min-width: 100%;
                            }
                            .block{
                                &.image{
                                    background-color: white;
                                    padding: 20px;
                                    border-radius: 5px;
                                    box-shadow: 3px 3px 0 0 rgba(0,0,0,1);
                                    height: 100%;
                                    position: relative;
                                    transform: rotate(0);
                                    transition: transform 0.3s;
                                    &:hover{
                                        transform: rotate(2deg);
                                    }
                                    &:after{
                                        content: '';
                                        display: block;
                                        width: calc(100% - 40px);
                                        height: 70px;
                                        border-radius: 10px;
                                        background-image: radial-gradient(circle, #EEEEEE 1px, transparent 1px);
                                        background-size: 12px 12px;
                                        background-repeat: repeat;
                                        background-position: center;
                                        position: absolute;
                                        bottom: 10px;
                                        left: 20px;
                                    }
                                    img{
                                        border-radius: 10px;
                                        height: calc(100% - 70px);
                                        width: 100%;
                                        object-fit: cover;
                                    }
                                }
                            }
                            &.appear.visible{
                                transform: scale(1) rotate(0deg);
                                opacity: 1;
                                transition: transform 0.5s ease, opacity 0.5s ease;
                            }
                        }
                        &.scroll-down-container{
                            position: absolute;
                            bottom: 0;
                            left: 50%;
                            transform: translate(-50%, 0);
                            @media screen and (max-width: 1000px) {
                                display: none;
                            }
                            .block{
                                &.scroll-down{
                                    a{
                                        img{
                                            transition: transform 0.3s;
                                        }
                                        &:hover,&:focus{
                                            img{
                                                transform: translateY(10px);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        &.row2{
            .full-row{
                .blocks-container{
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    position: relative;
                    overflow: hidden;
                    .block-group{
                        &.image{
                            flex: 1 0 50%;
                            min-height: 300px;
                            padding-right: 50px;
                            box-sizing: border-box;
                            height: auto;
                            transform: translateY(-100%);
                            &::before{
                                content: '';
                                display: block;
                                width: 50px;
                                height: 50px;
                                background-color: var(--color-primary);
                                position: absolute;
                                bottom: -5px;
                                left: -5px;
                            }
                            &::after{
                                content: '';
                                display: block;
                                width: 40px;
                                height: 80px;
                                background-image: url(../files/star.svg);
                                background-size: 100% 100%;
                                background-repeat: no-repeat;
                                position: absolute;
                                right: 50px;
                                top: 0;
                                transform: translate(50%, 0);
                            }
                            .block{
                                &.image{
                                    height: 100%;
                                    position: relative;
                                    overflow: hidden;
                                    &::after{
                                        content: '';
                                        display: block;
                                        width: 100%;
                                        height: 100%;
                                        background: repeating-conic-gradient(var(--color-primary) 0 25%, transparent 0 50%) 50% / 2px 2px;
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        opacity: 0;
                                        transition: opacity 0.5s ease;
                                    }
                                    img{
                                        height: 100%;
                                        width: 100%;
                                        object-fit: cover;
                                        transition: transform 0.5s ease;
                                        position: absolute;
                                    }
                                    &:hover{
                                        &:after{
                                            opacity: 0.4;
                                        }
                                        img{
                                            transform: scale(1.1);
                                        }
                                    }
                                }
                            }
                        }
                        &.content{
                            flex: 1 1 50%;
                            min-width: 450px;
                            position: relative;
                            padding: 30px 0;
                            .block{
                                &.text{
                                    columns: 2;
                                    column-gap: 24px;
                                    overflow: hidden;
                                    h2{
                                        column-span: all;
                                        margin-bottom: 5px;
                                        transform: translateX(-100%);
                                    }
                                    p{
                                        opacity: 0;
                                        margin-bottom: 1em;
                                        &.subtitle{
                                            transform: translateX(-100%);
                                            column-span: all;
                                            margin-bottom: 24px;
                                            font-weight: 600;
                                            color: #7D7D7D;
                                        }
                                    }
                                }
                            }
                            @media screen and (max-width: 550px) {
                                min-width: 100%;
                                .block{
                                    &.text{
                                        columns: 1;
                                    }
                                }
                            }
                        }
                    }
                    &.appear.visible{
                        .block-group{
                            &.image{
                                transform: translateY(0);
                                transition: transform 1s ease;
                            }
                            &.content{
                                .block{
                                    &.text{
                                        h2{
                                            transform: translateX(0);
                                            transition: transform 1s ease 0s;
                                        }
                                        p{
                                            opacity: 1;
                                            transition: opacity 1s ease 1.2s;
                                            &.subtitle{
                                                transform: translateX(0);
                                                transition: transform 1s ease 0.3s;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        &.row3{
            background-image: url(../files/grid.svg);
            background-size: auto;
            background-repeat: repeat-x;
            background-position: bottom center;
            padding: 0px 0 300px 0;
            margin-bottom: 0;
            position: relative;
            &:before{
                content: '';
                display: block;
                width: 100%;
                height: calc(50vh - 32px);
                position: absolute;
                bottom: 0;
                z-index: 10;
                background: linear-gradient(transparent 0%, var(--color-white) 100%);
            }
            .full-row{
                .blocks-container{
                    .block-group{
                        &.title{
                            width: 100%;
                            position: relative;
                            .block{
                                &.star{
                                    position: relative;
                                    img{
                                        height: 41px;
                                        width: 0px;
                                        transition: transform 0.3s;
                                        margin: 0 auto;
                                        padding-bottom: 41px;
                                        box-sizing: content-box;
                                    }
                                    &:before{
                                        content: '';
                                        display: block;
                                        height: 1px;
                                        width: 0%;
                                        position: absolute;
                                        top: 20px;
                                        left: 50%;
                                        transform: translateX(-50%);
                                        background-color: var(--color-black);
                                    }
                                    &:after{
                                        content: '';
                                        display: block;
                                        background-image: url(../files/star-long.svg);
                                        width: 9px;
                                        height: 41px;
                                        background-size: cover;
                                        background-repeat: no-repeat;
                                        position: absolute;
                                        left: 50%;
                                        transform: translateX(-50%) translateY(-100%);
                                        top: 35px;
                                        opacity: 0;
                                    }
                                }
                                &.title{
                                    text-align: center;
                                    margin-bottom: 100px;
                                    overflow: hidden;
                                    h2{
                                        font-size: 48px;
                                        line-height: 56px;
                                        transform: translateY(-100%);
                                    }
                                    .subtitle{
                                        font-size: 18px;
                                        font-weight: 600;
                                        color: #7D7D7D;
                                        transform: translateY(100%);
                                    }
                                }
                            }
                        }
                    }
                    .swiper-skills{
                        width: 100%;
                        padding: 50px 0 140px 0;
                        .block-group{
                            &.swiper-wrapper{
                                .block{
                                    &.swiper-slide{
                                        &.swiper-slide-active{
                                            z-index: 1;
                                            .record{
                                                transform: scale(1.4);
                                                pointer-events: all;
                                                cursor: pointer;
                                                filter: brightness(1);
                                                @media screen and (max-width: 649px) {
                                                    transform: scale(1.2);
                                                }
                                            }
                                        }
                                        .record{
                                            width: 230px;
                                            height: 230px;
                                            position: relative;
                                            margin: 0 auto;
                                            transition: all 0.5s;
                                            pointer-events: none;
                                            filter: brightness(0.5);
                                            &:after{
                                                content: '';
                                                display: block;
                                                width: 100%;
                                                height: 30px;
                                                position: absolute;
                                                top: calc(100% + 30px);
                                                left: 0;
                                                background-image: radial-gradient(#000 0, transparent 70%);
                                                opacity: 0.4;
                                            }
                                            button{
                                                position: absolute;
                                                top: 0;
                                                left: 0;
                                                width: 100%;
                                                height: 100%;
                                                background-color: transparent;
                                                z-index: 10;
                                                border: 0;
                                                cursor: pointer;
                                            }
                                            .pill{
                                                position: absolute;
                                                right: 10px;
                                                bottom: 10px;
                                                background-color: white;
                                                border-radius: 30px;
                                                font-size: 12px;
                                                color: black;
                                                z-index: 3;
                                                transition: all 0.5s;
                                                padding: 2px 8px;
                                                box-shadow: -4.35px 0 5.8px -2.9px rgba(0, 0, 0, 0.5);
                                            }
                                            .cover{
                                                height: 230px;
                                                width: 230px;
                                                background-color: #545454;
                                                position: relative;
                                                z-index: 2;
                                                transition: all 0.5s;
                                                left: 0;
                                                box-shadow: -4.35px 0 5.8px -2.9px rgba(0, 0, 0, 0.5), inset 0 0 30px 0 rgba(0,0,0,0.2);
                                                background-position: center;
                                                background-size: cover;
                                                background-repeat: no-repeat;
                                            }
                                            .disc{
                                                height: 200px;
                                                width: 200px;
                                                position: absolute;
                                                top: 15px;
                                                right: 60px;
                                                z-index: 1;
                                                border-radius: 100%;
                                                box-sizing: border-box;
                                                transition: all 0.5s;
                                                transform: rotate(0deg);
                                                background-image: url(../files/disc.png);
                                                background-position: center;
                                                background-size: cover;
                                                background-repeat: no-repeat;
                                            }
                                            .back{
                                                width: 6px;
                                                height: 100%;
                                                transition: all 0.5s;
                                                left: -3px;
                                                top: 0;
                                                border-radius: 100%;
                                                position: absolute;
                                                z-index: -1;
                                                display: block;
                                                background-color: #545454;
                                            }
                                            &:hover{
                                                .disc{
                                                    right: 130px;
                                                    transform: rotate(-50deg);
                                                }
                                            }
											&#visits{
												.cover{
                                                    background-image: url(../files/visits-album.png);
                                                }
											}
											&#kroost{
												.cover{
                                                    background-image: url(../files/kroost-album.png);
                                                }
											}
                                            &#dordrecht{
                                                .cover{
                                                    background-image: url(../files/dordrect-album.png);
                                                }
                                            }
                                            &#cat_app{
                                                .cover{
                                                    background-image: url(../files/munchn-album.png);
                                                }
                                            }
                                            &#dump{
                                                .cover{
                                                    background-image: url(../files/flower-album.jpg);
                                                }
                                            }
                                            &.opened{
                                                .pill{
                                                    transform: translateX(50vw);
                                                }
                                                .cover{
                                                    transform: translateX(50vw);
                                                }
                                                .disc{
                                                    transform: translateX(-50vw);
                                                }
                                                .back{
                                                    transform: translateX(50vw);
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        .swiper-button-prev, .swiper-button-next{
                            width: 48px;
                            height: 48px;
                            margin-left: 20px;
                            margin-right: 20px;
                            box-sizing: content-box;
                            transform: translateY(50%);
                            top: calc(50% - 70px);
                            img{
                                width: 48px;
                                height: 48px;
                                padding: 0 7px;
                                border-radius: 50%;
                                background-color: #fff;
                                box-shadow: 2px 2px 0 0 rgba(0,0,0,1), 0px 0 0 0px rgba(0, 0, 0, 0.5);
                                box-sizing: border-box;
                                transition: transform 0.3s;
                            }
                            &:hover{
                                img{
                                    transform: scale(1.1);
                                    transition: transform 0.3s, box-shadow 0.3s;
                                    box-shadow: 2px 2px 0 0 rgba(0,0,0,1), 0 0 0 20px rgba(0, 0, 0, 0);
                                }
                            }
                            svg{
                                display: none;
                            }
                        }
                    }
                    &.appear.visible{
                        .block-group{
                            &.title{
                                .block{
                                    &.star{
                                        img{
                                            width: 41px;
                                            transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
                                        }
                                        &:before{
                                            width: 100%;
                                            transition: width 1.5s ease-in-out;
                                        }
                                        &:after{
                                            transform: translateX(-50%) translateY(0%);
                                            opacity: 1;
                                            transition: transform 0.5s ease-in-out 0.5s, opacity 0.5s ease-in-out 0.5s;
                                        }
                                    }
                                    &.title{
                                        h2{
                                            transform: translateY(0);
                                            transition: transform 1s ease 0.5s;
                                        }
                                        .subtitle{
                                            transform: translateY(0);
                                            transition: transform 1s ease 0.75s;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        &.row4{
            background-image: radial-gradient(circle, #EEEEEE 1px, transparent 1px);
            background-size: 12px 12px;
            margin-bottom: -200px;
            &:before{
                content: '';
                display: block;
                width: 100%;
                height: calc(50vh - 32px);
                position: sticky;
                top: 0;
                z-index: 10;
                background: linear-gradient(var(--color-white) 0%, transparent 100%);
            }
            .full-row{
                .blocks-container{
                    margin-top: calc(-50vh + 32px);
                    .block-group{
                        &.content{
                            .block{
                                &.sticky-title{
                                    position: sticky;
                                    top: 0;
                                    width: 50%;
                                    z-index: 10;
                                    &:before{
                                        content: '';
                                        display: block;
                                        width: 40px;
                                        height: 40px;
                                        background-image: url(../files/star.svg);
                                        background-size: cover;
                                        position: absolute;
                                        left: calc(100% - 30px);
                                        top: 50%;
                                        transform: translate(-100%, -50%);
                                    }
                                    &:after{
                                        content: '';
                                        display: block;
                                        width: calc(100vw - 16px);
                                        height: calc(50vh - 32px);
                                        position: relative;
                                        left: 100%;
                                        transform: translateX(-50%);
                                        background: linear-gradient(transparent 0%, var(--color-white) 100%);
                                    }
                                    h2{
                                        font-size: 64px;
                                        line-height: 64px;
                                        position: relative;
                                        padding-top: calc(50vh - 32px);
                                        @media screen and (max-width: 1030px) {
                                            font-size: 40px;
                                        }
                                    }
                                }
                                &.skills{
                                    width: 50%;
                                    left: 50%;
                                    position: relative;
                                    margin-top: calc(-50vh - 242px);
                                    ul{
                                        padding-bottom: calc(50vh - 132px);
                                        &:before{
                                            content: '';
                                            display: block;
                                            width: 100%;
                                            height: 200px;
                                            background-color: var(--color-primary);
                                            position: absolute;
                                            left: 0%;
                                            top: 50%;
                                            mix-blend-mode: lighten;
                                            position: sticky;
                                            z-index: 1;
                                            transform: translateY(-50%);
                                        }
                                        li{
                                            font-size: 64px;
                                            margin-bottom: 80px;
                                            font-weight: bold;
                                            text-transform: uppercase;
                                            position: relative;
                                            text-indent: 100px;
                                            opacity: 0;
                                            @media screen and (max-width: 1030px) {
                                                font-size: 40px;
                                            }
                                            &.appear.visible{
                                                text-indent: 0px;
                                                opacity: 1;
                                                transition: text-indent 1s ease, opacity 1s ease;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            @media screen and (max-width: 700px) {
                &:before{
                    display: none;
                }
                .full-row{
                    .blocks-container{
                        margin-top: 0;
                        .block-group{
                            &.content{
                                .block{
                                    &.sticky-title{
                                        position: relative;
                                        width: 100%;
                                        text-align: center;
                                        h2{
                                            padding-top: 100px;
                                        }
                                        &:before{
                                            display: none;
                                        }
                                        &:after{
                                            display: none;
                                        }
                                    }
                                    &.skills{
                                        width: 100%;
                                        left: 0;
                                        position: relative;
                                        text-align: center;
                                        margin-top: 50px;
                                        ul{
                                            padding-bottom: 0;
                                            &:before{
                                                display: none;
                                            }
                                            li{
                                                font-size: 32px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .overlay{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--color-white);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        &.open{
            opacity: 1;
        }
    }
}

footer{
    padding: 50px 0;
    .full-row{
        .blocks-container{
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: center;
            margin: 0 auto;
            max-width: 1130px;
            position: relative;
            padding: 60px 24px;
            box-sizing: border-box;
            &:before{
                content: '';
                display: block;
                width: 0%;
                height: 1px;
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                background-color: var(--color-black);
            }
            &:after{
                content: '';
                display: block;
                width: 100%;
                height: 0%;
                position: absolute;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                border-left: 1px solid var(--color-black);
                border-right: 1px solid var(--color-black);
                box-sizing: border-box;
            }

            .star{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                &:before{
                    content: '';
                    display: block;
                    width: 0%;
                    height: 1px;
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    background-color: var(--color-black);
                }
                &:after{
                    content: '';
                    display: block;
                    width: 1px;
                    height: 0%;
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    background-color: var(--color-black);
                }
                img{
                    position: absolute;
                    width: 0px;
                    height: 0px;
                    object-fit: cover;
                    top: 0;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
                @media screen and (max-width: 725px) {
                    &:after{
                        width: 0%;
                        height: 1px;
                        top: calc(50% + 30px);
                        left: 0;
                        transform: translateY(-50%);
                    }
                }
            }
            .block-group{
                position: relative;
                z-index: 1;
                &.contact{
                    width: calc(50% - 24px);
                    min-width: 300px;
                    display: flex;
                    flex-wrap: wrap;
                    /* padding-right: 24px; */
                    overflow: hidden;
                    .block{
                        transform: translateY(-100%);
                        &.image{
                            width: 33.33%;
                            min-width: 115px;
                            img{
                                width: 80px;
                                height: 80px;
                                object-fit: cover;
                                border-radius: 50%;
                                filter: grayscale(100%);
                                box-shadow: 2px 2px 0 0 rgba(0,0,0,1);
                                top: 50%;
                                transform: translateY(-50%);
                                position: relative;
                            }
                        }
                        &.contact{
                            width: 66.66%;
                            padding-left: 25px;
                            min-width: 275px;
                            ul{
                                li{
                                    position: relative;
                                    &:before{
                                        content: '';
                                        position: absolute;
                                        left: -24px;
                                        top: 50%;
                                        transform: translateY(-50%);
                                        background-image: url(../files/star.svg);
                                        background-size: cover;
                                        width: 12px;
                                        height: 12px;
                                    }
                                    a{
                                        line-height: 32px;
                                        font-size: 16px;
                                        position: relative;
                                        &:before{
                                            content: '';
                                            position: absolute;
                                            width: 0;
                                            height: 1px;
                                            background-color: var(--color-black);
                                            top: 100%;
                                            left: 0;
                                            transition: all 0.3s;
                                            transition-timing-function: cubic-bezier(.4,0,.2,1);
                                        }
                                        &:hover,&:focus{
                                            &:before{
                                                width: 100%;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                &.nav{
                    width: calc(50% - 24px);
                    min-width: 300px;
                    display: flex;
                    flex-wrap: wrap;
                    /* padding-left: 24px; */
                    overflow: hidden;
                    .block{
                        transform: translateY(-100%);
                        &.title{
                            width: 33.33%;
                            min-width: 120px;
                            @media screen and (max-width: 1100px) {
                                width: 100%;
                            }
                            h3{
                                font-size: 14px;
                                line-height: 32px;
                                font-weight: 900;
                            }
                        }
                        &.nav1{
                            width: 33.33%;
                            min-width: 115px;
                            padding-left: 25px;
                            ul{
                                li{
                                    position: relative;
                                    &:before{
                                        content: '';
                                        position: absolute;
                                        left: -24px;
                                        top: 50%;
                                        transform: translateY(-50%);
                                        background-image: url(../files/star.svg);
                                        background-size: cover;
                                        width: 12px;
                                        height: 12px;
                                    }
                                    a{
                                        line-height: 32px;
                                        font-size: 16px;
                                        position: relative;
                                        &:before{
                                            content: '';
                                            position: absolute;
                                            width: 0;
                                            height: 1px;
                                            background-color: var(--color-black);
                                            top: 100%;
                                            left: 0;
                                            transition: all 0.3s;
                                            transition-timing-function: cubic-bezier(.4,0,.2,1);
                                        }
                                        &:hover,&:focus{
                                            &:before{
                                                width: 100%;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        &.nav2{
                            width: 33.33%;
                            min-width: 115px;
                            padding-left: 25px;
                            ul{
                                li{
                                    position: relative;
                                    &:before{
                                        content: '';
                                        position: absolute;
                                        left: -24px;
                                        top: 50%;
                                        transform: translateY(-50%);
                                        background-image: url(../files/star.svg);
                                        background-size: cover;
                                        width: 12px;
                                        height: 12px;
                                    }
                                    a{
                                        line-height: 32px;
                                        font-size: 16px;
                                        position: relative;
                                        &:before{
                                            content: '';
                                            position: absolute;
                                            width: 0;
                                            height: 1px;
                                            background-color: var(--color-black);
                                            top: 100%;
                                            left: 0;
                                            transition: all 0.3s;
                                            transition-timing-function: cubic-bezier(.4,0,.2,1);
                                        }
                                        &:hover,&:focus{
                                            &:before{
                                                width: 100%;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            &.appear.visible{
                &:before{
                    width: 100%;
                    transition: width 1.5s ease-in-out;
                }
                &:after{
                    height: 100%;
                    transition: height 1.5s ease-in-out;
                }
                .star{
                    &:before{
                        width: 100%;
                        transition: width 1.5s ease-in-out;
                    }
                    &:after{
                        height: 100%;
                        transition: height 1.5s ease-in-out;
                    }
                    img{
                        width: 41px;
                        height: 41px;
                        transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
                    }
                    @media screen and (max-width: 725px) {
                        &:after{
                            height: 1px;
                            width: 100%;
                            transition: width 1.5s ease-in-out;
                        }
                    }
                }
                .block-group{
                    &.contact{
                        .block{
                            transform: translateY(0);
                            transition: transform 1s ease 0.5s;
                        }
                    }
                    &.nav{
                        .block{
                            transform: translateY(0);
                            transition: transform 1s ease 0.75s;
                        }
                    }
                }
            }
        }
    }
}

@keyframes rotate {
    0% {transform: rotate(0deg);}
    50% {transform: rotate(180deg);}
    100% {transform: rotate(360deg);}
}

@keyframes jiggle {
    0% {transform: rotate(1deg);}
    100% {transform: rotate(-1deg);}
}