@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {

  color: #444444;
}

a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1{
  
  font-family: 'Poppins', sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}
p{
	font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #157ae9;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991px) {
  .back-to-top {
    bottom: 70px;
}

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  background-color: #111111;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #111111;
  box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.17);
-webkit-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 0px 1px 15px 0px rgba(0,0,0,0.17);	
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 6px;
  padding-bottom: 6px;	
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 75px;
}
.header-top {
    text-align: right;
    position: absolute;
    right: 0;
    display: flex;
    top: -40px;
}
.header-top a{
	font-size: 17px!important;
}
.header-top .bx{
	font-size: 26px;
    margin-right: 7px;
    color: #ed1b24;
}
.header-top .bi {
    font-size: 22px;
    margin-right: 7px;
    color: #ed1b24;
}
#header .navbar {
    margin-bottom: -33px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  margin-top: 12px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 45px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Open Sans", sans-serif;
}
.menu-list li a{
	text-transform: uppercase;
}

.menu-list li a .bi{
	font-size: 11px;
	margin-left: 5px;
}

.navbar a i,
.navbar a:focus i {
  
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ed1b24;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffffff;
    background: #0093d5;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ff1910;
  font-size: 36px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #ed1b24;
}
#header .logo img {
    max-height: 125px;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-block;
	  transition: 0.5s;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 80%);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 28px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 78px;
  right: 15px;
  bottom: auto;
  left: 15px;
  padding: 0;
  border-radius: 10px;
  background-color: #ffffff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 16px 30px;
  font-size: 15px;
  color: #383838;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffffff;
    background: #ed1b24;
}
.navbar li.active .nav-link{
  color: #ed1b24;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

@media (max-width: 991px) {
  .navbar li.active .nav-link{
  color: #ffffff;
}
}



.whatsap {
    position: fixed;
    bottom: 58px;
    right: 0px;
    z-index: 99;
}
.whatsap-in {
    position: relative;
    width: 254px;
    height: 60px;
    border-radius: 15px;
    background: #1294d2;
    padding: 5px;
	box-shadow: -1px -1px 23px -3px rgba(0,0,0,0.27);
-webkit-box-shadow: -1px -1px 23px -3px rgba(0,0,0,0.27);
-moz-box-shadow: -1px -1px 23px -3px rgba(0,0,0,0.27);
}

.whatsap-in:after {
  content: '';
    position: absolute;
    bottom: 0;
    left: 87%;
    width: 0;
    height: 0;
    border: 23px solid transparent;
    border-top-color: #1294d2;
    border-bottom: 0;
    margin-left: -17.5px;
    margin-bottom: -10px;	
}


.whatsap a {
    font-size: 12px;
    color: #ffffff;
    font-weight: normal;
    display: block;
    margin-top: 6px;
}
.whatsap a img {
    margin-left: 5px;
    width: 50px;
    margin-right: 10px;
    border-radius: 100px;
    float: left;
    margin-right: 17px;
	background: white;
    padding: 5px;
}


.tick-btn {
  display: none;
  visibility: hidden;
}
.quick-head {
    display: flex;
    padding: 0.5em;
    text-align: center;
    color: #007cc2;
    vertical-align: middle;
    align-items: center;
    margin-bottom: 0;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9;
    height: 30px;
}
.quick-head::before {
    font-family: Consolas, monaco, monospace;
    font-weight: normal;
    font-size: 21px;
    content: "+";
    vertical-align: middle;
    display: inline-block;
    width: 40px;
    height: 100%;
    background: #00adef;
    color: #FFFFFF;
    position: absolute;
    right: 0;
    top: 0;
}
#expand {
  height: 0px;
  overflow: hidden;
  transition: height 0.5s;
  color: #FFF;
}
.quick-enquiry {
    border-radius: 20px;
    transition: height 0.5s;
	padding: 15px;
}
.quick-enquiry .form-group label{
	color: red;
	color: #1c1c1c;
}
.quick-enquiry .btn-primary {
    color: #fff;
    background-color: #007cc2;
    border-color: #007cc2;
	padding: 7px 12px;
}
.quick-enquiry .btn-primary:hover {
    color: #fff;
    background-color: #fdb813;
    border-color: #fdb813;
    padding: 7px 12px;
}

