@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
--------------------------------------------------------------*/
.whatsap {
    position: fixed;
    bottom: 65px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 130px;
    overflow: hidden;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #003fad;
  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;
}
.whatsap {
    bottom: 120px;
    right: 10px;
    width: 45px;
    height: 45px;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  margin-top: 25px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #0f0e13;
  margin-top: 0;
  padding-top: 5px;
  padding-bottom: 10px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 75px;
}
.header-scrolled .logo img{
	width: 70px;
}
.header-top-outer{
    position: relative;
}
.header-top {
    text-align: right;
    position: absolute;
    right: 0;
    display: flex;
    top: 0;
    margin-right: 12px;
}
.header-top a{
	font-size: 16px!important;
	color: white;
    font-weight: 600;
}
.header-top .bx{
	font-size: 20px;
    margin-right: 7px;
    color: #0096d7;
}
#header .navbar {
  
}

.working-top {
    color: white;
    text-align: left;
    padding-left: 30px;
    margin-bottom: 0;
    margin-right: 20px;
    font-weight: 600;
}
.working-top i{
    margin-left: -30px;
    margin-right: 15px;
    color: #0096d7;
}
.header-scrolled .working-top{
    display: none; 
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.5s;
  font-family: 'Poppins', sans-serif;
}

.navbar a i,
.navbar a:focus i {
  
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff0000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 15px 20px;
    margin-left: 30px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: #fe0c01;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #0096d7;
}

.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: #003fad;
}

.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: #009edc;
  font-size: 36px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #4186ff;
}
#header .logo img {
    max-height: 140px;
    margin-bottom: -1px;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-block;
	  transition: 0.5s;
  }

  .navbar ul {
    display: none;
  }
.glightbox-container .ginner-container {
    height: 100vh !important;
}
	
	
}

.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: #009edc;
}
.navbar li.active .nav-link{
  color: #ff0000;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
    color: #ffffff;
    padding: 10px 20px;
}

.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;
}
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.get-a-quote-out .form-control {
    padding-left: 0;
}
.get-a-quote-out .form-control {
    border-bottom: 1px #e3e3e3 solid;
}


.file-field {
    position: relative;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
	background: #003fad;
	border-radius: 0;
}
.file-field span {
    cursor: pointer;
	font-size: 14px;
    text-transform: uppercase;
}
.btn.btn-sm {
    padding: 0.5rem 1.6rem;
    font-size: .64rem;
}
.file-field .btn {
    float: left;
}
.file-field input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
}
.file-field .file-path-wrapper {
    height: 2.5rem;
    padding-left: 10px;
    overflow: hidden;
}
.file-field input.file-path {
    width: 100%;
    height: 36px;
}
.file-field input.file-path {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
    background-color: #0b51c5 !important;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}
.send-btn{
	padding-left: 30px;
    padding-right: 30px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	overflow: hidden;
    width: 100%;
    height: 100vh;
    background: #37517e;
    background-image: url(../img/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#hero .container {
  
}

#hero h1 {
	position: relative;
    margin: 0 0 10px 0;
    font-size: 44px;
    font-weight: bold;
    line-height: 56px;
    color: #fff;
    text-transform: uppercase;
}

#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: 0;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #fe0c01;
	line-height: 30px;	
}

#hero .btn-get-started:hover {
  background: #0096d7;
}

#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{
	position: absolute;
    right: 50px;
    top: 375px;
}
.txt_sldr{
	margin-top: 0;
}

.hero-call{
	background: #0096d7;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 6px;
    color: white;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
}
.hero-call img{
	width: 15px;
	margin-right: 5px;
    margin-bottom: 4px;
	display: inline-block;
}
.hero-call:hover{
	background: #163d72;
	color: #FFFFFF;
}
.hero-mail{
	background: #e50000;
    padding: 12px 25px;
    display: inline-block;
    border-radius: 6px;
    color: white;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
}
.hero-mail img{
	width: 15px;
	margin-right: 5px;
    margin-bottom: 3px;
	display: inline-block;
}
.hero-mail:hover{
	background: #ab0000;
	color: #FFFFFF;
}

