

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


  @font-face {
    font-family: 'linotte-bold';
    src: url('fonts/linotte-bold-webfont.woff2') format('woff2'),
         url('fonts/linotte-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }


:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #838282;
  text-decoration: none;
}

a:hover {
  color: #2B3990;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: linotte-bold;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 36px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #2B3990;
 
}
.section-header p {
  margin: 30px 0 0 0;
  padding: 0;
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
  color: #424242;
}

.red-text{
 color:  #ED1C24;
}

  
@media (max-width: 768px) {
  .section-header p {
    font-size: 18px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}
.breadcrumbs ol a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #2B3990;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2B3990;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
  line-height: 0;
}
.header .logo img {
  max-height: 100%;
  margin-right: 6px;
  width: 75%;
}
.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}
@media (max-width:600px){
  .header .logo img{
    width: 50%;
  }

}
/*--------------------------------------------------------------
# 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: block;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #202020;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ED1C24;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #2B3990;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #2B3990;
}
.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: 15px;
  text-transform: none;
  font-weight: 600;
}
.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: #2B3990;
}
.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%;
  }
}
@media (max-width: 600px){
  .mobile-contact{
    background: #ED1C24;
    width: 90%;
    margin-left: 15px;
    border-radius: 12px;
    color: #fff !important;
  }

  .navbar-mobile ul{
    height: 37% !important;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #202020;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2B3990;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.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: #4154f1;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.booking-nav-bar a{
  color: #fff;
}

@media (min-width:700px) and (max-width: 768px){
  .navbar-mobile ul{
    height: 30% !important;
  }
  }
 

  /*.mobile-contact{*/
  /*  background: #ED1C24;*/
  /*  width: 90%;*/
  /*  margin-left: 15px;*/
  /*  border-radius: 12px;*/
  /*  color: #fff !important;*/
  /*}*/





  .booking.header-scrolled .booking-nav-bar .mobile-nav-toggle{
    color: #333;
  }

  .bi.mobile-nav-toggle.bi-x{
    color: #fff !important;
  }

}

@media (max-width: 990px){
  .booking-nav-bar .mobile-nav-toggle{
    color:#fff;
  }

  .navbar-mobile ul {
    height: 30%;
}

.booking-nav-bar a{
  display: block;
  text-align: center;
    }

    .booking.header-scrolled .booking-nav-bar .mobile-nav-toggle {
      color: #333;
  }

  }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../img/banner-background.png) top center no-repeat;
  background-size: cover;
}



.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #2B3990;
}
.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}
.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 25px 25px;
  border-radius: 15px;
  transition: 0.5s;
  color: #fff;
  background: #ED1C24;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}
.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.hero .btn-get-started:hover i {
  transform: translateX(5px);
}
.hero .hero-img {
  text-align: right;
}

.hero-booking{
  height: 50vh !important;
  background: url(../img/booking-banner.png) top center no-repeat;
}

.hero-booking h1{
color: #fff !important;
text-align: right;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 26px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero h2 {
    font-size: 20px;
  }
  .hero .hero-img img {
    width: 60%;
  }

  .banner-text-mobile{
    padding-top: 130px;
  }
  .section-header h2{
    font-size: 32px;
  }
}
@media (max-width: 600px){
  .hero .hero-img img {
    width: 100%;
  }
  #hero{
    padding:0 !important;
  }
}


@media (min-width: 1024px) and (max-width: 1366px){
  .hero{
    height: 70vh;
  }

  .hero h1{
    font-size: 32px;
  }
  .banner-text-mobile{
    padding-top: 20%;
  }
  .hero h2{
    font-size: 18px;
  }
}






