@charset "utf-8";

* {
    box-sizing: border-box
}

body,
html {
    padding: 0;
    background-color: #fff
}

.footer,
.footer-hover,
.game,
.header,
.main,
.menu-hover,
.section,
.section-container,
.section-content,
.section-image,
.subsection,
.subsection.link-mod,
body,
html {
    transition: background .3s ease
}

.underline-mode,
b,
h1,
h2,
h3,
h4,
i,
p {
    transition: color .3s ease
}

h1,
h2,
h3,
h4 {
    font-size: inherit;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 2s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .2s ease-out, color .3s ease;
    will-change: transform, opacity
}

h1.is-visible,
h2.is-visible,
h3.is-visible,
h4.is-visible {
    opacity: 1;
    transform: translateY(0)
}

html.dark-view {
    background: #303030
}

body.dark-view {
    background: #303030
}

body.dark-view .main {
    background: #303030
}

body.dark-view .footer,
body.dark-view .header {
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .4), 0 2px 14px 0 rgba(0, 0, 0, .2)
}

body.dark-view .game {
    background: #606060;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .4), 0 2px 14px 0 rgba(0, 0, 0, .2)
}

body.dark-view h1 {
    color: #606060
}

body.dark-view .underline-mode,
body.dark-view b,
body.dark-view i,
body.dark-view p {
    color: #e6fdf8
}

body.dark-view .underline-mode {
    color: #e6fdf8
}

body.dark-view .footer-hover,
body.dark-view .menu-hover {
    background: #606060;
    color: #e6fdf8;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .06), 0 2px 14px 0 rgba(0, 0, 0, .12)
}

body.dark-view .section,
body.dark-view .section-container,
body.dark-view .section-content {
    background-color: #303030
}

body.dark-view .subsection {
    background-color: #606060;
    box-shadow: 0 1px 8px 0 rgb(0 0 0 / 20%), 0 2px 14px 0 rgb(0 0 0 / 40%)
}

body.dark-view .hero-image:before,
body.dark-view .section-image-center:before,
body.dark-view .section-image.text-mod:before {
    background: rgba(0, 0, 0, .7)
}

h1 {
    margin: 0;
    color: #e6fdf8;
    font-size: 40px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 1
}

h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 1
}

h3 {
    margin: 0 0 20px 0;
    color: #5cc0ac;
    font-size: 30px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 1;
    text-align: left
}

h3.right-mod {
    text-align: right
}

h3.top-mod {
    text-align: center
}

h4 {
    margin: 0 0 3px 0;
    color: #5cc0ac;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 1
}

h4.subtitle {
    font-size: 18px;
    font-weight: 400
}

h4.subtitle.right-mod {
    text-align: right
}

h4.subtitle.top-mod {
    text-align: center
}

b,
i,
p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #5e6472;
    font-family: Oxygen, sans-serif;
    font-size: 14px
}

.italics {
    font-style: italic
}

.underline-mode {
    margin: 0;
    padding: 0 0 15px 0;
    line-height: 1.4;
    color: #5e6472;
    font-family: Oxygen, sans-serif;
    font-size: 18px;
    text-decoration: underline
}

a {
    color: #5cc0ac;
    text-decoration: none
}

h2 a {
    text-decoration: underline
}

.fadelink {
    transition: opacity .3s ease
}

.column-fullscreen .section-title .fadelink.white {
    color: #e6fdf8
}

.fadelink:hover {
    opacity: .6
}

.gallery-item,
.scalelink {
    display: block;
    transition: transform .3s ease;
    will-change: transform
}

.scalelink:hover {
    transform: scale(1.07);
    will-change: transform
}

.gallery-item:hover {
    transform: scale(1.05);
    will-change: transform
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #89dece;
    padding: 5px;
    box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12);
    transform: translateY(-100%);
    transition: transform .5s ease .1s;
    will-change: transform;
    z-index: 1
}

.header.visible {
    transform: translateY(0);
    will-change: transform
}

.footer {
    background-color: #5cc0ac;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    padding: 0 20px;
    width: 100%;
    height: 40px;
    text-align: center;
    box-shadow: 0 -1px 6px 0 rgba(66, 66, 66, .6), 0 2px 10px 0 rgba(66, 66, 66, .1);
    transform: translateY(100%);
    transition: transform .5s ease .1s;
    will-change: transform;
    z-index: 1
}