.header-scrolled .header-top{
    display: none;
}


@media (max-width: 991px) {
  #hero {
    height: 63vh;
    text-align: center;
  }

  #hero .animated {
   
  }
#hero .container {
    padding-top: 0;
}	
.txt_sldr {
    margin-top: 0px;
}
#hero h1:after {
    display: none;
}	
  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
  .header-top {
    top: -20px;
    margin-right: 17px;
}
.working-top{
    display: none;
}
.header-top a {
    font-size: 13px !important;
}
	#header .logo img {
    max-height: 75px;
}
#header .navbar {
    margin-bottom: -5px;
}
.hero-img {
    position: absolute;
    bottom: 0;
    top: 49%;
    left: auto;
    right: auto;
}
	#hero h1 span {
    font-size: 35px;
    padding-bottom: 10px;
}
	#hero h2 span {
    font-size: 45px;
}


}

@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
--------------------------------------------------------------*/
#main{
	overflow: hidden;
}
section {
  padding: 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 36px;
    font-weight: bold;
    position: relative;
    color: #393939;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# slide-logo
--------------------------------------------------------------*/
.we-repair-out{
	margin-top: 40px;
}

@media (max-width: 991px) {
	
.we-repair-out{
	margin-top: 120px;
}	
	
	
	
}


/*--------------------------------------------------------------
# Right
--------------------------------------------------------------*/
.fixedRit {
    position: fixed;
    top: 30%;
    transform: translate(0, -50%);
    z-index: 5;
    border-radius: 5px;
    overflow: hidden;
    right: 25px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0px 5px 70px 0px rgba(30,33,56,0.1);
}
.fixedRit ul {
    margin: 0px;
	list-style: none outside none;
    padding: 0;
	background: #0096d7;
}
.fixedRit ul li{
    border-bottom: 1px white solid;
}
.fixedRit ul li:last-child{
    border-bottom: 0;
}
.fixedRit ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    height: 80px;
    width: 80px;
    transition: all .3s;
}
.fixedRit ul a svg {
    display: block;
    margin: auto;
    width: 19px;
    fill: #ffffff;
    transition: all .3s;
}

.fixedRit ul a span {
    text-transform: uppercase;
    font-size: 8px;
    display: none;
    color: #ffffff;
    transition: all .3s;
	font-size: 11px;
    padding-top: 5px;
}
.fixedRit ul a:hover {
    background: #fe0c01;
}
.fixedRit ul a:hover svg{
    fill: white;
}
.fixedRit ul a:hover span{
    color: #FFFFFF;
}




@media only screen and (min-width: 768px){
	
.fixedRit ul a span {
    display: block;
}
.fixedRit ul a svg {
    margin-bottom: 7px;
    width: 22px;
}
	

}

@media only screen and (max-width: 1024px){
	
.fixedRit {
    right: 15px;
	display: none;
}	
.fixedRit ul a {
    padding: 5px;
    height: 50px;
    width: 45px;
}	
.fixedRit ul a {
    padding: 5px;
    height: 50px;
    width: 45px;
}
}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about{
	overflow: hidden;
	padding-top: 60px;
	position: relative;
	padding-bottom: 80px;
}
.about .view-more {
  font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 0;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #fe0c01;
    line-height: 30px;
	text-transform: uppercase;
}
.about .view-more i {
    margin-left: 10px;
}
.about .view-more:hover {
    background: #0096d7;
}


.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
    padding-left: 10px;
    position: relative;
    list-style-type: circle;
    margin-left: 20px;
}

.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 ul li::marker {
    color: #F50004;
}



.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  background-color: #003fad;
  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: #ff0000;
  color: #fff;
  text-decoration: none;
}
.about-right{
	padding-left: 60px;
	position: relative;
}
.about-right p{
	line-height: 30px;
    color: #7b7b7b;
    font-size: 16px;
}
.about-left{
	position: relative;
}


