@charset "utf-8";
*{
	margin: 0;
	padding: 0;

}

html{
	scroll-behavior: smooth;
}


/*header*/
.header{
  	min-height: 100vh;
	width: 100%;
	background-image: url("images/bg1.8.jpg");
	background-position: center;
	background-size: cover;
	position: relative;

}


 /*logo*/
.header nav img{
	width: 5%;
    float: left;
	margin: 5px 60px 5px 170px;

}


/*nav*/
.header nav{
    display:flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ffcf42;
	width: 100%;

}


/*nav links*/
.header nav .nav-links{
	flex:1;
	text-align: center;
	margin: 10px 0px 10px 05px;
	padding: 10px 0px 1px 0px;
	

}

.header nav .nav-links ul li{
	display: inline-block;
	padding: 20px 0px;
	margin: 0px;
	position: relative;
	
}

ul li a{
	color: #196b9f;
	text-decoration: none;
	font-size: 17px;
	letter-spacing: 1px;
	font-weight: 700;
	font-family: 'open-sans', sans-serif;
	padding: 10px 20px;
	margin: 0px 0px 0px 0px;
	
}


nav ul li a:hover{
	background: #fffaec;
	color: #3a9ceb;
	transition: 0.5s;
	border-radius: 20px;
	padding: 15px;
}


nav ul ul{
	position: absolute;
	top: 60px;
	display: none;
	padding: 10px 0px;
	background-color: #ffcf42;
	
	
}

nav ul ul li{
	width: 170px;
	float: none;
	display: list-item;
	position: relative;
	font-size: 13px;
	
	
}

nav ul li:hover > ul{
	display: block;
	
}

li ul .box-hover{
	color: #196b9f;
	text-decoration: none;
	font-size: 17px;
	letter-spacing: 1px;
	font-weight: 100;
	font-family: 'open-sans', sans-serif;
	padding: 10px 20px;
	margin: 0px 5px 0px 5px;
	text-align: left;
	
}

.box-hover li a{
	padding: 10px 30px;
	text-align: left;

}

nav ul .social-icon .fa-facebook{
	font-size: 20px;
	width: 20px;
	margin-right: 10px;
	margin-left: 10px;
	text-decoration: none;
	padding: 10px;
	border-radius: 50px;
	background: #3b5998;
	color: white;
	
}

nav ul .social-icon .fa-instagram{
	font-size: 20px;
	width: 20px;
	margin-right: 10px;
	margin-left: 10px;
	background: #3b5998;
	padding: 10px;
	border-radius: 50px;
	text-decoration: none;
	color:white;
	

}


nav ul .social-icon .fa:hover{
	background: #2b9ff0;
}


.header .textbox{
	width: 40%;
	position: absolute;
	top: 50%;
	left: 30%;
	text-align: center;
}

.header .textbox h1{
	color: #ffffff;
	font-family: 'KaiTi';
	font-size: 45px;
	animation: Slide_Up 2.1s ease;
}

.header .textbox h2{
	color: #ffffff;
	 font-family: 'Palatino Linotype';
	font-size: 45px;
	animation: Slide_Up 1.4s ease;
}

@keyframes Slide_Up{
	0%{
		transform: translateY(-250px);
	}
	100%{
		transform: translateY(0);
	}
}


.header nav .fa.fa-bars{
	display: none;
}

.header nav .fa.fa-times{
	display:none;
}




/*responsive*/
@media(max-width:830px){
	.header nav img{
	width: 10%;
    float: left;
	margin: 5px 60px 5px 40px;
	}

	.header nav .nav-links{
    position: fixed;
    height: 100%;
    width: 200px;
    top: -2%;
    right: -210px;
    z-index: 2;
    background: #ffcf42;
	}


	.header nav .nav-links ul li{
	display: block;
	}
	
	
	ul li a{
	font-size: 17px;
	
	}
	
	ul{
		display: block;
	}
	
	ul li{
		display: block;
	}
	ul li ul{
		width: 100%;
		z-index: 1;
	}
	
	.header nav .fa.fa-bars{
		display: block;
		color: #CC341F;
		font-size: 25px;
		cursor: pointer;
		margin-right: 20px;
	}
	.header nav .fa.fa-times{
		display: block;
		color: #CC341F;
		font-size: 25px;
		cursor: pointer;
		margin-left: 130px;
	}


	nav ul .social-icon .fa-facebook{
	font-size: 20px;
	width: 20px;
	margin-right: 10px;
	margin-left: 10px;

	
	}

	nav ul .social-icon .fa-instagram{
	font-size: 20px;
	width: 20px;
	margin-right: 10px;
	margin-left: 10px;

	}
	
	.header .textbox h1{
	font-size: 30px;
	}

	.header .textbox h2{
	font-size: 30px;
	}
	
	
	
}