.footer.visible {
    will-change: transform;
    transform: translateY(0)
}

.logo {
    width: 40px;
    height: 41px;
    margin-right: 20px
}

.logo img {
    width: 100%;
    height: auto
}

.banner.is-visible {
    width: 60%;
    height: auto;
    padding: 10px 0;
    position: absolute;
    top: 50px;
    left: 20%;
    border-radius: 0 0 15px 15px;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffcb9d;
    box-shadow: 0 -1px 6px 0 rgba(66, 66, 66, .6), 0 2px 10px 0 rgba(66, 66, 66, .1);
    animation: marquee-background 24s infinite linear;
    -webkit-animation: marquee-background 24s infinited linear;
    will-change: transform
}

@-webkit-keyframes marquee-background {
    0% {
        background: #ffcb9d
    }

    50% {
        background: #89ccff
    }

    100% {
        background: #ffcb9d
    }
}

@keyframes marquee-background {
    0% {
        background: #ffcb9d
    }

    47% {
        background: #ffcb9d
    }

    50% {
        background: #89ccff
    }

    97% {
        background: #89ccff
    }

    100% {
        background: #ffcb9d
    }
}

.gfm-embed {
    position: absolute;
    right: 20px;
    background-color: #46a58d
}

.banner-text {
    margin: 0;
    font-size: 20px;
    text-align: center;
    color: #5e6472;
    z-index: 3;
    width: 100%
}

.banner-text a {
    color: inherit;
    width: 100%
}

.navigation {
    display: flex;
    margin-left: auto
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-list li {
    width: 25px;
    margin: 0 10px;
    position: relative
}

.nav-list li:after {
    content: '';
    width: 100%;
    visibility: hidden;
    transition: all .5s ease 1s;
    opacity: 0;
    will-change: transform;
    transform: translateY(-20px);
    height: 2px;
    border-radius: 1px;
    background: #46a58d;
    position: absolute;
    top: -7px;
    left: 0
}

.nav-list li#active:after {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    will-change: transform
}

.nav-list li img {
    width: 100%;
    height: auto
}

.navigation .icon {
    display: none;
    font-size: 32px;
    color: #46a58d;
    position: relative;
    z-index: 1
}

.burger {
    width: 32px;
    height: 26px;
    position: fixed;
    top: 20px;
    right: 10px;
    cursor: pointer;
    z-index: 3
}

.burger.active .burger-top {
    transform: rotate(45deg);
    will-change: transform;
    top: 12px
}

.burger.active .burger-middle {
    opacity: 0
}

.burger.active .burger-bottom {
    transform: rotate(135deg);
    will-change: transform;
    top: 12px
}

.burger-bottom,
.burger-middle,
.burger-top {
    display: block;
    position: absolute;
    width: 30px;
    height: 5px;
    background: #46a58d;
    left: 0;
    border-radius: 2px;
    transition: all .4s ease
}

.burger-top {
    top: 0
}

.burger-middle {
    top: 10px
}

.burger-bottom {
    top: 20px;
    right: 0
}

.nav-list li:hover .menu-hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    will-change: transform
}

.menu-hover {
    display: block;
    background: #fff;
    padding: 5px;
    border-radius: 2px;
    position: absolute;
    top: 120%;
    left: -10px;
    color: #5cc0ac;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all .5s;
    will-change: transform;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12)
}

.marquee {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden
}

.marquee span {
    display: inline-block;
    line-height: 1.1;
    padding-left: 45%;
    -webkit-animation: marquee 24s infinite linear;
    animation: marquee 24s infinite linear;
    will-change: transform
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translate(0, 0)
    }

    100% {
        -webkit-transform: translate(-100%, 0)
    }
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
        will-change: transform
    }

    100% {
        transform: translate(-100%, 0);
        will-change: transform
    }
}

.stuypht {
    padding-right: 150px
}

#fp-nav ul li {
    position: relative
}

#fp-nav ul li a.active span.fp-tooltip {
    animation-name: dots;
    animation-duration: 2.5s;
    background: #53bfa4
}

#fp-nav ul li a span {
    background: #53bfa4;
    box-shadow: 0 -1px 8px 0 rgba(60, 60, 60, .2), 0 2px 8px 0 rgba(60, 60, 60, .2)
}