.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 #6fbd00 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: 45px;
	padding-bottom: 60px;
}
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;
}
.about-left:after {
    width: 250px;
    height: 250px;
    right: 60px;
    bottom: -150px;
    left: 60px;
}	
.about-right {
    padding-left: 15px;
    padding-top: 30px !important;
    position: relative;
}	
	
	
	
	
}





/*__________________*/
.inner-header{
	background: #000000;
    margin-top: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

#inner-banner{
    overflow: hidden;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#inner-banner h1 {
    position: relative;
    margin: 0 0 10px 0;
    font-size: 37px;
    font-weight: bold;
    line-height: 56px;
    color: #fff;
    text-transform: uppercase;
    padding-left: 20px;
	text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.52);
}
.inner-banner-01{
	background: url(../img/inner-banner-01.jpg);
}
.inner-banner-02{
	background: url(../img/inner-banner-02.jpg);
}
.inner-banner-03{
	background: url(../img/inner-banner-03.jpg);
}
.inner-banner-04{
	background: url(../img/inner-banner-04.jpg);
}

.inner-sec-01:after{
	background: url("../img/inner-sec-small-01.jpg");
}

.inner-page{
	padding-top: 80px;
}
.mobile-service{
	padding-right: 70px;
	padding-bottom: 50px;
}
.mobile-service h4{
	font-size: 22px;
    line-height: 38px;
    margin-top: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #FFFFFF;
}
.service-inner-out{
	padding-top: 50px;
    padding-bottom: 50px;	
	
}
.service-content {
    padding: 30px;
    padding-bottom: 30px;
}
.service-content ul {
    padding-left: 20px;
}
.service-content ul li::marker{
	color: #F50004;
}

.service-content .icon {
    width: 80px;
    height: 80px;
    background: red;
    vertical-align: middle;
    align-items: center;
    text-align: center;
    padding-top: 15px;
	padding-bottom: 15px;
    transition: 0.7s;
	margin-bottom: 20px;
}

.service-content .icon img {
    width: 40px;
}
.inner-title h2{
	font-size: 36px;
    font-weight: bold;
    position: relative;
    color: #393939;
	margin-bottom: 20px;
}
.inner-title p{
	margin-bottom: 40px;
}
.insurance-left{
	position: relative;
}
.insurance-left:after {
    position: absolute;
    content: '';
    width: 280px;
    height: 280px;
    background-size: cover;
    background-position: center;
    right: -60px;
    bottom: -60px;
    border: 15px white solid;
	background-size: cover!important;
	background: url(../img/uniban_canada.jpg);
	-webkit-box-shadow: 0px 16px 36px -4px rgba(0,0,0,0.28);
    -moz-box-shadow: 0px 16px 36px -4px rgba(0,0,0,0.28);
    box-shadow: 0px 16px 36px -4px rgba(0,0,0,0.28);
}

.adas-out{
	padding-top: 20px;
}

@media (max-width: 1024px) {
.insurance-left:after {
    width: 250px;
    height: 250px;
    right: 60px;
    bottom: -150px;
    left: 60px;
}	
.mobile-service {
    padding-right: 0;
    padding-bottom: 10px;
}	
.service-inner-out{
	padding-top: 50px;
    padding-bottom: 50px;	
	
}
#inner-banner {
    height: 30vh;	
}
#inner-banner h1 {
    font-size: 22px;
    margin-top: 35px;
}
.adas-out{
	padding-top: 60px;
}	
	
	
	
}




/*__________________*/
.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;
}
.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: #0096d7;
    padding: 8px 25px;
    display: inline-block;
    border-radius: 6px;
    color: white;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
}
.inner-page-call img{
	width: 15px;
	margin-right: 5px;
    margin-bottom: 4px;
}
.inner-page-call:hover{
	background: #163d72;
	color: #FFFFFF;
}
.inner-page-mail{
	background: #e50000;
    padding: 8px 25px;
    display: inline-block;
    border-radius: 6px;
    color: white;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
}
.inner-page-mail img{
	width: 15px;
	margin-right: 5px;
    margin-bottom: 3px;
}
.inner-page-mail:hover{
	background: #ab0000;
	color: #FFFFFF;
}

