@charset "utf-8";
/*Main color #36A1BA*/

@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

*,*::before,*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font-family: 'Raleway', sans-serif;
	font-size: 10px
}

a{
	text-decoration: none; 
}

@media (max-width: 768px){
	body{
		display: none;
	}
}

/*Header*/

.fa-bars h1{
	font-size: 20px;
	float: right;
	padding: 5px 10px;
	font-family: 'Poppins', sans-serif;
}

.logo{
	position: fixed;
	top: 2.4rem;
	z-index: 998;
}

.logo a{
	padding: 30px;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	color: #FFFFFF;
}

.hamburger{
	position: fixed;
	top: 2rem;
	right: 3rem;
	padding: .5rem;
	cursor: pointer;
	z-index: 2000;
}

.hamburger i{
	font-size: 3rem;
	color: #FFFFFF;
	transition: .4s;
}

.logo a{
	color: #FFFFFF;
	transition: .4s;
}

.hamburger .fa-times {
	display:none;
}

header::before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #36A1BA;
	transform: translate(-100%, -100%);
	opacity: 0;
	z-index: 999;
	transition: opacity .6s, transform .2s .6s;
}

.sidebar{
	background: #2B2B2B;
	position: fixed;
	top: 0;
	left: 0;
	width: 28rem;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.1rem;
	z-index: 1000;
	transform: translateX(-100%);
	transition: transform .6s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.nav-list{
	list-style: none;
}

.nav-sublist{
	list-style: none;
	margin-left: 30px;
}

.nav-sublist a{
	color: #585858;
}

.nav-sublist a:hover{
	color: #36A1BA;
	transition: color .6s;
}

.sidebar ul li ul li{
	display: none;
}

.sidebar ul li:hover ul li{
	display: block;
}

.nav-item{
	position: relative;
}

.nav-item::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(54,161,186,1) 0%, rgba(71,220,255,1) 39%, rgba(54,161,186,1) 100%);
}

.nav-link{
	display: block;
	font-size: 1.3rem;
	color: #585858;
	line-height: 8rem;
	letter-spacing: 3px;
	transition: color .6s;
}

.nav-sublist a{
	font-size: 1.3rem;
	color: #585858;
	line-height: 7rem;
	letter-spacing: 3px;
	transition: color .6s;
}

.nav-link:hover{
	color: #36A1BA;
}

.nav-link.current{
	color: #FFFFFF;
}

.nav-link i{
	font-size: 2rem;
	margin-right: 1rem;
}

main{
	perspective: 100rem;
}


