/*
    Template: Flatfy - Responsive One Page Resume/CV
    Author: Linewp
    Version: 1.0
*/


/* TABLE OF CONTENTS

    1. Preloader
    2. Basic Document Styles
    3. Navigation
    4. Header
    5. Status
    6. Skills
    7. Portfolio
    8. Here Me
    9. Resume
    10. Clients
    11. Contact
    12. Footer
    13. Social Icon
    14. Portfolio Modal
    15. Media Queries
*/


    
    /* ==========================================================================
       Color Palette
       ========================================================================== */
        -color: #4ac2be;
        -color: #13B0A5;
        -color: #474D5D;
        -color: #28353E;
        color: #111111;
        color: #333333;
        color: #666666;
        color: #999999;
        color: #C6C6C6;
        color: #F6F6F6;
    /* ==========================================================================
       Base styles: opinionated defaults
       ========================================================================== */



/* 1. Preloader
-------------------------------------------------*/
#loader {
    background: #f6f6f6;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.loaderBars {
    height: 50px;
    width: 70px;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    text-align: center;


}

.bar{
    background-color:#4ac2be;
    border:1px solid #4ac2be;
    float:left;
    height:33px;
    margin-left:2px;
    width:9px;
    opacity:0.1;
    -moz-animation-name:bounceG;
    -moz-animation-duration:1.5s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-direction:linear;
    -moz-transform:scale(0.7);
    -webkit-animation-name:bounceG;
    -webkit-animation-duration:1.5s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-direction:linear;
    -webkit-transform:scale(0.7);
    -ms-animation-name:bounceG;
    -ms-animation-duration:1.5s;
    -ms-animation-iteration-count:infinite;
    -ms-animation-direction:linear;
    -ms-transform:scale(0.7);
    -o-animation-name:bounceG;
    -o-animation-duration:1.5s;
    -o-animation-iteration-count:infinite;
    -o-animation-direction:linear;
    -o-transform:scale(0.7);
    animation-name:bounceG;
    animation-duration:1.5s;
    animation-iteration-count:infinite;
    animation-direction:linear;
    transform:scale(0.7);
}

.bar1{
    -moz-animation-delay:0.45s;
    -webkit-animation-delay:0.45s;
    -ms-animation-delay:0.45s;
    -o-animation-delay:0.45s;
    animation-delay:0.45s;
}

.bar2{
    -moz-animation-delay:0.6s;
    -webkit-animation-delay:0.6s;
    -ms-animation-delay:0.6s;
    -o-animation-delay:0.6s;
    animation-delay:0.6s;
}

.bar3{
    -moz-animation-delay:0.75s;
    -webkit-animation-delay:0.75s;
    -ms-animation-delay:0.75s;
    -o-animation-delay:0.75s;
    animation-delay:0.75s;
}

@-moz-keyframes bounceG{
0%{
-moz-transform:scale(1.2);
opacity:1}

100%{
-moz-transform:scale(0.7);
opacity:0.1}

}

@-webkit-keyframes bounceG{
0%{
-webkit-transform:scale(1.2);
opacity:1}

100%{
-webkit-transform:scale(0.7);
opacity:0.1}

}

@-ms-keyframes bounceG{
0%{
-ms-transform:scale(1.2);
opacity:1}

100%{
-ms-transform:scale(0.7);
opacity:0.1}

}

@-o-keyframes bounceG{
0%{
-o-transform:scale(1.2);
opacity:1}

100%{
-o-transform:scale(0.7);
opacity:0.1}

}

@keyframes bounceG{
0%{
transform:scale(1.2);
opacity:1}

100%{
transform:scale(0.7);
opacity:0.1}

}


/* 2. Basic Document Styles
-------------------------------------------------*/
body {
    overflow-x: hidden;
    font-family: museo-slab, serif;
    font-weight: 300;
    color: #666666;
}

p {
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 22px;
    color: #666666;
}

p.large {
    font-size: 16px;
}

.text-dark {
    color: #999999;
}

.text-primary {
    color: #13B0A5;
    font-size: 0.9em;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    text-decoration: none;
}

a {
    color: #13B0A5;
}

a:hover,
a:focus,
a:active,
a.active {
    color: #474D5D;
    text-decoration: none;
}

::-moz-selection {
    text-shadow: none;
    background: #13B0A5;
}