#toggle:checked ~ #expand {
  height: 120px;
}
#toggle:checked ~ label::before {
  content: "x";
	background: #1294d2;
    color: #ffffff;
	
}

.social-links{
	color: #ef4723;
	font-size: 22px;
	margin-right: 20px;	
}
.social-links:hover{
	color: #d50000!important;	
}

@media only screen and (max-width: 991px){
main {
    bottom: 50px;
	right: 15px;
}
.whatsap {
    bottom: 85px;
}
    .whatsap-in {
        width: 277px;
        height: 70px;
        padding: 10px;
    }

}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	overflow: hidden;
    width: 100%;
    height: 65vh;
    background: #37517e;
    background-image: url(../img/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	margin-top: 40px;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 45px;
    font-weight: 900;
    line-height: 65px;
    color: #fff;
    text-transform: uppercase;
	font-family: 'Lato', sans-serif;
}
#hero h1 span {
    font-size: 50px;
    border-bottom: 3px white solid;
    padding-bottom: 15px;
	display: inline-block;
}

#hero h2 {
  color: white;
  margin-bottom: 50px;
  font-size: 38px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
#hero h2 span{
  font-size: 85px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.hero-img{
   margin-top: 100px;
}
.txt_sldr{
	margin-top: 160px;
}
.txt_sldr .call {
    padding: 10px 25px;
    background: #ff1910;
    text-align: center;
    display: inline-flex;
    color: #ffffff;
	transition: 0.5s;
}
.txt_sldr .call i {
    font-size: 15px;
    margin-right: 5px;
}


.txt_sldr .get-a-quote {
    padding: 10px 25px;
    background: #bab8b9;
    text-align: center;
    display: inline-flex;
    color: #ffffff;
	transition: 0.5s;
}
.txt_sldr .get-a-quote i {
    font-size: 15px;
    margin-right: 5px;
}

.txt_sldr .call:hover {
    background: #fac62b;
}
.txt_sldr .get-a-quote:hover {
    background: #fac62b;
}

@media (max-width: 991px) {
  #hero {
    height: 63vh;
    text-align: center;
  }

  #hero .animated {
   
  }
#hero .container {
    padding-top: 0;
}	
.txt_sldr {
    margin-top: 100px;
}
	
	.hero-img {
    margin-top: 30px;
}
  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
  .header-top {
    display: none;
}
	#header .logo img {
    max-height: 50px;
}
#header .navbar {
    margin-bottom: -5px;
}
.hero-img {

}
	#hero h1 span {
    font-size: 35px;
    padding-bottom: 10px;
}
	#hero h2 span {
    font-size: 45px;
}
#hero {
    margin-top: 55px;
	height: 50vh;
}	
	
	
}

@media (max-width: 768px) {
#hero h1 {
    font-size: 24px;
    line-height: 33px;
}

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  #hero .hero-img img {
    width: 70%;
  }
	
#hero .pt-4 {
    padding-top: 0!important;
  }
#hero .pt-4 {
    margin-top: -15px!important;
  }	
	
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 100%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


.get-a-quote-out{
	background: #FFFFFF;
}
.get-a-quote-out .glightbox-clean .gbtn{
	display: none!important;
}
.get-a-quote-body .glightbox-clean .gnext {
        display: none!important;
    }
.get-a-quote-out img{
	width: 140px;
}

.get-a-quote-out .section-title {
    padding-bottom: 20px;
    padding-top: 20px;
}
.get-a-quote-out .section-title h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #393939;
}
.get-a-quote-out .btn {
    background: red;
    border: 0;
    border-radius: 0;
    padding: 10px 25px;
	margin-top: 15px;
}

