@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700|Qwigley');

/** ************************************* **

	TABLE OF CONTENTS
	---------------------------
		01. ESSENTIALS 
		02. DEFAULTS
		03. FRAMEWORK

        -- PAGE STYLES --
		04.
		05. 
		06.
		07. 
		08. 
		09. 
		10. 
		11. 
		12. 
				
	---------------------------

 ** ************************************* **/

/*
 * Colors:
 * #f1f1ef Neutral background
 * #d2d0ca Footer background
 * #635f57 Footer content
 * #000000 Main content/titles
 * #dca90e Orange
 * #88c86f Green
*/

/* -------------------------------- 

 01. ESSENTIALS

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Qwigley', cursive;
    font-family: 'Quicksand', sans-serif;
    color: #000;
    background-color: #f1f1ef;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}
.container{
    max-width: 100%;
}
.no-padding{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.padding-resp{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media screen and (max-width: 992px){
    .padding-resp{
        padding: 0 15px !important;
    }
}

img{
    width: 100%;
    height: auto;
}
a{
    color: #212121;
}
a:hover{
    color: #212121;
}
a:link,
a:active,
a:hover{
	outline: 0;
}

input:focus{
    outline: none;
}


/* -------------------------------- 

 02. DEFAULTS

-------------------------------- */
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0 0 20px;
    padding: 0;
    font-family: 'Qwigley', cursive;
    font-size: 60px;
    font-weight: 400;
}
h3{
    margin: 10px 0 15px;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
}
h4{
    margin: 15px 0 5px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
}
p{
    margin: 0 0 15px;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
strong{
    font-weight: 700;
}
@media screen and (max-width: 992px){
    h2{
        margin: 0 0 15px;
        font-size: 50px;
    }
    h3{
        font-size: 19px;
    }
    h4{
        font-size: 16px;
    }
    body,
    p{
        font-size: 16px;
    }
}

.btn {
    position: relative;
    display: inline-block;
    margin: 10px 0;
    padding: 10px 0;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    
    text-transform: uppercase;
    border-radius: 0;
}
.btn-1{
    background: transparent;
    color: #ffa500;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-1:hover{
    opacity: 0.5;
    color: #fff;
}
.btn-2{
    background: #1E824C;
    color: #fff;
}
.btn-2:hover{
    background: #eeba47;
    color: #fff;
}
.btn-3{
    background: #212121;
    color: #fff;
}
.btn-3:hover{
    background: #2a2a2a;
    color: #fff;
}
.btn-4{
    background: transparent;
    color: #2a2a2a;
    box-shadow: inset 0 0 0 2px #2a2a2a;
}
.btn-4:hover{
    opacity: 0.5;
    color: #2a2a2a;
}
.btn-5{
    background: #eeba47;
    color: #fff;
}
.btn-5:hover{
    background: #E3B142;
    color: #fff;
}

.same-height{
    margin-bottom: -99999px; 
    padding-bottom: 99999px;
}
iframe, object, embed {
    display: block;
    max-width: 100%;
}
@media screen and (max-width: 480px){
   iframe, object, embed {
        max-width: 100%;
        height: auto;
   }    
}


/* -------------------------------- 

 03. FRAMEWORK

-------------------------------- */

/* CD MAIN CONTENT */
.cd-main-content {
    position: relative;
    margin: 0;
    padding: 80px 0 0;
    z-index: 1;
}
@media only screen and (max-width: 992px){
    .cd-main-content{
        padding: 50px 0 0;
    }   
}

.content-wrap{}

.inside-wrap{
    margin: 0;
    padding: 50px;
}
@media only screen and (max-width: 992px){
    .inside-wrap{
        padding: 25px 20px;
    }
}

/* PAGE HEADER */
#page-header .item {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    height: 375px;
    border-bottom: 6px solid #fff;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
@media only screen and (max-width: 992px){
    #page-header .item {
        margin: 0;
        height: 200px;
        border-bottom: 3px solid #fff;
    }
}

/* BODY BORDER */
#body-border .border{
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background-color: #fff;
    z-index: 5;
}
#body-border .border-right {
    left: auto;
    right: 0;
}
#body-border .border-top {
    height: 30px;
    width: 100%;
}
#body-border .border-bottom {
    top: auto;
    bottom: 0;
    height: 30px;
    width: 100%;
}
@media only screen and (max-width: 992px){
    #body-border .border{
        width: 15px;
    }
    #body-border .border-top,
    #body-border .border-bottom {
        height: 15px;
        width: 100%;
    }
    #body-border .border-bottom{
        top: auto;
        bottom: 0;
    }
}

