@import url("fonts.css");

html {
    --primary-color: #0088FF;
    --button-color: #0066FF;
    --focus-color: #0040FF;
    --accent-color: #002090;
    --black-text-color: #313131;
    --white-text-color: #ffffff;
    --gray-text-color: #666666;
    --nav-bg-color: #484848;
    --button-border-radius: 8px;
    font-size: 10px;
}

.chips * {
    display: inline;
    color: var(--black-text-color);
    padding: 2px 10px;
    font-family: poppins-semibold, sans-serif;
    text-transform: uppercase;
    border-radius: 25px;
    border: 3px solid var(--black-text-color)
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 9px
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 10px
    }
}

@media only screen and (max-width: 400px) {
    html {
        font-size: 9px
    }
}

body, html {
    height: 100%
}

body {
    background: #151515;
    font-family: lora-regular, serif;
    font-size: 1.7rem;
    line-height: 3rem;
    color: var(--gray-text-color)
}

a, a:visited {
    color: var(--black-text-color);
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

a:active, a:focus, a:hover {
    color: var(--primary-color);
    outline: 0
}

.h01, .h02, .h03, .h04, .h05, .h06, h1, h2, h3, h4, h5, h6 {
    font-family: poppins-semibold, sans-serif;
    color: var(--black-text-color);
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin-bottom: 2.1rem
}

.h03, .h04, h3, h4 {
    margin-bottom: 1.8rem
}

.h05, .h06, h5, h6 {
    font-family: poppins-bold, sans-serif;
    margin-bottom: 1.2rem
}

.h01, h1 {
    font-size: 3.1rem;
    line-height: 1.355;
    letter-spacing: -.1rem
}

@media only screen and (max-width: 600px) {
    .h01, h1 {
        font-size: 2.6rem;
        letter-spacing: -.07rem
    }
}

.h02, h2 {
    font-size: 2.4rem;
    line-height: 1.25
}

.h03, h3 {
    font-size: 2rem;
    line-height: 1.5
}

.h04, h4 {
    font-size: 1.7rem;
    line-height: 1.765
}

.h05, h5 {
    font-size: 1.4rem;
    line-height: 1.714;
    text-transform: uppercase;
    letter-spacing: .15rem
}

.h06, h6 {
    font-size: 1.3rem;
    line-height: 1.846;
    text-transform: uppercase;
    letter-spacing: .15rem
}

p.lead {
    font-family: lora-regular, serif;
    font-size: 2rem;
    line-height: 1.8;
    color: var(--gray-text-color)
}

@media only screen and (max-width: 768px) {
    p.lead {
        font-size: 1.7rem
    }
}

b, i, strong {
    font-size: 1.7rem;
    line-height: 3rem;
    font-style: normal;
    font-weight: 400
}

i {
    font-family: lora-italic, serif
}

b, strong {
    font-family: lora-bold, serif
}

ul {
    list-style: disc
}

li {
    display: list-item
}

ul {
    margin-left: 1.7rem
}

ul li {
    padding-left: .4rem
}

ul ul {
    margin: .6rem 0 .6rem 1.7rem
}

th {
    padding: 1.5rem 3rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8
}

th {
    color: var(--black-text-color);
    font-family: poppins-bold, sans-serif
}

th:first-child {
    padding-left: 0
}

th:last-child {
    padding-right: 0
}

.button, button {
    margin-bottom: 2px;
    border-radius: var(--button-border-radius)
}

fieldset {
    margin-bottom: 1.5rem
}

form, input, p, textarea, ul {
    margin-bottom: 3rem
}

.bgrid {
    padding: 0 20px
}

@media only screen and (max-width: 1024px) {
    .bgrid {
        padding: 0 18px
    }
}

@media only screen and (max-width: 768px) {
    .bgrid {
        padding: 0 15px
    }
}

@media only screen and (max-width: 600px) {
    .bgrid {
        padding: 0 10px
    }
}

@media only screen and (max-width: 400px) {
    .bgrid {
        padding: 0
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #151515;
    z-index: 800;
    height: 100%;
    width: 100%
}

.no-js #preloader, .oldie #preloader {
    display: none
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    padding: 0
}

#loader:before {
    content: "";
    border-top: 11px solid rgba(255, 255, 255, .1);
    border-right: 11px solid rgba(255, 255, 255, .1);
    border-bottom: 11px solid rgba(255, 255, 255, .1);
    border-left: 11px solid var(--primary-color);
    -webkit-animation: load 1.1s infinite linear;
    animation: load 1.1s infinite linear;
    display: block;
    border-radius: 50%;
    width: 60px;
    height: 60px
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes load {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

fieldset {
    border: none
}

input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea {
    display: block;
    height: 6rem;
    padding: 1.5rem 0;
    border: 0;
    outline: 0;
    color: var(--black-text-color);
    font-family: poppins-regular, sans-serif;
    font-size: 1.5rem;
    line-height: 3rem;
    max-width: 100%;
    background: 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

textarea {
    min-height: 25rem
}

input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, textarea:focus {
    color: var(--focus-color);
    border-bottom: 1px solid var(--primary-color)
}

label {
    font-family: poppins-bold, sans-serif;
    font-size: 1.4rem;
    margin-bottom: .6rem;
    color: #3b3b3b;
    display: block
}

input[type=checkbox], input[type=radio] {
    display: inline
}

label > .label-text {
    display: inline-block;
    margin-left: 1rem;
    font-family: poppins-regular, sans-serif;
    line-height: inherit
}

label > input[type=checkbox], label > input[type=radio] {
    margin: 0;
    position: relative;
    top: .15rem
}

::-webkit-input-placeholder {
    color: #a1a1a1
}

:-moz-placeholder {
    color: #a1a1a1
}

::-moz-placeholder {
    color: #a1a1a1
}

:-ms-input-placeholder {
    color: #a1a1a1
}

.placeholder {
    color: #a1a1a1 !important
}

.button, a.button, button, input[type=button], input[type=reset], input[type=submit] {
    display: inline-block;
    font-family: poppins-bold, sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 5.4rem;
    line-height: 5.4rem;
    padding: 0 3rem;
    margin: 0 .3rem 1.2rem 0;
    background: #d8d8d8;
    color: var(--black-text-color);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: none;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.button:focus, .button:hover, a.button:hover, button:focus, button:hover, input[type=button]:focus, input[type=button]:hover, input[type=reset]:focus, input[type=reset]:hover, input[type=submit]:focus, input[type=submit]:hover {
    background: #bebebe;
    color: var(--black-text-color);
    outline: 0
}

.button.button-primary, a.button.button-primary, button.button-primary, input[type=button].button-primary, input[type=reset].button-primary, input[type=submit].button-primary {
    background: #454545;
    color: var(--white-text-color)
}

.button.button-primary:focus, .button.button-primary:hover, a.button.button-primary:hover, button.button-primary:focus, button.button-primary:hover, input[type=button].button-primary:focus, input[type=button].button-primary:hover, input[type=reset].button-primary:focus, input[type=reset].button-primary:hover, input[type=submit].button-primary:focus, input[type=submit].button-primary:hover {
    background: #1f1f1f
}

.button.full-width, button.full-width {
    width: 100%;
    margin-right: 0
}

.button.stroke, button.stroke {
    background: 0 0 !important;
    border: 3px solid var(--black-text-color);
    line-height: 4.8rem
}

.button.stroke:hover, button.stroke:hover {
    border: 3px solid var(--primary-color);
    color: var(--primary-color)
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

.skill-bars {
    list-style: none;
    margin: 0
}

.skill-bars li {
    margin-bottom: 4rem
}

.skill-bars li h4 {
    margin-bottom: 3.5rem;
    font-family: poppins-bold, sans-serif;
    color: var(--black-text-color);
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-size: 1.5rem;
    line-height: 2.4rem
}

.skill-bars li .progressbox {
    height: .6rem;
    background: #a1a1a1;
    width: 100%;
    display: block
}

.skill-bars li .progressbox .progress {
    background: var(--black-text-color);
    position: relative;
    height: .6rem
}

.skill-bars li .progressbox .progress span {
    position: absolute;
    right: -1.65em;
    top: -3.6rem;
    display: block;
    font-family: poppins-regular, sans-serif;
    color: var(--white-text-color);
    font-size: 1.1rem;
    line-height: 1;
    background: var(--black-text-color);
    padding: .6rem .6rem;
    border-radius: 3px
}

.skill-bars li .progressbox .progress span::after {
    position: absolute;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid var(--black-text-color);
    content: ""
}

.skill-bars li strong {
    margin-top: -2em
}

.skill-bars li .percent5 {
    width: 5%
}

.skill-bars li .percent10 {
    width: 10%
}

.skill-bars li .percent15 {
    width: 15%
}

.skill-bars li .percent20 {
    width: 20%
}

.skill-bars li .percent25 {
    width: 25%
}

.skill-bars li .percent30 {
    width: 30%
}

.skill-bars li .percent35 {
    width: 35%
}

.skill-bars li .percent40 {
    width: 40%
}

.skill-bars li .percent45 {
    width: 45%
}

.skill-bars li .percent50 {
    width: 50%
}

.skill-bars li .percent55 {
    width: 55%
}

.skill-bars li .percent60 {
    width: 60%
}

.skill-bars li .percent65 {
    width: 65%
}

.skill-bars li .percent70 {
    width: 70%
}

.skill-bars li .percent75 {
    width: 75%
}

.skill-bars li .percent80 {
    width: 80%
}

.skill-bars li .percent85 {
    width: 85%
}

.skill-bars li .percent90 {
    width: 90%
}

.skill-bars li .percent95 {
    width: 95%
}

.skill-bars li .percent100 {
    width: 100%
}

.grey-section {
    background: #ebebeb
}

.grey-section p.lead {
    color: #7d7d7d
}

.section-intro {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 3.6rem;
    position: relative
}

.section-intro h1 {
    font-family: poppins-semibold, serif;
    font-size: 3.6rem;
    color: var(--black-text-color);
    line-height: 1.25;
    margin-bottom: 1.2rem
}

.section-intro h5 {
    color: var(--primary-color);
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: .3rem;
    letter-spacing: .4rem
}

@media only screen and (max-width: 768px) {
    .section-intro {
        max-width: 650px
    }

    .section-intro h1 {
        font-size: 3rem
    }
}

@media only screen and (max-width: 600px) {
    .section-intro h1 {
        font-size: 2.6rem
    }

    .section-intro h5 {
        font-size: 1.5rem;
        letter-spacing: .3rem
    }
}

@media only screen and (max-width: 400px) {
    .section-intro h1 {
        font-size: 2.4rem
    }
}

header {
    margin-left: calc(50% - 500px);
    position: fixed;
    z-index: 600
}

@media only screen and (max-width: 1250px) {
	header {
		margin-left: 10%;
	}
}

.menu-toggle {
    display: inline-block;
    background: var(--nav-bg-color);
    min-width: 210px;
    top: 0;
    border-radius: 0 0 var(--button-border-radius) var(--button-border-radius)
}

.menu-toggle span {
    display: block;
    background-color: var(--primary-color);
    width: 24px;
    height: 3px;
    margin-top: -1.5px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    position: absolute;
    left: 24px;
    top: 50%;
    -moz-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

.menu-toggle h3 {
    margin-left: 65px;
    color: var(--white-text-color);
    margin-top: 20px;
    padding-right: 24px
}

.menu-toggle span::after, .menu-toggle span::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -moz-transition-duration: .2s, .2s;
    -o-transition-duration: .2s, .2s;
    -webkit-transition-duration: .2s, .2s;
    transition-duration: .2s, .2s;
    -moz-transition-delay: .2s, 0s;
    -o-transition-delay: .2s, 0s;
    -webkit-transition-delay: .2s, 0s;
    transition-delay: .2s, 0s
}

.menu-toggle span::before {
    top: -8px;
    -moz-transition-property: top, transform;
    -o-transition-property: top, transform;
    -webkit-transition-property: top, transform;
    transition-property: top, transform
}

.menu-toggle span::after {
    bottom: -8px;
    -moz-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    -webkit-transition-property: bottom, transform;
    transition-property: bottom, transform
}

#main-nav-wrap {
    display: block;
    font-family: poppins-medium, sans-serif;
    font-size: 1.5rem;
    position: absolute;
    top: 100%;
    left: 0
}

.main-navigation {
    background: var(--nav-bg-color);
    padding: 24px 0 24px;
    margin: 10px 0 0;
    min-width: 210px;
    border-radius: var(--button-border-radius);
    height: auto;
    display: none
}

.main-navigation > li {
    display: block;
    height: auto;
    text-align: left;
    padding-left: 0
}

.main-navigation li a {
    display: block;
    color: var(--white-text-color);
    padding: 15px 30px 15px;
    line-height: 16px;
    border: none
}

.main-navigation li a:hover {
    color: var(--primary-color);
    padding-left: 45px;
    background-color: #424242
}

.main-navigation li.current > a {
    color: var(--primary-color)
}

#intro {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background: #151515 url(../assets/intro-bg-blur.webp) no-repeat fixed center;
    width: 100%;
    height: 100%;
    min-height: 720px;
    display: table;
    position: relative;
    text-align: center
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: .5
}

.intro-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    -webkit-transform: translateY(-2.1rem);
    -ms-transform: translateY(-2.1rem);
    transform: translateY(-2.1rem)
}

.intro-content h1 {
    color: var(--white-text-color);
    font-family: poppins-medium, sans-serif;
    font-size: 8.4rem;
    line-height: 1.071;
    max-width: 900px;
    margin: 0 auto .6rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, .5)
}

.intro-content h5 {
    color: var(--primary-color);
    font-family: poppins-bold, sans-serif;
    font-size: 2.3rem;
    line-height: 1.565;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .3rem;
    text-shadow: 0 0 6px rgba(0, 0, 0, .2)
}

.intro-content .intro-position {
    font-family: lora-regular, serif;
    font-size: 1.7rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: var(--white-text-color);
    text-shadow: 0 0 6px rgba(0, 0, 0, .2)
}

.intro-content .intro-position span {
    display: inline-block
}

.intro-content .intro-position span::after {
    content: "|";
    text-align: center;
    display: inline-block;
    padding: 0 8px 0 14px;
    color: rgba(255, 255, 255, .3)
}

.intro-content .intro-position span:first-child::before {
    content: "|";
    text-align: center;
    display: inline-block;
    padding: 0 14px 0 8px;
    color: rgba(255, 255, 255, .3)
}

.intro-content .button {
    color: var(--white-text-color);
    border-color: rgba(255, 255, 255, .3);
    height: 6rem !important;
    line-height: 5.4rem !important;
    padding: 0 3.5rem 0 3rem !important;
    margin-top: .6rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .25rem
}

.intro-content .button:focus, .intro-content .button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color)
}