::selection {
    text-shadow: none;
    background: #13B0A5;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #13B0A5;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
}

.img-centered {
    margin: 0 auto;
}

.img-me {
    margin-top: 18px;
}

.bg-clients {
    background-color: #13B0A5;
}

.btn-primary {
    border-color: #13B0A5;
    text-transform: none;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #f6f6f6;
    background-color: #13B0A5;
}

.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    border-color: #474D5D;
    color: #f6f6f6;
    background-color: #474D5D;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #13B0A5;
    background-color: #13B0A5;
}

.btn-primary .badge {
    color: #13B0A5;
    background-color: #f6f6f6;
}

.btn-x3 {
    padding: 13px 30px;
    border: 2px solid #13B0A5;
    border-radius: 1px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #13B0A5;
    background-color: transparent;
}

.btn-x3:hover,
.btn-x3:focus,
.btn-x3:active,
.btn-x3.active,
.open .dropdown-toggle.btn-x3 {
    color: #13B0A5;
    padding: 13px 35px;
}

.btn-x2 {
    padding: 15px 30px;
    border-color: #f6f6f6;
    border-radius: 1px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #f6f6f6;
    background-color: transparent;
}

.btn-x2:hover,
.btn-x2:focus,
.btn-x2:active,
.btn-x2.active,
.open .dropdown-toggle.btn-x2 {
    border-color: #13B0A5;
    color: #13B0A5;
    background-color: transparent;
}

.btn-x1 {
    padding: 12px 26px;
    border-color: #13B0A5;
    border-radius: 3px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #f6f6f6;
    background-color: #13B0A5;
}

.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    border-color: #474D5D;
    color: #f6f6f6;
    background-color: #474D5D;
}

.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    background-image: none;
}

.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
    border-color: #13B0A5;
    background-color: #13B0A5;
}

.btn-xl .badge {
    color: #13B0A5;
    background-color: #f6f6f6;
}

section {
    padding: 100px 0;
}

section h2.section-heading {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 36px;
    border-bottom: 6px solid #13b0a5;
    padding-bottom: 5px;
    display: inline-block;
}

section h3.section-subheading {
    margin-bottom: 75px;
    margin-top: 10px;
    text-transform: none;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.service-heading {
    margin: 5px 0 15px;
    text-transform: none;
    color: #666666;
}


/* 3. Navigation
-------------------------------------------------*/
.navbar-default {
    border-color: transparent;
    background-color: #f6f6f6;
}

.navbar-default .navbar-brand {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #474D5D;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #13B0A5;
}

.navbar-default .navbar-collapse {
    border-color: rgba(255,255,255,.02);
}

.navbar-default .navbar-toggle {
    border-color: #13B0A5;
    background-color: #13B0A5;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #f6f6f6;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #13B0A5;
}

.navbar-fixed-top.navbar-shrink .nav li a {
    color: #474D5D;
}

.navbar-default .nav li a {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: #474D5D;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    outline: 0;
    color: #13B0A5;
}

.navbar-default.navbar-shrink .navbar-nav>.active>a {
    border-radius: 0;
    color: #13b0a5;
    background-color: transparent;
}

.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #f6f6f6;
    background-color: #13B0A5;
}


/* 4. Header
-------------------------------------------------*/
header {
    text-align: center;
    color: #f6f6f6;
    background-attachment: scroll;
    background-image: url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

header .intro-text {
    padding-top: 100px;
    padding-bottom: 50px;
}

header .intro-text .intro-lead-in {
    margin-bottom: 25px;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 32px;
    font-style: italic;
    line-height: 36px;
}

header .intro-text .intro-heading {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}


/* 5. Status
-------------------------------------------------*/
#status {
    background-color: #28353E;
    background-image: url("../img/bg-portfolio.jpg");
    color: #f6f6f6;
    padding: 100px 0;
}

#status i {
    color: #13b0a5;
}


/* 6. Skills
-------------------------------------------------*/
.skills{
    background:#f6f6f6;
    color:#474d5d;
}

.skills .heading p{
    padding-bottom:41px;
}

.skills p{
    color:#474d5d;
}

.skills .skillsArea{
    padding:0px;
}
.skills .skills{
    margin:0 auto;
    margin-bottom:23px;
    text-align:center;
    padding:0px;
    float:none;
}
.skills .skills p{
    color:#999999;
    font-size:13px;
    line-height:18px;
    text-align:center;
}
.skills .skills img{
    margin:0 auto;
    margin-bottom:33px;
    width:100%;
    max-width:152px;
}

