html, body { width:100%;height:100%; margin:0; padding:0;}
body {
	box-sizing:border-box;
	background:#f5f5f5;
}

scrollbar {
	display:none;	
	-moz-appearance: none !important;
}

::-webkit-scrollbar { 
    display: none; 
}
nav ul{
	position:fixed;
	right:20px;
	top:35px;	
}

nav ul li {
	display:inline-block;
	padding:0 15px;
	font-family: 'Cantarell', sans-serif;
	cursor:pointer;
	padding-bottom:5px;
}

nav ul li:hover {border-bottom:4px #000 solid;	}

nav .active {
	border-bottom:4px #000 solid;	
}

nav>ul>li>a { text-decoration:none; color:#000;}


nav>ul>li>a:hover,nav>li>a:focus{color:#000; text-decoration:none;}

.l1,.l2,.l3,.l4 {
  position: fixed;
  z-index:9999;	
 /* background: transparent;*/
  width: 0px;
  height: 0px;
  animation-duration:.4s;
  animation-duration: .4s;
  animation-iteration-count:1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  
  -webkit-animation-duration: .4s;
  -webkit-animation-iteration-count:1;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
}


.l1 {
  left: 0;
  bottom: 0;
  height: 100%;
  width: 15px;
  
  animation-name: l1;
  animation-delay: 0s;
  
  -webkit-animation-name: l1;
  -webkit-animation-delay: 0s;
}

.l2 {
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  
  animation-name: l2;
  animation-delay: .4s;
  
  -webkit-animation-name: l2;
  -webkit-animation-delay: .4s;
}

.l3 {
  right: 0;
  top: 0;
  height: 100%;
  width: 15px;
    
  animation-name: l3;
  animation-delay: .8s;
  
  -webkit-animation-name: l3;
  -webkit-animation-delay: .8s;
}

.l4 {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 15px;
  
  animation-name: l4;
  animation-delay: 1.2s;
  
  -webkit-animation-name: l4;
  -webkit-animation-delay: 1.2s;
}

@keyframes l1 {
  0%    { height: 0; background: #262626; }
  100%  { height: 100%; background: #262626; }
}

@keyframes l2 {
  0%    { width: 0; background: #262626; }
  100%  { width: 100%; background:#262626; }
}

@keyframes l3 {
  0%    { height: 0; background: #262626; }
  100%  { height:100%; background: #262626; }
}

@keyframes l4 {
  0%    { width: 0; background: #262626; }
  100%  { width: 100%; background: #262626; }
}

@-webkit-keyframes l1 {
  0%    { height: 0; background: #262626; }
  100%  { height: 100%; background: #262626; }
}

@-webkit-keyframes l2 {
  0%    { width: 0; background: #262626; }
  100%  { width: 100%; background: #262626; }
}

@-webkit-keyframes l3 {
  0%    { height: 0; background: #262626; }
  100%  { height:100%; background: #262626; }
}

@-webkit-keyframes l4 {
  0%    { width: 0; background: #262626; }
  100%  { width: 100%; background: #262626; }
} 

/* PORTFOLIO TITLE */
center { margin-top:100px;}
#contactContent{
	width:80%;
	height:auto;
	min-height:500px;
}

#contactTitle {display:block; }

#contactTitle h1 {
	text-align:left;
	text-transform:uppercase;
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:40px;
	letter-spacing:0.5em;
	line-height:75px;
	text-shadow:rgba(0,0,0,0.50) 5px 0px;
}

#contactDetails { margin-top:20px;}

#contactDetails p {
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:15px;
	letter-spacing:0.1em;
	color:black;
}

#contactDetails small {
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size:18px;
	font-style:italic;
	letter-spacing:0.1em;
	margin-top:15px;
	color:black;
}

#social-icon {
	margin:0; padding:0;	
}

#social-icon ul {
	margin:0; padding:0; 
	list-style-type:none;
}

#social-icon ul li {
	width:77px;
	height:77px;
	display:inline-table;
	margin:35px 35px;
	opacity:0.9;
	transition:ease-in-out 0.3s;
}

#social-icon ul li:hover {
	transform:scale(1.1);
	opacity:1;
}


#mobile {
	margin:0; padding:0;	
	position:absolute;
	list-style-type:none;
	display:none;
}


ul#mobile li {
	display:block;
	margin-top:-0.5px;
	margin-left:-30px;
	width:150px;
}


$main-text: #2d313f; 
$link: #d36868;
$background: #e7eaf0; 
$color-1: #2d313f; 
$color-2: #d36868; 
$color-3: #ffffff;



$primary-font: 'Lora', serif;



@function calculateRem($size) {
  $remSize: $size / 16px;
  @return $remSize * 1rem;
}

@mixin font-size($size) {
  font-size: $size;
  font-size: calculateRem($size);
}


  
$S:     320px;   
$M:     768px;     
$L:     1170px;         


@mixin MQ($canvas) {
  @if $canvas == S {
   @media only screen and (min-width: $S) { @content; } 
  }
  @else if $canvas == M {
   @media only screen and (min-width: $M) { @content; } 
  }
  @else if $canvas == L {
   @media only screen and (min-width: $L) { @content; } 
  }
}


#google-container {
   position: relative;
width: 100%;
height: auto;
max-height: 100%;
background-color: $background;
min-height: 600px;

    @include MQ(M) {
    	height: 300px;
    }

    @include MQ(L) {
    	height: 600px;
    }
}

#cd-google-map {
	position: relative;

	address {
		position: absolute;
		width: 100%;
		bottom: 0;
		left: 0;
		background-color: rgba($color-2, .9);
		color: $color-3;
		@include font-size(13px);

		@include MQ(M) {
			@include font-size(15px);
			text-align: center;
		}
	}
}

#cd-zoom-in, #cd-zoom-out {
	height: 32px;
	width: 32px;
	cursor: pointer;
	margin-left: 10px;
	background-color: rgba(214,70,70, .9);
	background-repeat: no-repeat;
	background-size: 32px 64px;
	background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-controller.svg');

	.no-touch &:hover {
		background-color: rgba($color-2, 1);
	}

	@include MQ(M) {
		margin-left: 50px;
	}
}

#cd-zoom-in {
	background-position: 50% 0;
	margin-top: 10px;
	margin-bottom: 1px;

	@include MQ(M) {
		margin-top: 50px;
	}
}

#cd-zoom-out {
	background-position: 50% -32px;
}