.check-list i{
	color: #E80003;
	font-size: 18px;
	border-radius: 100px;
	margin-right: 10px;
}

@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;
}	
.row-margin {
    margin-bottom: 0;
}	
}


/*--------------------------------------------------------------
# facilities
--------------------------------------------------------------*/

.services-out {
	padding-top: 0;
    padding-bottom: 100px;
    background-position: top;
    overflow: hidden;
    background-size: cover!important;
	background: url(../img/service-bg.jpg);
	background-attachment: fixed;
}
.services-out .section-title{
	padding-left: 0;
}
.services-out .section-title h2{
    color: #FFFFFF;
	margin-bottom: 30px;
}
.service{
	transition: 0.7s;
}

.main-serv .icon img{
	margin-top: 15px;
}

.service .icon{
	width: 100px;
    height: 100px;
    background: red;
    vertical-align: middle;
    align-items: center;
    text-align: center;
    padding-top: 15px;
	transition: 0.7s;
}
.service h3{
	color: #FFFFFF;
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 27px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.service p{
	color: #e2e2e2;
    line-height: 29px;
	padding-right: 40px;
}
.service .bi{
	color: #FFFFFF;
    margin-top: 20px;
    font-size: 33px;
    font-weight: normal;
	transition: 0.7s;
}
.service:hover .bi{
	color: red;
	transform: translateY(-12px);
	
}
.service:hover .icon{
	background: #004cd1;
	transform: translateY(-12px);
}
.service-in{
	min-height: 290px;
	position: relative;
	display:inline-block;
	background: #ffffff;
	border-radius:5px;
	padding: 30px 25px 30px 25px;
	margin-top: 50px;
    margin-bottom: 30px;
	-webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.37);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.37);
    box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.37);
    transition: 0.7s;
}
.service-icon {
    position: absolute;
    border-radius: 5px;
    background: #1693d0;
    padding: 13px;
    left: 0;
    right: 0;
    width: 70px;
    margin: auto;
    top: -35px;
	-webkit-transition-duration: 0.7s;
    -webkit-transition-timing-function: ease-out;

}
.service-in:hover .service-icon{
	background: #fd0f0f;
}
.service-in:hover, .service-in:focus, .service-in:active {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}

.service-box{
	border: 1px red solid;
	padding: 30px;
	transition: 0.7s;
  animation-delay: 0.8s;
}
.service-box p{
	color: #FFFFFF;
}
.service-box p{
	color: #FFFFFF;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
}
.service-box .view-more{
	color: #E50003;
}
.service-box h3{
	color: #FFFFFF;
}
.service-box .icon{
	width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 2px white solid;
    text-align: center;
    padding-top: 22px;
	margin-bottom: 30px;
}
.service-box .icon img{
	width: 35px;
}
.service-box:hover{
	background: #0093d5;
	animation-delay: 0.8s;
}

.sr-box-01{
	border-right: 0;
}
.sr-box-02{
	border-right: 0;
}
.sr-box-03{
}
.sr-box-04{
	border-top: 0;
	border-right: 0;
}
.sr-box-05{
	border-top: 0;
	border-right: 0;
}
.sr-box-06{
    border-top: 0;
}
.sr-box-01:hover {
	border: 1px #0093d5 solid;
}
.sr-box-02:hover {
	border: 1px #0093d5 solid;
}
.sr-box-03:hover {
	border: 1px #0093d5 solid;
}
.sr-box-04:hover {
	border: 1px #0093d5 solid;
}
.sr-box-05:hover {
	border: 1px #0093d5 solid;
}
.sr-box-06:hover {
	border: 1px #0093d5 solid;
}

@media (max-width: 1024px) {
 .services-out {
    padding-top: 0;
}
.service{
	margin-bottom:30px;
}	
	
	
}	
	
	
	


@media (max-width: 992px) {
	
.service-box {
    border: 0;
}

}


