/* CSS Document */ 
@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400');

*{
	margin:0;
	padding: 0;
}

/* Body */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
}

h2{
    font-family: 'Georgia' !important;
    font-weight: bold;
}

#bg-color{
    background: rgba(182,141,76,1);
    background: -moz-linear-gradient(-45deg, rgba(182,141,76,1) 0%, rgba(233,212,179,1) 50%, rgba(182,141,76,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(182,141,76,1)), color-stop(50%, rgba(233,212,179,1)), color-stop(100%, rgba(182,141,76,1)));
    background: -webkit-linear-gradient(-45deg, rgba(182,141,76,1) 0%, rgba(233,212,179,1) 50%, rgba(182,141,76,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(182,141,76,1) 0%, rgba(233,212,179,1) 50%, rgba(182,141,76,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(182,141,76,1) 0%, rgba(233,212,179,1) 50%, rgba(182,141,76,1) 100%);
    background: linear-gradient(135deg, rgba(182,141,76,1) 0%, rgba(233,212,179,1) 50%, rgba(182,141,76,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b68d4c', endColorstr='#b68d4c', GradientType=1 );
    
}

.frame{
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: -1;
    
}



.hero-img{
	height: 83vh;
	width: 100%;
	background-image: url(/imgs/bg.jpg);
  	background-position: 50% 0%; 
	border-bottom-left-radius: 120px;
	background-size: cover;

}

.hero-img2{
	position: absolute;
	height: 83vh;
	width: 100%;
	background-image: url(/imgs/bg2.png);
  	background-position: 50% 0%; 
	border-bottom-left-radius: 120px;
	background-size: cover;

}

.hero-img-container{
	height: 100%;
	
}



.hero-title{
	width: 90%;
	display: inline-block;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: column-reverse;
	padding-top: 10%;
    padding-right: 5%;
    padding-left: 5%;
}

.hero-title-container{
	padding: 5% 5% 5% 5%;
  	background-color: rgba(0, 0, 0, 0.3);
  	box-shadow: 5px 5px rgba(182,141,76,1);

}

#hero-title{
  	margin-bottom: -30px;

    font-family: 'Georgia', serif;
	color: white;
	text-shadow: 2px 2px 0px rgba(182,141,76,1);
	width: 100%;
	font-size: 300%;
}




#hero-subtitle{
    width: auto;
    font-family: 'Source Sans Pro', sans-serif;
	color: white;
	text-shadow: 1px 1px 0px rgba(182,141,76,1);
	font-size: 20px;
  	margin-top: 30px;

}

.hero-container{
    width: 100%;
    height: auto;
    margin-bottom: 7vh;
    margin-top: 5vh;

}

.hero{
    height: 100%;
    background: #ffffff;
  
}

.hero-text-container{
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    
}

.contact-frame{
    position: fixed;
    display: flex;
    opacity: 1;
    bottom: 0;
    right: 0;
	z-index: 10;
}

.contact-bg{
    width: 66px;
    height: 66px;
    border-radius: 360px;
    margin-right: 2vw;
    margin-bottom: 3vh;

	
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	flex-wrap: wrap;
    flex-direction: column-reverse;

}
.contact-bg.-expand{
    -webkit-animation: ease expand 0.5s forwards;
    animation: ease expand 0.5s forwards;

}

@keyframes expand{
    0%{
        height: 66px;

    }
    100%{
        height: 256px;

    }
}

@-webkit-keyframes expand{
    0%{
        height: 66px;

    }
    100%{
        height: 256px;

    }
}

#contact-container{
	display: flex;
	justify-content: center;
	width: 100%;
}


.menu-toggle:focus{
	outline: none !important;
}

.button-container{
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	justify-content: center;
    align-content: center;
    align-items: center;
    height: 58px;
    width: 58px;
    border: 3px solid #ffffff;
    border-radius: 360px;
    cursor: pointer;
    margin-bottom: 4px;
    z-index: 10;
    
}


.menu-toggle {
    position: relative;
    display: block;
    width: 28px;
    height: 26px;
    background: transparent;
    border-top: 4px solid;
    border-bottom: 4px solid;
    color: #ffff;
    font-size: 0;
    transition: all 0.25s ease-in-out;
}

.menu-toggle:before, .menu-toggle:after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.button-container:hover{
    background-color:#ffffff;
    transition: 0.3s ease;
}

.button-container:hover > .menu-toggle{
    transition: 0.3s ease;
    color:rgba(182,141,76,1);
}



button.is-active {
  border-color: transparent;
}
button.is-active:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
button.is-active:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

button {
  border: none;
  cursor: pointer;
  outline: none;
}

.email-container{
    height: 56px;
    width: 56px;
    border: 3px solid #ffffff;
    border-radius: 360px;
    cursor: pointer;
    position: absolute;
    margin-top: -5px;
    opacity:0;
}

.email-container.-expand{
   -webkit-animation: 0.5s ease eExpand 0.5s forwards;
    animation: 0.5s ease eExpand 0.5s forwards;

}


@keyframes eExpand{
    0%{
        margin-top: -5px;
        opacity:0;
    }
    100%{
        margin-top: -190px;
        opacity:1;
    }
}

@-webkit-keyframes eExpand{
    0%{
        margin-top: -5px;
        opacity:0;
    }
    100%{
        margin-top: -190px;
        opacity:1;
    }
}

