body {
    background: #0B0730;
    margin: 0;
    padding: 0;
    font-family: Montserrat, serif;

}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: none;
}

body, html {
    overflow-x: hidden;
    font-size: 62.5%;
}

html {
    scroll-behavior: smooth;
}

input[type=text],
input[type=email] {
    font-family: Montserrat, serif !important;
}

.scene {
    position: absolute;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
}

.scene--active {
    position: fixed;
}

.scene--ended {
    position: absolute;
    bottom: 0;
    top: auto;
}

.horizontal-scroll-section {
    position: relative;
    min-height: 100vh;
    opacity: 0;
    transition: 0.2s opacity;
    margin: 0 auto;
}

.horizontal-scroll-section--init {
    opacity: 1;
}

.horizontal-scroll-section__content {
    display: flex;
    align-items: center;
}

.horizontal-scroll-section__content-wrapper {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
}

.horizontal-scroll-section__content-section {
    position: relative;
    /*min-width: 80vw;*/
    text-align: center;
    padding: 0 4rem 0 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.horizontal-scroll-section__content-section:first-child,
.scene--active .horizontal-scroll-section__content-section:first-child {
    margin-left: calc((100vw - 1320px) / 2);
    min-width: 40vw;

}

.horizontal-scroll-section__image {
    display: flex;
    align-items: center;
}

.horizontal-scroll-section__image h2 {
    margin-left: 20px;
    width: 250px;
    text-align: left;
    flex-shrink: 0;
}

.horizontal-scroll-section__image--two img {
    max-width: 400px;
}

.horizontal-scroll-section__image--four img {
    max-width: 400px;
}

.horizontal-scroll-section--animation-one .horizontal-scroll-section__image--two {
    opacity: 1;
    transform: translateX(0);
}


#cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
}

#cursor-border {
    --size: 50px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-shadow: 0 0 0 1px white;
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 998;
}

.btn {
    font-size: 2rem;
    background-color: transparent;
    border-radius: 1rem;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1), 0 0 10px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff;
    transition: 0.3s ease-out;
}

.btn > * {
    color: #fff;
}

.btn input {
    padding: 1rem 2rem;
    border-radius: 1rem;
}

.btn:hover > *,
.btn:hover {
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: #fff;
    box-shadow: 0 0 8rem rgba(255, 255, 255, 0.5);
}

.btn:active {
    transform: scale(0.85);
    box-shadow: 0 0 4rem rgba(255, 255, 255, 0.5);
}

.btn:nth-of-type(2) {
    margin-left: 2rem;
    color: white;
    border: 1px solid white;
    box-shadow: 0 0 10px white, 0 0 10px white inset;
    text-shadow: 0 0 5px white, 0 0 10px white;
}

.btn:nth-of-type(2):hover {
    color: black;
    background-color: white;
    border-color: white;
    box-shadow: 0 0 80px white;
}

.btn:nth-of-type(2):active {
    transform: scale(0.85);
    box-shadow: 0 0 30px white;
}

input {
    background: transparent;
    border: 0;
}

#matrix-rain {
    width: 100vw;
    height: 100vh;
    display: block;
    opacity: 1;
    transform: perspective(50em) rotateX(50deg);
    position: fixed;
    z-index: -1;
    left: 0;
    bottom: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1320px;
    margin: 0 auto;
}

header .bwd-logo {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

header .bwd-logo img {
    max-height: 3rem;
}

header .bwd-logo span {
    font-size: 1.4rem;
    color: #fff;
    top: 0.25rem;
}

nav, nav ul {
    display: flex;
}

nav ul {
    width: 100%;
    justify-content: center;
    column-gap: 3rem;
    position: relative;
    align-items: center;
}


nav ul li a {
    padding: 4.5rem 0;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    position: relative;
    transition: 0.7s all ease-in;
}

nav ul li a::before {
    content: "<";
    color: rgba(255, 255, 255, 0.5);
}

nav ul li a::after {
    content: "/>";
    color: rgba(255, 255, 255, 0.5);
}

nav ul li a.active::before,
nav ul li a.active::after {
    color: rgba(11, 145, 165, 1);
}

nav ul li a:hover .desktop-menu-indicator::before,
nav ul li a.active .desktop-menu-indicator::before {
    top: 0;
}

nav ul li a:hover .desktop-menu-indicator::after,
nav ul li a.active .desktop-menu-indicator::after {
    top: 25%;
    transform: translate(-50%, -25%);
}

nav ul li a .desktop-menu-indicator::before {
    content: "";
    width: 0.5rem;
    height: 30%;
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(11, 145, 165, 1) 100%);
    transition: all 0.3s ease-in-out;
}

