/*=========================================

=========================================*/


 /*===============================================
            Index of contents  
==================================================
 
0.  Base CSS
1.  Preloader
2.  Navigation
3.  Slideshow
4.  About Us
5.  History
6.  Our Service
7.  Our Portfolio
8.  Counter
9.  Our Team
10. Our Skills
11. Our Price
12. Our Testimonial
13. Latest News
14. Contact Us
15. Footer

====================================================
            End index content 
===================================================*/



/*===================================================
            0. Start BASE CSS 
===================================================*/

body{
  overflow-x: hidden;
  font-family: 'Roboto Condensed', sans-serif;
}

p{
  font-weight: 300;
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}

.header-title h2 {
    color: #414a55;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 0;
    position: relative;
    z-index: 100;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.header-title h2:before {
    position: absolute;
    content: '';
    background: #2DAD80;
    width: 50px;
    height: 4px;
    left: 50%;
    bottom: -18px;
    z-index: 100;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header-title h2:after {
    position: absolute;
    content: '';
    background: #c5c5c5;
    width: 100%;
    height: 1px;
    right: 0;
    bottom: -17px;
}
.header-title p { margin-bottom: 50px;}

img {max-width: 100%;}


/**
** BTN STYLE
**/
.busika-btn,
.submit-btn {
    display: inline-block;
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding: 14px 35px;
    cursor: pointer;
    background: #2DAD80;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    
    border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px; 

   transition: all 0.3s ease-in-out;
}
.hiden-b{display: none;}

.submit-btn {border: none;}


.busika-btn:hover,
.busika-btn:focus,
.busika-btn:active,
.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
    background: #414a55;
    color: #fff;
    outline: 0;
    text-decoration: none;
}

.hero-btn{
  display: inline-block;
    box-shadow: 0 0 1px transparent;
    position: relative;
    padding: 14px 35px;
    cursor: pointer;
    background: transparent;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    border: 1px solid #fff;
    border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px; 

   transition: all 0.3s ease-in-out;
}

.hero-btn:hover,
.hero-btn:focus,
.hero-btn:active {
    background: #fff;
    color: #414a55;
    outline: 0;
    text-decoration: none;
}

.section-padding{
  padding: 100px 0px 100px 0px
}
/*===================================================
            1. Start Preloader CSS 
===================================================*/
.preloader{
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #fff;
  position: fixed;
  text-align: center;
  z-index: 9999999912;
}
.preloader-container {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.item {
  width: 50px;
  height: 50px;
  position: absolute;
}
.item-1 {
  background-color: #2dad80;
  top: 0;
  left: 0;
  z-index: 1;
  animation: item-1_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}
.item-2 {
  background-color: #2D9380;
  top: 0;
  right: 0;
  animation: item-2_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}
.item-3 {
  background-color: #2dad80;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: item-3_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}
.item-4 {
  background-color: #2D9380;
  bottom: 0;
  left: 0;
  animation: item-4_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}
@keyframes item-1_move {
  0%, 100% {transform: translate(0, 0)} 
  25% {transform: translate(0, 50px)} 
  50% {transform: translate(50px, 50px)} 
  75% {transform: translate(50px, 0)} 
}
@keyframes item-2_move {
  0%, 100% {transform: translate(0, 0)} 
  25% {transform: translate(-50px, 0)} 
  50% {transform: translate(-50px, 50px)} 
  75% {transform: translate(0, 50px)} 
}
@keyframes item-3_move {
  0%, 100% {transform: translate(0, 0)} 
  25% {transform: translate(0, -50px)} 
  50% {transform: translate(-50px, -50px)} 
  75% {transform: translate(-50px, 0)} 
}
@keyframes item-4_move {
0%, 100% {transform: translate(0, 0)} 
25% {transform: translate(50px, 0)} 
50% {transform: translate(50px, -50px)} 
75% {transform: translate(0, -50px)} 
}
/*================================================
            2 scroll-top-button
==================================================*/
 
 #scroll-top-area {
     background: #042156;
     position: fixed;
     cursor: pointer;
     bottom: 10px;
     right: 10px;
     -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
     border-radius: 4px;
     z-index: 8;
     display: none;
     transition: all 1s;
     opacity: .7;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
 }
 
 #scroll-top-area:hover {
     opacity: 100;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 
 #scroll-top-area i {
     color: #fff;
     padding: 8px 12px;
     font-size: 25px;
 }

/*===================================================
            2. Start Navigation CSS 
===================================================*/
.logo img {
    display: block;
    margin-top: 7px;
    width: 160px;
    height:50px;
}
.logo span{font-size: 14px;}

.main-navigation{
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;

  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #00c4ff;
}
/*.main-navigation.affix {
  position: fixed;
  background: #2dad80;
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
  padding: 0;
  width: 100%;
  z-index: 9999991;
}*/
.main-navigation .navbar{background: transparent;padding: 0;}

/** Main Nav Top Lavel **/
.main-navigation .navbar-nav{
  margin-top: 2px;
  padding: 0;
}

.main-navigation .navbar-nav li a.nav-link{
  display: block;
  padding: 20px 20px;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  font-weight: 450;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}


.main-navigation .navbar-nav li.active a.nav-link{color: #fff;}


/** Main Nav 2 Lavel **/
.main-navigation .dropdown-menu{
  background: #fff;
  border: 0px solid #000;
  padding: 0;
  margin: 0;
  border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
}
.main-navigation .dropdown-menu a.dropdown-item{
  padding: 10px 12px;
  color: #2dad80;
}
.main-navigation .dropdown-menu a.dropdown-item:hover,
.main-navigation .dropdown-menu a.dropdown-item:focus{
  background: #2dad80;
  color: #fff;
}


.dropdown:hover>.dropdown-menu {
  display: block;
}

/*About us*/
.about_us{margin: 120px 0 80px 0;text-align: center;}
.about_us img{
    height: 100px;
    width: 100px;
    display: inline-block;
    border-radius: 90%;
    border: 2px solid #f54a06;

}
.about_us h2{
    font-size: 45px;
    font-weight:bold;
    color: #26547c;
    margin-top: 16px;
    font-family: 'Roboto';
}
.about_us p{
    color: #000;
    font-size: 26px;
    font-family: 'Domine', sans-serif;
    margin-bottom: 40px;
}
.about_us .section_one, .section_two, .section_three, h1{
    line-height: 215px;
    font-size: 150px;
    font-family: 'Domine';
    color: #04296d;
    font-weight: bold;
}
.about_us .section_one{margin:0 0 0 180px;}
.about_us .section_two{margin:0 0 0 70px;}
.about_us .section_three{margin:0 0 0 -42px;}
.about_us .section_one, .section_two, .section_three{
    border-radius: 90%;
    width: 230px;
    height: 230px;
    border: 2px solid #f54a06;
    margin-bottom: 20px;
    display:block;
}


/*===================================================
            5. Start History CSS 
===================================================*/

.history {padding: 0 0 100px 0;}
.history .history-area {
    margin: 0px;
    padding: 0px 45px 0 0px;
}


/*===================================================
            6. Start Our Service CSS 
===================================================*/

.our-service{
 padding: 78px 0 25px 0;
    background: #042156;
    height: 560px;
}

.service-title h2{text-transform: capitalize;
  font-family: 'Open Sans', sans-serif;
  font-size:34px;
}
.service-title h2, p{color:#fff;}
.service-title p{
  padding: 20px;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
}
.service-title span{
  border: 3px solid #f54a06;
  height: 2px;
  width: 129px;
  display: block;
  margin-left: 44.2%;
}
.service_wrap_1, .service_wrap_2, .service_wrap_3, .service_wrap_4{text-align: center;cursor: pointer;}
.service_wrap_1, .service_wrap_2, .service_wrap_3, .service_wrap_4, i{color: #f54a06;}
.service_wrap_1 .page{display: none;}
.service_wrap_2 .page{display: none;}
.service_wrap_3 .page{display: none;}
.service_wrap_4 .page{display: none;}


.service_wrap_1:hover .page{
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service_wrap_2:hover .page{
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service_wrap_3:hover .page{
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service_wrap_4:hover .page{
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block;
}


.service_box_1 h1{
  line-height: normal !important;
  font-weight: normal !important;
   font-size: 25px;
 font-family: 'Open Sans', sans-serif;
  
}
.service_box_1 {
  background: #f5f5f5;
  text-align: center;
  height: 190px;
  border-radius: 10px;
}
.service_box_1 h1 a{
  text-decoration: none;
  margin-top: 69px;
  display: inline-block;
  color: #042156;
 
}

.service_box_2 h1{
  line-height: normal !important;
  font-weight: normal !important;
   font-size: 25px;
 font-family: 'Open Sans', sans-serif;
  
}
.service_box_2 {
  background: #f5f5f5;
  text-align: center;
  height: 190px;
  border-radius: 10px;
}
.service_box_2 h1 a{
  text-decoration: none;
  margin-top: 69px;
  display: inline-block;
  color: #042156;
 
}

.service_box_3 h1{
  line-height: normal !important;
  font-weight: normal !important;
   font-size: 25px;
 font-family: 'Open Sans', sans-serif;
  
}
.service_box_3 {
  background: #f5f5f5;
  text-align: center;
  height: 190px;
  border-radius: 10px;
}
.service_box_3 h1 a{
  text-decoration: none;
  margin-top: 69px;
  display: inline-block;
  color: #042156;
 
}

.service_box_4 h1{
  line-height: normal !important;
  font-weight: normal !important;
   font-size: 25px;
 font-family: 'Open Sans', sans-serif;
  
}
.service_box_4 {
  background: #f5f5f5;
  text-align: center;
  height: 190px;
  border-radius: 10px;
}
.service_box_4 h1 a{
  text-decoration: none;
  margin-top: 69px;
  display: inline-block;
  color: #042156;
 
}

.service_box_1 .page{display: none;}







    

/*===================================================
            15. Start Footer CSS 
===================================================*/

.footer {
  background-color: #00c4ff;
  padding: 40px 0px 35px 0px;
}

.footer h3{
  color: #ccc;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.footer ul.social-link{list-style-type: none; margin: 0;padding: 0;}
.footer ul.social-link li{display: inline-block;margin: 0 4px;}
.footer ul.social-link li a{display: block; color: #2dad80;}
.footer ul.social-link li a i{font-size: 20px;font-family: 'Domine';}
.footer ul.social-link li a:hover{color: #ccc;}

.footer ul.contact-info{list-style-type: none;margin: 0; padding: 0;}
.footer ul.contact-info li{ color: #ccc; margin: 10px 0;letter-spacing: 0.5px;}
.footer ul.contact-info li b{min-width: 70px; display: inline-block;color: #ccc;}
.footer ul.contact-info li i{
  display: inline-block;
  width: 20px;
  font-size: 14px;
  color: #2dad80;
}
.footer ul.contact-info li a{color: #2dad80;}
.footer ul.contact-info li a:hover,
.footer ul.contact-info li a:focus{color: #ccc; text-decoration: none; }

.footer p,
.footer a {
    color: #fff;
}
#footer-copyright p {
    margin: 10px 0px 0px 2px;
}

ul.footer-v-menu{list-style-type: none;margin: 0;padding: 0;}
ul.footer-v-menu li{}
ul.footer-v-menu li a{color: #fff;letter-spacing: 1px;font-weight: 300;}
ul.footer-v-menu li a:hover,
ul.footer-v-menu li a:focus{color: #fff;text-decoration: none;}


form.quick-contact{}
form.quick-contact input[type=email],
form.quick-contact input[type=text]{
   display: block;
   width: 100%;
   background: transparent;
   border: 1px solid #2dad80;
   color: #2dad80;
   margin: 8px 0;
   padding: 4px 10px;
   font-size: 14px;
   font-family: 'Domine Condensed', sans-serif;
}

form.quick-contact textarea{
  display: block;
   width: 100%;
   background: transparent;
   border: 1px solid #2dad80;
   color: #2dad80;
   margin: 8px 0;
   padding: 4px 10px;
   font-size: 14px;
   font-family: 'Domine Condensed', sans-serif;
}

form.quick-contact input[type=submit],
form.quick-contact button{

   background: #2dad80;
   border: 1px solid #2dad80;
   color: #fff;
   margin: 8px 0;
   padding: 4px 10px;
   font-size: 14px;
   font-weight: bold;
   cursor: pointer;
    border-radius: 3px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px; 
}
form.quick-contact button i {margin-right: 5px;}
form.quick-contact input[type=email]::placeholder,
form.quick-contact input[type=text]::placeholder,
form.quick-contact textarea::placeholder{color: #2dad80;}

.footer .result span{ color: #fff; }
.footer .result span.success{ color: #2dad80; }
.footer .result span.error{ color: #FFD800; }

form.quick-contact .has-error{border: 1px solid #FFD800 !important;}
form.quick-contact .has-error::placeholder{color: #FFD800 !important;}


/*===================================================
            15. Start subscribe CSS 
===================================================*/

ul.social-icons a:hover i {
    color: #fff;
}
.footer-links {
    display: inline-block;
    margin: 0 auto;
}
.footer-links li,
.footer-icons li,
.footer-news li {
    width: auto !important;
    display: inline-block !important;
    vertical-align: top;
    clear: none !important;
    padding: 0;
    margin: 10px 6px 0 0;
}


.footer-logo img{
    display: block;
    margin-top: 7px;
    width: 160px;
    height:50px;
}

.footer-menu {margin-top: 28px;}
.footer-menu .clearfix{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu .clearfix li{display: inline-block;}
.footer-menu .clearfix li a{font-size: 17px;margin-right: 50px;text-decoration: none;}

/*===================================================
            15. Start Copyright CSS 
===================================================*/
.copyright{margin-top: 50px;}
.copyright .copyright-text {color: #fff;}

.copyright .copyright-links{text-align: right;}
.copyright .copyright-links ul{list-style: circle;margin: 0;padding: 0;text-align: center;}
.copyright .copyright-links ul li{display: inline-block;}
.copyright .copyright-links ul li a{color: #fff;display: block;padding: 0 12px;height: 12px;line-height: 6px;font-size: 16px;letter-spacing: 0.5px;}
/*.copyright .copyright-links ul li a:hover{color: #2dad80;text-decoration: none;}*/

/*Video*/

.embed-responsive{
  box-shadow: -4px 15px 30px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: -4px 15px 30px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -4px 15px 30px 0px rgba(0,0,0,0.75);
margin: 50px 0;
}
.how-it-works{
      padding-top: 50px;
}
.how-it-works h2{color: #26547c;
  font-family: 'Domine', sans-serif; 
  font-size: 34px;
}

.video_text .first{
    color: #565656;
    text-align: center;
    letter-spacing: 0;
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
}
.video_text .second{
     color: #565656;
    text-align: center;
    letter-spacing: 0;
    font-size: 22px;
    font-family: 'Open Sans', sans-serif;
}

.category {    margin-top: 50px;}
.category img{height: 75px;}
.home li{list-style: none;text-align: center;}
.home li i{
    font-size: 140px;
    text-align: center;
    display: block;
    color: #042156;
}
.home p{
    color: #000;
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 500;
    font-family: 'Domine', sans-serif;
}
.home span{
  text-align: center;
    display: block;
    margin-bottom: 65px;
    color: #0287b6;
    font-size: 16px;
    font-family: 'Domine', sans-serif;
}


.technician li{list-style: none;text-align: center;}
.technician li i{
    font-size: 140px;
    text-align: center;
    display: block;
    color: #042156;
}
.technician p{
      color: #000;
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 500;
    font-family: 'Domine', sans-serif;
}
.technician span{
  text-align: center;
    display: block;
    margin-bottom: 65px;
    color: #0287b6;
    font-size: 16px;
    font-family: 'Domine', sans-serif;
}


.furniture li{list-style: none;text-align: center;}
.furniture li{list-style: none;text-align: center;}
.furniture li i{
    font-size: 140px;
    text-align: center;
    display: block;
    color: #042156;
}
.furniture p{
      color: #000;
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 400;
    font-family: 'Domine', sans-serif;
}
.furniture span{
  text-align: center;
    display: block;
    margin-bottom: 65px;
    color: #0287b6;
    font-size: 16px;
    font-family: 'Domine', sans-serif;
}
.furniture .span-black{
  text-align: center;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-top: -64px !important;
    font-family: 'Domine', sans-serif;
}
/*Pages */
.select{height: 185px;}
.select_area{
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #f54a06;
    /*margin-right: 22px;*/
    padding: 30px;
}

.select-area-first-page{
    display: inline-block;
    border-radius: 4%;
    border: 2px solid #f54a06;
    /*margin-right: 22px;*/
    padding: 0px 30px 30px 30px;
    height: 420px;
}

.dastep2{
  padding: 20px !important;
}

.select_area .select p{   
      margin-top: 57px;
    font-size: 15px !important;
    width: 239px;
    color: #1297bf !important;
    font-weight: 500;
    padding-bottom: 0;
    margin-bottom: 5px;
 }
.select_area .select select option {
    font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}

.select-area-first-page .select p{   
    margin-top: 57px;
    font-size: 15px !important;
    width: 239px;
    color: #1297bf !important;
    font-weight: 500;
    padding-bottom: 0;
    margin-bottom: 5px;
    min-width: 500px;
}
.select-area-first-page .select select option {
  font-weight: normal;
  display: block;
  white-space: pre;
  min-height: 1.2em;
  padding: 0px 2px 1px;
}


#dLabel {
    width: 240px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  border: solid 1px #cccccc;
  text-align: left;
  padding: 7.5px 15px;
  color: #ccc;
  letter-spacing: 0.7px;
  margin-top: 25px;
  
 
}

 .caret {
    float: right;
    margin-top: 9px;
    display: block;
  }

.dropdown-menu {
  width: 240px;
  padding: 0;
  margin: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown button:hover, .dropdown button:focus {
  border: none;
  outline: 0;
}

.dropdown.open button#dLabel {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
 
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
  border: solid 1px #666;
   border-bottom: none;
}

.dropdown.open ul {
   box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.23);
  border: solid 1px #666;
  border-top: none;
  height: 200px;
  overflow-y: scroll;
}

.dropdown-menu li {
 
     line-height: 1.5;
  letter-spacing: 0.7px;
  color: #666;
    font-size: 14px;
  cursor: pointer;
  padding: 7.5px 15px;
  border-top: solid 1px #f3f3f3;
  
 
 
}

.dropdown-menu li:hover {
  background-color: #ccc;
}



.page_3 h2 {
    font-size: 36px;
    color: #042156;
    margin-top: 16px;
    font-family: 'Domine';
}



.add_services{margin-top: 50px;}

.add_services i{
      font-size: 14px;
    border-radius: 100%;
    background: #00c4ff;
    padding: 7px;
    color: #fff;
    cursor: pointer;
}
.add_services span{
  font-size: 15px;
    margin-left: 6px;
    font-weight: 600;
    font-family: 'Domine', sans-serif;
}

.lets_procceds{margin-top: 50px;}
.lets_procceds a{
  text-decoration: none;
    color: #fdfcfc;
    background: #004574;
    padding: 12px 55px;
    text-transform: uppercase;
    font-size: 15px;
    margin-left: -129px;
    border-radius: 3px;
    font-family: 'Domine', sans-serif;
}
.lets_procceds button{
  text-decoration: none;
    color: #fdfcfc;
    background: #004574;
    padding: 13px 50px;
    text-transform: uppercase;
    font-size: 15px;
    margin-left: 20px;
    border-radius: 3px;
    font-family: 'Domine', sans-serif;
    border:none;
}
.previous button{
    text-decoration: none;
    color: #fdfcfc;
    background: #004574;
    padding: 13px 50px;
    text-transform: uppercase;
    font-size: 15px;
    margin-top:47px;
    margin-left: 20px;
    border-radius: 3px;
    font-family: 'Domine', sans-serif;
    border:none;
}
@media only screen and (max-width:760px) {
  .lets_procceds button{
      text-decoration: none;
      width:140px !important;
      color: #fdfcfc;
      background: #004574;
      padding: 10px 10px;
      text-transform: uppercase;
      font-size: 13px;
      border-radius: 3px;
      font-family: 'Domine', sans-serif;
      border:none;
      margin-right:20px !important;

  }
  .previous button{
    text-decoration: none;
    width:100px !important;
    color: #fdfcfc;
    background: #004574;
    padding: 10px 10px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 3px;
    font-family: 'Domine', sans-serif;
    border:none;
  }  
  .col-hidden{
    display:none !important;
  }
}

.page_1 p{
  font-size: 18px;
    color: #000;
    font-weight: 400;
    font-family: 'Domine', sans-serif;
}



.option-input {
      -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34px;
    width: 32px;
    transition: all 0.15s ease-out 0s;
    background: #fff;
    border: none;
    color: #f54a06;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
    border: 1px solid #00c4ff;
}
.option-input:hover {
  background: #fff;
}
.option-input:checked {
  background: #fff;
}
.option-input:checked::before {
  height: 40px;
  width: 40px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 23px;
  text-align: center;
  line-height: 32px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio::after {
  border-radius: 50%;
}
.select span{font-size: 21px;}
.select label{margin-right: 10px;}

.select div label:last-child {margin-right: 0px;}

.order_complate h2{
  font-size: 34px !important;
    font-weight: 400 !important;
}

.form-control{border: 1px solid #f54a06;    border-radius: 5px;padding: 15px;    background: #f7f7f7;}
.customer_details{
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
    color: #0685ab;
    font-family: 'Domine';
}

.form-control:focus {
    color: #000;
    border-color: #f54a06;
    outline: 0;
}

.order_summary{
      border: 1px solid #f54a06;
    border-radius: 8px;
    padding: 21px;
    width: 335px;
    margin-top: 42px;
}
.comment textarea{
  height: 110px;
    width: 95%;
    margin-left: 14px;
}

.total_amount{
  font-size: 20px;
    margin-left: 15px;
    margin-bottom: 15px;
    font-family: 'Domine';
}


.order_summary span{
  text-align: center;
  display: block;
      border-bottom: 3px solid #f54a06;
}
.order_summary p{
  margin-top: 10px;
}
.order_summary p b{
  color: #1297bf;
    font-weight: bold;
    letter-spacing: 0;
}
.order_summary p {color:#31b6ea;}
.subtotal{    text-align: right;}
.subtotal p{ 
  font-weight: bold;
    font-size: 19px;
    margin-bottom: 0;
}
.subtotal h4{
  color: #f54a06;
}
.checkout{
  padding-bottom: 50px;
}
.submit{text-align: right;}
.submit button{
      cursor: pointer;
    padding: 10px 28px;
    margin-right: 13px;
}

.page {
  margin-top: 12px;
}


.arrow {
  border: 2px solid #f54a06;
  border-radius: 4px;
  background: #fff;
  color: #2499bf;
  padding: 8px 20px;
  text-align: center;
}

.arrow--1 {
  position: relative;
}
.arrow--1:after, .arrow--1:before {
  border: solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  pointer-events: none;
  width: 0;
  bottom: 100%;
}
.arrow--1:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
}
.arrow--1:before {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #f54a06;
  left: 50%;
  margin-left: -14px;
  border-width: 14px;
  }

@font-face {
  font-family: "Strasse";
  src: url(font/NumbersStrasse.ttf) format("truetype");
}  

.section_one h1 {
  font-family: "Strasse";
}
.section_two h1 {
  font-family: "Strasse";
}
.section_three h1 {
  font-family: "Strasse";
}
  .section_one:hover { border: 2px solid #072967;background: #ccc;}
  .section_two:hover { border: 2px solid #072967;background: #ccc;}
  .section_three:hover { border: 2px solid #072967;background: #ccc;}
  
  .section_one h4 {
    top: 0;
    margin-top: -153px;
    font-size: 28px;
    padding: 10px;
    color: #08a6d6;
    display: none;
}
.section_two h4{
    top: 0;
    margin-top: -153px;
    font-size: 28px;
    padding: 10px;
    color: #08a6d6;
    display: none;
}

.section_three h4{
    top: 0;
    margin-top: -153px;
    font-size: 28px;
    padding: 10px;
    color: #08a6d6;
    display: none;
}

.section_one:hover h1{opacity: 0.3; cursor: pointer;}
.section_two:hover h1{opacity: 0.3; cursor: pointer;}
.section_three:hover h1{opacity: 0.3; cursor: pointer;}


.section_one:hover h4{display: block;}
.section_two:hover h4{display: block;}
.section_three:hover h4{display: block;}




.page-title{
  font-size:26px !important;
  font-family: 'Domine', sans-serif !important;
}
.row-circles{
  /*padding-left:40px;*/
}

			
  /*the container must be positioned relative:*/
.custom-select {
    position: relative !important;
    font-family: 'Domine', sans-serif !important;
    /*background: #f7f7f7 !important;*/
    background: #fff !important;
    line-height: 13px !important;
    width:250px !important;
    padding:10px !important;
    /*border: 1px solid lightgray !important;
    border-radius: 4px;   */
    /*border:none !important;*/
    border: 1px solid #00c4ff !important;
    font-size: 14px !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-stretch: normal !important;
    letter-spacing: normal !important;
    color: #0287b6 !important;      
    -moz-appearance: auto !important;
    -webkit-appearance: auto !important;
    height: 40px !important;
}

.custom-input {
  position: relative;
  font-family: 'Domine', sans-serif !important;
  /*background: #f7f7f7;*/
  background: #fff;
  line-height: 13px;
  width:250px;
  padding:10px;
  border:none !important;
  /*border: 1px solid lightgray;
  border-radius: 4px;*/
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: #0287b6;  
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0287b6;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #0287b6;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #0287b6;
}

#errormsg{
  background-color:red;
  color:white;
  padding:10px;
  display:none;
}

.errormsg{
  background-color:red;
  color:white;
  padding:10px;
  display:none;
}

.hidden{
  display:none;
}

.page-3{    padding: 120px 0 50px 0;}
.form-control::placeholder {
    color: #31b6ea;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #31b6ea;
}

::-ms-input-placeholder { /* Microsoft Edge */
   color: #31b6ea;
}

.offset-md-1 {
   margin-left: 6.333333%;
}
.form-control {
    margin-bottom: 33px;
}

@media only screen and (max-width:360px) {
  .offset-md-1 {margin-left:0;}
}

@media only screen and (max-width:414px) {
  .offset-md-1 {margin-left:0;}
  .about_us {margin: 120px 0 18px 0;}
}
@media only screen and (max-width:375px) {
  .footer-menu .clearfix li a {margin: 0 0 0 10px;}
  .about_us {margin: 120px 0 18px 0;}


  .book-buttons{
    margin-left:-45px ;
  }
}

@media only screen and (max-width:768px) {
  .offset-md-1 {margin-left: 1.333333%;}

  .book-buttons{
    margin-left:10px !important;    
  }
  
  .upholstery-img-big{
    width:300px !important;
    height:300px !important;
    margin-top:10px !important;
  } 
  
  .service-title span{
    margin-left: 31.5% !important;
  }

  .move-up{
    margin-top:-35px  !important;
  }
  .move-up2{
    margin-top:-185px;
  }

  .move-up3{
    margin-top:-110px !important;
  }
  .move-up4{
    margin-top:-35px !important;
  }

  .submit button{
    margin-right: 0px !important;
  }

}

@media only screen and (max-width:768px) {
  .the-steps img{
    opacity:0.3 !important;
  }  
 
  .steps{
    text-align:left;
    margin-top:-100px !important;
  }
  .steps-img{
    opacity:0.3 !important;
    height: 130px !important;
    width: 65px !important;
    display: inline-block !important;
    border-radius: 0px !important;
    border: none !important;
  }  

  .steps-img-lg{
    opacity:0.3 !important;
    height: 130px !important;
    width: 100px !important;
    display: inline-block !important;
    border-radius: 0px !important;
    border: none !important;
  }

}

.upholstery-img{
  width:250px !important;
  height:250px !important;
  margin-top:10px !important;
}
.cushion-img{
  width:250px !important;
  height:250px !important;
  margin-top:10px !important;
}
.upholstery-img-big{
  width:400px !important;
  height:400px !important;
  margin-top:10px !important;
}
.cushion-img-big{
  width:400px !important;
  height:400px !important;
  margin-top:10px !important;
}
.upholstery-img:hover{
  cursor:pointer;
  opacity: 0.3;
}
.cushion-img:hover{
  cursor:pointer;
  opacity: 0.5;
}

.Fill-1 {
  opacity: 0.2;
  color: #004574;
  font-size:290px;
  font-family:'Domine Condensed', sans-serif;
  font-weight:bold;
  padding-top:5px;
}

.steps{
  text-align:left;
  margin-top:-105px;
  z-index:-1;
}
.move-up{
  margin-top:5px;
}
.move-up2{
  margin-top:-185px;
}
.move-up4{
  margin-top:-105px;
}

.steps-img{
  height: 130px !important;
  width: 65px !important;
  display: inline-block !important;
  border-radius: 0px !important;
  border: none !important;
}
.the-steps {
  opacity:0.3 !important;
}

.steps-img-lg{
  height: 130px !important;
  width: 100px !important;
  display: inline-block !important;
  border-radius: 0px !important;
  border: none !important;
}

.page-steps{
  opacity: 0.3;
  margin-top:100px !important;
  height: 240px !important;
  width:95px !important;
  display: inline-block !important;
  border-radius: 0px !important;
  border: none !important;
}
.page-steps-lg{
  opacity: 0.3;
  margin-top:100px ;
  height: 240px;
  width:155px ;
  display: inline-block !important;
  border-radius: 0px !important;
  border: none !important;
}
@media only screen and (max-width:768px) {
  .page-steps{
    height: 100px !important;
    width:45px !important;
  } 
  .page-steps-lg{
    height: 120px !important;
    width:95px !important;
  }
}

@media only screen and (max-width:768px) {
  .container { display: flex; flex-flow: column; }
  .order_area { order: 1; }
  .customer_info { order: 2;  }

}

.marginTop7Rem{
  margin-top:7rem;
}

.marginTop5Rem{
  margin-top:5rem;
}

.marginTop12Rem{
  margin-top:12rem;
}
/*.checkmark{
  background: url(images/checkmark1.png) no-repeat;
  width:50px;
  height:120px;
}*/

#coiRequiredDiv{
  font-size: 14px;
  color: red;
  width: 230px;
  padding: 5px 0 0 10px;
  text-align: center;
}

.ui-datepicker .ui-datepicker-next {
  background-color: #6d6d94 !important;
}

.ui-datepicker .ui-datepicker-prev {
  background-color: #6d6d94 !important;
}


.custom-select2 {
    position: relative !important;
    font-family: 'Domine', sans-serif !important;
    background: #fff !important;
    line-height: 13px !important;
    width:100% !important;
    padding: 11px 10px 0px 10px!important;
    border: 1px solid #00c4ff !important;
    font-size: 14px !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-stretch: normal !important;
    letter-spacing: normal !important;
    color: #0287b6 !important;      
    -moz-appearance: auto !important;
    -webkit-appearance: auto !important;
    height: 40px !important;
}