.zoom-content{
	transform-style: preserve-3d;
	transition: transform .6s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

section{
	width: 100%;
	height: 100vh;
	background-color: #555555;
}

.active .hamburger .fa-times{
	display: block;
}

.active .fa-bars{
	display: none;
}

header.active::before{
	transform: translate(0,0);
	opacity: 50%;
	transition: opacity .6s;
}

.active .sidebar{
	transform: translateX(0);
}

 .active .zoom-content{
	transform:translate3d(0, 0, -25px);
}

header.black{
	background-color: #36A1BA;
	margin-top: 10px;
	height: 60px;
	width: 100%;
	z-index: 1999;
	position: fixed;
	transition: .5s;
}

/* Main menu */

.first{
	background: url("./Img/MainBG-01.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 795px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .first{
	background: url("./Img/MainBG-01.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 1900px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  .first{
	background: url("./Img/MainBG-01.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 500px;
	}
}

.banner-content{
	float: left;
	color: #FFFFFF;
	width: 800px;
	height: 700px;
	padding: 270px 60px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  .banner-content{
	float: left;
	color: #FFFFFF;
	width: 500px;
	height: 700px;
	padding: 310px 30px;
	}  
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .banner-content{
	float: none;
	display: flex;
	flex-flow: column;
	width: 100%;
	height: 1000px;
	padding: 310px 30px;
	}  
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  .banner-content{
	display: none;
	  
	}  
}

.banner-content h1{
	border-bottom: 1px solid;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 70px;
	width: 600px;
	height: 100px;
	text-transform: uppercase;
	letter-spacing: 1rem;
	margin-bottom: 10px;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.banner-content h1{
	border-bottom: 1px solid;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	width: 500px;
	height: 60px;
	text-transform: uppercase;
	letter-spacing: 1rem;
	margin-bottom: 10px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.banner-content h1{
	border-bottom: 1px solid;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 100px;
	width: 100%;
	height: 150px;
	text-transform: uppercase;
	letter-spacing: 1rem;
	margin-bottom: 10px;
	} 
}

.banner-content h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	width: 600px;
	height: 40px;
	text-transform: uppercase;
	letter-spacing: 1rem;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.banner-content h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 10px;
	width: 500px;
	height: 40px;
	text-transform: uppercase;
	letter-spacing: 1rem;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.banner-content h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	width:100%;
	height: 40px;
	text-transform: uppercase;
	letter-spacing: 1rem;
	} 
}

.banner-content h3{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	width: 600px;
	height: 20px;
	text-transform: uppercase;
	letter-spacing: .7rem;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.banner-content h3{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	width: 500px;
	height: 20px;
	text-transform: uppercase;
	letter-spacing: .7rem;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.banner-content h3{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 35px;
	margin-top: 50px;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: .7rem;
	}
}

.logo-ban{
	float: right;
	margin-top: 290px;
	margin-right: 250px;
}

@media (min-width: 1280px) and (max-width: 1530px){
	/*Laptop+ size */
	.logo-ban{
	float: right;
	margin-top: 290px;
	margin-right: 100px;
	}
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.logo-ban{
	float: right;
	margin-top: 290px;
	margin-right: 120px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .logo-ban{
	float: none;
	width: 100%;
	margin: 0;
	 padding-top: 500px;
	text-align: center;
	} 
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation:landscape){
  /*tablet size*/
  .logo-ban{
	margin-top: 180px;
	} 
}

.second{
	width: 100%;
	position: relative;
	background-color: #ECEBEB;
	height: 800px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .second{
	width: 100%;
	position: relative;
	background-color: #ECEBEB;
	height: 2600px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation:landscape){
  /*tablet size*/
  .second{
	width: 100%;
	position: relative;
	background-color: #ECEBEB;
	height: 550px;
	margin: 0 auto;
	}
}

.vs-ms{
	background: #ECEBEB;
	position: relative;
	height: 600px;
	width: 1000px;
	padding-top: 50px;
	margin: 0 auto;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.vs-ms{
	background: #ECEBEB;
	position: relative;
	height: 600px;
	width: 940px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .vs-ms{
	background: #ECEBEB;
	position: relative;
	height: 1500px;
	width: 100%;
	margin: 0 auto;
	padding: 50px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  .vs-ms{
	background: #ECEBEB;
	position: relative;
	height: 440px;
	width: 700px;
	margin: 0 auto;
	}
}

.grid1{
    background: #FFFFFF;
    height: 570px;
    width: 450px;
    float: left;
  	transition: 1s;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .grid1{
	margin-bottom: 30px;
    background: #FFFFFF;
    height: 1200px;
    width: 100%;
	margin: 0 auto;
	float: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  .grid1{
	margin-bottom: 30px;
    background: #FFFFFF;
    height: 200px;
    width: 640px;
	float: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .grid1 img{
  	width: 100%;
	margin: 0 auto;
	float: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  .grid1 img{
  	width: 300px;
	margin: 0 auto;
	float: left;
	}
}

.grid1:hover{
    transform: scale(1.1);
    transition: 1s;
    box-shadow: 5px 5px 10px 1px #D8D8D8;
}

.grid2{
	background: #FFFFFF;
	height: 570px;
	width: 450px;
	float: right;
	transition: 1s;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .grid2{
	margin-bottom: 30px;
    background: #FFFFFF;
    height: 1200px;
    width: 100%;
	margin: 50px auto;
	float: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  .grid2{
	margin-bottom: 30px;
    background: #FFFFFF;
    height: 200px;
    width: 640px;
	 float: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .grid2 img{
  	width: 100%;
	margin: 0 auto;
	float: right;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  .grid2 img{
  	width: 300px;
	margin: 0 auto;
	float: right;
	}
}

.grid2:hover{
	transform: scale(1.1);
	transition: 1s;
	box-shadow: 5px 5px 10px 1px #D8D8D8;
}


.msvs-text {
	text-align: center;
	padding: 20px;
	letter-spacing: 1.5px;
}

.msvs-text h1{
	font-family: 'Raleway', sans-serif;
	color: #85B3D1;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	text-transform: uppercase; 
	letter-spacing: 3px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .msvs-text h1{
	font-family: 'Raleway', sans-serif;
	color: #85B3D1;
	font-size: 25px;
	margin-bottom: 0px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	text-transform: uppercase; 
	letter-spacing: 3px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  .msvs-text h1{
	font-family: 'Raleway', sans-serif;
	color: #85B3D1;
	font-size: 13px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	text-transform: uppercase; 
	letter-spacing: 3px;
	}
}

.msvs-text h2{
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	color: #36A1BA;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .msvs-text h2{
	font-family: 'Poppins', sans-serif;
	font-size: 100px;
	text-transform: uppercase;
	color: #36A1BA;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  .msvs-text h2{
	font-family: 'Poppins', sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	color: #36A1BA;
	}
}

.msvs-text p{
	font-size: 20px;
	color: #85B3D1;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  .msvs-text p{
	font-size: 50px;
	color: #85B3D1;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  .msvs-text p{
	font-size: 15px;
	color: #85B3D1;
}
}

.third{
	background: url("Img/BG slide_Artboard 2.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 800px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.third{
	background: url("Img/BG slide_Artboard 2.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 400px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  	.third{
	background: url("Img/BG slide_Artboard 2.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 400px;
	}
}


.Slog {
	padding: 90px;
	text-align: center;
	color: #EBEBEB;
	text-transform: uppercase; 
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.Slog {
	text-align: center;
	color: #EBEBEB;
	text-transform: uppercase; 
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  	.Slog {
	text-align: center;
	color: #EBEBEB;
	text-transform: uppercase; 
	}
}


.Slog h1{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	border-bottom: 1px solid;
	width: 700px;
	margin: 0 auto;
	letter-spacing: 3px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.Slog h1{
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid;
	width: 500px;
	margin: 0 auto;
	letter-spacing: 3px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  	.Slog h1{
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid;
	width: 500px;
	margin: 0 auto;
	letter-spacing: 3px;
	}
}

.Slog h2{
	font-family: 'Poppins', sans-serif;
	font-size: 80px;
}

.fourth{
	margin-top: 300px;
	background-color: #FFFFFF;
	width: 100%;
	height: 625px;
	position: relative;
	color: #FFFFFF;
	
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.fourth{
	margin-top: 300px;
	background-color: #FFFFFF;
	width: 100%;
	height: 500px;
	position: relative;
	color: #FFFFFF;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.fourth{
	margin-top: 300px;
	background-color: #FFFFFF;
	width: 100%;
	height: 1300px;
	position: relative;
	color: #FFFFFF;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  	.fourth{
	margin-top: 300px;
	background-color: #FFFFFF;
	width: 100%;
	height: 430px;
	position: relative;
	color: #FFFFFF;
	}
}

.fourth-des{
	float: left;
	color: #36A1BA;
	width: 700px;
	height: 500px;
	margin-left: 60px;
	margin-top: 60px;
}

@media (min-width: 1280px) and (max-width: 1530px){
	/*Laptop+ size */
	.fourth-des{
	float: left;
	color: #36A1BA;
	width: 300px;
	height: 400px;
	margin-left: 40px;
	margin-top: 60px;
	}
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.fourth-des{
	float: left;
	color: #36A1BA;
	width: 300px;
	height: 400px;
	margin-left: 40px;
	margin-top: 30px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.fourth-des{
	color: #36A1BA;
	float: none;
	width: 100%;
	height: 400px;
	margin: 0 auto;
	padding: 150px 0;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
  	.fourth-des{
	color: #36A1BA;
	float: none;
	width: 100%;
	height: 400px;
	margin: 30px auto;
	}
}

.fourth-des h1{
	font-size: 50px;
	font-family: 'Poppins', sans-serif;
	width: 700px;
	text-align: center;
	margin-bottom: 10px;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.fourth-des h1{
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	width: 500px;
	text-align: center;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.fourth-des h1{
	font-size: 100px;
	font-family: 'Poppins', sans-serif;
	width: 100%;
	text-align: center;
	margin-bottom: 80px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  	.fourth-des h1{
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	width: 500px;
	text-align: center;
	}
}

.fourth-des p{
	font-size: 30px;
	font-family: 'Raleway', sans-serif;
	width: 500px;
	text-align: center;
	line-height: 40px;
	margin: 0 auto;
}

@media (min-width: 1280px) and (max-width: 1530px){
	/*Laptop+ size */
	.fourth-des p{
	font-size: 25px;
	font-family: 'Raleway', sans-serif;
	width: 500px;
	text-align: center;
	line-height: 40px;
	margin: 0 90px;
	}
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.fourth-des p{
	font-size: 25px;
	font-family: 'Raleway', sans-serif;
	width: 450px;
	text-align: center;
	line-height: 40px;
	margin: 0 20px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
  	.fourth-des p{
	font-size: 50px;
	letter-spacing: 2px;
	font-family: 'Raleway', sans-serif;
	width: 650px;
	text-align: center;
	line-height: 60px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
  	.fourth-des p{
	font-size: 25px;
	letter-spacing: 2px;
	font-family: 'Raleway', sans-serif;
	width: 450px;
	text-align: center;
	line-height: 40px;
	margin: 0 20px;
	}
}

.fourth-des span{
	font-family: 'Poppins', sans-serif;

}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.fourth-Button {
	width: 100%;
	}
}

.fourth-Button a{
	border-radius: 10px;
	display: inline-block;
	border: 1px solid #36A1BA;
	background: none;
	color: #36A1BA;
	padding: 10px 40px;
	font-size: 20px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
	margin: 30px 240px;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.fourth-Button a{
	border-radius: 10px;
	text-align: center;
	border: 1px solid #36A1BA;
	padding: 10px 40px;
	font-size: 20px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
 	width: 250px;
	margin: 30px 130px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.fourth-Button a{
	border-radius: 10px;
	text-align: center;
	border: 1px solid #36A1BA;
	padding: 10px 40px;
	font-size: 50px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
 	width: 550px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
	.fourth-Button a{
	border-radius: 10px;
	text-align: center;
	border: 1px solid #36A1BA;
	padding: 10px 40px;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
 	width: 250px;
	margin: 30px 120px;
	}
}

.fourth-Button a:hover{
	background-color: #36A1BA;
	color: #FFFFFF;
}

.man-comp img{
	float: right;
	width: 750px;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.man-comp img{
	float: right;
	width: 600px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.man-comp img{
	display: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024pxand) and (orientation: landscape) {
  /*tablet size*/
	.man-comp img{
	display: none;
	}
}

.fifth {
	background-color:#BCF1FF;
	height: 600px;
	width: 100%;
	position: relative;
	padding: 50px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.fifth {
	background-color:#BCF1FF;
	height: 1200px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

.ES {
	background: #FFFFFF;
	height: 500px;
	width: 600px;
	margin: 0 auto;
	text-align: center;
	padding: 30px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.ES {
	background: #FFFFFF;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 30px;
}
}

.ES h1{
	font-family: 'Raleway', sans-serif;
	color: #85B3D1;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	text-transform: uppercase; 
	letter-spacing: 3px;
	width: 400px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.ES h1{
	font-family: 'Raleway', sans-serif;
	color: #85B3D1;
	font-size: 25px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	text-transform: uppercase; 
	letter-spacing: 3px;
	width: 400px;
	margin: 0 auto;
}
}

.ES h2{
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	color: #36A1BA;
	width: 400px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.ES h2{
	font-family: 'Poppins', sans-serif;
	font-size: 100px;
	text-transform: uppercase;
	color: #36A1BA;
	width: 400px;
	margin: 0 auto;
}
}


.ES p{
	font-size: 20px;
	color: #85B3D1;
	width: 400px;
	margin: 0 auto;
	margin-bottom: 30px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.ES p{
	font-size: 50px;
	color: #85B3D1;
	width: 800px;
	margin: 0 auto;
	margin-bottom: 30px;
}
}

.fifth-Button a{
	border-radius: 10px;
	display: inline-block;
	border: 1px solid #36A1BA;
	background: none;
	color: #36A1BA;
	padding: 10px 40px;
	font-size: 20px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.fifth-Button a{
	border-radius: 10px;
	text-align: center;
	border: 1px solid #36A1BA;
	padding: 10px 40px;
	font-size: 20px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
 	width: 250px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	.fifth-Button a{
	border-radius: 10px;
	text-align: center;
	border: 1px solid #36A1BA;
	padding: 10px 40px;
	font-size: 50px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
 	width: 550px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
  /*tablet size*/
	.fifth-Button a{
	border-radius: 10px;
	text-align: center;
	border: 1px solid #36A1BA;
	padding: 10px 40px;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	transition: 0.4s;
 	width: 250px;
	}
}

.fifth-Button a:hover{
	background-color: #36A1BA;
	color: #FFFFFF;
}

.sixth {
	background: url("Img/BG slide_Artboard 2.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 800px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
 	.sixth {
	height: 2800px;
}	
}

#main-min-reg h1{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	letter-spacing: 3px;
	padding-top: 50px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	color: #FFFFFF;
	width: 900px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
 #main-min-reg h1{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 35px;
	letter-spacing: 3px;
	padding-top: 50px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	color: #FFFFFF;
	width: 900px;
	margin: 0 auto;
}	
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
 #main-min-reg h1{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	letter-spacing: 3px;
	padding-top: 50px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	color: #FFFFFF;
	width: 600px;
	margin: 0 auto;
}	
}

#main-min-reg h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	color: #FFFFFF;
	width: 900px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
  /*tablet size*/
	#main-min-reg h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 80px;
	color: #FFFFFF;
	width: 900px;
	margin: 0 auto;
}	
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
  /*tablet size*/
	#main-min-reg h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: #FFFFFF;
	width: 600px;
	margin: 0 auto;
}	
}

#main-cer{
	margin: 50px auto;
	width: 700px;
	height: 400px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#main-cer{
	margin: 50px auto;
	width: 100%;
	text-align: center;
}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#main-cer{
	margin: 50px auto;
	width: 600px;
	height: 400px;
}
}

#cer-1 img{
	border: 1px solid;
	height: 400px;
	float: left;
	transition: 1s;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#cer-1 img{
	border: 1px solid;
	height: 1000px;
	float: none;
	transition: 1s;
	margin-bottom: 100px;
}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#cer-1 img{
	border: 1px solid;
	height: 350px;
	float: left;
	transition: 1s;
}
}

#cer-1 img:hover{
	transform: scale(1.2);
	transition: 1s;
	cursor: pointer;
	filter: grayscale(100%)
}

#cer-2 img{
	border: 1px solid;
	height: 400px;
	float: right;
	transition: 1s;
}
@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#cer-2 img{
	border: 1px solid;
	height: 1000px;
	float: none;
	transition: 1s;	
	}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#cer-2 img{
	border: 1px solid;
	height: 350px;
	float: right;
	transition: 1s;	
	}
}

#cer-2 img:hover{
	transform: scale(1.2);
	transition: 1s;
	cursor: pointer;
	filter: grayscale(100%)
}

.seventh{
	margin-top: 700px;
	background-color: #FFFFFF;
	width: 100%;
	height: 600px;
	position: relative;
	color: #FFFFFF;
	text-align: center;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.seventh{
	margin-top: 600px;
	background-color: #FFFFFF;
	width: 100%;
	height: 1400px;
	position: relative;
	color: #FFFFFF;
	
}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.seventh{
	margin-top: 2800px;
	background-color: #FFFFFF;
	width: 100%;
	height: 1150px;
	position: relative;
	color: #FFFFFF;
	
}
}


@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape){
	/*tablet size*/
	.seventh{
	margin-top: 600px;
	background-color: #FFFFFF;
	width: 100%;
	height: 1150px;
	position: relative;
	color: #FFFFFF;
	
}
}

#main-cop-reg h1{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	letter-spacing: 3px;
	padding-top: 50px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	color: #85B3D1;
	width: 900px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#main-cop-reg h1{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	letter-spacing: 3px;
	padding-top: 50px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	color: #85B3D1;
	width: 600px;
	margin: 0 auto;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#main-cop-reg h1{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	letter-spacing: 3px;
	padding-top: 50px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid;
	color: #85B3D1;
	width: 600px;
	margin: 0 auto;
}	
}

#main-cop-reg h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	color: #36A1BA;
	width: 900px;
	margin: 0 auto;
	margin-bottom: 20px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#main-cop-reg h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	color: #36A1BA;
	width: 600px;
	margin: 0 auto;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#main-cop-reg h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	color: #36A1BA;
	width: 600px;
	margin: 0 auto;
}
}

#main-cop-log img{
	width: 1200px;
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	#main-cop-log img{
	width: 900px;
}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#main-cop-log img{
	width: 700px;
}
}


@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#main-cop-log img{
	width: 700px;
}
}

/*About*/

#about-first{
	background: url("Img/office_room_style_wall_modern_design_39289_1920x1080.jpg");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
	padding-top: 100px;
	text-align: center;
	color: #FFFFFF;
}

#about-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 1000px;
	margin: 0 auto;
} 

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#about-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
} 
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#about-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
} 
}