.buttonarrow {
    display: inline-block;
    font-size: 1.6rem;
    line-height: inherit;
    text-align: center;
    position: relative;
    left: 1.2rem
}

@media only screen and (max-width: 1024px) {
    .intro-content h1 {
        font-size: 7.6rem
    }
}

@media only screen and (max-width: 768px) {
    #intro {
        min-height: 660px
    }

    .intro-content h1 {
        font-size: 5.2rem
    }

    .intro-content h5 {
        font-size: 1.8rem
    }

    .intro-content .intro-position {
        font-size: 1.3rem
    }
}

@media only screen and (max-width: 600px) {
    #intro {
        min-height: 600px
    }

    .intro-content h1 {
        font-size: 4.6rem;
        margin-bottom: .6rem
    }

    .intro-content h5 {
        font-size: 1.5rem;
        margin-bottom: .3rem;
        letter-spacing: .2rem
    }

    .intro-content .intro-position {
        font-size: 1.2rem
    }

    .intro-content .intro-position span {
        padding: 0 .6rem
    }

    .intro-content .intro-position span::after, .intro-content .intro-position span::before {
        display: none !important
    }
}

#about {
    background: #fafafa;
    padding-top: 12rem;
    padding-bottom: 15rem
}

#about .section-intro {
    margin-bottom: 3rem
}