#fp-nav ul li:hover a {
    opacity: 1
}

.menu-hover:hover {
    opacity: 1
}

.menu-link:hover {
    opacity: 1
}

.menu-hover.left--mod {
    left: -36px
}

.menu-hover.short-len--mod {
    width: 61px
}

.menu-hover.long-len--mod {
    width: 105px
}

.hero {
    width: 100%
}

.hero-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.hero-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    transition: background .3s ease
}

.section {
    height: 100vh;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    will-change: transform;
    transition: transform 2s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .3s ease-out;
    will-change: transform, opacity
}

.section.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: transform
}

.subsection {
    display: block;
    background-color: #e6fdf8;
    border-radius: 15px;
    padding: 15px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 -1px 4px 0 rgba(20, 20, 20, .03), 0 2px 5px 0 rgba(15, 15, 15, .08);
    opacity: 0;
    transform: translateY(20px);
    will-change: transform
}

.subsection,
.subsection.link-mod {
    transition: transform 1s .05s cubic-bezier(0, 1, .3, 1), opacity .7s .25s ease-out, background .3s ease, box-shadow .3s ease;
    will-change: transform, opacity
}

.subsection.link-mod:hover {
    transform: scale(1.1);
    will-change: transform;
    box-shadow: 0 -1px 15px 0 rgba(20, 20, 20, .1), 0 2px 5px 0 rgba(15, 15, 15, .1)
}

.subsection.link-mod.resume {
    max-width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.resumes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%
}

.subsection.link-mod h4 {
    margin-bottom: 8px
}

.subsection.link-mod.resume h4 {
    margin-bottom: 0
}

.subsection h4 {
    text-align: center;
    margin-bottom: 8px
}

.intro {
    margin-bottom: 20px
}

.intro-center {
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    will-change: transform;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap
}

.intro-games {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    will-change: transform;
    width: 100%
}

.intro-videos {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    will-change: transform;
    width: 100%
}

.intro-right {
    position: absolute;
    height: 100%;
    left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around
}

.intro-right.right-mod {
    left: calc(100% - 330px);
    text-align: right
}

.intro-column {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 15px;
    width: 300px;
    text-align: justify
}

.intro-column.game-mod-short {
    width: 425px
}

.intro-column.game-mod-long {
    width: 490px
}

.intro-column h4 {
    margin-bottom: 15px;
    font-size: 24px;
    text-align: left
}

.intro-column p {
    color: #e6fdf8;
    font-size: 12px
}

.intro-column:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #e6fdf8;
    bottom: 0;
    right: 0
}

.intro-column.vert-mod:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 1px;
    background: #e6fdf8;
    left: 15px;
    bottom: 0
}

.intro-column:last-child:after {
    display: none
}

.subsection.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: transform
}

.header-center {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    will-change: transform;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.header-center.lower {
    top: 260px
}

.header-center.homepage {
    top: 95%
}

.header-column {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 15px;
    width: 350px;
    align-items: center
}

.header-column.long-mod {
    width: 370px
}

.header-column h4 {
    margin-bottom: 10px;
    font-size: 36px
}

.header-column p {
    color: #e6fdf8;
    font-size: 14px;
    text-align: center
}

.header-column:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #e6fdf8;
    bottom: 0;
    right: 0
}

.header-column:last-child:after {
    display: none
}

.header-center.lower .header-column {
    width: 200px
}

.header-center .header-column h4 {
    font-size: 24px
}

.header-center.lower .header-column p {
    font-size: 12px
}

.title {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    will-change: transform;
    font-size: 60px;
    color: #e6fdf8
}

#aboutme .title {
    top: 80px
}

.title h2 {
    text-align: center;
    margin: 20px 0 10px 0
}

.title p {
    font-size: 16px;
    color: #e6fdf8;
    text-align: center;
    top: 90%
}

.title.homepage {
    max-width: 900px
}

.title.homepage h2 {
    margin: 20px;
    font-size: 60px;
    text-align: center
}

.title.homepage h2 a {
    color: #e6fdf8
}

.title.homepage p {
    font-size: 16px;
    color: #e6fdf8;
    text-align: center
}

.title.homepage h4 {
    font-size: 28px
}

