@-webkit-keyframes drop {
    0% {
        top: 5px;
        opacity: 0;
    }

    30% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

@keyframes drop {
    0% {
        top: 5px;
        opacity: 0;
    }

    30% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

html{
    height: 100%;
    width: 100%;
}
body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #000000;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb60 {margin-bottom: 60px;}

.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt60 {margin-top: 60px;}

.mr10 {margin-right: 10px;}
.mr20 {margin-right: 20px;}
.mr30 {margin-right: 30px;}
.mr60 {margin-right: 60px;}

.ml10 {margin-left: 10px;}
.ml20 {margin-left: 20px;}
.ml30 {margin-left: 30px;}
.ml60 {margin-left: 60px;}

/* Spacers */
.spacer0, .spacer5, .spacer20, .spacer30, .spacer40, .spacer50, .spacer60, .spacer80, .spacer100 {
    display: block;
    clear: both;
    overflow: hidden;
}
.spacer0 {height: 0px;}
.spacer5 {height: 5px;}
.spacer10 {height: 10px;}
.spacer20 {height: 20px;}
.spacer30 {height: 30px;}
.spacer40 {height: 40px;}
.spacer50 {height: 50px;}
.spacer60 {height: 60px;}
.spacer80 {height: 80px;}
.spacer100 {height: 100px;}

.section {
	padding: 7.5rem 6rem;
	position: relative;
}
.section.contact-me {
    padding: 7.5rem 6rem !important;
    position: relative;
}

.img-shadow {
    -webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
    box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
}
.img-border-radius {
    border-radius: 6px; 
}

/* BACK TO TOP BUTTON -------------------------------------
----------------------------------------------------------*/
#back-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    margin: 0;
    z-index: 9999;
}
#back-top a {
    width: 70px;
    display: block;
    text-align: center;
    font: 11px/100% Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #bbb;
    /* background color transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
#back-top a:hover {
    color: #000;
}
#back-top span {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0;
    background: url('../images/up-arrow.png') no-repeat center center;
    /* background color transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}


p {
	color: #000000;
	font-size: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
}
h2 {
	color: #000000;
	text-transform: uppercase;
	font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

h3 {
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
}


.btn {
	font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none;
	-webkit-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 3px 6px 0px rgba(0,0,0,0.3);
	border-radius: 6px;	
	font-size: 0.8rem;
}
.btn-lg {
	padding: .8rem 1.2rem;
    font-size: 1rem;
}
.btn-primary {
	background-image: linear-gradient(45deg, rgba(183,110,121,1) 0%, rgba(196,151,58,1) 100%);
	color: #ffffff;
	text-transform: uppercase;
	border: 0;
	transition: 0.5s;
  	background-size: 200% auto;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
	background-position: right center;
}

.btn-secondary {
	background: transparent;
	color: #ffffff;
	text-transform: uppercase;
	border: 1px solid #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:visited {
	background: rgba(255,255,255,0.1);
	border: 1px solid #ffffff;
}

.btn-white {
	background: #ffffff;
	color: #000000;
	text-transform: uppercase;
	border: 1px solid #ffffff;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white:visited {
	background: rgba(255,255,255,0.8);
	border: 1px solid #ffffff;
	color: #000000;
}

.btn-primary.focus, .btn-primary:focus,
.btn-secondary.focus, .btn-secondary:focus,
.btn-white.focus, .btn-white:focus {
    color: inherit;
    background-color: inherit;
    border-color: transparent;
    box-shadow: none;
}


header {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
	padding: 0 4rem;
}


nav > a {
	z-index: 79;
}
.navbar {
	padding: 2.4rem 0;
}
.navbar-expand li {
    margin: 0 10px;
}
.navbar-expand li a {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    text-transform: uppercase;
}
.work-example .navbar-expand li a {
    color: #000000 !important;
    text-shadow: none;
}
.navbar .navbar-toggler {
    background-color: #ffffff;
    border-radius: 50px;
    padding: .6rem;
    outline: none;
    position: absolute;
    top: 60px;
    right: 0;
}
.navbar-toggler:focus, .navbar-toggler:hover {
    outline: none;
}


/* HAMBURGER ICON */

#nav-icon3 {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 30px;
    right: 30px;
    margin:  0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
    /*background: rgb(196,151,58);*/
	/*background: linear-gradient(45deg, rgba(183,110,121,1) 0%, rgba(196,151,58,1) 100%);*/
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 50px;
	z-index: 999999;
}
#nav-icon3 span{
    display: block;
    position: absolute;
    height: 4px;
    width: 55%;
    background: #000000;
    border-radius: 50px;
    opacity: 1;
    left: 13px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