#about-first h1{
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
} 

#about-second {
	background-color: #BCF1FF;
	height: 4100px;
	width: 100%;
	position: relative;
	padding: 50px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#about-second {
	background-color: #BCF1FF;
	height: 3500px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#about-second {
	background-color: #BCF1FF;
	height: 3500px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

#about-des {
	background: #FFFFFF;
	height: 4000px;
	width: 1000px;
	margin: 0 auto;
	padding: 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-des {
	background: #FFFFFF;
	height: 3900px;
	width: 850px;
	margin: 0 auto;
}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#about-des {
	background: #FFFFFF;
	height: 3420px;
	width: 670px;
	margin: 0 auto;
	padding: 30px;
}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#about-des {
	background: #FFFFFF;
	height: 3420px;
	width: 670px;
	margin: 0 auto;
	padding: 10px;
}
}

#about-des img{
	border: 8px solid #008FAF;
	border-radius: 5px;
}

#about-des h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	color: #3B77A0;
	border-bottom: 1px solid ;
	width: 800px;
	margin: 40px auto;
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#about-des h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	color: #3B77A0;
	border-bottom: 1px solid ;
	width: 600px;
	margin: 40px auto;
}
}

#about-row1{
	width: 900px;
	height: 300px;
	margin: 0 auto;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row1{
	width: 800px;
	height: 320px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#about-row1{
	width: 600px;
	height: 300px;
	margin: 0 auto;
}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#about-row1{
	width: 600px;
	height: 300px;
	margin: 0 auto;
}
}