.intro-info {
    margin-top: 4.2rem;
    margin-right: -30px;
    margin-left: -30px
}

.intro-info .lead {
    text-align: left;
    padding-left: 13rem
}

.about-content {
    position: relative;
    text-align: left;
    max-width: 850px;
    margin-bottom: 10rem
}

.about-content h3 {
    font-family: poppins-bold, sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: .25rem
}

.about-content .info-list {
    list-style: none;
    margin-left: 0
}

.about-content .info-list li {
    padding: 0 0 1.5rem 0;
    margin-bottom: .6rem
}

.about-content .info-list li strong {
    font-family: poppins-bold, sans-serif;
    color: var(--black-text-color);
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-size: 1.5rem;
    line-height: 3rem
}

.about-content .info-list li span {
    display: block;
    font-family: poppins-regular, sans-serif;
    color: var(--gray-text-color);
    font-size: 1.5rem;
    line-height: 1
}

.button-section {
    text-align: center
}

.button-section .button {
    width: 250px
}

.button-section [class*=col-] .button:first-child {
    margin-right: 4rem
}

@media only screen and (max-width: 1024px) {
    .intro-info {
        margin-right: 0;
        margin-left: 0
    }
}

@media only screen and (max-width: 768px) {
    .intro-info .lead {
        padding-left: 11rem
    }

    .about-content h3 {
        text-align: center
    }

    .about-content .info-list, .about-content .skill-bars {
        margin-bottom: 4.2rem
    }

    .button-section .button {
        width: 100%;
        margin-bottom: 3rem
    }

    .button-section [class*=col-] .button:first-child {
        margin-right: 0
    }
}