@media (max-width: 575px) {

}


	
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio{
	padding-top: 80px;
	padding-bottom: 20px;
}
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
.portfolio h2 {
  font-size: 35px;
    color: #000000;
    padding-bottom: 20px;
    font-weight: bold;
}
.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 15px 30px;
    border-radius: 0;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #157ae9;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    top: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
    text-align: center;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
    right: 0;
    left: 0;
    font-size: 50px;
    top: calc(50% - 29px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}


@media (max-width: 991.98px) {
    .portfolio h2 {
    font-size: 35px;
    color: #000000;
    padding-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}
}



/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.why-box{
	position: relative;
}
.why-out .section-title h2{
    color: #FFFFFF;
	margin-bottom: 30px;
	margin-left: 25%;
}
.why-box-in{
	background: red;
    text-align: center;
	padding: 80px 40px;
	z-index: 99;
    position: relative;
}

.why-box:before{
	position: absolute;
    content: '';
    background: #FFFFFF;
    text-align: center;
    padding: 80px 40px;
    left: 50%;
    right: -45%;
    top: -100px;
    bottom: -100px;
    z-index: 0;
}

.why-box h3{
	color: #FFFFFF;
	font-size: 20px;
	margin-top: 20px;
	transition: 0.7s;
}
.why-out{
	padding-top: 120px;
}
.why-left img{
	margin-bottom: -70px;
    margin-left: 18%;
}

.why-box-01{
	padding-bottom: 30px;
	border-right: 1px solid;
	border-color: rgba(255, 255, 255, 0.5);
}
.why-box-02{
	padding-bottom: 30px;
}
.why-box-03{
	padding-top: 30px;
	border-right: 1px solid;
	border-top: 1px solid;
	border-color: rgba(255, 255, 255, 0.5);
}
.why-box-04{
	padding-top: 30px;
	border-top: 1px solid;
	border-color: rgba(255, 255, 255, 0.5);
}
.why-icon{
    transition: 0.7s;
}