#about-one {
	font-size: 20px;
	color: #85B3D1;
	height: 300px;
	width: 440px;
	line-height: 30px;
	float: left;
	padding: 30px 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-one {
	font-size: 20px;
	color: #85B3D1;
	height: 300px;
	width: 350px;
	line-height: 30px;
	float: left;
	padding: 10px 0px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#about-one {
	font-size: 15px;
	color: #85B3D1;
	height: 300px;
	width: 280px;
	line-height: 30px;
	float: left;
	padding: 10px 0px;
}
}

@media (min-width: 768px ) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#about-one {
	font-size: 15px;
	color: #85B3D1;
	height: 300px;
	width: 280px;
	line-height: 30px;
	float: left;
	padding: 10px 0px;
}
}

#about-two{
	color: #85B3D1;
	height: 300px;
	width: 440px;
	float: right;
	padding: 10px 0px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-two{
	color: #85B3D1;
	height: 300px;
	width: 400px;
	float: right;
	margin-right: 10px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-two{
	color: #85B3D1;
	height: 260px;
	width: 300px;
	float: right;
	margin-right: 4px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
	/*tablet size*/
	#about-two{
	color: #85B3D1;
	height: 260px;
	width: 300px;
	float: right;
	margin-right: 4px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-two img{
	width: 300px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
	/*tablet size*/
	#about-two img{
	width: 300px;
	}
}

#about-row2{
	width: 900px;
	height: 510px;
	margin: 0 auto;
	padding: 0px 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row2{
	width: 800px;
	height: 520px;
	margin: 0 auto;
	padding: 0px 0px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row2{
	width: 600px;
	height: 510px;
	margin: 0 auto;
	padding: 0px 0px;
}
}

@media (min-width: 768px) and (max-width: 1024px)and (orientation: landscape) {
	/*tablet size*/
	#about-row2{
	width: 600px;
	height: 510px;
	margin: 0 auto;
	padding: 0px 0px;
}
}

#about-three {
	font-size: 20px;
	color: #85B3D1;
	margin-bottom: 30px;
	line-height: 30px;
}

@media (min-width: 768px) and (max-width: 1024px){
	/*tablet size*/
	#about-three {
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 30px;
	line-height: 30px;
}
}

@media (min-width: 768px) and (max-width: 1024px)and (orientation: landscape){
	/*tablet size*/
	#about-three {
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 30px;
	line-height: 30px;
}
}

#about-four{
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
}


#about-four h1{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
}

@media (min-width: 768px) and (max-width: 1024px){
	/*tablet size*/
	#about-four h1{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
}
}

@media (min-width: 768px) and (max-width: 1024px)and (orientation: landscape){
	/*tablet size*/
	#about-four h1{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
}
}

#about-four ul{
	font-size: 20px;
	color: #85B3D1;
	margin: 20px 0px;
	margin-bottom: 30px;
	line-height: 30px;
	padding: 0px 20px;
}

@media (min-width: 768px) and (max-width: 1024px){
	/*tablet size*/
	#about-four ul{
	font-size: 15px;
	color: #85B3D1;
	margin: 20px 0px;
	margin-bottom: 30px;
	line-height: 30px;
	padding: 0px 20px;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-four ul{
	font-size: 15px;
	color: #85B3D1;
	margin: 20px 0px;
	margin-bottom: 30px;
	line-height: 30px;
	padding: 0px 20px;
}
}

#about-row3{
	width: 900px;
	height: 300px;
	margin: 0 auto;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row3{
	width: 800px;
	height: 300px;
	margin: 0 auto;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row3{
	width: 600px;
	height: 210px;
	margin: 0 auto;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
	/*tablet size*/
	#about-row3{
	width: 600px;
	height: 210px;
	margin: 0 auto;
}
}