@media only screen and (max-width: 600px) {
    .intro-info {
        text-align: center;
        margin-top: 3rem
    }

    .intro-info .lead {
        padding-left: 0;
        text-align: center
    }
}

#resume {
    padding-top: 12rem;
    padding-bottom: 12rem
}

#resume .resume-header {
    text-align: center
}

#resume .resume-header h2 {
    color: var(--primary-color)
}

#resume .resume-timeline {
    max-width: 980px
}

#resume .timeline-wrap {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 6rem
}

#resume .timeline-wrap::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    position: absolute;
    left: 35%;
    top: 0
}

#resume .timeline-block {
    position: relative;
    padding-top: 1.5rem
}

#resume .timeline-ico {
    height: 4.8rem;
    width: 4.8rem;
    line-height: 4.8rem;
    background: var(--black-text-color);
    border-radius: 50%;
    text-align: center;
    color: var(--white-text-color);
    position: absolute;
    left: 35%;
    top: .9rem;
    margin-left: -2.4rem
}

#resume .timeline-ico i {
    position: relative;
    left: .05rem;
    top: .2rem
}

#resume .timeline-header {
    float: left;
    width: 35%;
    padding-right: 90px;
    text-align: right
}

#resume .timeline-header h3 {
    margin-bottom: 0
}