nav ul li a .desktop-menu-indicator::after {
    content: "";
    width: 1rem;
    height: 1rem;
    position: absolute;
    background: #fff;
    left: 50%;
    top: -20%;
    transform: translate(-50%, 20%);
    border-radius: 50%;
    box-shadow: 0 0 1rem #fff;
    z-index: 30;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-btn {
    display: none;
}

.nav-drill {
    transform: translateX(100%);
}

.mobile-menu-header-wrapper {
    display: flex;
    justify-content: space-between;
    z-index: 4000;
}

.close-mobile-menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    left: 3rem;
    top: 3rem;
    position: absolute;
}

.close-mobile-menu-wrapper .icon {
    transform: rotate(45deg);
    font-size: 1.2rem;
}

.nav-is-toggled .nav-drill {
    transform: translateX(0);
}

.nav-is-toggled::after {
    opacity: 1;
    visibility: visible;
}

.nav-drill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: 0.45s;
    padding: 6rem 3rem;
    row-gap: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    row-gap: 0;
}

.mobile-menu ul li::before,
.mobile-menu ul li::after {
    content: unset;
}

.mobile-menu ul li {
    padding: 0 !important;
}

.mobile-menu ul li a {
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.content-wrapper .intro-content-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);;
}

.content-wrapper .intro-title {
    margin-bottom: 3rem;
    font-size: 5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
}

.content-wrapper .intro-text {
    max-width: 100%;
    text-align: left;
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
    font-size: 2.4rem;
    line-height: 3.2rem;
}