#about-five{
	height: 300px;
	width: 440px;
	padding: 10px;
	float: left;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-five{
	height: 300px;
	width: 400px;
	float: left;
	padding: 0px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-five{
	color: #85B3D1;
	height: 210px;
	width: 300px;
	float: left;
	margin-right: 4px;
	padding: 0px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-five{
	color: #85B3D1;
	height: 210px;
	width: 300px;
	float: left;
	margin-right: 4px;
	padding: 0px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-five img{
	width: 300px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-five img{
	width: 300px;
	}
}

#about-six{
	height: 300px;
	width: 440px;
	padding: 60px 0px;
	float: right;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-six{
	height: 300px;
	width: 360px;
	padding: 60px 0px;
	float: right;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-six{
	height: 200px;
	width: 290px;
	padding: 0px;
	float: right;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
}}


#about-row4{
	width: 900px;
	height: 330px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	padding: 0px 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row4{
	width: 800px;
	height: 330px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	padding: 0px 0px;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row4{
	width: 600px;
	height: 320px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
	padding: 0px;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){
	/*tablet size*/
	#about-row4{
	width: 600px;
	height: 320px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
	padding: 0px;
}
}

#about-seven{
	margin: 20px 0px;
}

#about-row5{
	width: 900px;
	height: 300px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row5{
	width: 800px;
	height: 300px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row5{
	width: 600px;
	height: 300px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
		padding: none;
}
}

@media (min-width: 768px) and (max-width: 1024px)  and (orientation: landscape){
	/*tablet size*/
	#about-row5{
	width: 600px;
	height: 300px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
		padding: 0px;
}
}

#about-nine{
	height: 300px;
	width: 440px;
	padding: 10px;
	float: right;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-nine{
	height: 300px;
	width: 400px;
	padding: 0px;
	float: right;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-nine{
	height: 300px;
	width: 280px;
	padding: 40px 0px;
	float: right;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-nine{
	height: 300px;
	width: 280px;
	padding: 40px 0px;
	float: right;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-nine img{
	width: 300px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-nine img{
	width: 300px;
	}
}

#about-ten{
	height: 300px;
	width: 440px;
	padding: 0px 30px;
	float: left;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-ten{
	height: 300px;
	width: 340px;
	padding: 0px;
	float: left;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-ten{
	height: 300px;
	width: 280px;
	padding: 0px;
	float: left;
	font-size: 15px;
	}}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-ten{
	height: 300px;
	width: 280px;
	padding: 0px;
	float: left;
	font-size: 15px;
	}}
	
#about-row6{
	width: 900px;
	height: 130px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	padding: 20px 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row6{
	width: 800px;
	height: 130px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	padding: 20px 0px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row6{
	width: 600px;
	height: 130px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
	padding: 20px 0px;
	}}

@media (min-width: 768px) and (max-width: 1024px)  and (orientation: landscape){
	/*tablet size*/
	#about-row6{
	width: 600px;
	height: 130px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
	padding: 20px 0px;
	}}

#about-row7{
	width: 900px;
	height: 300px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row7{
	width: 800px;
	height: 300px;
	margin: 10px auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row7{
	width: 600px;
	height: 250px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
}
}

@media (min-width: 768px) and (max-width: 1024px)  and (orientation: landscape){
	/*tablet size*/
	#about-row7{
	width: 600px;
	height: 250px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
}
}

#about-twelve{
	height: 300px;
	width: 440px;
	padding: 10px 10px;
	float: left;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-twelve{
	height: 300px;
	width: 390px;
	padding: 10px 0px;
	float: left;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-twelve{
	height: 240px;
	width: 320px;
	padding: 20px 0px;
	float: left;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-twelve{
	height: 240px;
	width: 320px;
	padding: 20px 0px;
	float: left;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-twelve img{
	width: 300px;
	}}

@media (min-width: 768px) and (max-width: 1024px)  and (orientation: landscape){
	/*tablet size*/
	#about-twelve img{
	width: 300px;
	}}

#about-thirteen{
	height: 300px;
	width: 440px;
	padding: 70px 0px;
	float: right;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-thirteen{
	height: 300px;
	width: 360px;
	padding: 70px 0px;
	float: right;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-thirteen{
	height: 250px;
	width: 280px;
	padding: 35px 0px;
	float: right;
	font-size: 15px;
}
}

@media (min-width: 768px) and (max-width: 1024px)  and (orientation: landscape){
	/*tablet size*/
	#about-thirteen{
	height: 250px;
	width: 280px;
	padding: 35px 0px;
	float: right;
	font-size: 15px;
}
}

#about-row8{
	width: 900px;
	height: 330px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	padding: 10px 30px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-row8{
	width: 800px;
	height: 330px;
	margin: 0 auto;
	font-size: 20px;
	color: #85B3D1;
	line-height: 30px;
	padding: 0px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-row8{
	width: 600px;
	height: 330px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
	padding: 10px 0px;
}
}

@media (min-width: 768px) and (max-width: 1024px)  and (orientation: landscape){
	/*tablet size*/
	#about-row8{
	width: 600px;
	height: 330px;
	margin: 0 auto;
	font-size: 15px;
	color: #85B3D1;
	line-height: 30px;
	padding: 10px 0px;
}
}


#about-fourteen{
	margin-bottom: 20px;
}

#about-org{
	border: 1px solid #85B3D1;
	border-radius: 10px;
	height: 1250px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-org{
	border: 1px solid #85B3D1;
	border-radius: 10px;
	height: 1140px;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-org{
	border: 1px solid #85B3D1;
	border-radius: 10px;
	height: 880px;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#about-org{
	border: 1px solid #85B3D1;
	border-radius: 10px;
	height: 880px;
}
}

#about-org h1{
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	text-align: center;
	margin: 20px;
	border-bottom: 1px solid;
	color: #85B3D1;
	text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-org h1{
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	text-align: center;
	margin: 20px;
	border-bottom: 1px solid;
	color: #85B3D1;
	text-transform: uppercase;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-org h1{
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	text-align: center;
	margin: 20px;
	border-bottom: 1px solid;
	color: #85B3D1;
	text-transform: uppercase;
}
}

#about-chart-org{
	padding: 10px;
}

#about-chart-org img{
	border: none;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#about-chart-org img{
	border: none;
	width: 760px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/*tablet size*/
	#about-chart-org img{
	border: none;
	width: 620px;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#about-chart-org img{
	border: none;
	width: 620px;
}
}

/*Product and Service*/

#pns-first{
	background: url("Img/office_room_style_wall_modern_design_39289_1920x1080.jpg");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
	padding-top: 100px;
	text-align: center;
	color: #FFFFFF;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#pns-first{
	color: #2460A7;
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#pns-first{
	color: #2460A7;
}
}

#pns-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 1000px;
	margin: 0 auto;
} 

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#pns-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
} 
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	/*tablet size*/
	#pns-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
} 
}

#pns-first h1{
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
} 

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#pns-first h1{
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
} 
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#pns-first h1{
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
} 
}

#pns-second {
	background-color: #BCF1FF;
	height: 6000px;
	width: 100%;
	position: relative;
	padding: 50px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#pns-second {
	background-color: #BCF1FF;
	height: 4400px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#pns-second {
	background-color: #BCF1FF;
	height: 6700px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#pns-second {
	background-color: #BCF1FF;
	height: 6700px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

#pns-product{
	width: 100%;
	height: 2800px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#pns-product{
	width: 100%;
	height:2000px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#pns-product{
	width: 100%;
	height:2000px;
}
}