#resume .timeline-header p {
    font-family: poppins-regular, sans-serif;
    font-size: 1.6rem;
    color: var(--gray-text-color)
}

#resume .timeline-content {
    margin-left: 35%;
    padding-left: 60px
}

#resume .timeline-content h4 {
    position: relative;
    padding-bottom: 1.8rem
}

#resume .timeline-content h4::after {
    content: "";
    display: block;
    height: 3px;
    width: 50px;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    left: 0;
    bottom: 0
}

@media only screen and (max-width: 1024px) {
    #resume .timeline-header {
        padding-right: 50px
    }

    #resume .timeline-header h3 {
        font-size: 1.8rem
    }

    #resume .timeline-header p {
        font-size: 1.4rem
    }

    #resume .timeline-content {
        padding-left: 50px
    }
}

@media only screen and (max-width: 768px) {
    #resume .timeline-wrap::before {
        left: 2.4rem
    }

    #resume .timeline-ico {
        left: 2.4rem
    }

    #resume .timeline-header {
        float: none;
        width: auto;
        padding-right: 15px;
        text-align: left
    }

    #resume .timeline-header h3 {
        font-size: 2rem
    }

    #resume .timeline-header p {
        font-size: 1.5rem;
        margin-bottom: 1.5rem
    }

    #resume .timeline-content {
        margin: 0
    }

    #resume .timeline-content h4 {
        padding-bottom: 0;
        padding-top: 2.1rem;
        margin-bottom: .6rem;
        font-size: 1.7rem
    }

    #resume .timeline-content h4::after {
        bottom: auto;
        top: 0
    }

    #resume .timeline-content, #resume .timeline-header {
        padding-left: 7rem
    }
}