/* SHARE BUTTONS */
#share-buttons {
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 5;
}
#share-buttons a {
    display: block;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
}
#share-buttons a.facebook {
    background-color: #316299;
}
#share-buttons a.twitter {
    background-color: #27c4f1;
}
#share-buttons a.linkedin {
    background-color: #017bb6;
}
#share-buttons a.email {
    background-color: #0b88ff;
}
@media only screen and (max-width: 992px){
    #share-buttons {
        top: auto;
        bottom: 15px;
        right: 15px;
    }
    #share-buttons a{
        display: inline-block;
        margin: 0 0 0 -5px;
    }
}
    
/* -------------------------------- 

 04. HOME PAGE

-------------------------------- */

/* CD INTRO */
#cd-intro {
    position: relative;
    display: block;
    margin: 25px 0 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
#cd-intro .home-slideshow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
#cd-intro .home-slideshow div{
    height: 100%;
}
#cd-intro .home-slideshow .owl-controls{
    height: 0;
}
#cd-intro .home-slideshow .item{
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#cd-intro .home-slideshow .item .overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.25);
}
#cd-intro .promo-banner{
    position: absolute;
    height: 100%;
    top: 55px;
    left: 0;
    height: auto;
    width: 100%;
    background: rgba(0,0,0,0.5);
}
#cd-intro .promo-banner .item {
    margin: 0 auto;
    padding: 10px 0;
    width: 90%;
    max-width: 600px;
    line-height: 1.4;
    color: #fff;
    font-size: 24px;
    text-align: center;
}
@media only screen and (max-width: 992px){
    #cd-intro .promo-banner {
        top: 0;
    }
    #cd-intro .promo-banner .item {
        font-size: 16px;
    }
}
#cd-intro .main-buttons {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 90%;
    max-width: 1170px;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}
#cd-intro .main-buttons a{
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 250px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    font-weight: 500;
    text-transform: none;
    color: #fff;
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 2px #fff;
    border-radius: 30px; 
}
#cd-intro .main-buttons a:hover{
    text-decoration: none;
    background: rgba(220,169,14,0.75);
    
}
@media only screen and (max-width: 992px) {
    #cd-intro {
        margin: 50px 0 0;
        height: 500px;
    }
    #cd-intro .main-buttons a{
        margin: 20px auto;
        height: 50px;
        line-height: 50px;
        width: 200px;
        font-size: 22px;
    }
}

/* WELCOME */
#welcome {
	padding-top: 0;
    text-align: center;
}
#welcome p {
    margin: 0;
    padding: 0;
    font-size: 22px;
}
#welcome h4 {
    margin: 15px 0 0 120px;
    padding: 0;
    font-size: 16px;
}

/* INSTAGRAM GALLERY */
#instagram-gallery {
    padding: 0;
    text-align: center;
}
#instagram-gallery p {
    margin: 0;
    padding: 0;
    font-size: 22px;
}

/* INSTAFEED */
#instafeed{
	margin: 6px 0 0;
	padding: 20px 0 50px;
}
#instafeed .item{
    display: inline-block;
    margin: 0 10px 20px;
    height: 225px;
    width: 225px;
    border: 2px solid #fff;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#instafeed .item img{
	display: inline;
    display: none;
	width: 20%;
	height: auto;
}
@media screen and (max-width: 1200px){
    #instafeed .item{
        height: 200px;
        width: 200px;
    }
}
@media screen and (max-width: 992px){
    #instafeed .item{
        height: 180px;
        width: 180px;
    }
}
@media screen and (max-width: 480px){
    #instafeed .item{
        height: 120px;
        width: 120px;
    }
}

/* -------------------------------- 

 05. ABOUT PAGE

-------------------------------- */

/* PROFILE WRAP */
#about .profile-wrap{
    margin: 0;
    padding: 0;
}
#about .profile-wrap img{
    position: relative;
    display: block;
    margin: 0 auto;
    border: 4px solid #fff;
}
#about .profile-wrap h1 {
    margin: 15px 0 10px 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