.why-box-01:hover .why-icon{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-02:hover .why-icon{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-03:hover .why-icon{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-04:hover .why-icon{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-01:hover h3{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-02:hover h3{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-03:hover h3{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.why-box-04:hover h3{
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .faq .faq-list {
    padding-top: 50px;
}
.why-out {
    padding-top: 20px;
}
.why-out .section-title h2 {
    color: #FFFFFF;
    margin-bottom: 30px;
    margin-left: 0;
}	
.why-left img {
    margin-bottom: -70px;
    margin-left: 4%;
    width: 210px;
}
.why-box-01 {
    padding-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    padding-top: 30px;
}	
.why-box-02 {
    padding-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    padding-top: 30px;
}
	
.why-box-03 {
    padding-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    padding-top: 30px;
}	
.why-box-04 {
    padding-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    padding-top: 30px;
}	
.why-box:before {
    display: none;
}	
	
	
	
	
	
}


/*--------------------------------------------------------------
# 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;
}
.testimonial-area .bx-wrapper {
	margin-left: 0;
	margin-right: auto;
}
.testimonial-area .bx-wrapper .bx-pager {
	text-align: left;
}
.testimonial-area .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    bottom: -50px;
}

.testimonial-area:after {
    content: '';
    position: absolute;
    background: url(../img/testi-bg.png);
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    right: -100px;
    width: 398px;
    height: 500px;
    z-index: -1;
    background-size: cover;
}
.testimonial-area h2 {
    font-size: 40px;
    font-weight: bold;
    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: 16px;
	line-height: 30px;
}
.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: #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: 80px;
}





@media (max-width: 992px) {
    .testimonial-area:after {
    opacity: 0.2;
}
}

@media (max-width: 767px) {

}

@media (max-width: 420px) {

}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
	padding-bottom: 100px;
    overflow: hidden;
    background: url(../img/contact-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.contact-bx{
	text-align: center;
    min-height: 230px;
    border: 1px red solid;
    padding: 40px 20px;
}
.working-hr{
	border-top: 0;
	border-right: 0;
}
.email{
	border-bottom: 0;
	border-left: 0;
}
.contact .info {
    padding: 30px;
    width: 100%;
    margin-top: 60px;
    padding-left: 60px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: -120px;
    background-size: cover;
}
.contact h2 {
  font-size: 35px;
    font-weight: bold;
    position: relative;
    color: #FFFFFF;
	margin-bottom: 40px;
	margin-top: 40px;
}

.contact .info i {
  font-size: 20px;
    color: #ffffff;
    width: 44px;
    height: 44px;
    background: #fe0c01;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.contact .info h4 {
  padding: 0;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}
.contact .info p {
    padding: 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: #ffffff;
    line-height: 32px;
}
.contact .info h2 {
  font-size: 35px;
    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 .working-hr: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: #003fad;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 0;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff0000;
}

.form-control {
    border: 0;
    border-bottom: 1px #767676 solid;
    border-radius: 0;
	background-color: transparent;
}
.shape-btm{
	
}
.map{
	margin-bottom: -10px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .contact .info {
    margin-top: -50px;
    padding-left: 30px;
    margin-bottom: 0;
}
.contact-left {
    position: relative;
    padding-bottom: 70px;
}
.contact {
    padding-bottom: 60px;
	padding-top: 0px;
}	
.contact .info p {
    font-size: 16px;
}
	
.working-hr{
	border-right: 1px red solid;
	border-top: 0;
	border-bottom: 0;
}
.email{
	border-bottom: 1px red solid;
	border-left: 1px red solid;
	border-top: 0;
}
	
	
}
/*--------------------------------------------------------------
# badges
--------------------------------------------------------------*/
.badges{
	width: 500px;
	position: absolute;
    bottom: 150px;
}

.badges .container{
	border-bottom: 1px #3a3a3a solid;
	 padding-bottom: 30px;
	padding-top: 30px;
}
.badges-in{
	margin-top: 25px;
   
}

@media (max-width: 992px) {
.badges {
    width: 100%;
    position: absolute;
    bottom: auto;
    top: 350px;
}
	
	
}



/*--------------------------------------------------------------
# inner banner
--------------------------------------------------------------*/
.inner-banner{
	height: 350px;
	margin-top: 50px;
}
.fill-inner {
    width: 100%;
    height: 350px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 992px) {
  .inner-banner {
	height: auto;  
    margin-top: 75px;
}
.fill-inner {
    width: 100%;
    height: 175px;
}	
	
	
}
	
	
	


/*--------------------------------------------------------------
# blogs
--------------------------------------------------------------*/
.blogs-out{
	padding-top: 70px;
    padding-bottom: 70px;
}
.blogs-out h2{
	margin-bottom: 30px;
	width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.blogs-in{
	margin-left: 20px;
    margin-right: 20px;
	-webkit-box-shadow: 0px 16px 36px -4px rgba(0,0,0,0.28);
-moz-box-shadow: 0px 16px 36px -4px rgba(0,0,0,0.28);
box-shadow: 0px 16px 36px -4px rgba(0,0,0,0.28);
}
.blog-content{
	padding: 20px;
	padding-bottom: 30px;
}
.blog-content h3{
	font-size: 18px;
    line-height: 30px;
    color: #747474;
}
.blog-content .find-out-more{
	color: #003fad;
}

.blogs-in {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}	
.blogs-in:hover, .blogs-in:focus, .blogs-in:active {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}

.blogs-in:hover .blog-content .find-out-more{
	color: #FF0000;
}


@media (max-width: 992px) {
  .blogs-out{
	padding-top: 50px;
}
.blogs-in {
    margin-bottom: 40px;
}	
	
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	overflow: hidden;
  font-size: 14px;
  background: #0a0a0a;	
}

#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: #0a0a0a;
  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-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: 30px;
    letter-spacing: 1px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;	
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-contact p i {
  padding-right: 2px;
  color: #ff0000;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff0000;
  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: 16px;
}

#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: #157ae9;
  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: #809d0d;
}

@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;	
}	
.badges-in img{
	width: 100%;
}	
	
	
	
	
	
}






