@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: #9c9c9c;
	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: #b6b6b8;
	text-transform: uppercase;
	line-height: 40px;
	margin: 0 5px;
}

nav ul li a{
	color: #b6b6b8;
	font-size: 13px;
	letter-spacing: 1px;
	/*padding: 7px 13px;*/
	padding: 7px 13px;
 }

a.active,a:hover{
	transition: .2s;
	color: #9c9c9c;
	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: #9c9c9c;
	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: #9c9c9c;
	margin-right: 20px;
}

.checkbtn{
	font-size: 15px;
	color: #9c9c9c;
	float: right;
	line-height: 40px;
	margin-right: 20px;
	cursor: pointer;
	display: none;
}

#check{
	display: none;
}

.landing{
	display: grid;
	grid-template-columns: 190px 1fr 0.7fr;
	grid-template-rows: 170px 55px 70px 1fr;
	/*position: absolute;*/
	height: 100vh;
	margin-top: 40px;
	width: 100%;
	background: url(Images/ContactBg.jpg) no-repeat;
	border-top: 10px solid;
	border-image: linear-gradient(45deg,rgb(54,138,162), rgb(94,192,222)) 1;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

/*.headline01 {
	font-weight: 300;
	color: white;
	font-size: 40px;
	text-align: center;
	margin-top: 100px;
}*/

.headline01{
	grid-column: 2/3;
	grid-row:2/3;
	justify-content: start;
	font-weight: 300;
	color: white;
	font-size: 50px;
	}

.whitebox{
	grid-column: 2/3;
	grid-row: 4/5;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 10px 30px 350px;
	grid-template-rows: 30px 45px 115px 50px;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.3);
	/*position: absolute;*/
	/*height: calc(100vh - 160px);*/
	height: 320px;
	width: 450px;
	/*top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
	border-radius: 8px;
}

.teleicon {
	grid-column: 2/3;
	grid-row: 1/2;
	width: 20px;
	margin-top: 1px;
}

.teleContent {
	grid-column: 3/4;
	grid-row: 1/2;
	font-size: 20px;
	text-align: left;
	font-weight: normal;
	letter-spacing: 1px;
	color: white;
	margin-top: 5px;
}

.faxicon{
	grid-column: 2/3;
	grid-row: 2/3;
	width: 21px;
	margin-top: 5px;
}

.faxContent{
	grid-column: 3/4;
	grid-row: 2/3;
	font-size: 20px;
	text-align: left;
	font-weight: normal;
	letter-spacing: 1px;
	color: white;
	margin-top: 5px;
}

.addressicon{
	grid-column: 2/3;
	grid-row: 3/4;
	width: 18px;
	margin-top: 2px;
}

.addressContent{
	grid-column: 3/4;
	grid-row: 3/4;
	font-size: 20px;
	text-align: left;
	font-weight: normal;
	letter-spacing: 1px;
	color: white;
	margin-top: 5px;
}

.emailicon {
	grid-column: 2/3;
	grid-row: 4/5;
	width: 21px;
	margin-top: 5px;
}

.emailContent{
	grid-column: 3/4;
	grid-row: 4/5;
	font-size: 20px;
	text-align: left;
	font-weight: normal;
	letter-spacing: 1px;
	color: white;
	margin-top: 5px;
}

/*--------------------------Mobile Layout-------------------------*/
@media (max-width: 1000px){	
.checkbtn{
	display: block;
}
	
.landing{
	display: grid;
	grid-template-columns: 54px 1fr 54px;
	grid-template-rows: 90px 55px 28px 300px;
	right: 0;
	margin-top: 40px;
	height: 100%;
	width: 100%;
	background: url(Images/ContactBg.jpg) no-repeat;
	border-top: 5px solid;
	border-image: linear-gradient(45deg,rgb(54,138,162), rgb(94,192,222)) 1;
	background-position: center;
	background-size: cover;
	transition: margin-right 0.5s ease;
    /*position: fixed;*/
	position: fixed;
	z-index: 1;
}	
	
.headline01{
	grid-column: 2/3;
	grid-row:2/3;
	justify-content: center;
	font-weight: 300;
	color: white;
	font-size: 40px;
}	
	
.whitebox{
	grid-column: 2/3;
	grid-row:4/5;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 10px 30px 1fr;
	grid-template-rows: 30px 45px 110px 45px;	
	padding: 20px 10px 0 0 ;
	background-color: rgba(255, 255, 255, 0.3);
	position: absolute;
	/*height: calc(100vh - 160px);*/
	/*height: 75vh;*/
	/*height: calc(100vh - 450px);*/
	height: 300px;
	width: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
}		
	
.teleContent {
	font-size: 17px;
	margin-top: 5px;
}	
	
.faxContent {
	font-size: 17px;
	margin-top: 5px;
}	
	
.addressContent{
	font-size: 16px;
	margin-top: 5px;
}	
	
.emailContent{
	font-size: 16px;
	margin-top: 7px;
}	
	
nav .logo{
	float: left;
	font-family: Georgia;
	color: #9c9c9c;
	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: #9c9c9c;
	margin-right: 10px;
}
	
#check:checked ~ .landing{
	margin-right: 180px;
	}	