.section-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap
}

.section-container.right-mod {
    flex-direction: row-reverse
}

.section-container-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%
}

.section-container.fullscreen-mod {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%
}

.section-container.fullscreen-mod.top-mod {
    display: flex;
    flex-direction: column
}

.section-container.fullscreen-mod.flip-mod {
    flex-direction: row-reverse;
    justify-content: flex-end
}

.section-image-center {
    height: 550px;
    width: 100%;
    position: relative
}

.gfm-embed {
    position: static;
    width: 147px;
    height: 50px;
    overflow: hidden;
    border-radius: 5px
}

.fullscreen-image {
    width: 50%;
    height: 100vh
}

.fullscreen-image.top-mod {
    width: 100%;
    height: 50vh
}

.fullscreen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.section-image.text-mod {
    position: relative
}

.section-image-center:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    transition: background .3s ease
}

.section-image.text-mod:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    transition: background .3s ease
}

.section-image-center img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.section-content {
    padding: 60px 40px 25px 40px;
    width: 30%;
    background-color: #fff;
    text-align: justify
}

.section-content-center {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 35%;
    align-items: center
}

.section-content.fullscreen-mod {
    width: 50%;
    height: 100%;
    background: #46a58d;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.section-content.fullscreen-mod.top-mod {
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: row
}

.section-content.fullscreen-mod a {
    color: #53bfa4
}

.section-content.fullscreen-mod.flip-mod {
    align-items: flex-end
}

.fullscreen-mod {
    color: #53bfa4
}

.section-content.fullscreen-mod h4 {
    color: #e6fdf8
}

.row-fullscreen {
    display: flex;
    flex-direction: row;
    width: 400px;
    flex-wrap: wrap;
    justify-content: space-between
}

.row-fullscreen.top-mod,
.top-mod-title {
    padding: 0 40px;
    height: 300px
}

.column-fullscreen {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    margin-bottom: 30px;
    position: relative;
    text-align: left
}

.column-fullscreen:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 1px;
    background: #89dece;
    bottom: -10px;
    right: 0
}

.column-fullscreen p {
    font-size: 16px;
    color: #e6fdf8
}

.section-title {
    color: #e6fdf8;
    margin-bottom: 10px
}

.title-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
    padding: 0 25px
}

.title-center h3 {
    text-align: left
}

.description-center {
    width: 65%;
    padding: 0;
    font-size: 14px;
    text-align: justify
}

.section-image {
    width: 70%
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tooltip,
.tooltip.logo-mod {
    display: none
}

.gallery {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform
}

.gallery.high-mod {
    position: absolute;
    width: 100%;
    max-width: 1250px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform
}

.single-image {
    position: absolute;
    width: 100%;
    max-width: 300px;
    top: calc(50% + 60px);
    left: 80%;
    transform: translate(-50%, -80%);
    will-change: transform;
    z-index: 2
}

.gallery-item:focus {
    outline: 0
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12)
}

.single-image img {
    border-radius: 6px
}

.gallery-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 10px
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.mfp-counter,
.mfp-title {
    font-family: Montserrat, sans-serif;
    color: #e6fdf8;
    font-size: 12px;
    padding-top: 5px
}

.mfp-arrow-right:after {
    border-left: 17px solid #e6fdf8
}

.mfp-arrow-right:before {
    border-left: 27px solid #46a58d
}

.mfp-arrow-left:after {
    border-right: 17px solid #e6fdf8
}

.mfp-arrow-left:before {
    border-right: 27px solid #46a58d
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: .8
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0
}

.video-mod {
    border-radius: 16px;
    border: none;
    box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12);
    margin: 10px;
    width: 400px;
    height: auto
}

.video-mod img {
    width: 100%;
    height: 100%;
    border-radius: 8px
}

.video-top {
    text-align: center;
    margin-bottom: 10px
}

.games {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.game {
    border-radius: 4px;
    border: none;
    box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12);
    margin: 10px
}

.game-container {
    overflow: auto
}

.game-mod-short {
    display: block
}