@media only screen and (max-width: 480px) {
    #resume .resume-header h2 {
        font-size: 2.2rem
    }

    #resume .timeline-wrap::before {
        left: 1.8rem
    }

    #resume .timeline-ico {
        height: 3.6rem;
        width: 3.6rem;
        line-height: 3.6rem;
        left: 1.8rem;
        margin-left: -1.8rem;
        font-size: 1.5rem
    }

    #resume .timeline-content, #resume .timeline-header {
        padding-left: 5.5rem
    }
}

#stats {
    background: var(--accent-color);
    padding-top: 7.2rem;
    padding-bottom: 6rem;
    text-align: center
}

#stats .row {
    max-width: 1440px
}

#stats .stat {
    border-left: 1px solid rgba(255, 255, 255, .12);
    min-height: 17.4rem
}

#stats .stat:first-child {
    border: none
}

#stats .icon-part i {
    font-size: 4.8rem;
    color: var(--white-text-color)
}

#stats .stat-count {
    color: var(--white-text-color);
    font-size: 3.6rem;
    margin-top: 1.2rem;
    margin-bottom: 0;
    font-family: poppins-medium, sans-serif
}

#stats .stat-title {
    color: rgba(255, 255, 255, .5)
}

@media only screen and (max-width: 1024px) {
    #stats .stat:nth-child(n) {
        border-left: 1px solid rgba(255, 255, 255, .12);
        padding-bottom: 1.5rem
    }

    #stats .stat:nth-child(3n+1) {
        border: none
    }
}

@media only screen and (max-width: 768px) {
    #stats .stat:nth-child(n) {
        border-left: 1px solid rgba(255, 255, 255, .12)
    }

    #stats .stat:nth-child(2n+1) {
        border: none
    }
}

@media only screen and (max-width: 600px) {
    #stats .stat:nth-child(n) {
        border: none
    }
}

#contact {
    background: #151515;
    padding-top: 12rem;
    padding-bottom: 7.2rem
}

#contact .section-intro h1 {
    color: var(--white-text-color)
}

#contact .section-intro h5 {
    color: var(--primary-color)
}

#contact .section-intro p {
    color: rgba(255, 255, 255, .7)
}

.contact-form {
    max-width: 740px
}

.contact-form ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .8)
}

.contact-form :-moz-placeholder {
    color: rgba(255, 255, 255, .8)
}

.contact-form ::-moz-placeholder {
    color: rgba(255, 255, 255, .8)
}

.contact-form :-ms-input-placeholder {
    color: rgba(255, 255, 255, .8)
}

.contact-form .placeholder {
    color: rgba(255, 255, 255, .8) !important
}

#contact form {
    margin-top: 0;
    margin-bottom: 3rem
}

#contact form .form-field {
    position: relative
}

#contact form .form-field:after, #contact form .form-field:before {
    content: "";
    display: table
}

#contact form .form-field:after {
    clear: both
}

#contact form .form-field label {
    font-family: poppins-bold, sans-serif;
    font-size: 1.1rem;
    line-height: 2.4rem;
    position: absolute;
    bottom: -1.2rem;
    right: .6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    padding: 0 2rem;
    margin: 0;
    color: var(--white-text-color);
    background: var(--primary-color)
}

#contact form .form-field label::after {
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid var(--primary-color);
    content: ""
}

