@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #5db5fd;
    --secondary-color: #202024;
    --text-color: white;
    --box-shadow: 0 4px 8px 0 rgba(93, 181, 253, 0.5), 0 6px 20px 0 rgba(93, 181, 253, 0.19);
    --stack-animation-limit: 0px;
    --line-stack-width: 0px;
    --description-box-height: 0px;
    --description-box-width: 0px;
    --transition-theme: background-color .5s ease, color 0.3s ease;
    --card-stack-hover-color: transparent;
    --card-stack-hover-color-2: transparent;
}

@media (prefers-color-scheme: light) {
    :root {
        --primary-color: #5db5fd;
        --secondary-color: #FFFFFF;
        --text-color: #585858;
        --box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
}

* {
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
    transition: var(--transition-theme)
        /* background: #202024; */
}

body {
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.preloader img {
    width: 256px;
    animation: logo-pulse 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes logo-pulse {
    0% {
        transform: scale(0) rotate(360deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotate(-360deg);
        opacity: 0.6;
    }
}

.navbar {
    top: 0;
    position: fixed;
    background-color: var(--secondary-color);
    transition: var(--transition-theme);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    z-index: 100;
}

.menu {
    flex: 28%;
    text-align: right;
}

.menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 20px;
    align-self: center;
    cursor: pointer;
}

.menu a:hover {
    color: #5db5fd;
    border-top: 3px solid #5db5fd;
}

.icons {
    display: flex;
    flex: 10%;
    margin-right: 2%;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.flags {
    position: relative;
    display: inline-block;
}

.icons .flags svg {
    width: 40px;
    height: auto;
    cursor: not-allowed;
    fill: var(--text-color);
    opacity: 0.3;
}

.hidden-flags {
    display: flex;
    position: absolute;
    margin-left: -25px;
    top: 0px;
    pointer-events: none;
}

.hidden-flags svg {
    width: 48px;
    position: absolute;
    left: 25px;
    visibility: hidden;
    transform: scale(0);
    background-color: #202024;
    opacity: 0.1;
}

.animate-brazil {
    pointer-events: auto;
    animation: moveBoxBrazil .5s ease-in-out forwards;
}

.animate-usa {
    pointer-events: auto;
    animation: moveBoxUsa 1s ease-in-out forwards;
}

.animate-spain {
    pointer-events: auto;
    animation: moveBoxSpain 1.5s ease-in-out forwards;
}

#language:hover {
    pointer-events: auto;
    animation: language 1s ease-in-out forwards;
}

@keyframes language {
    0% {
        transform: rotate(0);
    }

    33% {
        transform: rotate(45deg);
    }

    66% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes moveBoxBrazil {
    0% {
        transform: translateX(0) rotate(180deg);
        visibility: hidden;
    }

    60% {
        visibility: hidden;
    }

    61% {
        visibility: visible;
    }

    100% {
        visibility: visible;
        transform: translate(1px, 55px) rotate(360deg);
    }
}

@keyframes moveBoxUsa {
    0% {
        transform: translateX(0) rotate(90deg);
        visibility: hidden;
    }

    59% {
        visibility: hidden;
    }

    60% {
        z-index: -1;
        visibility: visible;
    }

    100% {
        visibility: visible;
        transform: translate(1px, 110px) rotate(360deg);
    }
}

@keyframes moveBoxSpain {
    0% {
        transform: translateX(0) rotate(90deg);
        visibility: hidden;
    }

    59% {
        visibility: hidden;
    }

    60% {
        z-index: -1;
        visibility: visible;
    }

    100% {
        visibility: visible;
        transform: translate(1px, 165px) rotate(360deg);
    }
}

.theme-icon {
    width: 45px;
    height: auto;
    margin-left: 10px;
    margin-bottom: 4px;
    cursor: pointer;
    fill: var(--text-color);
}

.hide {
    display: none;
}

.show {
    display: block;
}

.theme-fadein {
    animation: theme-fadein-animation .5s ease-in-out forwards;
}

.theme-fadeout {
    animation: theme-fadeout-animation .5s ease-in-out forwards;
}

@keyframes theme-fadein-animation {
    0% {
        transform: rotate(0) scale(0);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes theme-fadeout-animation {
    0% {
        transform: rotate(0) scale(1);
    }

    100% {
        transform: rotate(360deg) scale(0);
    }
}


/*=============================== Header ===============================*/

.header {
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    height: 800px;
    margin-top: 150px;
    justify-content: center;
    align-items: center;
}

.headline {
    flex: 1;
    height: 350px;
    text-align: center;
    line-height: 0;
}

.headline img {
    width: 192px;
}

@keyframes logo-pulse {
    0% {
        transform: scale(0) rotate(360deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotate(-360deg);
        opacity: 0.6;
    }
}

.headline h1,
.headline p {
    margin-top: 10px;
    font-size: 3.5rem;
    color: var(--text-color);
}

.headline p {
    display: block;
    font-size: 3.5rem;
    padding: 30px 0;
    width: 0;
    color: #5db5fd;
    border-right: 4px solid #5db5fd;
    overflow: hidden;
    white-space: nowrap;
    animation: headline-mark 1s steps(1, end) infinite, headline-write 6s steps(30, end) infinite;
}

@keyframes headline-mark {
    50% {
        border-right-color: transparent;
    }
}

@keyframes headline-write {

    20% {
        width: 100%;
    }

    70% {
        width: 100%;
    }

    85% {
        width: 0%;
    }

    100% {
        width: 0%;
    }

}


.headline-description {
    flex: 2;
    text-align: center;
    margin: 0 10px;
}

.headline-description p {
    color: var(--text-color);
    font-weight: 500;
    justify-self: center;
    font-size: 20px;
    width: 40%;
    white-space: wrap;
}



/*================--ABOUT ME--====================================================================================*/

.aboutme-box {
    display: flex;
    flex-flow: row wrap;
    height: auto;
    margin: 20px 100px;
}

.aboutme-left {
    display: flex;
    flex-flow: column;
    flex: 50%;
    color: var(--text-color);
    text-align: justify;
    align-items: center;
}

.aboutme-left .title {
    line-height: 8px;
    text-align: center;
}

.aboutme-left .title h1 {
    color: #5db5fd;
    font-size: 2.5rem;
}

.aboutme-left .title h2 {
    font-size: 1.3rem;
    font-weight: 500;
}

.aboutme-left .text {
    width: 70%;
    margin-top: 40px;
}

.aboutme-left .text p {
    font-weight: 500;
}

.avatar-frame {
    margin-top: 100px;
    display: inline-block;
    width: 300px;
    height: 280px;
    position: relative;
    border-radius: 12%;
    background: #5db5fd;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.avatar-frame .avatar-image {
    position: absolute;
    bottom: 0px;
    left: 15px;
    width: 0;
    max-width: 115%;
}

.animate-avatar {
    animation: avatar-animation 1s ease-in-out forwards;
}

.aboutme-left .avatar-frame .baloon-text {
    display: flex;
    flex-direction: row;
    position: absolute;
    width: 300px;
    height: 180px;
    top: -110px;
    left: 280px;
    align-items: center;
    background: var(--secondary-color);
    border-radius: 50%;
    padding: 10px 20px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: scale(0);
    transform-origin: -40px 180px;
    color: #5db5fd;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.animate-avatar-baloon {
    animation: baloon-animation 1s cubic-bezier(0.68, 0, 0.265, 1.55) 1s forwards;
}

.aboutme-left .avatar-frame .baloon-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 100px;
    width: 40px;
    height: 80px;
    background: var(--secondary-color);
    transform: rotate(240deg);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}


@keyframes avatar-animation {
    0% {
        width: 0;
    }

    100% {
        width: 115%;
    }
}

@keyframes baloon-animation {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}






.aboutme-right {
    display: flex;
    flex-flow: column;
    flex: 50%;
    width: 100%;
    align-items: center;
}

.aboutme-right .cv {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    margin-top: 100px;
    justify-content: center;
}

.aboutme-right .cv a {
    flex: 0 1 60%;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    background-color: #5db5fd;
    color: var(--secondary-color);
    text-align: center;
}


.aboutme-right .card-interests {
    display: flex;
    flex-flow: row wrap;
    width: 60%;
    height: auto;
    margin-top: 50px;
    padding-bottom: 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    justify-self: center;
}

.aboutme-right .card-interests h3 {
    color: #5db5fd;
    flex: 100%;
}

.aboutme-right .card-interests p {
    flex: 1 1 25%;
    margin: 5px 10px;
    padding: 10px 5px;
    color: var(--secondary-color);
    font-weight: bold;
    background: #5db5fd;
    border-radius: 8px;
    cursor: pointer;
}

.aboutme-right .card-interests p:hover {
    background: rgba(93, 181, 253, .5);
}


.aboutme-right .socials-box {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 500px;
    margin-top: 50px;
    align-items: center;
}


.aboutme-right .socials-box .card-social {
    display: flex;
    flex-flow: row nowrap;
    width: 400px;
    height: 80px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-weight: 500;
    color: var(--text-color);
}

.social-icon {
    width: 48px;
    height: auto;
    fill: var(--text-color);
}







/*================--TOAST--====================================================================================*/

.toast {
    position: fixed;
    width: 400px;
    height: 100px;
    right: 0;
    top: 20%;
    z-index: 1;
    pointer-events: none;
}

.toast-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    left: calc(100% + 25px);
    transition: transform .4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid #5db5fd;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.toast-front p {
    padding: 0 10px;
    color: #5db5fd;
    font-weight: bold;
}

.toast-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #5db5fd;
    left: 100%;
    transition: transform .3s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    pointer-events: auto;
}

.toast-back svg {
    position: absolute;
    width: 24px;
    transform: rotate(90deg);
    fill: var(--secondary-color);
    top: 35%;
    left: 0;
    cursor: pointer;
}

.toast-show .toast-back,
.toast-show .toast-front {
    transform: translateX(-100%);
}

.toast-show .toast-front {
    transition-delay: 200ms;
}




/*================--STACK--====================================================================================*/

.divider-stack {
    flex: 0 1 30%;
    text-align: center;
    align-self: center;
    justify-self: flex-start;
}

.divider-stack h1,
.divider-socials h1 {
    color: #5db5fd;
    font-size: 40px;
    border-radius: 5px;
}

.stack-box {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 1100px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.stack-card-box {
    display: flex;
    flex-flow: row wrap;
    height: auto;
    margin: 0 100px;
    align-content: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.stack-card-group {
    flex: 0 1 80%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 20px;
}

.stack-card {
    display: flex;
    flex: 1 1 15%;
    background-color: var(--secondary-color);
    transition: var(--transition-theme);
    margin: 30px 30px;
    padding: 30px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transform: scale(.9);
    /* box-shadow: 0 0 10px 1px var(--text-color, 0.2); */
    border: 3px solid var(--text-color);
}

.stack-card svg {
    width: 64px;
    transition: transform .3s ease-in-out;
}

.svg-color-theme {
    fill: var(--text-color);
}

.stack-card:hover {
    border: 3px solid transparent;
    border-top-color: var(--card-stack-hover-color);
    border-left-color: var(--card-stack-hover-color);
    border-right-color: var(--card-stack-hover-color-2);
    border-bottom-color: var(--card-stack-hover-color-2);
}

.stack-card:hover svg {
    transform: scale(1.2);
}




@keyframes animation-stack-card {
    0% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1.1);
    }
}

.stack-card p {
    display: none;
}

.stack-arrow-box {
    display: none;
}

.card-group-2 {
    display: none;
}

.card-group-3 {
    display: none;
}

/*======================--ANIMATION FADEIN/FADEOUT/CARD-IN STACK GROUP--==================================*/
@keyframes card-in {
    0% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1.1);
    }
}


@keyframes card-fadeout {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes card-fadein {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes card-fadeout-back {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

@keyframes card-fadein-back {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/*=================================================================================*/

.arrows-stack {
    display: flex;
    flex-flow: 0 0 row nowrap;
    flex: 30%;
    justify-content: center;
    align-items: center;
}

.arrows-stack .arrow-back,
.arrows-stack .arrow-next {
    border-left: 3px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
    width: 35px;
    height: 35px;
    margin: 10px 30px;
    cursor: pointer;
}

.arrows-stack .arrow-back::before,
.arrows-stack .arrow-next::before {
    display: inline-block;
    content: "";
    border-left: 3px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);
    width: 20px;
    height: 20px;
    margin: 10px;
}

.arrows-stack .arrow-back {
    transform: rotate(-45deg);
}

.dot {
    border: 1px solid var(--primary-color);
    width: 15px;
    height: 15px;
    margin: 5px;
    border-radius: 50%;
}

.dot-active {
    background: var(--primary-color);
}

.arrows-stack .arrow-next {
    transform: rotate(135deg);
}


.stack-description-box {
    flex: 0 1 100%;
    position: relative;
    width: 50%;
    height: auto;
    background: transparent;
    margin-top: 100px;
    align-self: center;
    margin-bottom: 50px;
}

.description-box {
    position: absolute;
    width: 97%;
    height: 92%;
    background: var(--secondary-color);
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #5db5fd;
    font-weight: bold;
    padding: 10px 50px;
}

.description-box div svg {
    width: 64px;
}

.description-box div p {
    text-align: center;
    margin-top: 0;
}

@keyframes description-box {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.line-description {
    position: absolute;
    height: 4px;
    background: #5db5fd;
    margin-top: 0px;
}

.line-left {
    left: calc(-1 * (var(--line-stack-width)));
}

@keyframes line-left {
    0% {
        width: 0;
        height: 4px;
        transform: rotate(0deg) translateY(0) translateX(0);
    }

    10% {
        width: var(--line-stack-width);
        height: 4px;
        transform: rotate(0deg) translateY(0) translateX(0);
    }

    30% {
        width: 4px;
        height: 4px;
        transform: rotate(0) translateY(0) translateX(calc(var(--line-stack-width) - 2px));
    }

    100% {
        width: 4px;
        height: calc(var(--description-box-height) - 2px);
        transform: rotate(0) translateY(0) translateX(calc(var(--line-stack-width) - 2px));
    }
}


.line-top {
    position: absolute;
    width: 0;
    height: 4px;
    top: -2px;
    left: -2px;
    background: #5db5fd;
}

@keyframes line-top {
    from {
        width: 4px;
    }

    to {
        width: calc(var(--description-box-width) + 3px);
    }
}

.line-right {
    right: calc(-1 * (var(--line-stack-width)));
}


@keyframes line-right {
    0% {
        width: 0;
        height: 4px;
        transform: rotate(0deg) translateY(0) translateX(0);
    }

    10% {
        width: var(--line-stack-width);
        height: 4px;
        transform: rotate(0deg) translateY(0) translateX(0);
    }

    30% {
        width: 4px;
        height: 4px;
        transform: rotate(0) translateY(0) translateX(calc(-1 * (var(--line-stack-width) - 2px)));
    }

    100% {
        width: 4px;
        height: calc(var(--description-box-height) - 2px);
        transform: rotate(0) translateY(0) translateX(calc(-1 * (var(--line-stack-width) - 2px)));
    }
}

.line-bottom {
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0px;
    right: -2px;
    background: #5db5fd;
    transform-origin: top;
}

@keyframes line-bottom {
    from {
        width: 4px;
    }

    to {
        width: calc(var(--description-box-width) + 3px);
    }
}



/*================--PROJECTS--====================================================================================*/

.divider {
    display: flex;
    margin-top: 20px;
    width: 100%;
    height: 70px;
    align-items: center;
    justify-content: center;
    color: #5db5fd;
    font-size: 30px;
}

.filter-box {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 40px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.filter {
    position: relative;
    flex: 1 1 10%;
    height: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 50px;
    opacity: 0.4;
}

#selector {
    position: absolute;
    width: 33%;
    height: 40px;
    background: #5db5fd;
    border-radius: 50px;
    top: 0px;
    left: 125px;
    z-index: 0;
    transition: transform .3s ease-in-out;
}

.selector-move-left {
    transform: translateX(-125px);
}

.selector-move-center {
    transform: translateX(0)
}

.selector-move-right {
    transform: translateX(125px)
}

.white-color {
    color: white;
}

.filter-text {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #5db5fd;
}

.filter-text p {
    padding: 8px;
    display: inline-block;
    margin: 4px 15px;
    font-weight: bold;
    cursor: not-allowed;
}

.card-box {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    height: auto;
    padding: 30px 150px;
}

.flip-card {
    flex: 1 1 calc(33% - 80px);
    height: 350px;
    margin: 20px 20px;
    cursor: pointer;
    perspective: 5000px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.flip-card-total {
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-card:hover .flip-card-total {
    transform: rotateY(180deg);
}

.no-flip:hover .flip-card-total {
    transform: none;
}

.flip-card .card-back {
    transform: rotateY(180deg);
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon p {
    color: var(--text-color);
    font-size: 50px;
    font-weight: bold;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 20px;
}

.card-back {
    position: relative;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 20px;
    box-shadow: var(--box-shadow)
}

.card-text {
    height: 80%;
}

.card-text h3 {
    text-align: center;
}

.card-text p {
    text-align: justify;
    height: 80%;
}

.card-icons {
    position: absolute;
    bottom: 10px;
}

.card-icons svg {
    fill: var(--primary-color);
    width: 32px;
}

.card-icons:hover .description-icons-site,
.card-icons:hover .card-arrow {
    display: flex;
}

.description-icons-site {
    position: relative;
    display: none;
    background: var(--primary-color);
    width: 90%;
    color: white;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-left: 5px;
    padding-left: 5px;
    bottom: 15px;
}

.card-arrow {
    position: absolute;
    background: transparent;
    width: 0;
    height: 0;
    bottom: -10px;
    left: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-color);
}


.footer {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: auto;
    margin-top: 100px;
    background: transparent;
    color: #5db5fd;
    font-size: 15px;
    font-weight: bold;
}

.footer-bottom {
    flex: 1 1 100%;
    height: 100px;
    padding: 0 50px;
    text-align: center;
    align-content: flex-end;
}

.arrow {
    position: fixed;
    background: transparent;
    width: 80px;
    height: 80px;
    padding: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}

.arrow svg {
    fill: var(--primary-color);
}