@media screen and (min-width:1176px) {
    .intro-column.vert-mod {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: calc(100% / 3)
    }

    .nav-list li {
        transition: all .7s ease .5s
    }

    .nav-list li:nth-child(even) {
        transform: translateY(-100%);
        will-change: transform;
        opacity: 0
    }

    .nav-list li:nth-child(odd) {
        transform: translateY(100%);
        will-change: transform;
        opacity: 0
    }

    .nav-list li.visible-even {
        transform: translateY(0);
        will-change: transform;
        opacity: 1
    }

    .nav-list li.visible-odd {
        transform: translateY(0);
        will-change: transform;
        opacity: 1
    }

    .title h2 {
        font-size: 60px
    }

    .title.homepage {
        width: 1000px
    }

    .title.homepage h2 {
        font-size: 50px
    }

    .#fp-nav ul li:hover span {
        transform: translateX(-44%);
        will-change: transform;
        visibility: visible;
        opacity: 1
    }

    .#fp-nav ul li:hover a:before {
        transform: scale(1.5);
        will-change: transform
    }

    .intro-column-image {
        opacity: 1;
        visibility: visible;
        width: 125px;
        height: 125px;
        margin-left: 30px;
        margin-bottom: -35px;
        position: relative
    }

    .intro-column-image.small-mod {
        opacity: 1;
        visibility: visible;
        width: 80px;
        height: 80px;
        margin-left: 50px;
        margin-bottom: 15px
    }

    .intro-column-image.logo-mod {
        opacity: 1;
        visibility: visible;
        width: 150px;
        height: 40px;
        margin-left: 30px;
        margin-bottom: 15px
    }

    .intro-column-image.logo-mod.nyc {
        opacity: 1;
        visibility: visible;
        width: 100px;
        height: 100px;
        margin-left: 50px;
        margin-top: -20px;
        margin-bottom: 15px
    }

    .tooltip {
        display: block;
        position: absolute;
        z-index: 3;
        top: 40px;
        left: 160px;
        width: 200px;
        padding: 10px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12);
        font-size: 10px;
        font-weight: 400;
        font-family: Montserrat, sans-serif;
        color: #46a58d;
        visibility: hidden;
        opacity: 0;
        transform: translateX(20%);
        will-change: transform;
        transition: all .3s ease
    }

    .intro-column-image.small-mod .tooltip {
        top: 10px
    }

    .tooltip.logo-mod.nyc {
        top: 50px;
        left: 160px
    }

    .tooltip.logo-mod {
        display: block;
        position: absolute;
        z-index: 3;
        top: 0;
        left: 160px;
        width: 200px;
        padding: 10px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12);
        font-size: 10px;
        font-weight: 400;
        font-family: Montserrat, sans-serif;
        color: #46a58d;
        visibility: hidden;
        opacity: 0;
        transform: translateX(20%);
        will-change: transform;
        transition: all .3s ease
    }

    a:hover .tooltip.logo-mod:hover,
    a:hover .tooltip:hover {
        opacity: 1
    }

    .intro-column-image:hover .tooltip,
    .intro-column-image:hover .tooltip.logo-mod {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        will-change: transform
    }
}

@media screen and (min-width:1440px) {
    .intro-column-image {
        width: 125px;
        height: 125px;
        margin-left: 30px;
        margin-bottom: -35px
    }

    .intro-column-image.small-mod {
        width: 80px;
        height: 80px;
        margin-left: 50px;
        margin-bottom: 10px
    }

    .intro-column-image img {
        width: 100%;
        height: auto
    }
}

@media screen and (min-width:1900px) {
    .section-content.fullscreen-mod {
        padding: 70px 80px
    }
}

@media screen and (min-width:2560px) {
    .section-content {
        width: 20%;
        height: 100vh
    }

    .section-image {
        width: 80%;
        height: 100vh
    }

    .intro-column.vert-mod h4 {
        font-size: 30px
    }

    .intro-column.vert-mod p {
        font-size: 18px
    }

    .intro-column.vert-mod {
        width: 440px
    }

    .section-image-center {
        height: 70vh
    }

    h3 {
        font-size: 40px
    }

    h4.subtitle {
        font-size: 30px
    }

    .intro-column h4 {
        font-size: 30px
    }

    .intro-column {
        width: 420px
    }

    .intro-column p {
        font-size: 16px
    }

    .intro-right.right-mod {
        left: calc(100% - 470px)
    }

    .subsection {
        margin: 30px auto
    }
}