.skills .skills h4{
    font-weight:700;
    text-transform:uppercase;
}

.skilBg{
    background:url(../img/skills.png) no-repeat 0 0;
}

.chart {
  position: relative;
  display: inline-block;
  width: 152px;
  height: 152px;
  margin-bottom: 26px;
  text-align: center;
}

.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.percent {
  display: inline-block;
  font-size:21px;
  color:#474d5d;
  line-height: 152px;
  z-index: 2;
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .8em;
}

.angular {
  margin-top: 100px;
}

.angular .chart {
  margin-top: 0;
}


/* 7. Portfolio
-------------------------------------------------*/
#portfolio {
    background-color: #f6f6f6;
}

#portfolio .section-subheading {
    color: #999999;
}

#portfolio .portfolio-item {
    right: 0;
    margin: 0 0 15px;
}

#portfolio .portfolio-item .portfolio-link {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 400px;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(225, 225, 225, 0.8);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    transition: all ease .5s;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
    opacity: 1;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 20px;
    margin-top: -12px;
    text-align: center;
    font-size: 20px;
    color: #f6f6f6;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
    margin-top: -12px;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
    margin: 0;
}

#portfolio .portfolio-item .portfolio-caption {
    margin: 0 auto;
    padding: 25px;
    max-width: 400px;
    text-align: center;
    background-color: #f6f6f6;
}

#portfolio .portfolio-item .portfolio-caption h4 {
    margin: 0;
    text-transform: none;
}

#portfolio .portfolio-item .portfolio-caption p {
    margin: 0;
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-style: italic;
}

#portfolio * {
    z-index: 2;
}


/* 8. Here Me
-------------------------------------------------*/
#here-me {
    background-color: #f6f6f6;
    padding: 40px 0;
}

#here-me h1 {
    color: #666666;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 29px;
    font-weight: 400;
    margin: 9px 0 52px;
    text-transform: none;
}


/* 9. Resume
-------------------------------------------------*/
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    background-color: #f6f6f6;
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
    min-height: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    float: right;
    position: relative;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 7px solid #f6f6f6;
    border-radius: 100%;
    text-align: center;
    color: #f6f6f6;
    background-color: #13B0A5;
}

.timeline>li .timeline-image h4 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li .timeline-image span.ico {
    margin-top: 2px;
    font-size: 3.2em;
    display: inline-block;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4 {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-heading h2 {
    margin-top: 30px;
    color: inherit;
}

.timeline .timeline-heading h4.subheading {
    text-transform: none;
    color: #13b0a5;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
}


/* 10. Clients
-------------------------------------------------*/
aside.clients img {
    margin: 40px auto;
    opacity: 0.9;
}

aside.clients img:hover {
    opacity: 0.5;
    transform: scale(1.1);
}


/* 11. Contact
-------------------------------------------------*/
section#contact {
    background-color: #28353E;
    background-image: url(../img/bg-portfolio.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

section#contact .section-heading {
    color: #f6f6f6;
}

section#contact .form-group {
    margin-bottom: 25px;
}

section#contact .form-group input,
section#contact .form-group textarea {
    padding: 20px;
    background-color:rgba(255, 255, 255, 0.1);
    border: 0 none;
    color: #f6f6f6;
}

section#contact .form-group input.form-control {
    height: auto;
}

section#contact .form-group textarea.form-control {
    height: 236px;
}

section#contact .form-control:focus {
    border-color: #13B0A5;
    box-shadow: none;
}

section#contact::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #999;
}

section#contact:-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #999;
}

section#contact::-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #999;
}

section#contact:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #999;
}

section#contact .text-danger {
    color: #e74c3c;
}

section#contact .form-text {
    color: #C6C6C6;
    margin-top: 50px;
}

section#contact .form-text i {
    color: #f6f6f6;
    padding-right: 15px;
}

section#contact .form-text h4 {
    color: #f6f6f6;
    border-bottom: 3px solid #13b0a5;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 16px;
}


/* 12. Footer
-------------------------------------------------*/
footer {
    padding: 25px 0;
    text-align: center;
    background-color: #28353e;
}