@media (min-width: 769px) {
    .goverlay {
        background: rgb(0 0 0 / 70%);
    }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

#main{
	overflow: hidden;
}
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  padding-bottom: 20px;
  padding-top: 50px;	
}

.section-title h2 {
  font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #393939;
}


.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about{
	overflow: hidden;
	padding-top: 80px;
	position: relative;
}
.about:after {
    content: '';
    position: absolute;
    background: url(../img/top-line.png);
    background-repeat: no-repeat;
    top: -71px;
    left: -100px;
    width: 484px;
    height: 500px;
    opacity: 0.5;
    z-index: -1;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  background-color: #ed1b24;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 32px;
  border-radius: 0;
  transition: 0.3s;
  line-height: 1;
  color: #FFFFFF;
  animation-delay: 0.8s;
  margin-top: 6px;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}



.counter-out{
	overflow: hidden;
	background: #ffffff;
	padding-top: 100px;
    padding-bottom: 251px;
	position: relative;
	overflow: hidden;
	background-image: url("../img/map.png");
	
}
.counter-out:before{
	background: url("../images/dot-bg-01.png");
	content: '';
	position: absolute;
	left: 0;
	top: -220px;
	width: 550px;
	height: 450px;
}
.counter-out:after{
	background: url("../images/dot-bg-01.png");
	content: '';
	position: absolute;
	right: 0;
	bottom: -190px;
	width: 550px;
	height: 450px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  color: #fff;
  border-radius: 50px;
  position: relative;
}

.box::before {
  content: "";
  position: absolute;
  top: 160%;
  width: 30%;
  height: 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  filter: blur(1px);
}

.box::after {
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  top: calc(100% - 25px);
  transform: rotate(45deg);
}

.counter-container {
  display: flex;
  align-items: center;
  font-size: 60px;
  position: relative;
	
}
.count-text {
  position: absolute;
    text-align: center;
    bottom: -60px;
}
.count-text h4 {
    color: #505050;
    border-top: 1px #ed1b24 solid;
    padding-top: 20px;
    text-align: left;
}

.counter-container i {
  margin: 10px;
  font-size: 40px;
}

.counter-container .counter {
  width:auto;
  font-weight: 900;
	color: #242424;
}
.count-plus {
	color: white;
	font-weight: bold;
	font-size: 40px;
	color: #242424;
}
@media (max-width: 768px) {
.about {
    padding-top: 85px;
	padding-bottom: 50px;
}
section {
    padding: 0;
}
	.counter-out {
    padding-top: 10px;
    padding-bottom: 120px;

}
.counter-container {
    text-align: center;
	height: 170px;
}	
.offset-1 {
    margin-left: 8.33333333%;
    margin-left: 0;
}
	
.count-text {
    bottom: -20px;
    margin-left: auto;
    margin-right: auto;
}	
	
	
	
	
}