@media screen and (max-width:1175px) {
    .main {
        padding: 100px 15px 15px 15px
    }

    .nav-list {
        transform: translateX(100%);
        will-change: transform;
        transition: .3s all ease;
        position: absolute;
        width: 52px;
        right: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        padding: 78px 10px 20px 10px;
        background: #89dece;
        box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12)
    }

    .burger {
        top: 12px
    }

    .navigation .icon {
        display: block
    }

    .navigation.responsive .nav-list {
        transform: translateX(0);
        will-change: transform
    }

    .navigation .nav-list li,
    .navigation.responsive .nav-list li {
        margin: 0 0 10px 0
    }

    .menu-hover {
        display: none
    }

    .footer {
        padding: 0 10px 0 20px
    }

    .resumes {
        flex-direction: column
    }

    .hero-image {
        height: 100%
    }

    .hero-image img {
        height: 100%;
        object-fit: cover
    }

    .section-content h3 {
        font-size: 24px;
        margin-bottom: 10px
    }

    .section-content {
        padding: 60px 20px 15px 20px
    }

    .section-content,
    .section-image {
        width: 100%
    }

    .subsection {
        margin: 10px auto;
        padding: 10px;
        max-width: 600px
    }

    p {
        padding: 0 2px
    }

    .section-image-center {
        height: 50%
    }

    .description-center,
    .title-center {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px
    }

    .title-center {
        padding-top: 15px;
        padding-bottom: 10px
    }

    .title-center h3.top-mod {
        margin: 0
    }

    .intro-column-image {
        width: 120px;
        height: 120px
    }

    .intro-column-image.small-mod {
        width: 70px;
        height: 70px;
        margin-bottom: 20px
    }

    h3.top-mod {
        font-size: 24px
    }

    .description-center {
        text-align: justify
    }

    .nav-list li:after {
        content: '';
        width: 2px;
        visibility: hidden;
        transition: all .5s ease 1.5s;
        opacity: 0;
        transform: translateX(-20px);
        will-change: transform;
        height: 100%;
        border-radius: 1px;
        background: #46a58d;
        position: absolute;
        top: -2px;
        left: -7px
    }

    .intro-center {
        bottom: 7px
    }

    .intro-column {
        width: 50%;
        padding: 10px 5px;
        margin-bottom: 5px
    }

    .intro-column:nth-child(3):after {
        display: none
    }

    .intro-column h4 {
        font-size: 14px;
        text-align: center
    }

    .intro-column.vert-mod h4 {
        font-size: 11px
    }

    .intro-column p {
        font-size: 10px;
        text-align: center
    }

    .intro-column.vert-mod p {
        font-size: 8px
    }

    .section-content-center {
        align-items: flex-start
    }

    .section-image.text-mod {
        height: 50%
    }

    .intro-right {
        position: relative;
        display: flex;
        flex-direction: row;
        z-index: 2;
        top: 0;
        left: 0;
        align-items: flex-start
    }

    .intro-column.vert-mod {
        width: calc(100% / 3);
        height: auto;
        justify-content: flex-start;
        align-items: center
    }

    .section-image.text-mod:before {
        z-index: 1
    }

    .mobile-mod {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0
    }

    .intro-column.vert-mod:after {
        content: '';
        position: absolute;
        width: 1px;
        height: 70px;
        background: #e6fdf8;
        left: 0;
        top: 10px
    }

    .intro-column.vert-mod:first-child:after {
        display: none
    }

    .intro-column.vert-mod:last-child:after {
        display: block
    }
}

@media screen and (max-width:1025px) {
    .intro-column {
        max-width: 48%
    }

    .intro-column.vert-mod {
        height: 125px;
        justify-content: flex-start
    }

    .header-column:after,
    .intro-column:after {
        content: '';
        width: 60%;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        will-change: transform
    }

    .section-container.fullscreen-mod,
    .section-content.fullscreen-mod.top-mod {
        display: flex;
        flex-direction: column
    }

    .top-mod-title {
        height: auto
    }

    .section-content.fullscreen-mod {
        justify-content: flex-start
    }

    .fullscreen-image,
    .section-content.fullscreen-mod {
        width: 100%;
        height: auto
    }

    .row-fullscreen {
        width: auto
    }

    .row-fullscreen.top-mod,
    .top-mod-title {
        padding: 0;
        height: auto
    }

    .section-content.fullscreen-mod {
        padding-top: 15px
    }

    .section-content.fullscreen-mod.flip-mod {
        align-items: flex-start
    }

    .header-center {
        display: flex;
        flex-direction: column;
        top: 100px
    }

    .header-center.lower {
        display: none
    }

    .header-column,
    .intro-column {
        margin-bottom: 20px;
        padding: 15px 0
    }

    .header-center .header-column h4 {
        font-size: 22px
    }

    .banner-text {
        font-size: 12px
    }
}