/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Who We Are 
--------------------------------------------------------------*/
.who-we-are .box {
  padding: 10px 20px 10px 20px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.who-we-are .box img {
  padding: 30px 15px;
  transition: 0.5s;
  transform: scale(1.1);
  border-radius: 25%;
}
.who-we-are .box h3 {
  font-size: 24px;
  color: #010101;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
}
.who-we-are .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.who-we-are .box:hover img {
  transform: scale(1);
}
.who-we-are .box p{
  text-align: left;
}
.who-we-are .service-box{
  background: #F8F8F8;
  border-radius: 6%;
}
@media (max-width: 768px){
 

  .who-we-are .box p{
    text-align: center;
    padding-bottom: 30px;
  }

  .who-we-are .box h3{
    text-align: center;
  }

}
@media (max-width: 600px){
  .who-we-are .img-fluid{
    max-width: 75%;
  }
  .who-we-are .box ,.how-we-are .service-box{
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px 20px 0px 20px;
  }
}

/*--------------------------------------------------------------
# How We Are 
--------------------------------------------------------------*/
.how-we-are .box {
  padding: 20px 30px 20px 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.how-we-are .box img {
  padding: 30px 0px;
  transition: 0.5s;
  border-radius: 25%;
}
.how-we-are .box h3 {
  font-size: 24px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
}
.how-we-are .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.how-we-are .box:hover img {
  transform: scale(1);
}
.how-we-are .box p{
  text-align: left;
}
.how-we-are .service-box{
  background: #ffffff;
  border-radius: 6%;
  text-align: left;
  box-shadow: 0px 0 8px rgb(206 209 215 / 75%)
}
.how-we-are .section-header h2{
color:#333333;
}
.how-we-are .service-box .img-fluid{
  max-width: 25%;
}


@media (max-width: 768px){

  section{
    padding: 40px 0 !important;
  }
  .how-we-are .service-box .img-fluid{
    max-width: 17%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/



.testimonials .box {
  padding: 20px 30px 20px 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.testimonials .box img {
  padding: 30px 0px;
  transition: 0.5s;
  border-radius: 50%;
}
.testimonials .box h3 {
  font-size: 24px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.testimonials .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.testimonials .box:hover img {
  transform: scale(1);
}
.testimonials .box p{
  text-align: center;
}
.testimonials .service-box{
  background: #ffffff;
  border-radius: 6%;
  text-align: left;
  box-shadow: 0px 0 8px rgb(206 209 215 / 75%)
}
.testimonials .section-header h2{
color:#333333;
}
.testimonials .service-box .img-fluid{
  max-width: 25%;
}

.testimonials .checked{
  color: orange;
}

.testimonials .testimonial{
  text-align: center;
  padding: 5px 0px 0px 0px;
  margin: 70px 15px 25px;
  position: relative;
}
.testimonials .testimonial .pic{
  width: 120px;
  height: 120px;
 
  margin: 0 auto;
  position: absolute;
  top: -165px;
  left: 0;
  right: 0;
}
.testimonials .testimonial .pic img{
  width: 85%;
  height: auto;
}
.testimonials .testimonial .description{
  font-size: 15px;
  color: #757575;
  line-height: 27px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .testimonial .testimonial-profile{
  position: relative;
  margin: 20px 0 10px 0;
}
.testimonials .testimonial .testimonial-profile:after{
  content: "";
  width: 50px;
  height: 2px;
  background: #77a9dd;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
/* .testimonials .testimonial .title{
  display: inline-block;
  font-size: 18px;
  color: #4a5184;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
} */
.testimonials .testimonial .post{
  display: inline-block;
  font-size: 15px;
  color: #757575;
  text-transform: capitalize;
}

.testimonials .row{
  margin-top: 90px;
}


/*--------------------------------------------------------------
# How easy with us
--------------------------------------------------------------*/
.how-easy-with-us .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}
.how-easy-with-us .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}
.how-easy-with-us .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}
.how-easy-with-us .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}
.how-easy-with-us .feture-tabs {
  margin-top: 120px;
}
.how-easy-with-us .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}
.how-easy-with-us .btn-read-more {
  line-height: 0;
  padding: 25px 40px;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
  background: #2B3990;
  box-shadow: 0px 5px 25px rgb(65 84 241 / 30%);
  width: 25%;
}
.how-easy-with-us .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.how-easy-with-us .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.how-easy-with-us .btn-read-more:hover i {
  transform: translateX(5px);
}
.how-easy-with-us .img-fluid{
  width: 100%;
}

.how-easy-with-us .how-easy-half{
  padding-left: 5%;
}
@media (max-width: 768px) {
  .how-easy-with-us .feture-tabs h3 {
    font-size: 28px;
  }

  
}
@media (max-width:600px){
  .how-easy-with-us .btn-read-more{
    width: 60%;
    margin-left: 10px;
  }
}

.how-easy-with-us .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}
.how-easy-with-us .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}
.how-easy-with-us .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}
.how-easy-with-us .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}
.how-easy-with-us .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}
.how-easy-with-us .feature-icons {
  margin-top: 120px;
}
.how-easy-with-us .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .how-easy-with-us .feature-icons h3 {
    font-size: 28px;
  }
}
.how-easy-with-us .feature-icons .content .icon-box {
  display: flex;
}
.how-easy-with-us .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}
.how-easy-with-us .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}
.how-easy-with-us .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# How easy with us
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Our Hearts At Work Section 
--------------------------------------------------------------*/
.our-work .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.our-work .post-box .work-img {
  overflow: hidden;
  position: relative;
}
.our-work .post-box .work-img img {
  transition: 0.5s;
}
.our-work .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}
.our-work .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}
.our-work .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
.our-work .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.our-work .post-box:hover .post-title {
  color: #4154f1;
}
.our-work .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