footer span.copyright {
    text-transform: uppercase;
    text-transform: none;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    line-height: 40px;
    color: #13B0A5;
}


/* 13. Social Icon
-------------------------------------------------*/
ul.social-buttons {
    margin-bottom: 0;
}

ul.social-buttons li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 20px;
    line-height: 40px;
    outline: 0;
    color: #999999;
    background-color: transparent;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
    background-color: #13B0A5;
    color: #f6f6f6;
}


/* 14. Portfolio Modal
-------------------------------------------------*/
.portfolio-modal .modal-content {
    padding: 100px 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    background-clip: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portfolio-modal .modal-content h2 {
    margin-bottom: 0;
    padding-bottom: 4px;
    font-size: 3em;
    text-align: center;
    border-bottom: 6px solid #13B0A5;
    display: inline-block;
}

.portfolio-modal .modal-content p {
    margin-bottom: 30px;
    text-align: left;
}

.portfolio-modal .modal-content p.item-intro {
    margin: 15px 0 35px;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    text-align: center;
    font-size: 16px;
    font-style: italic;
}

.portfolio-modal .modal-content ul.list-inline {
    margin-top: 0;
    margin-bottom: 30px;
}

.portfolio-modal .modal-content img {
    margin-bottom: 30px;
}

.portfolio-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 75px;
    height: 75px;
    background-color: transparent;
    cursor: pointer;
}

.portfolio-modal .close-modal:hover {
    opacity: .3;
}

.portfolio-modal .close-modal .lr {
    z-index: 1051;
    width: 1px;
    height: 75px;
    margin-left: 35px;
    background-color: #333333;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.portfolio-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 1px;
    height: 75px;
    background-color: #333333;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}


/* 15. Media Queries
-------------------------------------------------*/
@media(min-width:768px) {
    section {
        padding: 120px 0;
    }

    .navbar-default .nav li a {
        color: #f6f6f6;
    }

    .navbar-default {
        padding: 25px 0;
        border: 0;
        background-color: transparent;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

    .navbar-default .navbar-brand {
        font-size: 2em;
        color: #f6f6f6;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default .navbar-nav>.active>a {
        border-radius: 3px;
    }

    .navbar-default.navbar-shrink {
        padding: 10px 0;
        box-shadow:0 7px 16px 0 rgba(50, 50, 50, 0.1);
        background-color: #f6f6f6;
    }

    .navbar-fixed-top.navbar-shrink .navbar-brand {
        font-size: 1.5em;
        color: #474D5D;
    }

    header .intro-text {
        padding-top: 300px;
        padding-bottom: 200px;
    }

    header .intro-text .intro-lead-in {
        margin-bottom: 25px;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 40px;
        font-style: italic;
        line-height: 40px;
    }

    header .intro-text .intro-heading {
        margin-bottom: 50px;
        text-transform: uppercase;
        font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 75px;
        font-weight: 700;
        line-height: 75px;
    }

    #portfolio .portfolio-item {
        margin: 0 0 30px;
    }

    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        margin-bottom: 100px;
        min-height: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image span.ico {
        margin-top: 2px;
        font-size: 4em;
        display: inline-block;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }
}

@media(min-width:992px) {
    #here-me h1 {
        margin: 10px 0 0px;
    }

    section#contact .form-text {
        margin-top: 0px;
    }

    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image span.ico {
        margin-top: 2px;
        font-size: 6.2em;
        display: inline-block;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 30px;
        font-size: 18px;
        line-height: 26px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}