#nav-icon3 span:nth-child(1) {
  top: 18px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 28px;
}

#nav-icon3 span:nth-child(4) {
  top: 38px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


main {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100vh;
    padding-left: 0;
    padding-right: 0;
    z-index: 10;
    overflow: hidden;
}
.masthead-overlay {
	position: absolute;
	content:" ";
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:2;
	display: block;
	background: url('../images/overlay.png') repeat;
}
.masthead-content {
	z-index:3;
	text-align: center;
}
.masthead-content h1 {
	font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 7rem;
	letter-spacing: -3px;
	margin-bottom: 2rem;
	/*background-color: rgba(0,0,0,0.5);*/
	padding: 2rem 4rem;
	border-radius: 6px;
	line-height: 1.1;

}
.masthead-content h1 span {
	display: block;
	text-transform: uppercase;
}
.masthead-content h1 em {
	font-family: 'Source Sans Pro', sans-serif;
    color: #ffffff;
    font-weight: 300;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -4px;
}
.masthead-content .btn {
	margin: 0 10px;
}

.mouse-icon {
    border: 2px solid #fff;
    border-radius: 16px;
    height: 40px;
    width: 24px;
    display: block;
    z-index: 10;
    position: absolute;
    bottom: 30px;
    right: 50%;
}

.mouse-icon .wheel {
    position: relative;
    border-radius: 10px;
    background: #fff;
    width: 2px;
    height: 6px;
    top: 4px;
    margin-left: auto;
    margin-right: auto;
}