#contact input[type=email], #contact input[type=password], #contact input[type=text], #contact textarea {
    width: 100%;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

#contact input[type=email], #contact input[type=password], #contact input[type=text] {
    height: 6.6rem;
    padding: 1.8rem 2rem
}

#contact input[type=email]:focus, #contact input[type=password]:focus, #contact input[type=text]:focus {
    border-color: var(--primary-color);
    color: var(--white-text-color)
}

#contact textarea {
    min-height: 20rem;
    padding: 1.8rem 2rem
}

#contact textarea:focus {
    border-color: var(--primary-color);
    color: var(--white-text-color)
}

#contact button.submitform {
    font-size: 1.5rem;
    display: block;
    letter-spacing: .2rem;
    height: 6.6rem;
    line-height: 6.6rem;
    padding: 0 3rem;
    margin-top: 4.8rem;
    width: 100%;
    background: var(--button-color);
    color: var(--white-text-color)
}

#contact button.submitform:focus, #contact button.submitform:hover {
    background: var(--focus-color)
}

#message-success, #message-warning {
    display: none;
    font-family: poppins-regular, sans-serif;
    background: #0d0d0d;
    border-radius: 3px;
    padding: 3rem;
    margin-bottom: 3.6rem;
    width: 100%
}

#message-warning {
    color: red
}

#message-success {
    color: var(--primary-color)
}

#message-success i, #message-warning i {
    margin-right: 10px
}

#submit-loader {
    display: none;
    position: relative;
    left: 0;
    top: 1.8rem;
    width: 100%;
    text-align: center
}

#submit-loader .text-loader {
    display: none;
    font-family: poppins-bold, sans-serif;
    color: var(--white-text-color);
    letter-spacing: .3rem;
    text-transform: uppercase
}

.oldie #submit-loader .s-loader {
    display: none
}

.oldie #submit-loader .text-loader {
    display: block
}

.contact-info {
    margin: 4.8rem auto 0;
    font-family: poppins-regular, sans-serif;
    font-size: 1.5rem;
    text-align: center
}

.contact-info .icon {
    margin-bottom: 2.1rem
}

.contact-info .icon i {
    font-size: 4.2rem;
    color: var(--white-text-color)
}

.contact-info h5 {
    color: var(--primary-color)
}

.s-loader {
    margin: 1.2rem auto 3rem;
    width: 70px;
    text-align: center;
    -webkit-transform: translateX(.45rem);
    -ms-transform: translateX(.45rem);
    transform: translateX(.45rem)
}

.s-loader > div {
    width: 1rem;
    height: 1rem;
    background-color: var(--white-text-color);
    border-radius: 100%;
    display: inline-block;
    margin-right: .9rem;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both
}

.s-loader .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.s-loader .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes sk-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes sk-bouncedelay {
    0%, 100%, 80% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

footer {
    padding-bottom: 3rem;
    font-size: 1.4rem;
    font-family: poppins-regular, sans-serif
}

footer a, footer a:visited {
    color: var(--white-text-color)
}

footer a:focus, footer a:hover {
    color: var(--primary-color)
}

footer .row {
    max-width: 900px
}

footer .copyright span {
    display: inline-block
}

footer .copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 1rem 0 1.2rem;
    color: rgba(255, 255, 255, .1)
}

footer .copyright span:last-child::after {
    display: none
}

@media only screen and (max-width: 768px) {
    footer {
        text-align: center
    }

    footer .copyright span {
        display: block
    }

    footer .copyright span::after {
        display: none
    }
}

#go-top {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 600;
    display: none
}

#go-top a {
    border-radius: var(--button-border-radius) 0 0 0;
    text-decoration: none;
    border: 0 none;
    display: block;
    height: 6.6rem;
    width: 6rem;
    line-height: 6.6rem;
    text-align: center;
    background: var(--button-color);
    color: var(--white-text-color);
    text-transform: uppercase;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

#go-top a i {
    font-size: 1.6rem;
    line-height: inherit
}

#go-top a:hover {
    background: var(--focus-color)
}