.our-work .section-header h2{
  color:#424242 ;
}
@media (max-width: 768px){
  .our-work .post-box .work-img img{
    padding-bottom: 15px;
    border-radius: 25px;
  }
}

/*--------------------------------------------------------------
# Fastest Service Section 
--------------------------------------------------------------*/
.fastest-service .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fastest-service .post-box .work-img {
  overflow: hidden;
  position: relative;
}
.fastest-service .post-box .work-img img {
  transition: 0.5s;
}
.fastest-service .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}
.fastest-service .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}
.fastest-service .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
.fastest-service .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.fastest-service .post-box:hover .post-title {
  color: #4154f1;
}
.fastest-service .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

.fastest-service .section-header h2{
  color:#424242 ;
}

.fastest-service .btn-read-more {
  line-height: 0;
  padding: 25px 40px;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
  background: #2B3990;
  box-shadow: 0px 5px 25px rgb(65 84 241 / 30%);
  width: 25%;
}

.fastest-service-row{
  background: #F8F8F8;
  border-radius: 25px;
  padding-left: 9%;
  padding-top: 2%;
  padding-bottom: 2%;
  margin-top: 8%;
}
 .fastest-service .fastest-service-row .img-fluid{
  position: relative;
  top: -120px;
  left: -40px;
 }
 @media (max-width: 768px){
  #fastest-service{
    padding: 20px 0 !important;
   }
 }

 /*--------------------------------------------------------------
# Fastest Service Section 
--------------------------------------------------------------*/
.recent-works .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.recent-works .post-box .work-img {
  overflow: hidden;
  position: relative;
}
.recent-works .post-box .work-img img {
  transition: 0.5s;
}
.recent-works .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}
.recent-works .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}
.recent-works .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
.recent-works .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.recent-works .post-box:hover .post-title {
  color: #4154f1;
}
.recent-works .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

.recent-works .section-header h2{
  color:#424242 ;
}

.recent-works .btn-read-more {
  line-height: 0;
  padding: 25px 40px;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
  background: #2B3990;
  box-shadow: 0px 5px 25px rgb(65 84 241 / 30%);
  width: 25%;
}

@media (max-width: 768px){
  .fastest-service .fastest-service-row .img-fluid {
    margin-top: 90px;
    position: relative;
    top: -50px;
    left: -25px;
}



}

@media (max-width: 600px){
  .fastest-service .btn-read-more{
    width: 60%;
      margin-left: 10px;
  }

  .footer .footer-top .footer-info .logo img{
    max-height: 80px;
  }
}

/*  */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #FFFFFF;
  padding: 0 0 30px 0;
  font-size: 14px;
}
.footer h3 {
  padding-bottom: 20px;
}


.footer .footer-email form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 0px;
  position: relative;
  border-radius: 4px;
  
}
.footer .footer-email form input[type=email] {
  border: 1px solid #A3A2A2;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 8px;
  width: 90%;
}
.footer .footer-email form input[type=submit] {
  
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 10px 30px;
  margin: 3px;
  background: #202020;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 15px;
}
.footer .footer-email form input[type=submit]:hover {
  background: #2B3990;
}
.footer .footer-top {
  
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 0px 0;
}
@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }

  .footer {
    padding: 0 30px 30px 30px;
  }
  .footer-email{
    text-align: left !important;
  }

  .map-home{
    width: 100%;
  }
}