/*-----content area 1-----*/
.content-area{
    width: 100%;
    position: relative;
    top: 0px;
    background-image: url(images/bg2.2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 400px;
    padding-top: 0px;
	
	
}
.content-area .box-area{
    width: 100%;
    top: 0px;

    position: relative;
    min-height: 100%;
	
}

.content-area .box-area h1{
    font-family: 'KaiTi';
    letter-spacing: 2px;
    padding-top: 58px;
    font-size: 35px;
    margin: 0;
    text-align: center;
    color: #CC341F;
}
.content-area .box-area h2{
    font-family: 'Palatino Linotype';
    letter-spacing: 2px;
    padding-top: 10px;
    font-size: 35px;
    margin: 0;
    text-align: center;
    color: #CC341F;
}

.content-area .box-area p{
	width: 50%;
	padding-left: 25%;
    padding-top: 2%;
    padding-bottom: 1%;
    font-family: 'Open Sans', sans-serif;
    line-height: 35px;
    text-align: center;
    font-size: 18px;
    word-spacing: 2px;
}

@media(max-width:830px){
	.content-area{
    position: relative;
    top: 0px;
    background-image: url(images/bg2.2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    padding-top: 0px;
	}
	
	.content-area .box-area h1{
		font-size: 20px;
	}
	
	.content-area .box-area h2{
		font-size: 20px;
	}
	
	.content-area .box-area p{
		font-size: 15px;
	}
	
	
}

/*menu area*/
.menu{
	width: 90%;
	margin: auto;
	padding: 20px;
	
}

.menu .row{
	margin-top: 2%;
	margin-bottom: 2%;
	display: flex;
	justify-content: space-between;
	
}

.menu .row .left{
	flex-basis: 30%;
	
	
}

.row .left ul{
	padding: 30px 20px 30px 20px;
	margin: 5px;
	list-style-type: none;
	text-align: center;
	
}

.row .left ul li{
	text-decoration: none;
	margin: 25px;
	padding: 10px;
}


.row .left ul li a{
	color: #CC341F; 
	font-family: 'Palatino Linotype';
	font-size: 20px;
}

.row .left ul li:hover {
	border: 4px solid #CC341F;
	padding: 10px 5px 10px 5px;
}

.row .left ul li:visited{
	color: blue;
}

.menu .row .right{
	flex-basis: 70%;
	
}

.row .right .firstrow{
	display: table;	
	
}

.right .firstrow .column{
	float: left;
	width: 30%;
	position: relative;
	padding: 10px 15px 10px 5px;
	
}
.image {
  display: block;
  width: 30%;
  height: auto;
}

.firstrow .column .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #FFFAEC;
	
}

.firstrow .column:hover .overlay {
    opacity: 1;
}

.column .overlay .text {
   color: #19689F;
   font-family: 'Open Sans', sans-serif;
   font-size: 20px;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   text-align: center;
}

@media(max-width:830px){
	.row{
		flex-direction: column;
	}

	.right .firstrow .column{
    float: left;
    width: 25%;
    position: relative;
    padding: 0 10px 0 10px;
    margin-left: 15px;
	}
	
	.column .overlay .text{
	font-size: 15px;
	}
	
	
}
@media(max-width:600px){
	.row{
		flex-direction: column;
	}

	.right .firstrow .column{
    float: center;
    width: 70%;
    position: relative;
    padding: 0 10px 0 10px;
    margin-left: 60px;
	}
	
	.column .overlay .text{
	font-size: 15px;
	}
	
	
}

/*footer*/
.footer{
	background-color: #ffcf42;
	padding: 4px;
}
.footer .row {
	margin-top:2%;
	margin-bottom: 2%;
	display: flex;
	justify-content: space-between;
}

.footer .row .logo-col {
	flex-basis: 31%;
}



.row .logo-col img {
	width: 40%;
	margin-left: 130px;
	margin-right: 80px;
}


.footer .row .socialmedia-col {
	flex-basis: 31%;
	text-align: center;

}

.row .socialmedia-col p {
	font-size: 20px;
	padding: 10px;
	margin: 40px 00px 30px 0px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
	color:#196b9f;
}
.row .socialmedia-col .img-icons {
	margin-left: auto;
	margin-right: auto;
}

.row .socialmedia-col .fa.fa-facebook {
	width: 50px;
	background-color: #3B5998;
	text-align: center;
	line-height: 50px;
	font-size: 30px;
	border-radius: 50%;

	color: #FFFFFF;
	transition: all 0.5s ease;
	text-decoration: none;
	margin-right: 20px;
}

.row .socialmedia-col .fa.fa-facebook:hover{
	color: #2B9FF0;
	background-color: #FFFFFF;
}

.row .socialmedia-col .fa.fa-instagram {
	width: 55px;
	background-color: #3B5998;
	text-align: center;
	line-height: 55px;
	font-size: 30px;
	border-radius: 50%;
	color: #FFFFFF;
	transition: all 0.5s ease;
	text-decoration: none;
}


.row .socialmedia-col .fa.fa-instagram:hover{
	color: #2B9FF0;
	background-color: #FFFFFF;
}	

.footer .row .link-col {
	flex-basis: 31%;
	text-align: center;
	padding: 40px 0px 10px 0px;
}
	
.footer .row .link-col p{
	padding: 7px;
	font-size: 20px;
	color:#196b9f;
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
}
.link-col p a{
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	color: #19689F;
	text-decoration: none;
	font-weight: 900;
	tansition: all 0.3s ease;
}
.link-col p a:hover{
	color: #3A9CE0;
	padding-left: 8px;	
}

.footer .copyright{
	color: #686868;
	text-align: center;
	padding-bottom: 20px;
	font-size: 15px;
}

@media(max-width:830px){
	.row .logo-col img {
	width: 30%;
	margin-left: 120px;
	margin-right: 80px;
	}

	.row .socialmedia-col p {
	font-size: 20px;
	padding: 10px;
	margin: 40px 0px 30px 0px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
	color:#196b9f;
}
.row .socialmedia-col .img-icons {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

.row .socialmedia-col .fa.fa-facebook {
	width: 40px;
	background-color: #3B5998;
	text-align: center;
	line-height: 40px;
	font-size: 15px;
	border-radius: 50%;
	color: #FFFFFF;
	transition: all 0.5s ease;
	text-decoration: none;
	margin-right: 20px;
	}

	.row .socialmedia-col .fa.fa-facebook:hover{
	color: #2B9FF0;
	background-color: #FFFFFF;
	}

	.row .socialmedia-col .fa.fa-instagram {
	width: 40px;
	background-color: #3B5998;
	text-align: center;
	line-height: 40px;
	font-size: 15px;
	border-radius: 50%;
	color: #FFFFFF;
	transition: all 0.5s ease;
	text-decoration: none;
	}
	
	.footer .row .link-col {
	flex-basis: 31%;
	text-align: center;
	padding: 20px 0px 20px 0px;
}
	
	.footer .row .link-col p{
	padding: 7px;
	font-size: 15px;
	color:#196b9f;
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
	}

	.footer .copyright{
	color: #262626;
	text-align: center;
	padding-bottom: 10px;
	font-size: 12px;
	}	
}


/*scroll to top button*/
.footer .arrow-btn{
	position: fixed;
	bottom: 40px;
	right: 50px;
	z-index: 9;
}

.footer .arrow-btn a{
	height: 50px;
	width: 50px;
	text-align: center;
	background: #3A9CE0;
	display: block;
	border-radius: 50%;
	cursor: pointer;
}
.arrow-btn a .material-icons{
	color: #fff;
	line-height: 50px;
	font-size: 30px;
}
.footer .arrow-btn a:hover{
	background: #2B78AE;
}

@media(max-width:830px){
.footer .arrow-btn{
	position: fixed;
	bottom: 40px;
	right: 20px;
	z-index: 9;
}
.footer .arrow-btn a{
	height: 40px;
	width: 40px;
	text-align: center;
	background: #3A9CE0;
	display: block;
	border-radius: 50%;
	cursor: pointer;
}
.arrow-btn a .material-icons{
	color: #fff;
	line-height: 40px;
	font-size: 30px;
}
.footer .arrow-btn a:hover{
	background: #2B78AE;
}
}