.pns-row{
	height: 1000px;
	width: 1000px;
	padding: 20px 40px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.pns-row{
	height: 700px;
	width: 100%;
	padding: 20px 10px;
	margin: 0 auto;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.pns-row{
	height: 700px;
	width: 100%;
	padding: 20px 10px;
	margin: 0 auto;
}
}

.pns-box{
	border-radius: 10px;
	position: relative;
	width: 850px;
	height: 300px;
	display: inline-block;
	margin: 10px auto;
	background-color: #ffffff;
	padding: 0px 15px;
	text-align: center;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.pns-box{
	border-radius: 10px;
	position: relative;
	width: 100%;
	height: 200px;
	display: inline-block;
	margin: 10px 5px;
	background-color: #ffffff;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.pns-box{
	border-radius: 10px;
	position: relative;
	width: 100%;
	height: 200px;
	display: inline-block;
	margin: 10px 5px;
	background-color: #ffffff;
}
}

.pns-title{
	font-size: 12px;
	width: 100%;
	height: 50px;
	text-align: center;
	padding: 10px;
	color: #3B77A0;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.pns-title{
	font-size: 8px;
	width: 500px;
	margin: 0 auto;
	height: 50px;
	text-align: center;
	padding: 10px;
	color: #3B77A0;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.pns-title{
	font-size: 8px;
	width: 500px;
	margin: 0 auto;
	height: 50px;
	text-align: center;
	padding: 10px;
	color: #3B77A0;
}
}

.pns-product-log{
	width: 100%;
	height: 200px;
	margin: 10px auto;
	display: inline-block;
}

.pns-product-log img{
	width: 350px;
	margin: 0 auto;
	text-align: center;
}

#pns-agreement{
	background: #FFFFFF;
	height: 3100px;
	width: 1000px;
	margin: 0 auto;
	padding: 30px 0px;
	border-radius: 5px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#pns-agreement{
	background: #FFFFFF;
	height: 4550px;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0px;
	border-radius: 5px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#pns-agreement{
	background: #FFFFFF;
	height: 4550px;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0px;
	border-radius: 5px;
	}
}

#MOF-table{
	padding: 0px 50px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#MOF-table{
	padding: 0px 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#MOF-table{
	padding: 0px 20px;
}
}


#MOF-table h1{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	line-height: 30px;
	letter-spacing: 2px;
	margin-bottom: 50px;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	#MOF-table h1{
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #3B77A0;
	line-height: 30px;
	letter-spacing: 2px;
	margin-bottom: 50px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#MOF-table h1{
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #3B77A0;
	line-height: 30px;
	letter-spacing: 2px;
	margin-bottom: 50px;
}
}

#MOF-table h1 span{
	text-transform: uppercase;
}

.table{
	border-bottom: 1px solid;
	height: 100px;
	padding: 10px;
	color: #85B3D1;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	.table{
	border-bottom: 1px solid;
	height: 120px;
	padding: 10px;
	color: #85B3D1;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.table{
	border-bottom: 1px solid;
	height: 150px;
	padding: 10px;
	color: #85B3D1;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.table{
	border-bottom: 1px solid;
	height: 150px;
	padding: 10px;
	color: #85B3D1;
	}
}

.table-no{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	width: 100px;
	float: left;
	
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.table-no{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	width: 100px;
	float: left;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.table-no{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	width: 100px;
	float: left;
}
}

.table-des{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	width: 770px;
	float: right;
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.table-des{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	width: 470px;
	float: right;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.table-des{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	width: 470px;
	float: right;
	}
}

/*license*/

.lisBG{
	background-color: #2B2B2B;
	width: 100%;
	height: 100%;
	padding: 10px 30%;
}

#back .fa-times{
	color: #FFFFFF;
	font-size: 3rem;
	float: right;
	width: 100%;
	
}

/* contact*/

#cont-first{
	background: url("Img/office_room_style_wall_modern_design_39289_1920x1080.jpg");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
	padding-top: 100px;
	text-align: center;
	color: #FFFFFF;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-first{
	color: #2460A7;
	} 
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-first{
	color: #2460A7;
	} 
}

#cont-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 1000px;
	margin: 0 auto;
} 

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
	} 
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
	} 
}

#cont-first h1{
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
} 

#cont-second{
	background-color: #BCF1FF;
	height: 680px;
	width: 100%;
	position: relative;
	padding: 50px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-second{
	background-color: #BCF1FF;
	height: 970px;
	width: 100%;
	position: relative;
	padding: 50px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-second{
	background-color: #BCF1FF;
	height: 820px;
	width: 100%;
	position: relative;
	padding: 50px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-second{
	background-color: #BCF1FF;
	height: 820px;
	width: 100%;
	position: relative;
	padding: 50px;
	}
}

#cont-content{
	background: #FFFFFF;
	height: 550px;
	width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-content{
	background: #FFFFFF;
	height: 800px;
	width: 900px;
	margin: 0 auto;
	padding: 10px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-content{
	background: #FFFFFF;
	height: 700px;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-content{
	background: #FFFFFF;
	height: 700px;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
	}
}


#cont-grid1{
	height: 600px;
	width: 300px;
	float: left;
	padding: 5px;
}



@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-grid1{
	height: 250px;
	width: 100%;
	padding: 5px;
	float: none;
}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-grid1{
	height: 200px;
	width: 100%;
	padding: 5px;
	margin-bottom: 10px;
	float: none;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-grid1{
	height: 200px;
	width: 100%;
	padding: 5px;
	margin-bottom: 10px;
	float: none;
}
}

#cont-grid2{
	height: 500px;
	width: 630px;
	float: right;
	padding: 10px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-grid2{
	height: 500px;
	width: 622px;
	padding: 10px;
	float: none;
	margin: 0 120px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-grid2{
	width: 622px;
	padding: 10px;
	float: none;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-grid2{
	width: 622px;
	padding: 10px;
	float: none;
	margin: 0 auto;
	}
}

#cont-location{
	height: 270px
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-location{
	height: 200px;
	width: 430px;
	float: left;
	padding-left: 40px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-location{
	height: 200px;
	width: 300px;
	float: left;
	padding-left: 15px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-location{
	height: 200px;
	width: 300px;
	float: left;
	padding-left: 15px;
	}
}

#cont-location h1{
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: #3B77A0;
	margin-bottom: 20px;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-location h1{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	margin-bottom: 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-location h1{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	margin-bottom: 20px;
}
}

#cont-location p{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #85B3D1;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-location p{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-location p{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
}
}

#cont-map{
	border: 1px solid #C2C2C2;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-map{
	border: 1px solid #C2C2C2;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-map{
	border: 1px solid #C2C2C2;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-map{
	border: 1px solid #C2C2C2;
	}
}

#cont-det{
	height: 290px
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-det{
	height: 200px;
	width: 390px;
	margin-top: 40px;
	float: right;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-det{
	height: 200px;
	width: 320px;
	float: right;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-det{
	height: 200px;
	width: 320px;
	float: right;
	}
}

#cont-det h1{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #3B77A0;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-det h1{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #3B77A0;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-det h1{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #3B77A0;
}
}

#cont-det a:hover{
	color: #3B77A0;
	transition: .5s;
}


#cont-det p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #85B3D1;
	margin-bottom: 20px;
	transition: .5s;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#cont-det p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-det p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-det p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

#cont-third{
	background: url("Img/BG slide_Artboard 2.png");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 800px;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-third{
	background-repeat: repeat;
	background-size: cover;
	width: 100%;
	height: 1000px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-third{
	background-repeat: repeat;
	background-size: cover;
	width: 100%;
	height: 1000px;
}
}