.content-wrapper .intro-content-wrapper .bubble-button-wrapper {
    margin-top: 4.5rem;
    opacity: 0;
    filter: blur(4px);
    animation: fade-in 0.8s 2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

/*.content-wrapper .intro-content-wrapper .btn {*/
/*    margin-top: 3rem !important;*/
/*    display: inline-flex;*/
/*    opacity: 0;*/
/*    filter: blur(4px);*/
/*    animation: fade-in 0.8s 2s forwards cubic-bezier(0.11, 0, 0.5, 0);*/
/*}*/

@keyframes scale {
    100% {
        transform: scale(1);
    }
}

.content-wrapper .intro-text span {
    color: #fff;
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
    font-size: 1.8rem;
    line-height: 3.6rem;
}

.content-wrapper .intro-text span:nth-child(1) {
    animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(2) {
    animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(3) {
    animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(4) {
    animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(5) {
    animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(6) {
    animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(7) {
    animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(8) {
    animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(9) {
    animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(10) {
    animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(11) {
    animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(12) {
    animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(13) {
    animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(14) {
    animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(15) {
    animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(16) {
    animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(17) {
    animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(18) {
    animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(19) {
    animation: fade-in 0.8s 1.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(20) {
    animation: fade-in 0.8s 2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(21) {
    animation: fade-in 0.8s 2.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(22) {
    animation: fade-in 0.8s 2.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.content-wrapper .intro-text span:nth-child(23) {
    animation: fade-in 0.8s 2.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/*************/
/* Text Animation */
/*************/
#container-text-animation {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    transform: rotate(-90deg);
    filter: url(#threshold) blur(0px);
}

#container-text-animation-1,
#container-text-animation-2 {
    position: absolute;
    width: 100%;
    display: inline-block;

    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;

    user-select: none;
    color: #fff;
}

.content-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
}

/*************/
/* Glitch */
/*************/
.glitch {
    font-size: 8.125em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    letter-spacing: 5px;
}

.glitch:before, .glitch:after {
    display: block;
    content: attr(data-glitch);
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.glitch:after {
    color: #edeaed;
    z-index: -2;
}

.glitch:before {
    color: #0ff;
    z-index: -1;
}

.glitch:hover:before {
    -webkit-animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 5;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 5;
}

.glitch:hover:after {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both 5;
}

@media only screen and (max-width: 400px) {
    .glitch {
        font-size: 3em;
    }
}

@-webkit-keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(-5px, -5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(5px, -5px);
    }
    to {
        transform: translate(0);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(-5px, -5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(5px, -5px);
    }
    to {
        transform: translate(0);
    }
}


.scene .content-section {
    padding: 9rem 0;
}

.content-wrapper {
    flex-direction: column;
    display: flex;
    justify-content: center;
    row-gap: 3rem;
}

.content-wrapper p {
    font-size: 1.8rem;
    line-height: 3.6rem;
    color: #fff;
    text-align: left;
}

.content-section-img a {
    width: 35rem;
    height: 35rem;
    position: relative;
    transition: 0.3s all ease;
    margin-bottom: 6rem;
}

.content-section-img {
    display: flex;
    column-gap: 4.5rem;
}

.content-section-img img {
    position: relative;
    width: 35rem;
    height: 35rem;
    object-fit: cover;
    border-radius: 1rem;
    bottom: 0;
    border: 1px solid transparent;
    transition: 0.3s all ease;
}

.content-section-img a::before {
    content: "";
    width: 103%;
    height: 103%;
    border: 1px solid #403696;
    display: flex;
    position: absolute;
    border-radius: 1rem;
    right: 1rem;
    top: 1rem;
    z-index: -1;
    transition: 0.3s all ease;
}

.content-section-img a:hover img {
    transform: scale(1.05);
    bottom: 3rem;
    box-shadow: 0 0 8rem rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.content-section-img a:hover::before {
    width: 100%;
    transform: rotate(-5deg);
    top: -1rem;
    right: 0;
}

.content-wrapper-vertical {
    justify-content: flex-start;
    min-height: 50vh;
    height: auto;
}

.content-wrapper-vertical .content-section-img {
    flex-wrap: wrap;
}

.skills-wrapper, .about-me-wrapper {
    padding: 15rem 0;
}

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

.skills-editor-wrapper img {
    width: 100%;
}

/*************/
/* Title Animation */
/*************/
.title-wrapper {
    display: flex;
    justify-content: left;
}

.title-wrapper h2 {
    position: relative;
    font-size: 5rem;
    color: transparent;
    text-transform: uppercase;
    font-weight: 800;
}

.title-wrapper h2:hover span:nth-child(1) {
    transform: translateY(-1rem);
}

@media only screen and (max-width: 1100px) {
    .title-wrapper h2:hover span:nth-child(1) {
        transform: translateY(-0.7rem);
    }
}

@media only screen and (max-width: 900px) {
    .title-wrapper h2:hover span:nth-child(1) {
        transform: translateY(-0.55rem);
    }
}

@media only screen and (max-width: 700px) {
    .title-wrapper h2:hover span:nth-child(1) {
        transform: translateY(-0.47rem);
    }
}

@media only screen and (max-width: 480px) {
    .title-wrapper h2:hover span:nth-child(1) {
        transform: translateY(-0.4rem);
    }
}

.title-wrapper h2:hover span:nth-child(2) {
    transform: translateY(1rem);
}

@media only screen and (max-width: 1100px) {
    .title-wrapper h2:hover span:nth-child(2) {
        transform: translateY(0.7rem);
    }
}

@media only screen and (max-width: 900px) {
    .title-wrapper h2:hover span:nth-child(2) {
        transform: translateY(0.55rem);
    }
}

@media only screen and (max-width: 700px) {
    .title-wrapper h2:hover span:nth-child(2) {
        transform: translateY(0.47rem);
    }
}

@media only screen and (max-width: 480px) {
    .title-wrapper h2:hover span:nth-child(2) {
        transform: translateY(0.4rem);
    }
}

.title-wrapper h2:hover span:nth-child(3) {
    opacity: 1;
    transition: opacity 700ms ease;
}

.title-wrapper h2 span:nth-child(1), .title-wrapper h2 span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    transition: 0.5s;
    overflow: hidden;
}

.title-wrapper h2 span:nth-child(1) {
    clip-path: polygon(0 0, 100% 0%, 100% 50%, 0 50%);
}

.title-wrapper h2 span:nth-child(2) {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.title-wrapper h2 span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 350ms ease;
    font-size: 1.4rem;
    color: #fff;
    background: #33ab87;
    width: 97.5%;
    padding-left: 5px;
    text-align: center;
    letter-spacing: 0.5rem;
    word-spacing: 1rem;
    line-height: 100%;
}

@media only screen and (max-width: 1100px) {
    .title-wrapper h2 span:nth-child(3) {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 900px) {
    .title-wrapper h2 span:nth-child(3) {
        font-size: 1rem;
        width: 97%;
        letter-spacing: 4px;
    }
}

@media only screen and (max-width: 700px) {
    .title-wrapper h2 span:nth-child(3) {
        font-size: 0.85rem;
        width: 96%;
        letter-spacing: 3px;
        word-spacing: 0.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .title-wrapper h2 span:nth-child(3) {
        font-size: 0.65rem;
        letter-spacing: 2px;
        word-spacing: 0.2rem;
    }
}


/*************/
/* Button Animation */
/*************/
.bubble-button-wrapper {
    display: flex;
    -webkit-animation: hue-rotate 10s linear infinite;
    animation: hue-rotate 10s linear infinite;
}

.bubble-button-wrapper .button {
    -webkit-font-smoothing: antialiased;
    border-radius: 1rem;
    background-color: #222;
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 2rem 4rem;
    text-transform: uppercase;
    transition: all 0.1s ease-out;
}

.bubble-button-wrapper .button:hover {
    background-color: #90feb5;
    color: #fff;
}

.bubble-button-wrapper .button:active {
    transform: scale(0.95);
}

.bubble-button-wrapper .button--bubble {
    position: relative;
    z-index: 2;
    color: #000;
    background: #fff;
}

.bubble-button-wrapper .button--bubble:hover {
    background: none;
}

.bubble-button-wrapper .button--bubble:hover + .button--bubble__effect-container .circle {
    background: #44fd82;
}

.bubble-button-wrapper .button--bubble:hover + .button--bubble__effect-container .button {
    background: #44fd82;
}

.bubble-button-wrapper .button--bubble:active + .button--bubble__effect-container {
    transform: scale(0.95);
}

.bubble-button-wrapper .button--bubble__container {
    position: relative;
    display: inline-block;
}

.bubble-button-wrapper .button--bubble__container .effect-button {
    position: absolute;
    width: 50%;
    height: 25%;
    top: 50%;
    left: 25%;
    z-index: 1;
    transform: translateY(-50%);
    background: #222;
    transition: background 0.1s ease-out;
}

.bubble-button-wrapper .button--bubble__effect-container {
    position: absolute;
    display: block;
    width: 200%;
    height: 400%;
    top: -150%;
    left: -50%;
    filter: url("#goo");
    transition: all 0.1s ease-out;
    pointer-events: none;
}

.bubble-button-wrapper .button--bubble__effect-container .circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    background: #222;
    transition: background 0.1s ease-out;
}

.bubble-button-wrapper .button--bubble__effect-container .circle.top-left {
    top: 40%;
    left: 27%;
}

.bubble-button-wrapper .button--bubble__effect-container .circle.bottom-right {
    bottom: 40%;
    right: 27%;
}

.bubble-button-wrapper .goo {
    position: absolute;
    visibility: hidden;
    width: 1px;
    height: 1px;
}

.bubble-button-wrapper .button--bubble__container {
    top: 50%;
    margin-top: -25px;
}

@-webkit-keyframes hue-rotate {
    from {
        -moz-filter: hue-rotate(0);
        -ms-filter: hue-rotate(0);
        filter: hue-rotate(0);
    }
    to {
        -moz-filter: hue-rotate(360deg);
        -ms-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

@keyframes hue-rotate {
    from {
        -moz-filter: hue-rotate(0);
        -ms-filter: hue-rotate(0);
        filter: hue-rotate(0);
    }
    to {
        -moz-filter: hue-rotate(360deg);
        -ms-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
}


.about-me-wrapper .title-wrapper h2 span:nth-child(3) {
    font-size: 1.4rem;
}

.about-me-wrapper {
    display: flex;
    column-gap: 3rem;
}

.about-me-wrapper-pic img {
    width: 30rem;
    height: 30rem;
    object-fit: cover;
    border-radius: 3rem
}

.about-me-wrapper-pic .content-section-img a {
    width: 30rem;
    height: 30rem;
}

/*************/
/* Contact Form */
/*************/
.contact-me {
    position: relative;
    padding: 15rem 0;
}

.get-in-touch {
    margin: 0 auto;
    position: relative;
}

.tanx {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 1.4rem;
}

.get-in-touch .title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 48px;
}

.contact-form .form-field {
    position: relative;
    margin: 32px 0;
}

.contact-form .input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-bottom: 2px solid #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
}

.contact-form .input-text:focus {
    outline: none;
}

.contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
    transform: translateY(-24px);
}

.contact-form .label {
    position: absolute;
    bottom: 11px;
    font-size: 18px;
    font-family: Montserrat, serif;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
    cursor: text;
    transition: transform 0.2s ease-in-out;
}

.contact-form .submit-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}

.input-text::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #fff;
}

.input-text:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1;
}

.input-text::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1;
}

.input-text:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

.input-text::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}

.input-text::placeholder { /* Most modern browsers support this now. */
    color: #fff;
}

@-webkit-keyframes topAnimation {
    from {
        transform: translate(0rem, 0);
    }
    to {
        transform: translate(0rem, 3.5rem);
    }
}

@keyframes topAnimation {
    from {
        transform: translate(0rem, 0);
    }
    to {
        transform: translate(0rem, 3.5rem);
    }
}

@-webkit-keyframes bottomAnimation {
    from {
        transform: translate(-11.5rem, 0);
    }
    to {
        transform: translate(0rem, 0);
    }
}

@keyframes bottomAnimation {
    from {
        transform: translate(-11.5rem, 0);
    }
    to {
        transform: translate(0rem, 0);
    }
}

.contact-form button.moving-circle-btn {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    position: relative;
    letter-spacing: 0.15em;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    background: transparent;
    outline: none;
    font-size: 28px;
    color: #111111;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
    left: -2.5rem;
}

.contact-form button.moving-circle-btn span {
    z-index: 300;
    position: relative;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
}

.contact-form button.moving-circle-btn::after, .contact-form button.moving-circle-btn::before {
    border: 0;
    content: "";
    position: absolute;
    height: 2rem;
    width: 2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 200;
    border-radius: 50%;
}

.contact-form button.moving-circle-btn::before {
    border: 0;
    background-color: #66e3be;
    top: -0.75rem;
    left: 0.5rem;
    -webkit-animation: topAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
    animation: topAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
}

.contact-form button.moving-circle-btn::after {
    background-color: #66e3be;
    top: 3rem;
    left: 13rem;
    -webkit-animation: bottomAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
    animation: bottomAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
}

.contact-form button.moving-circle-btn:hover {
    color: white;
}

.contact-form button.moving-circle-btn:hover::before, .contact-form button.moving-circle-btn:hover::after {
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-animation: none;
    animation: none;
    border-radius: 0.5rem;
}

.contact-form button.moving-circle-btn:hover::after {
    left: 0rem;
}

.contact-form button.moving-circle-btn:hover::before {
    top: 0.5rem;
    left: 0.35rem;
}

.contact-form-send-btn-wrapper {
    position: relative;
}

.contact-us-main-btn {
    display: none;
}

/*************/
/* Social Icons */
/*************/
:root {
    --color-light: rgb(203 213 225);
    --color-mid: rgb(51 65 85);
    --color-dark: rgb(71 85 105);
}

.iconDiv {
    height: 36px;
    width: 36px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 4px;
    padding: 4px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    transition: width 300ms ease-in-out 0s, background-color 300ms linear 200ms;
}

.iconSVG {
    height: 36px;
    aspect-ratio: 1 / 1;
}

.iconDiv:hover,
.iconDiv:focus-visible {
    width: 142px;
    background-color: var(--color-mid);
    transition: width 300ms ease-in-out 0s, background-color 100ms linear 0s;
}

.iconDiv:focus-visible {
    outline: 1px solid var(--color-mid);
    outline-offset: 4px;
}

.iconDiv:active {
    opacity: 0.9;
}

.iconDiv::after {
    content: attr(tooltip);
    margin-left: 12px;
    animation: fadeIn 600ms linear forwards;
}

.spacer {
    flex-grow: 1;
}

.divider {
    height: 36px;
    width: 1px;
    margin: 24px 18px;
    background-color: var(--color-dark);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    #matrix-rain {
        transform: unset !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-content nav .desktop-menu {
        display: none;
    }

    header .header-content {
        padding: 3rem;
    }

    .content-wrapper .intro-text {
        max-width: 100%;
    }

    .bubble-button-wrapper .button {
        font-size: 1.2rem;
    }

    .horizontal-scroll-section__content-section:first-child, .scene--active .horizontal-scroll-section__content-section:first-child {
        min-width: 100vw;
        margin-left: unset;
        padding: 0 4rem 0 4rem;
    }

    .content-wrapper .intro-text,
    .content-wrapper p {
        font-size: 1.4rem;
    }

    .content-wrapper {
        row-gap: 3rem;
    }

    .content-wrapper .intro-title,
    .title-wrapper h2 {
        font-size: 2.2rem;
    }

    .content-wrapper-vertical {
        height: auto;
    }

    .about-me-wrapper {
        flex-direction: column;
    }

    .content-section-img {
        justify-content: center;
    }

    .contact-form-send-btn-wrapper {
        text-align: center;
    }

    .skills-wrapper {
        margin: 6rem 0;
    }

    .about-me-wrapper-pic .content-section-img a,
    .content-section-img a,
    .content-section-img img {
        width: 25rem;
        height: 25rem;
    }

    .contact-form button.moving-circle-btn {
        left: unset;
    }

    /*.content-wrapper .intro-content-wrapper {*/
    /*    position: relative;*/
    /*    top: 50%;*/
    /*    transform: translateY(-50%);*/
    /*}*/
}