#about .profile-wrap .extra-info p {
    margin: 30px 0 0 0;
}
#about .profile-wrap a {
    color: #000;
    text-decoration: none;
}
#about .profile-wrap h4 {
    margin: -15px 0 0;
    padding: 0;
    font-size: 16px;
    text-align: right;
} 
@media only screen and (max-width: 992px){
    #about .profile-wrap{
        margin: 0 0 35px;
    }
    #about .profile-wrap img{
        max-width:  800px;
        border: 3px solid #fff;
    }
}

#about .signature {
    position: relative;
    margin: 0;
    max-width: 200px;
    max-height: 150px;
    z-index: 1;
}
    
/* -------------------------------- 

 06. PORTFOLIO PAGE

-------------------------------- */

#photo-gallery {
    margin: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}
#photo-gallery h2 span{
    font-family: 'Quicksand', sans-serif;
    font-size: 40px;
}
#photo-gallery .photo-gallery-wrap{
    text-align: center;
}
#photo-gallery .photo-gallery-wrap a{
    text-decoration: none;
}
#photo-gallery .category:nth-child(4n+1){
	
}
#photo-gallery .thumbnail {
    position: relative;
    display: block;
    height: 250px;
    width: 100%;
    border: 4px solid #fff;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}
#photo-gallery .thumbnail .fa {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
    line-height: inherit;
    border-radius: 100%;
    background-color: rgba(0,0,0,0.25);
    font-size: 24px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}
#photo-gallery h3 {
    margin: -10px 0 5px 0;
    font-size: 16px;
    font-weight: 500;
}
#photo-gallery h4 {
    margin: 0 0 25px 0;
    font-size: 14px;
    font-weight: 400;
}

/* CD POPUP */
#photo-gallery .cd-popup {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
 
#photo-gallery .cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
 
#photo-gallery .cd-popup-container {
  transform: translateY(-40px);
  transition-property: transform;
  transition-duration: 0.3s;
}
 
#photo-gallery .is-visible .cd-popup-container {
  transform: translateY(0);
}

@media only screen and (max-width: 1200px){
    #photo-gallery .thumbnail {
        height: 200px;
    }
}

@media only screen and (max-width: 992px){
    #photo-gallery .thumbnail {
        height: 325px;
    }
}

@media only screen and (max-width: 768px){
    #photo-gallery .thumbnail {
        height: 200px;
    }
    #photo-gallery h2{
        font-size: 45px;
    }
    #photo-gallery h2 span{
        font-size: 30px;
    }   
    #photo-gallery h3 {
    font-size: 14px;
    }
    #photo-gallery h4 {
    font-size: 12px;
    }
}

@media only screen and (max-width: 480px){
    #photo-gallery .thumbnail {
        height: 150px;
    }
    #photo-gallery h2{
        font-size: 35px;
    }
    #photo-gallery h2 span{
        font-size: 20px;
    }  
    #photo-gallery h3 {
    font-size: 12px;
    }
    #photo-gallery h4 {
    font-size: 10px;
    }
}

/* -------------------------------- 

 12. FOOTER

-------------------------------- */

footer {
    color: #635f57;
}

/* TOP WRAP */
footer #top-wrap {
    padding: 15px  50px 50px;
    background-color: #d2d0ca;
}
footer #top-wrap .item{
    display: block;
    margin: 35px 0 0;
}
footer #top-wrap .item h3 {
    display: inline-block;
    margin: 0 5px 10px 0;
}
footer #top-wrap .item .menu-links a {
    display: block;
    margin: 0 0 10px 20px; 
    color: #635f57
}
footer #top-wrap .item .menu-links a .fa {
    margin: 0 6px 0 0;
}
footer #top-wrap .item .social-networks {
    display: inline-block;
}
footer #top-wrap .item .social-networks a {
    margin: 0 3px;
    color: #635f57;
    font-size: 26px;
}
footer #top-wrap .item .email a {
    color: #635f57;
    text-decoration: none;
}
@media only screen and (max-width: 992px){
    footer #top-wrap {
    		padding-left: 15px;
		padding-right: 15px;
	}
}

/* BOTTOM WRAP */
footer #bottom-wrap {
    padding: 35px 15px;
    background-color: #fff;
}
footer #bottom-wrap .copyright {
    text-align: left;
}
footer #bottom-wrap .developed-by {
    text-align: right;
}
footer #bottom-wrap .developed-by a {
    color: #635f57;
    font-weight: 700;
    text-decoration: none;
}
@media only screen and (max-width: 992px){
    footer #bottom-wrap .developed-by{
        margin: 20px 0 0;
        text-align: left;
    }
}