@media(min-width:1200px) {
    .timeline>li {
        min-height: 170px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px;
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 40px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px;
    }
}
/* ==========================================================================
     main.css
     ========================================================================== */

    /* ==========================================================================
       Color Palette
       ========================================================================== */
        -color: #4ac2be;
        -color: #13B0A5;
        -color: #474D5D;
        -color: #28353E;
        color: #111111;
        color: #333333;
        color: #666666;
        color: #999999;
        color: #C6C6C6;
        color: #F6F6F6;
    /* ==========================================================================
       Base styles: opinionated defaults
       ========================================================================== */
    
    html {
      color: #111;
      font-size: 1em;
      line-height: 1.4;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-weight: 200;
      text-rendering: optimizeLegibility ;
      -webkit-font-smoothing: antialiased;
      //font-feature-settings: "lnum";
    }
    
    /*
     * Remove text-shadow in selection highlight:
     * https://twitter.com/miketaylr/status/13333338805301
     *
     * Vendor-prefixed and regular ::selection selectors cannot be combined:
     * https://stackoverflow.com/a/16982510/7133471
     *
     * Customize the background color to match your design.
     */
    
    ::-moz-selection {
      background: #4ac2be;
      text-shadow: none;
    }
    
    ::selection {
      background: #4ac2be;
      text-shadow: none;
    }
    
    /*
     * A better looking default horizontal rule
     */
    
    hr {
      display: block;
      height: 1px;
      border: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      margin: 1em 0;
      padding: 0;
    }
    
    /*
     * Remove the gap between audio, canvas, iframes,
     * images, videos and the bottom of their containers:
     * https://github.com/h5bp/html5-boilerplate/issues/440
     */
    
    audio,
    canvas,
    iframe,
    img,
    svg,
    video {
      vertical-align: middle;
    }
    
    /*
     * Remove default fieldset styles.
     */
    
    fieldset {
      border: 0;
      margin: 0;
      padding: 0;
    }
    
    /*
     * Allow only vertical resizing of textareas.
     */
    
    textarea {
      resize: vertical;
    }
    
    /* ==========================================================================
       Helper classes
       ========================================================================== */
    
    /*
     * Hide visually and from screen readers
     */
    
    .hidden {
      display: none !important;
    }
    
    /*
    * Hide only visually, but have it available for screen readers:
    * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
    *
    * 1. For long content, line feeds are not interpreted as spaces and small width
    *    causes content to wrap 1 word per line:
    *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
    */
    
    .visuallyhidden {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      #f6f6f6-space: nowrap; /* 1 */
    }
    
    /*
    * Extends the .visuallyhidden class to allow the element
    * to be focusable when navigated to via the keyboard:
    * https://www.drupal.org/node/897638
    */
    
    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
      clip: auto;
      height: auto;
      margin: 0;
      overflow: visible;
      position: static;
      width: auto;
      #f6f6f6-space: inherit;
    }
    
    /*
    * Hide visually and from screen readers, but maintain layout
    */
    
    .invisible {
      visibility: hidden;
    }
    
    /* ==========================================================================
       EXAMPLE Media Queries for Responsive Design.
       These examples override the primary ('mobile first') styles.
       Modify as content requires.
       ========================================================================== */
    
    @media only screen and (min-width: 35em) {
      /* Style adjustments for viewports that meet the condition */
    }
    
    @media print,
      (-webkit-min-device-pixel-ratio: 1.25),
      (min-resolution: 1.25dppx),
      (min-resolution: 120dpi) {
      /* Style adjustments for high resolution devices */
    }
    
    /* ==========================================================================
       Print styles.
       Inlined to avoid the additional HTTP request:
       https://www.phpied.com/delay-loading-your-print-css/
       ========================================================================== */
    
    @media print {
      *,
      *:before,
      *:after {
      background: transparent !important;
      color: #111 !important; /* Black prints faster */
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      text-shadow: none !important;
      }
    
      a,
      a:visited {
      text-decoration: underline;
      }
    
      a[href]:after {
      content: " (" attr(href) ")";
      }
    
      abbr[title]:after {
      content: " (" attr(title) ")";
      }
    
      /*
       * Don't show links that are fragment identifiers,
       * or use the `javascript:` pseudo protocol
       */
    
      a[href^="#"]:after,
      a[href^="javascript:"]:after {
      content: "";
      }
    
      pre {
      #f6f6f6-space: pre-wrap !important;
      }
      pre,
      blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
      }
    
      /*
       * Printing Tables:
       * http://css-discuss.incutio.com/wiki/Printing_Tables
       */
    
      thead {
      display: table-header-group;
      }
      
      tr,
      img {
      page-break-inside: avoid;
      }
    
      p,
      h2,
      h3 {
      orphans: 3;
      widows: 3;
      }
    
      h2,
      h3 {
      page-break-after: avoid;
      }
    }
    
    /* CUSTOM STYLES */
    
    :root {
      --main-hue: 180;
      --main-sat: 100%;
      --main-light: 40%;
      --mainColor: hsl(0,80%,40%);
      --mainHover: hsl(0,80%,20%);
      --mainTransparent: hsl(0,80%,40%,0.2);
      /*--medium: "Suss-Med";
      --semibold: "Suss-Semibold";
      --bold: "Suss-Bold";*/
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      text-rendering: geometricPrecision;
      margin-top: 0;
    }
    
    h3 {
      font-size: 1.3125rem;
    }
    
    p{
      margin-top: 0;
    }
    
    body {
      height: 100vh; /* Fallback for browsers that do not support Custom Properties */
      height: calc(var(--vh, 1vh) * 100);
      margin: 0;
      padding: 0;
    }
    
    a {
      color: #4AC2BE;
      text-decoration: none;
      border-bottom: 1px solid;
    }
    
    hr {
      margin: 0 5%;
      padding: 0;
      box-sizing: border-box;
      border: 0;
      height: 1px;
      background: rgba(0,0,0,0.2);
    }
    
    ul {
      font-size: 1.3125rem;
      margin-top: 0;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    ul>li {
      margin-bottom: 1rem;
      margin-left: 3rem
    }
    
    ul>li::before {
       content: "•"; 
       color: var(--mainColor);
       padding: 0 1.17rem 0 1rem;
       margin-left: -3rem;
    }
    
    strong {
      font-weight: bold;
    }
    
    .roles li {
      font-size: 1.5rem;
    }
    
    .section {
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 40px 5%;
    }
    
    .no-padding-top {
      padding-top: 0;
    }
    .no-padding-bottom {
      padding-bottom: 0;
    }
    
    .section-heading {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 1.3125rem;
      line-height: 1.38096em;
      color: var(--mainColor);
    }
    
    #logo {
      width: 2rem;
    }
    
    #logo-path {
      fill: var(--mainColor);
      }
    
    #logo:hover #logo-path {
      fill: #333333;
      }
    
    .navigation {
      pointer-events: none;
      padding: 0.25rem 5% 0 5%;
      box-sizing: border-box;
      display: grid;
      grid-template-columns: 12.5% 1fr 12.5%;
      background: rgba(255,255,255,0.95);
      position: fixed;
      top: 0;
      width: 100vw;
      align-items: center;
    }
    
    .navigation:after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: var(--mainColor);
      grid-column: 1 / 4;
    }
    
    .navigation a {
      pointer-events: auto;
      display: inline-block;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 500;
      color: var(--mainColor);
      font-size: 1rem;
      line-height: 1em;
      border: 0;
    }
    
    .navigation a:hover {
      color: #13B0A5;
    }
    
    .logo-block {
      place-self: center left;
      align-items: center;
    }
    .menu-block {
      grid-column: 3/4;
      place-self: center right;
    }
    .hero-heading {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 1.3125rem;
      line-height: 1.38096em;
      color: var(--mainColor);
    }
    .hero-subheading {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      letter-spacing: -0.02em;
      font-size: 3rem;
      line-height: 1em;
      color: #333333;
    }
    .hero {
      margin-top: 5em;
    }
    .home {
      overflow: visible;
      min-height: 640px;
      background-blend-mode: color, normal;
      background: url('../img/basic.svg'),
      url('../img/leaf-xray-invert.jpg'), #f6f6f6;
      background-position: -10px bottom;
      background-repeat: no-repeat;
      background-size: 400px;
    }
    
    .invert {
      background: var(--mainHover);
      color: #f6f6f6;
    }
    .invert * {
      color: #f6f6f6;
    }
    
    .home2 {
      padding-left: 0;
    }
    .home-image {
      margin-top: 20vw;
    }
    .home-image .background-Color {
      fill: #f6f6f6;
    }
    .home-image .overlay-color {
      fill: #ffffff;
    }
    .home-text {
      x: 87.5%;
    }
    .home-text tspan {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 80px;
      color: #4AC2BE;
      letter-spacing: -0.04em;
      x: 87.5%;
      text-anchor: end;
      text-rendering: geometricPrecision;
    }
    
    .home-text .mainColor {
      fill: var(--mainColor)
    }
    
    .footer {
      background: #28353e;
      padding: 1em 5%;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      color: rgba(255,255,255,0.8);
    }
    
    .copyright {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 0.75rem;
      color: #13B0A5;
    }
    .copyright .c {
      font-size: 1.5em;
      position: relative;
      top: .12em;
      
    }
    
    
    @keyframes grow-in {
      0% {
        opacity: 1;
        transform:scale(0.95, 0.9);
        transform:translate(-5px 0);
        transform-origin: 0 35%;
      }
      10% {
        opacity: 1;
      }
      100% {
        transform:scale(1);
      }
    }
    
    .home-image svg {
      object-fit: cover;
    }
    #home-bitmap {
      animation: grow-in 7s ease-out;
    }
    
    
    .home-image-middle, .home-image-wide {
      display: none;
    }
    
    .home-image-narrow .home-text tspan {
      font-size: 160px;
    }
    
    .home-image-middle .home-text tspan {
      font-size: 110px;
    }
    
    
    
    .simpletext-block p, .simpletext-block blockquote {
      font-size: 1.3125rem;
      margin-top: 0.5rem;
      }
    
    .simpletext-block blockquote {
      margin-left: 0;
      margin: 2rem 0;
      padding-left: 2rem;
      border-left: 0.25rem solid var(--mainColor);
      }
    
    .simpletext-block p:first-of-type {
      margin-top: 0rem;
      }
    
      .simpletext-block p:last-of-type {
      margin-bottom: 0rem;
      }
    
    .blocks {
      display: grid;
      grid-template-columns: 100%;
      gap: 1rem;
    }
    .blocks article {
      transition: all 50ms ease-out;
    }
    .blocks article h1 {
      font-size: 1.5rem;
    }
    .blocks article p {
      font-size: 1.3125rem;
    }
    .full-bleed {
      width: 100vw
    }
    .full-bleed img {
      width: 100%;
      max-width: 100%;
    }
    
    .blocks .span-2 {
      grid-column: span 2;
    }
    
    .blocks .span-3 {
      grid-column: span 3;
    }
    
    
    
    
    
    .blocks img {
      max-width: 100%;
    }
    
    
    
    
    
    .image-grid-1 .blocks {
      grid-template-columns: 50fr 50fr;
    }
    
    .image-grid-1 .blocks div:nth-of-type(1) {
      grid-column: 1/3;
      grid-row: 1;
    }
    .image-grid-1 .blocks div:nth-of-type(2) {
      grid-column: 1/2;
      grid-row: 2;
    }
    .image-grid-1 .blocks div:nth-of-type(3) {
      grid-column: 2/3;
      grid-row: 2;
    }
    
    .image-grid-2 .blocks {
      grid-template-columns: 50fr 50fr;
    }
    
    .image-grid-2 .blocks div:nth-of-type(1) {
      grid-column: 1/2;
      grid-row: 1;
    }
    .image-grid-2 .blocks div:nth-of-type(2) {
      grid-column: 2/3;
      grid-row: 1;
    }
    .image-grid-2 .blocks div:nth-of-type(3) {
      grid-column: 1/3;
      grid-row: 2;
    }
    
    
    .numbers .blocks {
      grid-template-columns: 1fr 1fr;
    }
    
    .numbers .blocks div:first-of-type {
      grid-column: 1 / 3;
    }
    
    .numbers p {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      line-height: 1em;
      font-size: 1em;
    }
    
    .numbers .number {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 4rem;
      line-height: 1em;
      letter-spacing: -0.02em;
      margin-top: 0;
    }
    .numbers .unit {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 1em;
    }
    
    
    .page-nav ul {
      list-style-type: decimal-leading-zero;
      font-variant-numeric: lining-nums;
      list-style-position: inside;
      margin: 0;
      padding: 0;
    }
    
    .page-nav li {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      letter-spacing: -0.03em;
      font-weight: 300;
      font-size: 1.325rem;
      margin-bottom: 1rem;
    }
    
    a:hover {
      color: #13B0A5;
    }
    
    .page-heading-section {
      padding-top: 80px;
    }
    
    .page-heading h2, .page-heading-number h1 {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-weight: normal;
      letter-spacing: -0.02em;
      font-size: 2.5rem;
      line-height: 1em;
      color: #333333;
    }
    
    .page-heading-number {
      align-items: end;
    }
    
    .page-heading-number h1 {
      font-size: 2rem;
    }
    
    .highlights img {
      margin-bottom: 1.5rem;
    }
    
    .testimonials blockquote {
      letter-spacing: -0.02em;
      font-size: 2rem;
      line-height: 1.125em;
      border: 0;
      padding-left: 0;
      margin: 0;
      color: var(--mainColor);
    }
    
    .testimonials em {
      letter-spacing: 0;
      margin-top: 1rem;
      color: #333333;
      display: block;
      font-size: 1.5rem;
      line-height: 1.25em;
    }
    .testimonials {
      background: var(--mainTransparent);
      color: #f6f6f6;
    }
    
    
    @media (min-width: 640px) {
      .section {
      padding: 6.25vw 12.5%;
      }
      .no-padding-top {
      padding-top: 0;
      }
      .no-padding-bottom {
        padding-bottom: 0;
      }
     
      .navigation {
      padding: 0.25rem 12.5% 0 12.5%;
      position: fixed;
      top: 0;
      }
      .logo-block {
      place-self: center left;
      }
      .menu-block {
      grid-column: 3/4;
      place-self: center right;
      }
    
    
      .home-image {
      margin-top: 6.25vw;
      }
    
      .home-image-middle, .home-image-wide {
      display: block;
      }
    
      .home-image-narrow, .home-image-wide {
      display: none;
      }
    
    
      .simpletext-copy {
      font-size: 1.5rem;
      }
      hr {
      margin: 0 12.5%;
      }
    
      .image-grid-1 .blocks {
      grid-template-columns: 1fr 1fr;
      }
    
      .image-grid-1 .blocks div:nth-of-type(1) {
      grid-column: 1/3;
      grid-row: 1;
      }
      .image-grid-1 .blocks div:nth-of-type(2) {
      grid-column: 1/2;
      grid-row: 2;
      }
      .image-grid-1 .blocks div:nth-of-type(3) {
      grid-column: 2/3;
      grid-row: 2;
      }
      .numbers .number {
      font-size: 5rem;
      }
      .page-nav li {
        font-size: 1.75rem;
      }
      .footer {
      padding: 2rem 12.5%;
      }
    }
      
    
    
    @media (min-width: 1000px) {
      .section {
      padding: 6.25vw 12.5%;
      }
      .no-padding-top {
      padding-top: 0;
    }
    .no-padding-bottom {
      padding-bottom: 0;
    }
      .navigation {
      padding: 1.5rem 0;
      background: none;
      }
      .navigation:after {
      display: none;
      }
      .logo-block {
      place-self: center;
      }
      .menu-block {
      grid-column: 3/4;
      place-self: center;
      }
      .hero-content {
        grid-column: 2 / 4;
      }
      .home {
      min-height: 36rem;
      background-size: 100%, 65%;
      background-position: -2vw center;
      background-repeat: no-repeat;
      }
    
      .home2 {
        padding-left: 0;
      }
      .home-content {
        margin-left: 24px;
      }
      .home-content {
      grid-column: 3 / 4;
      }
      .home-image {
      margin-top: 6.25vw;
      }
    
      .home-image-wide {
      display: block;
      }
      
      .home-image-narrow, .home-image-middle {
      display: none;
      }
    
      .simpletext-block {
      grid-column: 2 / 4;
      }
    
      .profile p {
        font-size: 1.5rem;
      }
      .home-heading {
      font-family: "Helvetica", sans-serif;
      font-size: 3rem;
      }
    
      .testimonials blockquote {
      font-size: 3em;
      }
      .blocks {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.5rem;
      }
      hr {
      margin: 0 12.5%;
      }
    
      .page-heading-section {
        padding-top: 112px;
      }
    
      .numbers .blocks {
      grid-template-columns: 1fr 1fr 1fr;
      }
      .numbers .blocks div:first-of-type {
        grid-column: span 1;
      }
      .highlights img {
        max-width: 100%;
        margin-bottom: 1.5rem;
      }
    
    
      .footer {
      padding: 1rem 12.5%;
      }
    }
    
    @media (min-width: 1600px) {
      html {
      font-size: 21px;
      }
      .no-padding-top {
      padding-top: 0;
    }
    .no-padding-bottom {
      padding-bottom: 0;
    }
      .home {
      min-height: 36rem;
      }
      .home2 {
      padding-left: 0;
    }
    .home-content {
      margin-left: 24px;
    }
    .image-grid {
      padding-top: 0;
      padding-bottom: 0;
    }
    .footer {
      padding: 1rem 12.5%;
      }
    }
    
    .hr-short {
      margin: 3rem 90% 3rem 0;
      height: 0.1875rem;
      background: var(--mainColor);
    }
