@import url('https://fonts.googleapis.com/css?family=Lobster');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:sans-serif;
}
body,html{
	width: 100%;
	height: 100%;
}
#myBtn {
	display: none; 
	position: fixed; 
	bottom: 20px; 
	right: 30px; 
	z-index: 99; 
	border: none; 
	outline: 1px solid black; 
	background: linear-gradient(180deg, #011B2A 0%, #004167 60%);
	color: white; 
	cursor: pointer;
	padding: 5px 10px; 
	border-radius: 10px; 
	font-size: 20px; 
  }
  #myBtn:hover {
	background-color: #555; 
  }
nav{
	width: 100%;
	height: 100px;
	background:linear-gradient(180deg, #011B2A 0%, #004167 60%);
	position: relative;
    z-index: 1;
	border-bottom: 1px solid white;
}
label.logo{
	font-size: 30px;
	color: rgb(255, 254, 254);
	text-transform:uppercase ;
	margin: 0 60px;
	line-height: 80px;
}
nav ul{
	float: right;
	list-style-type: none;
}
nav ul li{
	display: inline-block;
	line-height: 80px;
}
nav ul li a{
	text-decoration: none;
	color: rgb(255, 252, 252);
	font-size: 20px;
	text-transform: capitalize;
	padding: 8px 20px;
}
nav ul li a.active,a:hover{
	border-bottom: 2px solid rgb(11, 167, 245);
	
}
#checkbtn{
	float: right;
	line-height: 80px;
	margin-right: 20px;
	font-size: 30px;
	color: white;
	display: none;
}
#check{
	display: none;
}
#check:checked ~ ul{
	left: 0;
}

@media(max-width: 895px){
    label.logo{
        margin:0px 40px;
	}
	#checkbtn{
        display: block;
	}
	nav ul{
        width: 100%;
		height: 40vh;
		background: linear-gradient(180deg, #011B2A 0%, #004167 60%);
		position: absolute;
        z-index: 1;
		top:70px;
		left: -100%;
		transition: .5s;
	}
	nav ul li{
        display: block;
		text-align: center;
		line-height:50px;
		margin:15px;
	}
}
@media(max-width: 500px){
    label.logo{
        font-size:18px;
        margin:0px 30px;
        line-height: 65px;
    }
    nav {
        width: 100%;
        height: 65px;
    }
    #checkbtn {
        float: right;
        line-height: 65px;
    }
    nav ul{
        top: 64px;
    }
}
/* button for common */
.commbutton{
	display: flex;
	justify-content: center;
	margin-top: 1%;
	margin-bottom: 1%;
}
.rmx{
	text-align: center;
	padding: 5px 10px;
	background-color:  rgb(11, 167, 245);
	font-size: 14px;
	border-radius: 10px;
}
.rmx a{
	color: white;
}
.rmx:hover{
	background-color: black;
}

/* footer */
footer.site-footer.fixed-footer {
	position: relative;
  bottom: 0;
  width: 100%;
  }
  .bottom-footer{
	background: #202020;
  }
  .rowfoot{
	  display: flex;
	  justify-content: center;	  
	}
.col-md-4-col-sm-6-col-xs-12{
	width: 30%;
}

  footer.site-footer .main-footer {
	padding-top: 95px;
	padding-bottom: 60px;
    background: linear-gradient(180deg, #011B2A 0%, #004167 60%);

	
  }
  footer.site-footer .footer-widget h3, footer.site-footer .footer-widget p, footer.site-footer .footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  footer.site-footer .footer-widget .title {
	margin-bottom: 25px;
  }
  footer.site-footer .footer-widget .title h3 {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	font-family: 'Poppins';
  }
  footer.site-footer .footer-widget .title h3:after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  width: 38px;
  height: 2px;
  background: rgb(11, 167, 245);
  margin-left: 15px;
  margin-top: 12px;
  }
  footer.site-footer .footer-widget p {
	font-size: 15px;
	color:#f2f2f2;
	line-height: 25px;
  }
  footer.site-footer .footer-widget ul.links-list li {
	display: block;
	line-height: 1em;
  }
  footer.site-footer .footer-widget ul.links-list li + li {
	margin-top: 10px;
  }
  footer.site-footer .footer-widget ul.links-list li a {
	color: #f2f2f2;
	font-size: 15px;
	display: inline-block;
	line-height: 1em;
	font-weight: 400;
	border-bottom: 2px solid transparent;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
  }
  footer.site-footer .footer-widget ul.links-list li a:hover {
	border-color: #D0D0D0;
  }
  footer.site-footer .footer-widget.about-widget {
	position: relative;
  
  }
  footer.site-footer .footer-widget.about-widget h3 {
	font-size: 18px;
	font-weight: 600;
	font-family: 'Poppins';
	margin-top: 45px;
	margin-bottom: 20px;
	color: #FFF;
  }
  footer.site-footer .footer-widget.subscribe-widget {
	padding: 35px 40px;
	background: #f6f6f6;
  }
  footer.site-footer .footer-widget.subscribe-widget h3 {
	font-size: 18px;
	font-weight: 600;
	color: rgb(11, 167, 245);
	font-family: 'Poppins';
	line-height: 1em;
	margin-bottom: 15px;
  }
  footer.site-footer .footer-widget.subscribe-widget p {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	color: #888888;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form {
	position: relative;
	margin-top: 30px;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input, footer.site-footer .footer-widget.subscribe-widget form.subscribe-form button {
	border: none;
	outline: none;
	display: block;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input {
	width: 100%;
	height: 51px;
	border: 1px solid #e6e5e5;
	padding-left: 20px;
	font-size: 14px;
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input::-moz-placeholder {
	/* Firefox 19+ */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input:-ms-input-placeholder {
	/* IE 10+ */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form input:-moz-placeholder {
	/* Firefox 18- */
	color: #B2AFAF;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form button {
	position: absolute;
	top: 0;
	right: 0;
	width: 98px;
	height: 51px;
	background: rgb(11, 167, 245);
	color: #fff;
	font-size: 14px;
  }
  footer.site-footer .footer-widget.subscribe-widget form.subscribe-form button:before {
	background: #252525;
  }
  footer.site-footer .bottom-footer .container {
	border-top: 1px solid #e1e1e1;
	padding-top: 28.5px;
	padding-bottom: 28.5px;
  }
  footer.site-footer .bottom-footer p {
	margin: 0;
	color: #f2f2f2;
	font-size: 15px;
  }
  .right-text a{
	color: rgb(11, 167, 245);
	text-decoration: none;
  }
  .map-widget iframe{
	width:100%;
	height:180px;
  }
  .list-style-three li {
	  position: relative;
	  color: #dbdbdb;
	  font-size: 16px;
	  padding-left:62px;
	  font-weight: 400;
	  margin-bottom: 30px;
  }
  .list-style-three li .icon {
	  position: absolute;
	  left: 0px;
	  top: 0px;
	  width: 42px;
	  height: 42px;
	  color: rgb(11, 167, 245);
	  font-size: 20px;
	  line-height: 40px;
	  font-weight: 300;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid rgb(11, 167, 245);
  }
  .list-style-three li strong {
	  position: relative;
	  color: #FFF;
	  font-size: 17px;
	  font-weight: 700;
	  display: block;
  }
  .custom{
	text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  @media(max-width:905px){
	.rowfoot {
		display: grid;
		justify-content: center;
	}
	.col-md-4-col-sm-6-col-xs-12 {
		width: 100%;
	}
  }
  @media(max-width:550px){
	.container {
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
  }