/*__________________*/
.inner-section-five{
	padding-top: 50px;
	padding-bottom: 50px;
}
.inner-section-five h1{
	font-size: 35px;
    color: #000000;
    padding-bottom: 10px;
    font-weight: bold;
}
.inner-section-five p {
    font-size: 16px;
    color: #5a5a5a;
    font-weight: normal;
    line-height: 29px;
}
.row-margin{
	margin-bottom: 40px;
}
.left-content{
	padding-top: 30px;
	line-height: 27px;
}
.right-img img{
	margin-left: 50px;
	border-radius: 0px;
}
.right-img{
	margin-bottom: 40px;
	position: relative;
}
.right-img-small img{
	border: 6px #fac62b solid;
}
.left-img img{
	margin-right: 50px;
	border-radius: 0px;
	height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.right-content{
	padding-top: 50px;
	line-height: 27px;
	padding-left: 50px;
}
.right-img-small {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 274px;
}
.inner-page-call{
	background: #0f9fda;
    padding: 8px 25px;
    display: inline-block;
    border-radius: 6px;
    color: white;
	transition: all 0.5s;
	margin-bottom: 20px;
}
.inner-page-call img{
	width: 15px;
	margin-right: 5px;
    margin-bottom: 4px;
}
.inner-page-call:hover{
	background: #fac62b;
	color: #FFFFFF;
}
.inner-page-mail{
	background: #ee2e2a;
    padding: 8px 25px;
    display: inline-block;
    border-radius: 6px;
    color: white;
	transition: all 0.5s;
	margin-bottom: 20px;
}
.inner-page-mail img{
	width: 15px;
	margin-right: 5px;
    margin-bottom: 3px;
}
.inner-page-mail:hover{
	background: #fac62b;
	color: #FFFFFF;
}



@media (max-width: 768px) {
.right-content {
    padding-left: 15px; 
}
.left-img img {
    margin-right: 0;
}	
.left-content {
    padding-top: 0;
}	
.right-img img {
    margin-left: 0;
}	
.fnt-size{
	font-size: 22px!important;
}
.mob-display-none{
	display: none;
}
.right-img-small {
    position: absolute;
    right: 12px;
    bottom: -100px;
    width: 190px;
}	
	
}

/*--------------------------------------------------------------
# about test
--------------------------------------------------------------*/

.about-test{
	padding-top: 100px;
	padding-bottom: 100px;
	background-image: url("../img/about-test.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.about-test-content{
	background: rgba(0, 0, 0, 0.5);
	padding: 30px;
}
.btn-learn-more {
    font-family: "Poppins", sans-serif;
    background-color: #6fbd00;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 32px;
    border-radius: 0;
    transition: 0.3s;
    line-height: 1;
    color: #FFFFFF;
    animation-delay: 0.8s;
    margin-top: 6px;
}
.about-test-content h2 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 40px;
}
.about-test-content p {
    color: white;
}
.about-test-img{
	margin-top: -200px;
	position: relative;
	
}
.about-test-img img{
	position: absolute
		-webkit-box-shadow: -15px 15px 0px 0px rgba(63,116,186,1);
-moz-box-shadow: -15px 15px 0px 0px rgba(63,116,186,1);
box-shadow: -15px 15px 0px 0px rgba(63,116,186,1);
}

@media (max-width: 992px) {
.about-test-img {
    margin-top: 0;
    position: relative;
    padding-top: 50px;
}
.about-test {
    background-attachment: inherit;
}	
	
}


/*--------------------------------------------------------------
# facilities
--------------------------------------------------------------*/

.facilities-out {
    padding-bottom: 70px;
	overflow: hidden;
	background: url("../img/service-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.facilities-out .section-title h2 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
	text-align: center;
}
.facilities-out .section-title p {
    color: #FFFFFF;
	text-align: center;
}

.facilities-left {
    position: relative;
    padding-bottom: 30px;
}
.facilities-left:before {
    position: absolute;
    content: '';
    background-image: url(../img/facilities-bg.jpg);
    left: -40%;
    right: -40%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.facilities-right{
	
}
.facilities-right-in {
    padding: 30px;
    width: 100%;
    padding-left: 60px;
    margin-bottom: 50px;
}
.facilities-content{
	padding-top: 120px;
    margin-bottom: 120px;
    padding-left: 125px;
}
.facilities-content h2 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 40px;
}
.facilities-content p {
    color: white;
    font-size: 17px;
    line-height: 30px;
}
.slider_facilities li{
	background-color: transparent;
}

.facilities-slider-in{
	padding: 50px 30px;
	text-align: center;
	display: block;
	min-height: 375px;
	transition: 0.3s;
}


.facilities-slider-in h2 {
    color: #FFFFFF;
    margin-top: 15px;
    font-size: 27px;
    margin-bottom: 10px;
}
.facilities-slider-in p{
	color: #FFFFFF;
}

.facilities-icon{
	width: 90px;
    height: 90px;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
	background: #ad0000;
}

.slide-01{
	position: relative;
	left: 0;
    right: 0;
    background: url(../img/slide-01.png);
    background-position: center;
    background-size: cover;
    top: 0;
    bottom: 0;
	background: #ef2e2a;
}
.slide-02{
	position: relative;
	left: 0;
    right: 0;
    background: url(../img/slide-02.png);
    background-position: center;
    background-size: cover;
    top: 0;
    bottom: 0;
}
.slide-03{
	position: relative;
	left: 0;
    right: 0;
    background: url(../img/slide-03.png);
    background-position: center;
    background-size: cover;
    top: 0;
    bottom: 0;
}
.slide-04{
	position: relative;
	left: 0;
    right: 0;
    background: url(../img/slide-04.png);
    background-position: center;
    background-size: cover;
    top: 0;
    bottom: 0;
}
.slide-05{
	position: relative;
	left: 0;
    right: 0;
    background: url(../img/slide-05.png);
    background-position: center;
    background-size: cover;
    top: 0;
    bottom: 0;
}
.slide-06{
	position: relative;
	left: 0;
    right: 0;
    background: url(../img/slide-06.png);
    background-position: center;
    background-size: cover;
    top: 0;
    bottom: 0;
}

.facilities-pop {
    position: absolute;
    top: 0;
    background: #147ae9;
    left: 0;
    right: 100%;
    bottom: 0;
    padding-top: 40px;
    transition: 0.5s;
    opacity: 0;
}
.facilities-slider-in:hover .facilities-pop{
	right: 0;
	opacity: 1;
}

.more-btn {
    width: 45px;
    height: 45px;
    margin: auto;
    background: #000000;
    border-radius: 50px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}
.more-btn img{
	width: 10px;
	padding-top: 12px;
}
 .facilities-slider-in:hover{
	opacity: 1;
} 
.bx-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0;
	max-width: 100%!important;
}


@media (max-width: 1024px) {
   .facilities-content {
    padding-top: 0;
    margin-bottom: 120px;
    padding-left: 0;
}
.facilities-right-in {
    padding: 30px;
    width: 100%;
    margin-top: 0px;
    padding-left: 30px;
    margin-bottom: 0;
}
.facilities-pop {
    position: absolute;
    top: 0;
    background: #147ae9;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 40px;
    transition: 0.5s;
    opacity: 1;
}	
	
	
	
}

@media (max-width: 992px) {

}


@media (max-width: 575px) {

}



/*--------------------------------------------------------------
# specialized
--------------------------------------------------------------*/
.specialized-out{
	padding-top: 40px;
	padding-bottom: 20px;
}
.specialized-out .section-title h2 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #393939;
	text-align: center;
}
.specialized-out .section-title p {
	text-align: center;
	margin-bottom: 25px;
}