.mouse-icon .wheel {
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    -webkit-animation-name: drop;
    animation-name: drop;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

.banner {
    background: radial-gradient(circle, rgba(168,33,36,1) 0%, rgba(36,54,79,1) 100%);
    cursor: default;
    text-align: center;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    margin-top: 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
}

.homepage-features {
    position: relative;
    z-index: 10;
    background-color: #fff;
    width: 100vw;
    overflow: hidden;
}

/* NAVIGATION OVERLAY */

.overlay {
	display: none;
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	/*background: #333;*/
	overflow: auto;
	z-index: 99;
	background: linear-gradient(45deg, rgba(183,110,121,1) 0%, rgba(196,151,58,1) 100%);
}



.wrap {
	color: #ffffff;
	max-width: 80%;
	margin: 0 auto;
	position: relative;
	min-height: 100vh;
}
.wrap .nav-logo {
	padding: 0 2%;
	width: 30%;
	margin-bottom: 2%;
}
.wrap-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.wrap ul.wrap-nav {
	padding: 0;
	
}
.wrap ul.wrap-nav > li {
	display: inline-block;
	vertical-align: top;
	width: 24%;
	position: relative;
	padding: 0 2%;
}
.wrap ul.wrap-nav li h4 {
	color: #ffffff;
	display: block;
	padding: 0 0 10px 0;
	font-weight: 600;
	text-decoration: none;
	transition-property:all .2s linear 0s;
	-moz-transition:all .2s linear 0s;
	-webkit-transition:all .2s linear 0s;
	-o-transition:all .2s linear 0s;
	border-bottom: 2px solid #ffffff;
}
.wrap ul.wrap-nav li > ul {
	padding: 20px 0;
}
.wrap ul.wrap-nav > li > ul > li {
	display: block;
	width: 100%;
}
.wrap ul.wrap-nav > li > ul > li > a {
	color: #ffffff;
	font-size: 1.2rem;
}
.wrap ul.wrap-nav > li > ul > li > a:hover {
	color:#ffffff;
	text-decoration: underline;
}
.social > p,
.social > p a {
	color: #ffffff;
	text-decoration: none;
}
.social > p a:hover {
	text-decoration: underline;
}
.social .social-icons {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.social .social-icons li {
	display: inline-block !important;
	width: auto !important;
}
.social .social-icons li i {
	font-size: 3rem;
	color: #ffffff;
	margin: 0 10px 0 0;
}
.social .social-icons li i.last-child {
	margin: 0;
}

/* ABOUT SECTION */

.about-me .me {
	width: 80%;
	-webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
}
.about-me h2 {
    border-bottom: 5px solid #a82124;
    padding-bottom: 40px;
}
.about-me h2 em {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-transform: capitalize;
    display: block;
}
.about-me .hexagon1 {
  	position: absolute;
    bottom: -380px;
    right: -140px;
    width: 300px;
    fill: #24364f;
    opacity: .4;
    z-index: -1;
}
.about-me .hexagon2 {
  	    position: absolute;
    bottom: -170px;
    right: 60px;
    width: 200px;
    fill: #a82124;
    opacity: .2;
    z-index: -1;
}
.about-me .hexagon3 {
  	    position: absolute;
    bottom: 110px;
    right: 10px;
    width: 80px;
    fill: #a82124;
    opacity: .6;
    z-index: -1;
}

/* SKILLS SECTION */

.my-skills h2 {
	border-bottom: 5px solid #a82124;
	padding-bottom: 40px;
}
.my-skills h2 em {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-transform: capitalize;
    display: block;
}
.my-skills span {
	margin: 0 20px 30px 0;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	display: inline-block;
	color: #000000;
	line-height: 1em;
	letter-spacing: -2px;
	background-color: #eaeaea;
    padding: 10px 15px;
    border-radius: 6px;
}
.my-skills .bottom {
	margin-bottom: 0;
}
.my-skills .small {
	font-size: 1.13rem;
}
.my-skills .medium {
	font-size: 1.8rem;
}
.my-skills .large {
	font-size: 3rem;
}
.my-skills .x-large {
	font-size: 4.66rem;
}

/* CASE STUDY SECTION */

.examples-me h2 {
	border-bottom: 5px solid #a82124;
	padding-bottom: 40px;
}
.examples-me h2 em {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-transform: capitalize;
    display: block;
}
.examples-me .case-study {
	-webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.5);
  	margin-bottom: 4rem;
  	position: relative;
  	border-radius: 6px;
    display: inline-block;
    margin: 0 0 4rem 0;
    cursor: pointer;
}
.examples-me .cs-full {
	width: 100%;
}
.examples-me .cs-half {
	width: 48%;
}
.examples-me .case-study .cs-inner {
  	position: relative;
  	height: 450px;
  	width: 100%;
  	overflow: hidden;
  	-webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    border-radius: 6px;
}
.examples-me .case-study .cs-inner .cs-image {
	transition: transform 1.5s ease;
	/*height: 450px;*/
	width: auto;
}
.examples-me .case-study .cs-inner:hover .cs-image {
	/*background-size: 105% 105%;*/
	transform: scale(1.1);
}
.examples-me .case-study .case-content {
	background-color: rgba(0,0,0,0.7);
	/*width: 35%;*/
	width: 100%;
	/*height: 60px;*/
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px;
	z-index: 10;
}
.examples-me .case-study.cs-half .case-content {
	width: 100%;
}


.examples-me .case-study .case-content h4 {
	color: #ffffff;
	margin: 2rem 0 2rem 0;
    font-size: 1.2rem;
}
.examples-me .case-study .case-content h2 {
	color: #ffffff;
	text-transform: none;
	font-size: 1.8rem;
	position: relative;
	/*padding-top: 1rem;*/
	border: none;
    padding: 0;
    margin: 0;
}
/*.examples-me .case-study .case-content h2:after {
	content:'';
	position: absolute;
	background-color: #ffffff;
	width: 20%;
	height: 2px;
	bottom: 0;
	left:0;
}*/
.examples-me .case-study .case-content a {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	position: absolute;
    right: 30px;
    bottom: 30px;
}
.examples-me .case-study .case-content a:hover {
	text-decoration: none;
	color: #a82124;
}

/* DOWNLOAD CV */

.download-cv {
	background: radial-gradient(circle, rgba(168,33,36,1) 0%, rgba(36,54,79,1) 100%);
    cursor: default;
    text-align: center;
    /*position: fixed;*/
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100vh;*/
    max-width: none;
    margin-top: 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
}
.download-cv .cv-overlay {
	position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
    background: url(../images/overlay.png) repeat;
}
.download-cv .row {
	z-index: 10;
}
.download-cv .btn {
	padding: 0.75rem 3rem;
	font-size: 2rem;
}

/* CONTACT ME SECTION */

.contact-me h2 {
    border-bottom: 5px solid #a82124;
    padding-bottom: 40px;
}
.contact-me h2 em {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-transform: capitalize;
    display: block;
}



/* ---------- WORK EXAMPLE ---------- */


.work-example section {
    padding-left: 0;
    padding-right: 0;
}

.work-example .page-title {
    margin-top: 60px;
    
}
.work-example .page-title h1 {
    border-bottom: 5px solid #a82124;
    padding-bottom: 40px;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
.work-example .page-title h1 em {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    text-transform: capitalize;
    display: block;
}
.work-example .page-title .tags {
    font-weight: bold;
}


.grad-strip {
	display: block;
	width: 100%;
	height: 20px;
	background: linear-gradient(45deg, rgba(183,110,121,0.8) 0%, rgba(196,151,58,0.8) 100%);
}

footer {
	background-color: #e1e1e1;
}
.footer-info h4 {
	font-weight: 600;
}
.footer-info p {
	font-size: 1rem;
}
.footer-info .logo {
    margin-bottom: 2rem;
    width: 200px;
}
.footer-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-info ul li a {
    color: #000000;
    text-decoration: none;
}
.footer-info ul li a:hover {
    text-decoration: underline;
}
.footer-info ul.social-icons li {
    display: inline-block;
    margin-right: 10px;
}
.footer-info ul.social-icons li i {
    color: #666666;
    font-size: 2.5rem;
}
.footer-terms p, .footer-terms a {
	color: #666666;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}


@media screen and (max-width: 991px) {
	.section,
    .section.contact-me  {
    	padding: 7.5rem 4rem;
	}
	.masthead-content h1 {
		width: 85%;
    	margin: 0 auto 30px auto;
	}
	.wrap ul.wrap-nav > li {
		width: 48%;
	}
	.examples-me .cs-half {
		width: 100%;
		margin-right: 0 !important;
	}
    /*.examples-me .case-study .cs-inner .cs-image {
        width: auto !important;
    }
    .examples-me .case-study.cs-half .cs-inner .cs-image {
        width: 100%;
    }*/

    
    /*.mobile-nav {
        display: block !important;
    }
    .desktop-nav {
        display: none !important;
    }*/
    header nav > a {
        margin: 0 auto;
        margin-bottom: 30px;
    }


    .examples-me .case-study.cs-full .cs-inner .cs-image {
        width: auto !important;
    }
    .examples-me .case-study.cs-half .cs-inner .cs-image {
        width: 100% !important;
    }

    .navbar-expand {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {

	.section,
    .section.contact-me  {
	    padding: 10rem 3rem 5rem 3rem;
	}
	.masthead-content h1 {
		width: 90%;
	    margin: 0 auto 30px auto;
	    font-size: 4rem;
	}
	.mobile-center {
		text-align: center;
	}
	h2 {
		font-size: 2.5rem;
	}

    .about-me .me {
        display: none;
    }

    .my-skills span {
        margin: 0 20px 20px 0;
        padding: 6px 10px;
    }
    .my-skills .bottom {
        margin-bottom: 0;
    }
    .my-skills .small {
        font-size: 0.8rem;
    }
    .my-skills .medium {
        font-size: 1.5rem;
    }
    .my-skills .large {
        font-size: 2.4rem;
    }
    .my-skills .x-large {
        font-size: 3.8rem;
    }

    .header-inner {
        padding: 0 2rem;
    }
    
    .navbar-expand li a {
        font-size: 0.7rem;
        text-align: center;
    }



}

@media screen and (max-width: 575px) {

	h2 {
		font-size: 2rem;
	}
	.wrap {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.wrap-inner {
		position: relative;
	    top: 0;
	    left: 0;
	    transform: none;
	}
	.wrap ul.wrap-nav > li {
	    width: 100%;
	    padding: 0;
	}
	.wrap ul.wrap-nav li > ul {
	    padding: 10px 0;
	}
	.wrap ul.wrap-nav > li > ul > li {
	    display: inline-block;
	    width: auto;
	    margin-right: 10px;
	}
	.wrap ul.wrap-nav li h4 {
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}
	.wrap .nav-logo {
		width: 50%;
		margin-bottom: 10%;
	}

    .my-skills span {
        margin: 0 20px 20px 0;
        padding: 6px 10px;
    }
    .my-skills .bottom {
        margin-bottom: 0;
    }
    .my-skills .small {
        font-size: 0.6rem;
    }
    .my-skills .medium {
        font-size: 1.3rem;
    }
    .my-skills .large {
        font-size: 2.1rem;
    }
    .my-skills .x-large {
        font-size: 3.4rem;
    }

    .examples-me .case-study.cs-full .cs-inner .cs-image {
        width: auto !important;
    }
    .examples-me .case-study.cs-half .cs-inner .cs-image {
        width: auto !important;
    }

}

@media screen and (max-width: 480px) {

	.section,
    .section.contact-me  {
	    padding: 7.5rem 2rem;
	}
	.masthead-content h1 {
		font-size: 3rem;
	}
	.masthead-content .btn {
	    margin: 0 auto 15px auto;
	    width: 85%;
	}


}




