* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #242424;
}


.mail-link {
    z-index: 20;
    -webkit-transition: color 0.5s 0.25s;
    transition: color 0.5s 0.25s;
    overflow: hidden;
    outline: none;
    display: inline-block;
    font-size: 18px;
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
	color: #FA9513;
}

.mail-link:hover {
    -webkit-transition: none;
    transition: none;
    color: transparent;
}

.mail-link::before {
    content: '';
    width: 100%;
    height: 6px;
    margin: -3px 0 0 0;
   background: #FA9513;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.mail-link:hover::before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.mail-link span {
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

.mail-link span::before {
    content: attr(data-letters);
    position: absolute;
    left: 0;
    width: 100%;
    color: #FA9513;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.mail-link span:nth-child(2) {
    top: 50%;
}

.mail-link span:first-child::before {
    top: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.mail-link span:nth-child(2)::before {
    bottom: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.mail-link:hover span::before {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}


#logo {
    width: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #242424;
    animation: fill 1s ease-in forwards 3.8s;
}

#logo path:nth-child(1) {
    stroke-dasharray: 239;
    stroke-dashoffset: 239;
    animation: line-anim 2s ease forwards;
}

#logo path:nth-child(2) {
    stroke-dasharray: 275;
    stroke-dashoffset: 275;
    animation: line-anim 2s ease forwards 0.3s;
}

#logo path:nth-child(3) {
    stroke-dasharray: 191.4000915527344;
    stroke-dashoffset: 191.4000915527344;
    animation: line-anim 2s ease forwards 0.6s;
}

#logo path:nth-child(4) {
    stroke-dasharray: 167.2;
    stroke-dashoffset: 167.2;
    animation: line-anim 2s ease forwards 0.9s;
}

#logo path:nth-child(5) {
    stroke-dasharray: 241.33;
    stroke-dashoffset: 241.33;
    animation: line-anim 2s ease forwards 1.2s;
}

#logo path:nth-child(6) {
    stroke-dasharray: 167.2;
    stroke-dashoffset: 167.2;
    animation: line-anim 2s ease forwards 1.5s;
}

#logo path:nth-child(7) {
    stroke-dasharray: 262.9999694824219;
    stroke-dashoffset: 262.999694824219;
    animation: line-anim 2s ease forwards 1.8s;
}

#logo path:nth-child(8) {
    stroke-dasharray: 146.6;
    stroke-dashoffset: 146.6;
    animation: line-anim 2s ease forwards 2.1s;
}

#logo path:nth-child(9) {
    stroke-dasharray: 274.9;
    stroke-dashoffset: 274.9;
    animation: line-anim 2s ease forwards 2.4s;
}

#logo path:nth-child(10) {
    stroke-dasharray: 295.88;
    stroke-dashoffset: 295.88;
    animation: line-anim 2s ease forwards 2.7s;
}

#logo circle {
    stroke-dasharray: 46.2;
    stroke-dashoffset: 46.2;
    animation: line-circle 1s ease forwards 3.5s;
}

.st4 {
    animation: smear 0.5s ease-in forwards 3.5s
}

@keyframes smear {
    to {
        fill: #F7DABA;
    }
}

@keyframes line-anim {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes line-circle {
    0% {}
    90% {
        fill: #FA9513;
    }
    100% {
        stroke-dashoffset: 0;
        fill: #FA9513;
    }
}

@keyframes fill {
    0% {
        fill: #242424;
    }
    50% {
        fill: #242424;
    }
    70% {
        fill: #FA9513;
    }
    100% {
        fill: #242424;
        ;
    }
}