.specialized-in {
    text-align: center;
    padding: 50px;
    border: 1px #c7c7c7 solid;
	background: #bab8b9;
}
.specialized-in h3{
    margin-top: 30px;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: bold;
}
.specialized-in p{
    font-size: 17px;
    margin-top: 15px;
}


@media (max-width: 992px) {


.five-star-in {
    margin-bottom: 20px;
}
	
	
}





/*--------------------------------------------------------------
# Five-star
--------------------------------------------------------------*/
.five-star-out{
	padding-top: 40px;
	padding-bottom: 100px;
}
.five-star-out .section-title h2 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #393939;
	text-align: center;
}

.five-star-in {
    text-align: center;
    padding: 50px;
    border: 1px #c7c7c7 solid;
}
.five-star-in h3{
    margin-top: 30px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
}
.five-star-in p{
    font-size: 15px;
    margin-top: 15px;
}


@media (max-width: 992px) {


.five-star-in {
    margin-bottom: 20px;
}
	
	
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list h2{
  font-size: 35px;
    color: #000000;
    padding-bottom: 20px;
    font-weight: bold;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .faq .faq-list {
    padding-top: 50px;
}
}


/*--------------------------------------------------------------
# icon-btm
--------------------------------------------------------------*/
.mobile-float{
	position:fixed;
	width:100%;
	left:0;
	right:0;
	bottom: -1px;
	background-color: #06183a;
	z-index: 11;
	display: none;
	padding: 13px;
}
.column {
  float: left;
  width: 33.33%;
  text-align:center;
}
.column p {
  margin-bottom: 5px;
  color: white;
  font-size: 13px;
}
.column p a {
  color: black;
}

.for-mob{
	display:none;
}
.for-desktop{
	display:inherit;
}

@media (max-width: 992px) {
.mobile-float{
	display: inherit;
}

.mobile-float .column img {
    padding-top: 8px;
    padding-bottom: 4px;
    width: 25px;
}
	
}

/*--------------------------------------------------------------
# testimonials
--------------------------------------------------------------*/
.testimonial-area{
	overflow: hidden;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	background-image: url(../img/map.png);
}
.testimonial-area:after {
    content: '';
    position: absolute;
    background: url(../img/top-line.png);
    background-repeat: no-repeat;
    top: -71px;
    left: -100px;
    width: 484px;
    height: 500px;
    opacity: 0.5;
    z-index: -1;
}
.testimonial-area h2 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #393939;
}
.testimonials-in .bx-wrapper .quote {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 30px;
}
.testimonials-in .bx-wrapper li p {
    font-size: 18px;
	line-height: 34px;
}
.clients{
	display: flex;
}
.clients img{
	margin-left: 0;
    margin-right: 30px;
    border-radius: 100px;
    width: 64px;
}
.clients p{
	margin-top: 15px;
	font-size: 16px!important;
}