@media screen and (max-width:725px) {
    #fundraising .section {
        background: #46a58d
    }

    .intro-column-image {
        width: 60px;
        height: 60px
    }

    .fullscreen-image,
    .fullscreen-image.top-mod {
        width: 100%;
        height: 42vh
    }

    .section-content.fullscreen-mod.top-mod {
        width: 100%;
        height: auto
    }

    .column-fullscreen h4 {
        font-size: 16px
    }

    .column-fullscreen p {
        font-size: 12px
    }

    .intro-column-image.small-mod {
        width: 40px;
        height: 40px;
        margin-bottom: 20px
    }

    .mfp-counter,
    .mfp-title {
        font-size: 10px
    }

    .subsection {
        max-width: 300px
    }

    h1 {
        font-size: 19px
    }

    h2 {
        font-size: 46px
    }

    b,
    p {
        font-size: 12px
    }

    .title.homepage {
        top: 70px
    }

    .title.homepage h2 {
        width: 350px;
        font-size: 40px
    }

    .logo {
        margin-right: 10px
    }

    .navigation .icon {
        font-size: 25px
    }

    .subsection p {
        font-size: 10px
    }

    .subsection h4 {
        font-size: 14px;
        margin-bottom: 5px
    }

    .title.homepage h4 {
        font-size: 18px
    }

    .title.homepage p {
        font-size: 12px
    }

    .header-center {
        display: flex;
        flex-direction: column;
        top: 100px
    }

    .header-column,
    .intro-column {
        width: 300px;
        margin-bottom: 10px
    }

    .header-column p {
        font-size: 11px
    }

    .game-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .game-mod-short {
        display: none
    }

    .intro-games {
        bottom: 10px
    }

    .single-image {
        width: 40%;
        height: 40%;
        top: 50%;
        transform: translate(-50%, -50%);
        will-change: transform;
        left: 50%
    }

    .single-image img {
        width: 100%;
        height: 100%
    }

    #sports .intro-center {
        display: none
    }

    .intro-videos {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: absolute;
        bottom: 30%;
        left: 0;
        transform: translateY(30%);
        will-change: transform
    }

    .video-mod {
        width: 36%;
        height: 36%
    }

    .video-top {
        font-size: 8px
    }

    .gallery {
        width: 70%;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -70%);
        will-change: transform
    }

    .gallery.high-mod {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -70%);
        will-change: transform;
        width: 70%
    }
}

.footer-contactme-icons {
    width: calc(100% - 45px)
}

.footer-icons-list {
    display: flex;
    margin: 0;
    padding-left: 0;
    flex-direction: row;
    justify-content: center
}

.footer-icons-list li {
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    text-align: center;
    margin: 0 5px
}

.footer-icons-list li:hover {
    opacity: .75
}

.footer-icons-list li a {
    display: block;
    width: 100%
}

.footer-icons-list li a img {
    width: 100%;
    height: auto
}

.footer-hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    will-change: transform
}

.footer-hover {
    display: block;
    background: #fff;
    padding: 5px;
    border-radius: 2px;
    position: absolute;
    bottom: 20px;
    left: -15px;
    width: 200px;
    color: #5cc0ac;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    will-change: transform;
    transition: all .5s;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    box-shadow: 0 1px 8px 0 rgba(66, 66, 66, .06), 0 2px 14px 0 rgba(66, 66, 66, .12)
}

.dark-mode {
    width: 25px;
    height: 25px;
    cursor: pointer
}

.dark-mode.dark-view .light {
    display: none
}

.dark-mode.dark-view .dark {
    display: block
}

.dark-mode .dark {
    display: none
}

.dark-mode .light {
    display: block
}

.dark-mode img {
    width: 100%
}