.email{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

#aemail{
    width: 73%;
    filter: invert(99%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(102%) contrast(103%);
}

.email-container:hover{
    background-color:#ffffff;
    transition: 0.3s ease;
}

.email-container:hover > .email{
    filter: invert(48%) sepia(74%) saturate(315%) hue-rotate(358deg) brightness(104%) contrast(85%);
    transition: 0.3s ease;
}


.phone-container{
    height: 56px;
    width: 56px;
    border: 3px solid #ffffff;
    border-radius: 360px;
    cursor: pointer;
    position: absolute;
    margin-top: -5px;
    opacity: 0;
}

.phone-container.-expand{
   -webkit-animation: 0.3s ease pExpand 0.5s forwards;
    animation: 0.3s ease pExpand 0.5s forwards;
}

@keyframes pExpand{
    0%{
        margin-top: -5px;
        opacity:0;
    }
    100%{
        margin-top: -127px;
        opacity:1;
    }
}

@-webkit-keyframes pExpand{
    0%{
        margin-top: -5px;
        opacity:0;
    }
    100%{
        margin-top: -127px;
        opacity:1;
    }
}

.phone{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: 0.3s ease;

}

#aphone{
    width: 52%;
    filter: invert(99%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(102%) contrast(103%);
}


.phone-container:hover{
    background-color:#ffffff;
    transition: 0.3s ease;
}

.phone-container:hover > .phone{
    filter: invert(48%) sepia(74%) saturate(315%) hue-rotate(358deg) brightness(104%) contrast(85%);
    transition: 0.3s ease;
}


.language-container{
    height: 56px;
    width: 56px;
    border: 3px solid #ffffff;
    border-radius: 360px;
    cursor: pointer;
    position: absolute;
    margin-top: -5px;
    opacity: 0;
    transition: 0.3s ease;
}

.language-container.-expand{
   -webkit-animation: 0.1s ease lExpand 0.5s forwards;
    animation: 0.1s ease lExpand 0.5s forwards;
}

@keyframes lExpand{
    0%{
        margin-top: -5px;
        opacity:0;
    }
    100%{
        margin-top: -63px;
        opacity:1;
    }
}

@-webkit-keyframes lExpand{
    0%{
        margin-top: -5px;
        opacity:0;
    }
    100%{
        margin-top: -63px;
        opacity:1;
    }
}

.language-container:hover{
    background-color:#ffffff;
    transition: 0.3s ease;
}

.language-container:hover > .lang{
    color:rgba(182,141,76,1);
    transition: 0.3s ease;
}

.lang{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:2px;
    color: #ffffff;
}

.tab-frame{
    width: 92%;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2vh;
    
}

.tab-container{
    width: 32%;
    height: 375px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 2vh;
    padding: 3px;
    -webkit-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.75);
}

.tab{
    width:100%;
    height: 100%;
    background-color: #ffffff;

	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	
    justify-content: space-between;
    padding: 5% 5%; 
    flex-wrap: wrap;
    flex-flow: column;
    text-align: center;
}

#type{
    font-family: 'Source Sans Pro', sans-serif;
}

#years{
    font-family: 'Source Sans Pro', sans-serif;

}


footer{
    height: 20vh;
    margin-top: 2vh;
    padding-top: 3px;    
}

.foot{
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.social-container{
	display: flex;
	align-content: center;
	justify-content: space-around;
}

#social{
    filter: invert(48%) sepia(74%) saturate(315%) hue-rotate(358deg) brightness(104%) contrast(85%);
	margin-right: 20px;
}

#social:hover{
    cursor: pointer;
    filter: invert(33%) sepia(5%) saturate(4224%) hue-rotate(358deg) brightness(97%) contrast(91%);
}

#linkedin{
	width: 22px;
}


#foot-p{
    color:rgba(182,141,76,1);
    padding-top: 10px;

}

#aSVG{
	width: 50%;
}

.cls-1{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill:#fff;
    stroke:#000;
    stroke-miterlimit:10;
    animation: dash 5s ease-in-out alternate 5 forwards;
 

}

.cls-2{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill:#fff;
    stroke:#000;
    stroke-miterlimit:10;
    animation: dash 5s ease-in-out alternate 5 forwards;
 

}

.cls-3{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill:#fff;
    stroke:#000;
    stroke-miterlimit:10;
    animation: dash 5s ease-in-out alternate 5 forwards;
 

}

.cls-4{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill:#fff;
    stroke:#000;
    stroke-miterlimit:10;
    animation: dash 5s ease-in-out alternate 5 forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .tab-frame{
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
    }
    

    .tab-container{
        width: 92%;
        background-color: #ffffff;
        border-radius: 5px;
        margin-top: 2vh;
        margin-bottom: 2vh;
        padding: 3px;
    }
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	
	.hero-img{
		height: 90vh;
	}
	
	.hero-img2{
		display: 90vh;
	}
	
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
    .hero-text-container{
        width: 76%;
    }
	

} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	#aSVG{
		width: 40%;
	}
	
	.hero-img{
		background-image: url(/imgs/bgw.jpg);
		background-position: top right;
	}
	
	.hero-title{
		width: 55%;
		text-align: right;
	}

	.hero-img2{
		display: none;
	}
	
}