/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
/* html {

        font-size: 62.5%;  default browser font size is 16px it is best practice to place font-size in percentage 
        // 1 rem = 10px then 10px/16 = 62.5%

    

        @include respond(tab-land){
            font-size: 56.25%;  // 1rem = 9 px, 9/16 = 56.25%
        }


        @include respond(tab-port){
            font-size: 50%; // 1rem = 8 px, 8/16 = 50%
        }

        @include respond(big-desktop){
            font-size: 75%;
        }

        

    
    }*/
body {
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif !important;
  background-color: #d6d6d6; }

.splash {
  background-color: #C20203;
  height: 100vh;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center; }

#preloader2 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/Gear-0.2s-200px.gif") no-repeat center center; }

.main-header {
  color: #444;
  text-decoration: underline;
  text-decoration-color: #ED5C2F;
  text-underline-offset: 15px; }

.center {
  text-align: center; }

.color-white {
  color: white; }

@media screen and (max-width: 767px) {
  .margin-small {
    margin-top: 20px; }
  .margin-small-bottom {
    margin-bottom: 20px; } }

.main-hr {
  margin: 50px 0; }

.hidden {
  display: none !important; }

/* == LETS MODIFY SOME COLORS AND STYLE FOR THE DEMO == */
/* Change the style of the text */
.media-box-text {
  color: #6B6B6B;
  line-height: 21px; }

/* Change style of title */
.media-box-title {
  color: #444;
  font-weight: bold;
  font-size: 15px;
  text-transform: capitalize;
  font-family: "Ubuntu", sans-serif; }

/* Remove the white background of the content area */
.media-box-content {
  padding: 20px 10px; }

/* Remove box shadow from the media boxes */
.media-box-container {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none; }

/* Style of the thumbnail-overlay */
.thumbnail-overlay {
  background: transparent; }

/* change bootstrap style of the buttons */
.btn {
  background-color: #ED5C2F;
  color: #fff !important;
  margin: 5px;
  border: none !important;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.btn:hover, .btn:active, .btn:focus {
  background-color: #ED5C2F; }

/* Remove overflow hidden from media-box-container */
.media-box-container {
  overflow: visible; }

/* Center filters */
.filters-container {
  text-align: center;
  margin-bottom: 30px; }

.style-msg,
.style-msg2 {
  position: relative;
  display: block;
  color: #444;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; }

.style-msg2 {
  border-left: 4px solid rgba(0, 0, 0, 0.2); }

.successmsg {
  background: #C5EBD4;
  color: #184B21; }

.errormsg {
  background: #FFCCCC;
  color: #740D0A; }

.infomsg {
  background: #B9DFF4;
  color: #124F70; }

.alertmsg {
  background: #FCE0B6;
  color: #975E06; }

.style-msg .sb-msg,
.style-msg2 .msgtitle,
.style-msg2 .sb-msg {
  display: block;
  padding: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6); }

.style-msg2 .msgtitle {
  background: rgba(0, 0, 0, 0.15);
  border-top: none;
  border-bottom: none;
  font-size: 15px;
  font-weight: bold; }

.style-msg-light .sb-msg,
.style-msg-light .msgtitle {
  color: #FFF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); }

.style-msg2 .sb-msg {
  font-weight: normal; }

.style-msg2 ol,
.style-msg2 ul {
  margin: 0 0 0 30px; }

.style-msg2 ol {
  list-style-type: decimal; }

.style-msg2 ul {
  list-style-type: disc; }

.alert i,
.sb-msg i,
.msgtitle i {
  position: relative;
  top: 1px;
  font-size: 14px;
  width: 14px;
  text-align: center;
  margin-right: 5px; }

.style-msg .close {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px; }

#template-contactform {
  position: relative; }

.preloader,
.preloader2,
.form-process {
  display: block;
  width: 100%;
  height: 100%;
  background: url("images/preloader.gif") center center no-repeat #FFF; }

.form-process {
  display: none;
  position: absolute;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.7); }

#contact-form-overlay,
#contact-form-overlay-mini {
  position: relative;
  max-width: 800px;
  background-color: #FFF;
  padding: 40px;
  margin: 0 auto;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15); }

#contact-form-overlay-mini {
  float: right;
  width: 380px;
  margin: 0; }

label.error {
  margin-top: 5px;
  color: #E42C3E;
  font-weight: 400; }

label.error {
  display: none !important; }

.show-error-msg + label.error {
  display: block !important; }

input[type=checkbox]:not(:checked) + label.error {
  display: block !important; }

.form-control.error,
.sm-form-control.error {
  border-color: #E42C3E; }

label {
  color: #444; }

.header {
  background-color: #484846; }

.nav-link {
  font-size: 15px !important;
  font-weight: bold; }

.menu-link {
  color: white; }

.mega-menu-column a {
  font-weight: bold !important;
  color: #444 !important; }

.top-bar {
  padding: 10px 0; }
  .top-bar__left {
    clear: both;
    float: right;
    color: white;
    font-weight: bold;
    font-size: 18px; }
  .top-bar__right {
    color: white;
    font-weight: bold;
    font-size: 18px; }
  .top-bar__icons:hover {
    color: #444; }

.footer {
  background-color: #484846;
  margin-top: 150px; }
  .footer__inner {
    padding: 100px 0 50px 0; }
  .footer__creator {
    background-color: #484846;
    text-align: center;
    padding-bottom: 30px; }
    .footer__creator-image {
      height: 80px;
      margin: 0 auto; }
  .footer__headers {
    color: #ED5C2F;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center; }
  .footer__contact {
    margin-bottom: 15px; }
  .footer li {
    margin-bottom: 8px;
    text-align: center; }
  .footer__links {
    color: white; }
    .footer__links:hover {
      color: #ED5C2F; }

.section-about-us {
  margin-top: 5rem; }
  .section-about-us__header {
    color: #444 !important;
    text-decoration: underline;
    text-decoration-color: #ED5C2F;
    text-align: center;
    margin-bottom: 2rem; }
  .section-about-us__text {
    color: #444;
    text-align: center; }
  @media screen and (max-width: 767px) {
    .section-about-us__image {
      max-width: 300px;
      text-align: center; } }

.section-finance {
  background-color: #ED5C2F;
  margin-top: 8rem;
  text-align: center; }
  .section-finance__block {
    padding: 120px 0; }
  .section-finance__header {
    color: #fff; }

.section-current-deals {
  margin-bottom: 6rem; }
  .section-current-deals__header {
    text-align: center;
    color: #444;
    margin-top: 6rem;
    margin-bottom: 2rem; }

.section-newsletter {
  background-image: url("../img/background-mail.png");
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px; }
  .section-newsletter__block {
    margin-top: 100px;
    text-align: center; }
  .section-newsletter__header {
    color: white;
    -webkit-text-stroke: 2px #444; }
  .section-newsletter__button {
    margin-top: 2rem;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    border-radius: 25px;
    background-color: #444; }

@media screen and (max-width: 991px) {
  .section-newsletter {
    height: 600px; } }

.section-shop-category .col-lg-3 {
  padding-right: 0;
  padding-left: 0; }

.media-box-container {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.61) !important;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.61) !important; }

.section-product__image {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.61) !important;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.61) !important; }

.section-product__header {
  color: #444;
  font-size: 2.8rem; }

@media screen and (max-width: 767px) {
  .section-product__header {
    margin-top: 40px; } }

.section-product__cost {
  color: #ED5C2F !important;
  font-size: 1.8rem;
  font-weight: bold; }

.section-product__category {
  color: #444; }

.section-product a {
  color: #ED5C2F; }

.section-product a:focus a:active .show .active {
  color: #444 !important; }

.section-product tr {
  color: #444; }

.section-product p {
  color: #444; }

.section-product .btn {
  padding: 0.6rem 0.6rem;
  font-weight: bold;
  font-size: 1.0rem;
  color: #fff !important;
  background-color: #444; }

.tabs.tabs-folder .tab-content {
  margin-top: -1px;
  border: 1px solid #e6e8eb;
  bottom: 10px;
  padding: 30px;
  border-radius: 0 6px 6px 6px; }

.tab-content {
  background-color: #fff; }

.tabs__icon {
  margin-right: 0.3rem; }

.section-moreproducts__header {
  text-align: center;
  margin-bottom: 1.7rem;
  color: #444; }

.section-moreproducts__caroussel-item {
  background-color: white;
  text-align: center;
  padding: 1.0rem; }

.section-moreproducts__caroussel-title {
  font-weight: bold;
  margin-top: 2.0rem;
  margin-bottom: 1.0rem;
  font-size: 1.2rem;
  color: #444; }

.section-moreproducts .btn {
  padding: 0.6rem 0.6rem; }

.services-details__container {
  border: 3px solid #ED5C2F; }

.services-details__title {
  margin-bottom: 1.5rem;
  color: #444; }

.services-details__text {
  color: #666; }

@media screen and (max-width: 767px) {
  .services-details__block {
    background-color: white;
    text-align: center;
    padding: 5px; } }

.section-maintenance {
  margin-bottom: 50px; }
  .section-maintenance .card-title {
    color: #444 !important; }
  .section-maintenance .card-text {
    color: #ED5C2F; }
  .section-maintenance .list-group-item {
    color: #444;
    padding: .25rem 1.25rem; }
  @media screen and (max-width: 575px) {
    .section-maintenance .card {
      margin: 0 auto;
      margin-bottom: 25px; } }

.section-shop-price {
  background-color: #444; }
  .section-shop-price__title {
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
    font-size: 34px; }

.section-current-deals .owl-stage {
  padding-top: 15px;
}