.contact-ic{
  padding-right: 10px;
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}
.footer .footer-top .footer-info .logo img {
  max-height: 100px;
  margin-right: 6px;
  padding-top: 15px;
  margin-top: 20px;
}
.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}
.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}
.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .footer-top .social-links a:hover {
  color: #012970;
}
.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #838282;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.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-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}
.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: #838282;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  padding-bottom: 10px;
}
.footer .footer-top .footer-links ul a:hover {
  color: #013289;
}
.footer .footer-top .footer-contact p {
  line-height: 26px;
}



@media (min-width: 980px) and (max-width: 1024px){
  .footer .footer-email form input[type=submit]{
    font-size: 14px;
  }
}



/*Booking - Steps section */
.hero-booking{
  height: 35vh !important;
}

.header-scrolled .booking-nav-bar a{
  color: #202020 !important;}

  .header.booking .logo img{
    background: #fff;
    padding-top: 50px;
    padding-bottom: 15px;
    position: fixed;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  
.header-scrolled.header.booking .logo img{
  padding:0;
  position: relative;
}

.stepwizard-step p {
  margin-top: 10px;
  font-weight: 800;    
}

.stepwizard-row {
  display: table-row;
}

.stepwizard {
  display: table;     
  width: 100%;
  position: relative;
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
 
}

.stepwizard-row:before {
  top: 14px;
  bottom: 0;
  left: 18%;
  position: absolute;
  content: " ";
  width: 66%;
  height: 1px;
  background-color: #83828263;
 
  
}

.stepwizard-step {    
  display: table-cell;
  text-align: center;
  position: relative;
}

.btn-circle {
width: 30px;
height: 30px;
text-align: center;
padding: 6px 0;
font-size: 15px;
line-height: 1.428571429;
border-radius: 15px;
background-color: #2B3990 !important;
font-weight: 800;
}

.btn-circle:focus{
  box-shadow:none;  
}

.btn-current{
  background-color: #ED1C24 !important;
  border:none;
}

.btn-current:focus{
  box-shadow:none;
  border:none;
}

@media (max-width: 600px){
  
  .stepwizard-step p{
    font-size: 14px;
  }

  .booking-details .service-details-wrapper{
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .booking-details .location-selection{
    margin-left: 0 !important;
    font-size: 16px !important;
  }

 

  .booking-details .card{
    flex-direction: column !important;
    padding: 40px 20px !important;
  }

  .booking-details .card img{
    width: 100% !important;
  }

  .service-details-wrapper .booking-quantity{
    margin-top: 30px !important;
  }

  .booking-details-wrapper{
    padding-left: 15px !important;
  }

 




}

@media (max-width: 768px){
  .hero-booking{
    height: 15vh !important;
  }
  .service-details-wrapper .btn-primary{
    margin-bottom: 10px;
  }

  .invoice-wrapper .service-invoice{
    width: 50%;
  }

  .invoice-wrapper .service-invoice.total-price{
    width: 46%;
    /*padding-top: 20px;*/
  }

  .service-invoice.total-price.total-all-items{
    padding-top: 0px;
  }

  .booking-details .card{
    padding: 40px 15px !important;
  }
}

@media (min-width: 900px) and (max-width: 1024px){

  .hero-booking{
    height: 20vh !important;
  }

  .booking-details .service-details-wrapper{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .booking-details .card{
    padding: 40px 10px !important;
  }

  .service-details-wrapper .btn-primary{
    margin-bottom: 10px;
  }

  .service-qty-entry{
    font-size: 14px;
  }

  .invoice-wrapper .service-invoice{
  width: 60%;
}

.invoice-wrapper .service-invoice.total-price{
  width: 40%;
}

.invoice-wrapper .service-invoice.total-price{
  padding-top: 20px;
}

.service-invoice.total-price.total-all-items{
  padding-top: 0px;
}


}

@media (min-width: 1025px) and (max-width: 1366px){
  .hero-booking{
    height: 30vh !important;
  }

  .invoice-wrapper .service-invoice{
    width: 60%;
  }
  
  .invoice-wrapper .service-invoice.total-price{
    width: 40%;
  }

  .invoice-wrapper .service-invoice.total-price{
    padding-top: 20px;
  }
  
  .service-invoice.total-price.total-all-items{
    padding-top: 0px;
  }

  .service-details-wrapper .btn-primary{
    margin-bottom: 10px;
  }

  .booking-details .service-details-wrapper{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .booking-details .card{
    padding: 40px 10px !important;
  }
}


/*Booking Details Section */

.booking-details .service-details-wrapper{
 
  padding:60px;
  border-radius: 20px;
  box-shadow: 0px -1px 4px rgb(0 0 0 / 25%);

}

.booking-details .location-selection .card {
  flex-direction: row;
  align-items: center;
}
.booking-details .card-title {
  font-weight: bold;
  font-size: 26px;
  color: #010101;
}
.booking-details .card img {
  width: 30%;
  border-top-right-radius: 0;
  border-bottom-left-radius: calc(0.25rem - 1px);

  
}

.booking-details .location-selection{
  background: #fff;
    color: #333333;
    border: none;
    box-shadow: 2px 1px 4px rgb(0 0 0 / 25%);
    margin-left: 15%;
    margin-bottom: 30%;
    border-radius: 20px;
    padding: 10px 45px;
    font-size: 18px;
    font-weight: 700;
}

.booking-details .card {
  flex-direction: row;
  margin-top: 40px;
  background: #ccc5c530;
  padding: 40px 50px;
  border-radius: 40px;
  border:none;
}
.booking-details .card img {
  width: 65%;
  border-radius: 25px;
}

.booking-details .card-body{
  /*margin: auto;*/
}




.service-details-wrapper .btn-primary.selected{
  background: #ED1C24;
  border-radius: 15px;
  padding: 10px 25px;
  font-weight: 700;
  border:none;
  margin-right: 10px;
}

.input-group .btn-number:hover{
  background: #ED1C24;
}
.input-group .btn-number .fa:hover{
  color: #fff !important;
}

.service-details-wrapper .btn-primary.selected:focus,.service-details-wrapper .btn-primary.not-selected:focus {
box-shadow: none;

}

.service-details-wrapper .btn-primary.not-selected{
  background: #EBEBEB;
    border-radius: 15px;
    padding: 10px 25px;
    font-weight: 700;
    color: #333;
    border:none;
    margin-right: 10px;
}

.service-details-wrapper .card-body .fa.fa-star.checked{
  color:orange;
}

.service-details-wrapper .booking-rating{
  padding-bottom: 10px;
}

.service-details-wrapper .booking-quantity{
  margin: auto;
}

.service-details-wrapper .booking-quantity .input-group-prepend .fa ,.service-details-wrapper .booking-quantity .input-group-append .fa, .service-details-wrapper .no-of-rooms, 
.service-details-wrapper .single-booking-price, .no-of-apt, .number-color{
color: #ED1C24;
font-weight: 800;
}

.service-details-wrapper .booking-quantity  .btn-outline-secondary, .booking-quantity .input-group input{
border: none;
font-weight: bolder;

}

.service-details-wrapper .booking-quantity .input-group-prepend, .service-details-wrapper .booking-quantity .input-group-append{
  background: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
}

.service-details-wrapper .booking-quantity .input-group-prepend{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 10px;
}

.service-details-wrapper .booking-quantity .input-group-append{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 10px;
}

.service-details-wrapper.service-invoice{
  padding: 30px 25px;
  margin-top: 20px;
  margin-left: 0px;
}
/*
.service-details-wrapper .service-invoice.total-price{
 
  padding-top: 24px;
}
*/

.booking-details-wrapper{
  padding-left: 45px;
  /*padding-top: 50px;*/
}

.invoice-wrapper{
  padding: 20px !important;
  margin-top: 20px;
}

.invoice-wrapper .service-details-h{
  padding-bottom: 15px;
  padding-top: 30px;
}

.service-details-wrapper.invoice-wrapper{
  background: #F8F8F8;
  box-shadow:none;
}

.booking-next-btn, .payment-next-btn{
  background: #2B3990;
  border-radius: 15px;
  /*padding: 10px 60px;*/
  font-weight: 700;
  border: none;
  margin-right: 10px;
  margin-top: 30px;
  float: right;
}

.booking-next-btn:focus, .payment-next-btn:focus{
  background-color: #2B3990;
  border-color: #2B3990;

  box-shadow: none;

}

.booking-next-btn:hover, .payment-next-btn:hover{
  background-color: #ffffff;
  border: 1px solid #2B3990 !important;
color:#2B3990 ;
  box-shadow: none;
}

.payment-next-btn{
  width: 50%;
  margin-bottom: 35px;
  margin-top: 10px;
}

.payent-proceed-text{
  padding-top: 20px;
    margin: 0;
    padding-bottom: 0;
}



@media only screen and (max-width: 768px) {
  a {
    display: none;
  }
  .card-body {
    padding: 0.5em 1.2em;
  }
  .card-body .card-text {
    margin: 0;
  }
  .card img {
    width: 50%;
  }
}

@media only screen and (max-width: 990px){
  .booking-nav-bar a{
    color: #202020;
  }
}


@media only screen and (max-width: 1200px) {
  .card img {
    width: 40%;
  }
}



.underline-input {


  background-color: #F8F8F8;
  border: 0;
  border-bottom: 2px solid lightgrey;
  /*padding: 10px;*/



}

.ml-1 {
  margin-left:  10px !important;
}

.selected-service{

  background-color: #ED1C24 !important;
  color:white;
}

.selected-service  .card-body  .card-title{


  color:white !important;
}


.card-img-top{
  width: 255px !important;
  height: 200px !important;
  object-fit: cover;
}
.booking-logo img{

  width: 20vh !important;
}


/* form */


@import url("https://fonts.googleapis.com/css?family=Rubik:500,700|Roboto:400,600");
.section-padding {
    padding: 45px 0;
}
.section-dark {
    background-color: #f9f9f9;
    z-index: -2;
}
.form-control,
.form-group .form-control {
    border: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#009688), to(#009688)), -webkit-gradient(linear, left top, left bottom, from(#D2D2D2), to(#D2D2D2));
    background-image: -webkit-linear-gradient(#009688, #009688), -webkit-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: -o-linear-gradient(#009688, #009688), -o-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: linear-gradient(#009688, #009688), linear-gradient(#D2D2D2, #D2D2D2);
    -webkit-background-size: 0 2px, 100% 1px;
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center -webkit-calc(100% - 1px);
    background-position: center bottom, center calc(100% - 1px);
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
    float: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0
}

.form-control::-moz-placeholder,
.form-group .form-control::-moz-placeholder {
    color: #BDBDBD;
    font-weight: 400
}

.form-control:-ms-input-placeholder,
.form-group .form-control:-ms-input-placeholder {
    color: #BDBDBD;
    font-weight: 400
}

.form-control::-webkit-input-placeholder,
.form-group .form-control::-webkit-input-placeholder {
    color: #BDBDBD;
    font-weight: 400
}

.form-control[disabled],
.form-control[readonly],
.form-group .form-control[disabled],
.form-group .form-control[readonly],
fieldset[disabled] .form-control,
fieldset[disabled] .form-group .form-control {
    background-color: rgba(0, 0, 0, 0)
}

.form-control[disabled],
.form-group .form-control[disabled],
fieldset[disabled] .form-control,
fieldset[disabled] .form-group .form-control {
    background-image: none;
    border-bottom: 1px dotted #D2D2D2
}

.form-group {
    position: relative
}

.form-group.label-floating label.control-label,
.form-group.label-placeholder label.control-label,
.form-group.label-static label.control-label {
    position: absolute;
    pointer-events: none;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all
}

.form-group.label-floating label.control-label {
    will-change: left, top, contents
}

.form-group.label-placeholder:not(.is-empty) label.control-label {
    display: none
}

.form-group .help-block {
    position: absolute;
    display: none
}

.form-group.is-focused .form-control {
    outline: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#009688), to(#009688)), -webkit-gradient(linear, left top, left bottom, from(#D2D2D2), to(#D2D2D2));
    background-image: -webkit-linear-gradient(#009688, #009688), -webkit-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: -o-linear-gradient(#009688, #009688), -o-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: linear-gradient(#009688, #009688), linear-gradient(#D2D2D2, #D2D2D2);
    -webkit-background-size: 100% 2px, 100% 1px;
    background-size: 100% 2px, 100% 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s
}

.form-group.is-focused .form-control .material-input:after {
    background-color: #009688
}

.form-group.is-focused label,
.form-group.is-focused label.control-label {
    color: #009688
}

.form-group.is-focused.label-placeholder label,
.form-group.is-focused.label-placeholder label.control-label {
    color: #BDBDBD
}

.form-group.is-focused .help-block {
    display: block
}

.form-group.has-warning .form-control {
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-group.has-warning.is-focused .form-control {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ff5722), to(#ff5722)), -webkit-gradient(linear, left top, left bottom, from(#D2D2D2), to(#D2D2D2));
    background-image: -webkit-linear-gradient(#ff5722, #ff5722), -webkit-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: -o-linear-gradient(#ff5722, #ff5722), -o-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: linear-gradient(#ff5722, #ff5722), linear-gradient(#D2D2D2, #D2D2D2)
}

.form-group.has-warning .help-block,
.form-group.has-warning label.control-label {
    color: #ff5722
}

.form-group.has-error .form-control {
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-group.has-error .help-block,
.form-group.has-error label.control-label {
    color: #f44336
}

.form-group.has-success .form-control {
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-group.has-success.is-focused .form-control {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4caf50), to(#4caf50)), -webkit-gradient(linear, left top, left bottom, from(#D2D2D2), to(#D2D2D2));
    background-image: -webkit-linear-gradient(#4caf50, #4caf50), -webkit-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: -o-linear-gradient(#4caf50, #4caf50), -o-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: linear-gradient(#4caf50, #4caf50), linear-gradient(#D2D2D2, #D2D2D2)
}

.form-group.has-success .help-block,
.form-group.has-success label.control-label {
    color: #4caf50
}

.form-group.has-info .form-control {
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-group.has-info.is-focused .form-control {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#03a9f4), to(#03a9f4)), -webkit-gradient(linear, left top, left bottom, from(#D2D2D2), to(#D2D2D2));
    background-image: -webkit-linear-gradient(#03a9f4, #03a9f4), -webkit-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: -o-linear-gradient(#03a9f4, #03a9f4), -o-linear-gradient(#D2D2D2, #D2D2D2);
    background-image: linear-gradient(#03a9f4, #03a9f4), linear-gradient(#D2D2D2, #D2D2D2)
}

.form-group.has-info .help-block,
.form-group.has-info label.control-label {
    color: #03a9f4
}

.form-group textarea {
    resize: none
}

.form-group textarea~.form-control-highlight {
    margin-top: -11px
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.form-group select~.material-input:after {
    display: none
}

.form-control {
    margin-bottom: 7px
}

.form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

.form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

.form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}
.checkbox label,
.radio label,
label {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

label.control-label {
    font-size: 12px;
    line-height: 1.07142857;
    font-weight: 400;
    margin: 16px 0 0 0
}

.help-block {
    margin-top: 0;
    font-size: 12px
}

.form-group {
    padding-bottom: 7px;
    margin: 28px 0 0 0
}

.form-group .form-control {
    margin-bottom: 7px
}

.form-group .form-control::-moz-placeholder {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

.form-group .form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

.form-group .form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

.form-group .checkbox label,
.form-group .radio label,
.form-group label {
    font-size: 16px;
    line-height: 1.42857143;
    color: #BDBDBD;
    font-weight: 400
}

.form-group label.control-label {
    font-size: 12px;
    line-height: 1.07142857;
    font-weight: 400;
    margin: 16px 0 0 0
}

.form-group .help-block {
    margin-top: 0;
    font-size: 12px
}

.form-group.label-floating label.control-label,
.form-group.label-placeholder label.control-label {
    top: -7px;
    font-size: 16px;
    line-height: 1.42857143
}

.form-group.label-floating.is-focused label.control-label,
.form-group.label-floating:not(.is-empty) label.control-label,
.form-group.label-static label.control-label {
    top: -30px;
    left: 0;
    font-size: 12px;
    line-height: 1.07142857
}

.form-group.label-floating input.form-control:-webkit-autofill~label.control-label label.control-label {
    top: -30px;
    left: 0;
    font-size: 12px;
    line-height: 1.07142857
}

.form-group.form-group-sm {
    padding-bottom: 3px;
    margin: 21px 0 0 0
}

.form-group.form-group-sm .form-control {
    margin-bottom: 3px
}

.form-group.form-group-sm .form-control::-moz-placeholder {
    font-size: 11px;
    line-height: 1.5;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-sm .form-control:-ms-input-placeholder {
    font-size: 11px;
    line-height: 1.5;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-sm .form-control::-webkit-input-placeholder {
    font-size: 11px;
    line-height: 1.5;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-sm .checkbox label,
.form-group.form-group-sm .radio label,
.form-group.form-group-sm label {
    font-size: 11px;
    line-height: 1.5;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-sm label.control-label {
    font-size: 9px;
    line-height: 1.125;
    font-weight: 400;
    margin: 16px 0 0 0
}

.form-group.form-group-sm .help-block {
    margin-top: 0;
    font-size: 9px
}

.form-group.form-group-sm.label-floating label.control-label,
.form-group.form-group-sm.label-placeholder label.control-label {
    top: -11px;
    font-size: 11px;
    line-height: 1.5
}

.form-group.form-group-sm.label-floating.is-focused label.control-label,
.form-group.form-group-sm.label-floating:not(.is-empty) label.control-label,
.form-group.form-group-sm.label-static label.control-label {
    top: -25px;
    left: 0;
    font-size: 9px;
    line-height: 1.125
}

.form-group.form-group-sm.label-floating input.form-control:-webkit-autofill~label.control-label label.control-label {
    top: -25px;
    left: 0;
    font-size: 9px;
    line-height: 1.125
}

.form-group.form-group-lg {
    padding-bottom: 9px;
    margin: 30px 0 0 0
}

.form-group.form-group-lg .form-control {
    margin-bottom: 9px
}

.form-group.form-group-lg .form-control::-moz-placeholder {
    font-size: 18px;
    line-height: 1.3333333;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-lg .form-control:-ms-input-placeholder {
    font-size: 18px;
    line-height: 1.3333333;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-lg .form-control::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 1.3333333;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-lg .checkbox label,
.form-group.form-group-lg .radio label,
.form-group.form-group-lg label {
    font-size: 18px;
    line-height: 1.3333333;
    color: #BDBDBD;
    font-weight: 400
}

.form-group.form-group-lg label.control-label {
    font-size: 14px;
    line-height: .99999998;
    font-weight: 400;
    margin: 16px 0 0 0
}

.form-group.form-group-lg .help-block {
    margin-top: 0;
    font-size: 14px
}

.form-group.form-group-lg.label-floating label.control-label,
.form-group.form-group-lg.label-placeholder label.control-label {
    top: -5px;
    font-size: 18px;
    line-height: 1.3333333
}

.form-group.form-group-lg.label-floating.is-focused label.control-label,
.form-group.form-group-lg.label-floating:not(.is-empty) label.control-label,
.form-group.form-group-lg.label-static label.control-label {
    top: -32px;
    left: 0;
    font-size: 14px;
    line-height: .99999998
}

.form-group.form-group-lg.label-floating input.form-control:-webkit-autofill~label.control-label label.control-label {
    top: -32px;
    left: 0;
    font-size: 14px;
    line-height: .99999998
}

select.form-control {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0
}

.form-group.is-focused select.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #D2D2D2
}

.form-group.is-focused select.form-control[multiple],
select.form-control[multiple] {
    height: 85px
}

.input-group-btn .btn {
    margin: 0 0 7px 0
}

.form-group.form-group-sm .input-group-btn .btn {
    margin: 0 0 3px 0
}

.form-group.form-group-lg .input-group-btn .btn {
    margin: 0 0 9px 0
}

.input-group .input-group-btn {
    padding: 0 12px
}

.input-group .input-group-addon {
    border: 0;
    background: 0 0
}

.form-group input[type=file] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100
}
.contact-widget-section .single-contact-widget {
    background: #f9f9f9;
    padding: 20px 25px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.26);
    height: 260px;
    margin-top: 25px;
    transition: all 0.3s ease-in-out
}

.contact-widget-section .single-contact-widget i {
    font-size: 75px
}

.contact-widget-section .single-contact-widget h3 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    padding-bottom: 10px
}

.contact-widget-section .single-contact-widget p {
    line-height: 16px
}

.contact-widget-section .single-contact-widget:hover {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.46);
    cursor: pointer;
    transition: all 0.3s ease-in-out
}

#contactForm {
    margin-top: -10px
}

#contactForm .form-group label.control-label {
    color: #8c8c8c
}

#contactForm .form-control {
    font-weight: 500;
    height: auto
}
