@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Raleway:300,500,800");
 :root {
    --image_size: 300px;
    --green_bg: #279c8a;
    --red_bg: #6e2222;
    --blue_bg: #28519c;
    --orange_bg: #611783;
    --brown_text: #5E4B45;
    --almond_cream: #E5DACF;
    --soft_rose: #C38E81;
    --sage_mist: #C6BFA9;
    --linen_white: #FEF3ED;
    --muted_accent: #A18F88;
    --fresh_olive: #A8A388;
    --dusty_rose: #B07D70;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--almond_cream);
    background-position: top center;
    font-family: 'Raleway';
    font-weight: 300;
    padding-top: 65px;
}

.footer {
    height: 100px;
    width: 100%;
}

.bottom_half {
    background-image: linear-gradient( var(--almond_cream), var(--soft_rose), var(--brown_text));
}

.top_words_box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 70px;
    margin-top: 41%;
    margin-bottom: 0%;
}

.top_words,
.top_subtitles {
    font-weight: 500;
    color: white;
    text-align: left;
    position: relative;
    margin-left: 3%;
    overflow: hidden;
    z-index: 5;
    line-height: 1.6;
    text-transform: uppercase;
}

.top_words {
    font-size: 25px;
}

.top_subtitles {
    font-size: 20px;
}

.top_words:after,
.top_subtitles:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
}

@-webkit-keyframes underline {
    from {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    to {
        opacity: 1;
    }
}

@keyframes underline {
    from {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes slide-up {
    from {
        -webkit-transform: translateY(1000%);
        transform: translateY(1000%);
    }
}

@keyframes slide-up {
    from {
        -webkit-transform: translateY(1000%);
        transform: translateY(1000%);
    }
}

.about_avatar {
    margin: 0 0 2em 0;
    padding: 0.3em;
    width: 14em;
    max-width: 14em;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.075);
}

.about_text {
    text-align: justify;
    font-size: 14pt;
    color: var(--linen_white);
}

.interest_text {
    font-size: 11pt;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--linen_white);
}

.icon_row {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.icons:hover {
    cursor: pointer;
}

.skills_word,
.subtitle {
    color: var(--linen_white);
    text-align: center;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.skills_word {
    margin-bottom: 10px;
}

.subtitle {
    text-align: left;
    margin-left: 10%;
    margin-right: 10%;
    color: var(--linen_white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
}

.icons img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    padding: 0.2em;
    margin: 5px;
    border: solid 1px rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.075);
}

.Scroll-to-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding: 0.2em;
    margin: 5px;
    border: solid 1px rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.075);
    cursor: pointer;
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    outline: none;
}

.Scroll-to-top.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.Scroll-to-top:hover {
    background-color: rgba(248, 134, 134, 0.781);
}

.skills_container {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    margin-left: auto;
    margin-right: auto;
}

.project_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

figure.project_square_icon {
    position: relative;
    overflow: hidden;
    color: var(--linen_white);
    text-align: center;
}

figure.project_square_icon * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

figure.project_square_icon img {
    max-width: 100%;
    position: relative;
    opacity: 0.85;
    vertical-align: top;
}

figure.project_square_icon .project_circle {
    display: inline-block;
    position: relative;
    height: 100px;
    width: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
}

figure.project_square_icon .project_bg {
    overflow: hidden;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    opacity: 0;
}

figure.project_square_icon .project_bg {
    width: 100%;
    height: 100%;
    background-color: var(--red_bg);
}

figure.project_square_icon .project_circle:before,
figure.project_square_icon .project_circle:after {
    border: 2px solid white;
    border-right-color: transparent;
    border-left-color: transparent;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

figure.project_square_icon figcaption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    height: 100%;
}

figure.project_square_icon h3 {
    position: absolute;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    top: 50%;
    left: -50%;
    width: 200%;
    padding: 0 20px;
    opacity: 0;
    font-weight: 800;
    -webkit-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
}

