@font-face {
	font-family: 'HelveticaNeue-Bold';
	src: url('../fonts/HelveticaNeueLTStd-Bd.otf');
}

@font-face {
	font-family: 'HelveticaNeue-Medium';
	src: url('../fonts/HelveticaNeueLTStd-Md.otf');
}

@font-face {
	font-family: 'HelveticaNeue-Light';
	src: url('../fonts/HelveticaNeueLTStd-Lt.otf');
}

.accent {
	color: #CB9A26;
}

a {
	color: #999999;

}

a:active, a:visited, a:focus{
	text-decoration: none;
	color: #999999;
	outline: none;
}

a:hover {
	text-decoration: none;
	color: #000000;
}

.arrow-holder {
	z-index: 99;
	width: 100%;
	position: fixed;
	height: 4%;
	bottom: 3%;
	font-size: 60px;

	color: #999999;
}

#arrow-down {
	display: none
}

/*main*/
.intro-title {
	font-family: 'HelveticaNeue-Bold';
	font-size: 93px;
	color: #4D4D4D;

	text-align: right;
	line-height: 110%;
}

.typed-element {
	display: none;
	color: #CB9A26;
}

.row-overwrite, .col-overwrite {
	height: 100%;
	position: relative;
	/*background-color: white;*/
}

#sec-img-1, #sec-img-1-1{
	height: 100%;
	width: auto;
	opacity: 0;
}

#section-2 .col-overwrite{
	background-color: white;
}

#sec-img {
	max-height: 50%;
  bottom: 5%;
	right: 5%;
	position: absolute;
  opacity: 0.9;
	/*-webkit-filter: grayscale(20%);
	-moz-filter: grayscale(20%);
	-o-filter: grayscale(20%);
	-ms-filter: grayscale(20%);
	-webkit-transition: all 0.45s ease;
    -moz-transition: all 0.45s ease;
    -ms-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;*/
}

#sec-img-3 {
	max-height: 100%;
	position: absolute;
}

#sec-img-4 {
	max-height: 97%;
	width: auto;
	position: absolute;
	left: 5%;
}

#bio-pic {
	max-height: 100%;
	bottom: 0;
	position: fixed;
}

.float-above {
	position: absolute;
	top: 68%;
	right: 7%;
}


.footer-left {
	position: absolute;
	top: 25px;
	left: 7%;
}

.footer-right {
	font-size: 20px;
	position: absolute;
	top: 17px;
	right: 7%;
}

#small-screen-footer .footer-text-2 p, #small-screen-footer .footer-text-2 i{
	color: white;
}
/*Main text formats*/
.text-block-wrapper {
	position: relative;
	top: 27%;
}

.text-block {
    width: 50%;
	position: absolute;
    top: 20%;
    left: 20%;
	height: 100px;
}

.text-block-body {
    font-family: 'HelveticaNeue-Light';
    font-size: 20px;
    color: #999999;
}

.text-block-header {
    font-family: 'HelveticaNeue-Light';
    font-size: 65px;
    color: #4D4D4D;
}

.text-block-small {
	font-family: 'HelveticaNeue-Light';
    font-size: 20px;
    color: #999999;
}

.footer-text a, .footer-text p{
	font-family: 'HelveticaNeue-Light';
	font-size: 17px;
	color: white;
}

.footer-text i {
	opacity: 1;
	transition: all 0.5s ease;
}

.footer-text li:hover {
	opacity: 0.6;
}


.footer-text ul li {
	display: inline-block;
	margin-left: 30px;
}

.inline-icon {
	padding-left: 7px;
}

.btn-wrapper {
	margin-top: 7%;
	text-align: center;
}

.custom-btn {
	background-color: rgba(255,255,255,0.5);
	border-width: 1px;
	border-color: #CCCCCC;
	padding: 6px 20px;
}

.custom-btn:focus, .custom-btn:active {
	outline: none !important;
}


.strong-link {
	font-family: 'HelveticaNeue-Medium';
	text-decoration: underline !important;
}

.strong-body-text {
	font-family: 'HelveticaNeue-Medium';
}

/*General use*/


/*For typed.js cursor*/
.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}


/*Animation stuff*/

.hover-rotate {
	opacity: 0.82;
	-webkit-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
.hover-rotate:hover {
	-webkit-transform: rotate(1.7deg) scale(1.045);
	transform: rotate(5) scale(1.045);
	opacity: 1;
	overflow: hidden;
}

.hover-desat {
	-webkit-filter: grayscale(70%);
	-moz-filter: grayscale(70%);
	-o-filter: grayscale(70%);
	-ms-filter: grayscale(70%);
	filter: grayscale(70%);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.hover-desat:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	filter: grayscale(0%);
}

.hover-zoom {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.hover-zoom:hover {
	-webkit-transform: scale(1.01);
	-moz-transform: scale(1.01);
	-o-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
}

.hover-slow {
	transition: all 1.5s ease;
}

.dropdown .dropdown-menu {
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;

    max-height: 0;
    display: block;
    overflow: hidden;
    opacity: 0;
}

.dropdown .dropdown-menu li a{
	-webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transition: all 1.2s ease;

    opacity: 0;
}

.dropdown .dropdown-menu li:nth-of-type(1) a{
	margin-left: 5px;
}

.dropdown .dropdown-menu li:nth-of-type(2) a{
	margin-left: 8px;
}

.dropdown .dropdown-menu li:nth-of-type(3) a{
	margin-left: 11px;
}

.dropdown.open .dropdown-menu {
    max-height: 200px;
    opacity: 1;
}

.dropdown.open .dropdown-menu li a{
    margin-left: 0px;
    opacity: 1;
}
