@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
}

.sec{
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 100px !important;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	transition: 0.5s;
	
}

.content{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.content .textBox{
	position: relative;
	max-width: 600px;
}

.content .textBox h2{
	color: #2d545e;
	font-size: 3em;
	line-height: 1.5em;
	font-weight: 900;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

.content .textBox h2 span{
	font-size: 2em;
}

.content .textBox p{
	margin-top: 5vh;
	color: #999999;
	font-family: 'Montserrat', sans-serif;
}

.content .textBox a{
	margin-top: 5vh;
	padding: 8px 20px;
	background: #fff;
	color: #2d545e;
	border-style: solid;
	border-width: 1px;
	border-color: #2d545e;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	position: absolute;
	transition: 0.5s;
	font-family: 'Montserrat', sans-serif;
	
}

.content .textBox a:hover{
	background-color: #2d545e;
	color: #FFFFFF;
	transition: 0.5s;
}

.content .imgBox{
	width: 25vw;
	padding-right: 15%;
	justify-content: flex-end;
	display: flex;
	padding-top: 10vh;
}

.content .imgBox img{
	max-width: 25vw;
}


.thumb{
	position: absolute;
	left: 50%;
	bottom: 10vh;
	transform: translateX(-50%);
	display: flex;
}

.thumb li{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	cursor: pointer;
	transition: 0.5s;
}

.thumb li:hover{
	transform: translateY(-15px);
}

.thumb li img{
	max-width:4vw;
	
}



.sec2{
	height: 100vh;
	background-color: #FFFFFF;
}




