figure.project_square_icon i {
    color: white;
    font-size: 56px;
}

figure.project_square_icon a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

figure.project_square_icon:hover .project_circle,
figure.project_square_icon.hover .project_circle {
    background-color: rgba(0, 0, 0, 0);
}

figure.project_square_icon:hover .project_circle:before,
figure.project_square_icon.hover .project_circle:before,
figure.project_square_icon:hover .project_circle:after,
figure.project_square_icon.hover .project_circle:after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

figure.project_square_icon:hover .project_circle:before,
figure.project_square_icon.hover .project_circle:before {
    opacity: 1;
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
}

figure.project_square_icon:hover .project_circle:after,
figure.project_square_icon.hover .project_circle:after {
    opacity: 1;
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
}

figure.project_square_icon:hover h3,
figure.project_square_icon.hover h3 {
    opacity: 1;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

figure.project_square_icon.hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.project_square_icon:hover .project_bg,
figure.project_square_icon.hover .project_bg,
figure.project_square_icon:hover .project_bg1,
figure.project_square_icon.hover .project_bg1 {
    opacity: 0.7;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.project_explanation {
    font-weight: 500;
    color: var(--linen_white);
    text-align: center;
    list-style-type: circle;
    /* padding-left: 20px;
    padding-right: 20px; */
    margin-left: 20px;
    margin-right: 20px;
    font-style: bold;
    /* background-color: var(--dusty_rose); */
}

@keyframes increaseSize {
    20% {
        -webkit-transform: scale3d(0.8, 0.8, 0.8);
        transform: scale3d(0.8, 0.8, 0.8);
        animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: scale3d(20, 20, 20);
        transform: scale3d(20, 20, 20);
        animation-timing-function: ease-out;
    }
}

.reel {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 10px;
    z-index: 10;
}

.skills_icons_image {
    text-align: center;
    width: 80px;
    border-radius: 100%;
    padding: 0.2em;
    border: solid 1px rgba(161, 67, 67, 0.25);
    background-color: rgba(255, 255, 255, 0.075);
    margin-left: 15px;
    margin-right: auto;
}

.skills_icons {
    margin: 10px;
    width: 110px;
    color: black;
}

.white_line {
    background: var(--linen_white);
    height: 1px;
    width: 80%;
    margin-bottom: 10px;
}

.empty_space {
    height: 1px;
    width: 100%;
}

.pre-title {
    margin-top: 30px;
    display: block;
    text-align: center;
}

.pre-title-text,
.pre-title-text-hobbies {
    vertical-align: middle;
    font-size: 35px;
    display: inline-block;
    color: var(--brown_text);
    text-transform: uppercase;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
}

.pre-title-text-hobbies {
    color: var(--blue_bg);
}

.pre-title-line-skills,
.pre-title-line-motion,
.pre-title-line-interactive,
.pre-title-line-hobbies {
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    background: var(--brown_text);
}

.pre-title-line-skills,
.pre-title-line-interactive {
    background: var(--linen_white);
}

.about_text {
    color: var(--linen_white);
}

.pre-title-line-skills {
    width: 23vw;
}

.pre-title-line-motion {
    width: 19.8vw;
}

.pre-title-line-interactive {
    width: 14vw;
}

.pre-title-line-hobbies {
    width: 22vw;
    background: var(--blue_bg);
}

@media (min-width: 1920px) {
    .pre-title-line-skills {
        width: 23vw;
        width: 435px;
    }
    .pre-title-line-motion {
        width: 375px;
    }
    .pre-title-line-interactive {
        width: 265px;
    }
    .pre-title-line-hobbies {
        width: 416px;
        background: var(--blue_bg);
    }
}

@media (max-width: 992px) {
    .about_avatar {
        max-width: 10em;
    }
}

@media (max-width: 768px) {
    .pre-title-text {
        font-size: 22px;
    }
}

@media (max-width: 550px) {
    .pre-title-text {
        font-size: 22px;
    }
}