.btn-view-all-client {
    font-family: "Poppins", sans-serif;
    background-color: #ed1b24;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 32px;
    border-radius: 0;
    transition: 0.3s;
    line-height: 1;
    color: #FFFFFF;
    animation-delay: 0.8s;
    margin-top: 80px;
}
.btn-view-all-client:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
}




@media (max-width: 992px) {

}

@media (max-width: 767px) {

}

@media (max-width: 420px) {

}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
	padding-bottom: 160px;
	overflow: hidden;
}
.contact .info {
  padding: 30px;
  background: #ed1b24;
  width: 100%;
  margin-top: 150px;
	padding-left: 60px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: -80px;
}
.contact h2 {
  font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
	margin-bottom: 20px;
	margin-top: 40px;
}

.contact .info i {
  font-size: 20px;
  color: #ed1b24;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}
.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
    line-height: 32px;
}
.contact .info h2 {
  font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
	margin-bottom: 20px;
	margin-top: 40px;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}
.contact-left{
	position: relative;
	padding-bottom: 30px;
}
.contact-left:before {
    position: absolute;
    content: '';
    background: #181818;
    background-image: url(../img/contact-new-bg.png);
    left: -24%;
    right: -24%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.contact .php-email-form {
  width: 100%;
  padding: 30px;
}
.contact-right{
	
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  color: white;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #ed1b24;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 0;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

.form-control {
    border: 0;
    border-bottom: 1px #767676 solid;
    border-radius: 0;
	background-color: transparent;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .contact .info {
    margin-top: -50px;
    padding-left: 15px;
    margin-bottom: 0;
}
.contact-left {
    position: relative;
    padding-bottom: 70px;
}
.contact {
    padding-bottom: 60px;
}	
.contact .info p {
    font-size: 16px;
}	
	
}
/*--------------------------------------------------------------
# inner banner
--------------------------------------------------------------*/

.inner-banner{
	height: 300px;
	margin-top: 50px;
}
.fill-inner {
    width: 100%;
    height: 240px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 992px) {
  .inner-banner {
	height: auto;  
    margin-top: 60px;
}
.fill-inner {
    width: 100%;
    height: 175px;
}	
	
	
}
	
	
	
	
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.portfolio{
	padding-top: 50px;
	padding-bottom: 100px;
}
.portfolio .section-title{
	padding-bottom: 30px;
}
.portfolio .view-more {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
	padding-left: 20px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #2D2D2D;
    line-height: 30px;
    text-transform: uppercase;
	border: 1px #000000 solid;
}
.portfolio .view-more span {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background: #000000;
    margin-left: 20px;
	animation-delay: 0.8s;
	transition: 0.5s;
	color: #FFFCFC;
}
.portfolio .view-more:hover span {
    background: #ef4723;
    color: #ffffff;
	animation-delay: 0.8s;
	transition: 0.5s;
}
.portfolio .view-more i {
    margin-left: 10px;
	margin-right: 10px;
}
.portfolio .view-more:hover {
	border: 1px #ef4723 solid;
}
.portfolio-view-more{
	text-align: center;
}


.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 15px 12px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #05bb01;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(85, 98, 112, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(85, 98, 112, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 60px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: white;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


@media (max-width: 991.98px) {
    .portfolio {
    padding-top: 50px;
    padding-bottom: 20px;
}
}


/*--------------------------------------------------------------
# pricing
--------------------------------------------------------------*/
.ftco-section{
	padding-top: 50px;
}
.heading-section h2{
	font-size: 35px;
    color: #000000;
    padding-bottom: 10px;
    font-weight: bold;
}



.block-7 {
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 991.98px) {
    .block-7 {
        margin-top: 30px;
    }
}
.block-7 .img {
    height: 250px;
	background-position: center;
    background-size: cover;
}
.block-7 .heading-2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.block-7 .price {
    margin: 0;
    padding: 0;
    display: block;
}
.block-7 .price sup {
    font-size: 24px;
    top: -15px;
    color: #b3b3b3;
}
.block-7 .price .number {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
}
.block-7 .excerpt {
    margin-bottom: 0px;
    color: #00bd56;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.block-7 .label2 {
    text-transform: uppercase;
}
.block-7 .pricing-text,
.block-7 .pricing-text li {
    padding: 0;
    margin: 0;
}
.block-7 .pricing-text li {
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000000;
}
.block-7 .pricing-text li:nth-child(odd) {
    background: rgba(0, 0, 0, 0.05);
}
.block-7 .pricing-text li span.fa {
    color: #207dff;
}
.block-7 .btn-primary {
    color: #fff;
    text-transform: uppercase;
    font-style: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 50%;
    margin: 0 auto;
}
.block-7 .btn-primary:hover,
.block-7 .btn-primary:focus {
    background: #00bd56 !important;
    color: #fff;
}
.block-7:hover,
.block-7:focus {
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
}


/*--------------------------------------------------------------
# facilities
--------------------------------------------------------------*/
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	overflow: hidden;
  font-size: 14px;
  background: #262626;	
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #262626;
  border-bottom: 1px #3a3a3a solid;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 0;
    color: #cbcbcb;
}
#footer .footer-top .footer-contact p i {
    padding-right: 2px;
    color: #ed1b24;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-hours p {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 10px;
    color: #cbcbcb;
    border-bottom: 1px #525252 solid;
}
#footer .footer-top .footer-hours p span {
    float: right;
}

#footer .footer-top h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding-left: 40px;	
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ed1b24;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #D1D1D1;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
	font-size: 17px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ed1b24;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  
}

#footer .copyright {
  float: left;
  font-family: 'Poppins', sans-serif;
}

#footer .credits {
  float: right;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

#footer .credits a {
  transition: 0.3s;
  color: #ff0000;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
.footer-hours{
	margin-bottom: 30px;
	}
#footer .footer-top .footer-links {
  margin-bottom: 50px;
  padding-left: 15px;	
}	
	
	
	
	
	
	
}