#cont-info h1{
	text-align: center;
	color: #FFFFFF;
	margin: 10px;
	font-size: 40px
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#cont-info h1{
	text-align: center;
	color: #FFFFFF;
	margin: 10px;
	font-size: 30px
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#cont-info h1{
	text-align: center;
	color: #FFFFFF;
	margin: 10px;
	font-size: 30px
}
}

#emp-margin{
	height: 400px;
	width: 100%;
	padding: 10px;
}

@media (min-width: 1160px) and (max-width: 1280px){
	/*Laptop+ size */
	#emp-margin{
	height: 400px;
	width: 100%;
}
}

@media (min-width: 1025px) and (max-width: 1160px) {
  /*Laptop size*/
  	#emp-margin{
	height: 400px;
	width: 100%;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#emp-margin{
	height: 400px;
	width: 100%;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#emp-margin{
	height: 400px;
	width: 100%;
	}
}

#emp-pos{
	height: 400px;
	width: 1380px;
	margin: 0 auto;
}

@media (min-width: 1280px) and (max-width: 1410px){
	/*Laptop++ size */
	#emp-pos{
	height: 400px;
	width: 100%;
	margin: 0 auto;
	}
}

@media (min-width: 1160px) and (max-width: 1280px){
	/*Laptop+ size */
	#emp-pos{
	height: 400px;
	width: 1030px;
	margin: 0 auto;
	}
}

@media (min-width: 1025px) and (max-width: 1160px) {
  /*Laptop size*/
  	#emp-pos{
	height: 400px;
	width: 1010px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#emp-pos{
	height: 400px;
	width: 100%;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#emp-pos{
	height: 400px;
	width: 100%;
	margin: 0 auto;
	}
}

.emp-grid{
	height: 500px;
	width: 450px;
	float: left;
	padding: 25px;
}

@media (min-width: 1280px) and (max-width: 1410px){
	/*Laptop++ size */
	.emp-grid{
	height: 400px;
	width: 350px;
	padding: 0px;
	margin: 25px 15px;
	}
}

@media (min-width: 1160px) and (max-width: 1280px){
	/*Laptop+ size */
	.emp-grid{
	height: 400px;
	width: 300px;
	padding: 0px;
	margin: 25px 15px;
	}
}

@media (min-width: 1025px) and (max-width: 1160px) {
  /*Laptop size*/
  	.emp-grid{
	height: 350px;
	width: 300px;
	margin: 25px 16px;
	padding: 0;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.emp-grid{
	height: 260px;
	width: 500px;
	margin: 20px auto;
	padding: 0;
	float: none;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.emp-grid{
	height: 260px;
	width: 500px;
	margin: 20px auto;
	padding: 0;
	float: none;
	}
}

.emp-des{
    height: 350px;
    width: 400px;
    background: #FEFCFC;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #003362;
}

@media (min-width: 1280px) and (max-width: 1410px){
	/*Laptop++ size */
	.emp-des{
    height: 350px;
    width: 320px;
    background: #FEFCFC;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #003362;
	}
}

@media (min-width: 1160px) and (max-width: 1280px){
	/*Laptop+ size */
	.emp-des{
    height: 350px;
    width: 300px;
    background: #FEFCFC;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #003362;
	}
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	.emp-des{
    height: 350px;
    width: 300px;
    background: #FEFCFC;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #003362;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.emp-des{
    height: 250px;
    width: 500px;
    background: #FEFCFC;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #003362;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.emp-des{
    height: 250px;
    width: 500px;
    background: #FEFCFC;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 1px #003362;
	}
}

.cont-position{
	background-color: #0071DB;
	height: 60px;
	border-radius: 10px;
	text-align: center;
	padding: 10px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	color: #FFFFFF;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.cont-position{
	background-color: #0071DB;
	height: 40px;
	border-radius: 10px;
	text-align: center;
	padding: 5px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	color: #FFFFFF;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.cont-position{
	background-color: #0071DB;
	height: 40px;
	border-radius: 10px;
	text-align: center;
	padding: 5px;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	color: #FFFFFF;
}
}

.cont-pos-no{
	height: 350px;
	margin-top: 20px;
	padding: 20px;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.cont-pos-no{
	height: 200px;
	margin: 0;
	padding: 20px 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.cont-pos-no{
	height: 200px;
	margin: 0;
	padding: 20px 20px;
}
}

.cont-pos-no h1{
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	color: #85B3D1;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.cont-pos-no h1{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #85B3D1;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.cont-pos-no h1{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #85B3D1;
}
}

.cont-pos-no p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #85B3D1;
	margin-bottom: 20px;
}

@media (min-width: 1280px) and (max-width: 1530px){
	/*Laptop+ size */
	.cont-pos-no p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

@media (min-width: 1025px) and (max-width: 1280px){
	/*Laptop size*/
	.cont-pos-no p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) {
	/*tablet size*/
	.cont-pos-no p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.cont-pos-no p, a{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #85B3D1;
	margin-bottom: 20px;
}
}

.cont-pos-no a:hover{
	color: #3B77A0;
	transition: .5s;
}

#inq{
	margin-top: 550px;
	background-color: #FFFFFF;
	width: 100%;
	height: 720px;
	position: relative;
	background-size: cover;
	color: #FFFFFF;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#inq{
	margin-top: 1000px;
	background-color: #FFFFFF;
	width: 100%;
	height: 720px;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#inq{
	margin-top: 1000px;
	background-color: #FFFFFF;
	width: 100%;
	height: 720px;
}
}

#inq-text{
	padding: 40px 90px;
}

#inq-text h1{
	font-family: 'Raleway', sans-serif;
	font-size: 40px;
	color: #3B77A0;
}

#inq-text p{
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	color: #85B3D1;
	border-bottom: 1px solid;
	padding-bottom: 20px;
}

#inq-cont{
	outline: none;
}

#inq-cont{
	position: absolute;
	width: 100%;
	padding: 0px;
}

#inq-form{
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px;
	display: flex;
}

.inq-det{
	display: flex;
	flex-direction: column;
	margin-right: 4%;
}

.inq-det, .inq-msg {
	width: 48%;
}

.inq-msg button{
	background: transparent;
	border: 0;
	font-size: 20px;
	color: #85B3D1;
	padding: 10px 0px;
	font-family: 'Poppins', sans-serif;
}

.inq-msg button:hover{
	color: #3B77A0;
	transition: .5s;
}

.inq-det .input, .inq-msg textarea{
	margin: 10px 0px;
	background: transparent;
	border: 0;
	border-bottom: 2px solid #85B3D1;
	padding: 10px;
	color: #85B3D1;
	width: 90%;
}
.inq-msg textarea{
	height: 270px;
}

/*Support*/

#sup-first{
	background: url("Img/office_room_style_wall_modern_design_39289_1920x1080.jpg");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
	padding-top: 100px;
	text-align: center;
	color: #FFFFFF;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#sup-first{
	color: #2460A7;
} 
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-first{
	color: #2460A7;
} 
}

