@charset "utf-8";
@font-face {
	src: url(Fonts/Montserrat/Montserrat-Light.ttf);
	font-family: Montserrat;
	font-style: normal;
	font-weight: 300;}

@font-face {
	src: url(Fonts/Montserrat/Montserrat-Regular.ttf);
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;}

@font-face {
	src: url(Fonts/Montserrat/Montserrat-Medium.ttf);
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;}

*{
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body{
	font-family: 'Montserrat', sans-serif;
}

nav{
	overflow: hidden;
	position: fixed;
 	top: 0;
	background-color: white;
	height: 100vh;
	width: 100%;
	z-index: 1;
}

nav .logo{
	float: left;
	font-family: Georgia;
	color: #a1b1bb;
	font-size: 20px;
	line-height: 40px;
	padding: 0 50px;
	font-weight: normal;
}

nav ul{
	float: right;
	margin-right: 20px;
}

nav ul li{
	display: inline-block;
	font-family: Montserrat;
	font-weight: 300;
	color: #a1b1bb;
	text-transform: uppercase;
	line-height: 40px;
	margin: 0 5px;
}

nav ul li a{
	color: #a1b1bb;
	font-size: 13px;
	letter-spacing: 1px;
	/*padding: 7px 13px;*/
	padding: 7px 13px;
 }

a.active,a:hover{
	transition: .2s;
	color: #3d5b6b;
	font-weight: 500;
	/*text-shadow: -.25px -.25px 0 black, 
                .25px .25px black;*/
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: white;
	text-align: center;
	height: 25px;
	z-index: 1;
}

.credit {
	float: left;
	color: #a1b1bb;
	font-size: 10px;
	line-height: 10px;
	margin-left: 50px;
	margin-top: 6px;
}

.footer ul {
	float: right;
	margin-right: 20px;
}

.footer ul li {
	display: inline-block;
	font-family: Montserrat;
	font-size: 10px;
	color: #a1b1bb;
	margin-right: 20px;
}

.checkbtn{
	font-size: 15px;
	color: #a1b1bb;
	float: right;
	line-height: 40px;
	margin-right: 20px;
	cursor: pointer;
	display: none;
}

#check{
	display: none;
}

h2 {
	display: none;
}

.landing{
	height: 100vh;
	margin-top: 40px;
	width: 100%;
	background: url(Images/ContactImage.jpg) no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
	}

.contactPageFromBottom .bottomElements {
	position: absolute;
	background-image: linear-gradient(to right, rgba(157, 219, 218, 1) , rgba(207, 233, 238, 1) 70%, rgba(233, 244, 244, 1));
	height: 43vh;
	width: 100%;
	bottom: 0;
	border-top: 6px solid white;	
}

.contactPageFromBottom .bottomElements .bottomElementsIcon{
	display: flex;
	align-items: center;
  	justify-content: center;
	padding-top: 5px;
}

h3 {
	font-size: 14px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 1px;
	color: #595959;
	margin-top: 5px;
}

.addressicon {
	align-self: center;
	width: 18px;
	margin-top: 28px;
}

.teleicon {
	width: 21px;
	margin-top: 9px;
}

.faxicon {
	width: 21px;
	margin-top: 9px;
}

.emailicon {
	width: 21px;
	margin-top: 9px;
}


/*--------------------------Mobile Layout-------------------------*/
@media (max-width: 900px){	
.checkbtn{
	display: block;
}
	
.landing{
	right: 0;
	margin-top: 40px;
	height: 100%;
	width: 100%;
	background-position: center;
	transition: margin-right 0.5s ease;
    /*position: fixed;*/
	position: fixed;
	z-index: 1;
}	
	
.contactPageFromBottom .bottomElements {
	position: absolute;
	background-image: linear-gradient(to right, #aad6d5, #cfe9ee 70%, #cee4e4);
	height: 100vh;
	width: 100%;
	border-top: none;
}
	
h2 {
	display: block;
	color: #3d5b6b;
	font-size: 24px;
	letter-spacing: 2px;
	text-align: center;
	font-weight: normal;
	margin-top: 50px;
	
}	
	
h3 {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	text-align: center;
	font-weight: normal;
	margin-top: 6px;
	margin-left: 45px;
	margin-right: 45px;
}

.addressicon {
	align-self: center;
	width: 20px;
	height: auto;
	margin-top: 36px;
}

.teleicon {
	width: 24px;
	height: auto;
	margin-top: 18px;
}

.faxicon {
	width: 24px;
	margin-top: 18px;
}

.emailicon {
	width: 24px;
	margin-top: 18px;
}	
	
nav .logo{
	float: left;
	font-family: Georgia;
	color: #a1b1bb;
	font-size: 15px;
	line-height: 40px;
	padding: 0 25px;
	font-weight: normal;
}	
	
nav ul{
	background: white;
	/*dropdown menu position*/
	width: 130px;
	height: 100vh;
	padding-top: 10px;
	margin-right: 20px;
	right: 0;
	transition: all .5s;
	z-index: -2;
}
	
nav ul li{
	display: block;
	margin: 50px 100px 0 0;
	line-height: 10px;
}
	
nav ul li a {
	font-size: 13px;
}
	
a:hover,a.active{
	transition: .2s;
	font-weight: 500;
}
	
.credit {
	float: left;
	font-size: 8px;
	line-height: 10px;
	margin-left: 25px;
	margin-top: 6px;
	z-index: 999;
}

.footer{
	position: fixed;
	z-index: 1;
	}	
	
.footer ul {
	float: right;
	margin-right: 10px;
}

.footer ul li {
	display: inline-block;
	font-family: Montserrat;
	font-size: 8px;
	line-height: 10px;
	color: #a1b1bb;
	margin-right: 10px;
}
	
#check:checked ~ .landing{
	margin-right: 180px;
	}	