#sup-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 1000px;
	margin: 0 auto;
} 

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#sup-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
	color: #2460A7;
} 
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-first p{
	font-family: 'Raleway', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
	border-bottom: 1px solid;
	width: 600px;
	margin: 0 auto;
	color: #2460A7;
} 
}

#sup-first h1{
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	letter-spacing: 4px;
	margin: 0 auto;
} 

#sup-second{
	background-color: #BCF1FF;
	height: 1350px;
	width: 100%;
	position: relative;
	padding: 50px;
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-second{
	background-color: #BCF1FF;
	height: 1150px;
	width: 100%;
	position: relative;
	padding: 50px;
}
}

#sup-second-des{
	height: 1200px;
	width: 1000px;
	margin: 0 auto;
	background-color: #FFFFFF;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#sup-second-des{
	height: 1200px;
	width: 900px;
	margin: 0 auto;
	background-color: #FFFFFF;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#sup-second-des{
	height: 1000px;
	width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-second-des{
	height: 1000px;
	width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	}
}

#sup-map{
	width: 900px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#sup-map{
	width: 850px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#sup-map{
	width: 650px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-map{
	width: 650px;
	margin: 0 auto;
	}
}

#sup-map img{
	width: 900px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#sup-map img{
	width: 850px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#sup-map img{
	width: 650px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-map img{
	width: 650px;
	margin: 0 auto;
	}
}

#sup-second-des h1{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	padding-top: 30px;
	color: #3B77A0;
	width: 900px;
	margin: 0 auto;
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#sup-second-des h1{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 25px;
	padding-top: 30px;
	color: #3B77A0;
	width: 100%;
	margin: 0 auto;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#sup-second-des h1{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 25px;
	padding-top: 30px;
	color: #3B77A0;
	width: 100%;
	margin: 0 auto;
}
}

#grid-map{
	height: 500px;
	width: 1000px;
	padding: 70px 50px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#grid-map{
	height: 500px;
	width: 900px;
	padding: 70px 0px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#grid-map{
	height: 400px;
	width: 100%;
	padding: 50px 0px;
	}
}


@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#grid-map{
	height: 400px;
	width: 100%;
	padding: 50px 0px;
	}
}

#careline-no{
	height: 140px;
	width: 1000px;
	padding: 10px;
	margin: 0 auto;
	text-align: center;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#careline-no{
	height: 140px;
	width: 900px;
	padding: 20px;
	margin: 0 auto;
	text-align: center;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#careline-no{
	height: 140px;
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	text-align: center;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#careline-no{
	height: 140px;
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	text-align: center;
	}
}

#careline-no h2{
	font-family: 'Poppins', sans-serif;
	font-size: 25px;
	color: #3B77A0;
	border-bottom: 1px solid;
	width: 600px;
	margin: 10px auto;
}

#careline-no p{
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	color: #3B77A0;
}

#careline-no h3{
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	margin-top: 10px;
}

#careline-process{
	height: 400px;
	padding: 25px 33px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#careline-process{
	height: 400px;
	padding: 25px 40px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#careline-process{
	margin-top: 20px;
	height: 400px;
	width: 660px;
	margin: 0 auto;
	padding: 25px 40px;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#careline-process{
	margin-top: 20px;
	height: 400px;
	width: 660px;
	margin: 0 auto;
	padding: 25px 40px;
	}
}

.process{
	height: 380px;
	margin: 0px 5px;
	width: 300px;
	float: left;
	transition: .3s;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	.process{
	height: 380px;
	margin: 0px 5px;
	width: 260px;
	float: left;
	transition: .3s;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.process{
	height: 380px;
	margin: 0px 5px;
	width: 200px;
	float: left;
	transition: .3s;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.process{
	height: 380px;
	margin: 0px 5px;
	width: 180px;
	float: left;
	transition: .3s;
	}
}

.process:hover{
	transform: scale(1.1);
	transition: .3s;
	
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.process img{
	width: 180px;
	}
}

.process h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: #3B77A0;
	border-top: 1px solid;
	width: 270px;
	margin: 0 auto;
	text-transform: uppercase;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	.process h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	border-top: 1px solid;
	width: 250px;
	margin: 0 auto;
	text-transform: uppercase;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.process h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	border-top: 1px solid;
	width: 180px;
	margin: 0 auto;
	text-transform: uppercase;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.process h2{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: #3B77A0;
	border-top: 1px solid;
	width: 180px;
	margin: 0 auto;
	text-transform: uppercase;
	}
}

.process p{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	color: #3B77A0;
	width: 270px;
	margin: 0 auto;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	.process p{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #3B77A0;
	width: 250px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	.process p{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #3B77A0;
	width: 180px;
	margin: 0 auto;
	}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	.process p{
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	color: #3B77A0;
	width: 180px;
	margin: 0 auto;
	}
}

/*Reference*/

#ref-first{
	background: url("Img/office_room_style_wall_modern_design_39289_1920x1080.jpg");
	background-position: top cal(200px - 20vw) right;
	background-attachment: fixed;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 300px;
	padding-top: 100px;
	text-align: center;
	color: #FFFFFF;
}

#ref-second{
	background-color: #BCF1FF;
	height: 2850px;
	width: 100%;
	position: relative;
	padding: 50px;
}

#ref-second-des{
	height: 2700px;
	width: 1200px;
	margin: 0 auto;
	background-color: #FFFFFF;
	text-align: center;
}

#ref-second-des h1{
	height: 100px;
	padding-top: 20px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: #3B77A0;
	text-transform: uppercase;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  /*Laptop size*/
  	#ref-second-des{
	height: 2600px;
	width: 900px;
	margin: 0 auto;
	background-color: #FFFFFF;
	}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#ref-second-des{
	height: 2400px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
	background-color: #FFFFFF;
}
}

@media (min-width: 768px ) and (max-width: 1024px) and (orientation: landscape)  {
	/*tablet size*/
	#ref-second-des{
	height: 2400px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
	background-color: #FFFFFF;
}
}

#ref-second-des h2{
	height: 100px;
	padding-top: 80px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	color: #3B77A0;
	text-transform: uppercase;
}

#ref-second-des embed{
	width: 90%;
	height: 800px;
	padding-top: 80px;
}

#ref-second-des img{
	width: 1000px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
	/*Laptop size*/
	#ref-second-des img{
	width: 850px;
}
}

@media (min-width: 768px ) and (max-width: 1024px){
	/*tablet size*/
	#ref-second-des img{
	width: 630px;
}
}
	
	
	
	
/*reference*/

.proNserv {
	background-color: #BCF1FF;
	height: 3000px;
}
.product_title {
	width: 400px;
	height: 90px;
	padding: 20px 10px;
	font-size: 1em;
	font-family: 'Raleway' , sans-serif;
	color: white;
	position: fixed;
}

/*footer*/

footer {
	height: 50px;
	width: 100%;
}

#copy{
	width: 100%;
	height: 50px;
	background-color: #2B2B2B;
	color: #585858;
	font-size: 15px;
	text-align: center;
	padding: 20px;
	transition:.9s;
}

#copy:hover{
	color: #36A1BA;
	transition:.9s;
}

































