.suspension-contain {
  overflow:hidden;
  max-height: 980px;
  position: relative;
}

html.suspended {
  background: rgba(0,0,0,0.6);
}

body {
  margin: 0 auto;
  max-width: 100%;
  min-width: 1200px;
  text-align: center;
}

* {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a {
  color:inherit;
  text-decoration: none;
  color: #fff;
}

a:hover {
  color:inherit;
  text-decoration: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
dd{
  margin: 0;
  padding: 0;
  line-height: 1;
}

ul, 
ol {
  list-style-type: none;
}

.row {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.cta {
  display: none;
 }

.ctc-hide {
  display: none !important;
 }

img {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  height: unset !important;
}

.mobile{
  display: none;
}
/*fonts*/
@font-face {
    font-family: 'socialicoregular';

    src: url('fonts/socialico/socialico-webfont.eot');

    src: url('fonts/socialico/socialico-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/socialico/socialico-webfont.woff2') format('woff2'),
         url('fonts/socialico/socialico-webfont.woff') format('woff'),
         url('fonts/socialico/socialico-webfont.ttf') format('truetype'),
         url('fonts/socialico/socialico-webfont.svg#socialicoregular') format('svg');

    font-weight: normal;

    font-style: normal;

}

@font-face {
    font-family: 'socialico_plusregular';

    src: url('fonts/socialico-plus/socialico_plus-webfont.eot');

    src: url('fonts/socialico-plus/socialico_plus-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/socialico-plus/socialico_plus-webfont.woff2') format('woff2'),
         url('fonts/socialico-plus/socialico_plus-webfont.woff') format('woff'),
         url('fonts/socialico-plus/socialico_plus-webfont.ttf') format('truetype'),
         url('fonts/socialico-plus/socialico_plus-webfont.svg#socialico_plusregular') format('svg');

    font-weight: normal;

    font-style: normal;

}

/*floats*/
.fl {
  float:left;
 }
.fr {
  float:right;
 }

/*typography*/
.text-primary {
  color: #B11414;
 }

.text-bold { 
  font-weight: 700;
 }

.text-uppercase {
  text-transform: uppercase 
}

.text-center {
  text-align: center !important;
 }

.text-left {
  text-align: left;
 }

.hovicon:after {
  top: -8px;
  left: -8px;
  padding: 8px;
  z-index: -1;
  opacity: 0;
}

.hovicon:after {position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content:'';
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.icons {
  font-size: 45px;
  line-height: 90px;
  cursor: pointer;
  margin: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  text-decoration: none;
  z-index: 1;
  color: #fff;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icons:after {
  -webkit-box-shadow: 3px 3px rgba(255, 255, 255, 1);
          box-shadow: 3px 3px rgba(255, 255, 255, 1);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.icons:hover:after {
  opacity: 1;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.icons:before {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  -o-transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
}

.icons:hover:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.flexs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flexc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: #FFF;
  position: relative;
  border: none;
  background: #222222;
  z-index: 1;
  width: 290px;
  height: 73px;
  text-transform: uppercase;
  font-family: 'Play', sans-serif;
}

.btn:hover {
  color: #fff;
  text-shadow: 0px 5px 10px #fff;
}

.btn::after {
  content: "";
  background: #455055;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all .4s linear;
  -o-transition: all .4s linear;
  transition: all .4s linear;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  z-index: -1;

}

.btn:hover::after {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

/*clearings*/

.clear{
  clear:both;
 }

.clearfix:after {
  height:0;
  clear:both;
  content:".";
  font-size: 0;
  display:block;
  visibility:hidden;
}

.clearfix {
  display:block;
 }

/*cookie*/
.cc-animate.cc-revoke.cc-bottom{
  font-size: 14px;
  position: fixed;
  padding: 5px 10px;
  bottom: 0!important;
  left: 20px!important;
  display: block!important;
  -webkit-transform: none!important;
      -ms-transform: none!important;
          transform: none!important;
}

/*call to action*/
.cta {
  display: none;
 }

/*contact form messages*/
form .messages p {
  display: none;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

form .loading {
  display: none;
}

form .alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

form .alert-success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8;
}

form .alert-danger {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}

form [type="submit"] {
  margin:20px auto }

/*contact form*/
form .loading {
  width: 100%;
  margin: auto;
  max-width: 20px;
}

.inner #content .ctc-form {
  background: #8C1818;
  margin: 0 auto;
  font-family: 'Open Sans';
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
} 

.inner #content .ctc-form h2 {
  text-align: center !important;
  padding: 5px 0 20px;
}
.inner #content .ctc-form ::placeholder {
  color: #fff;
}
.inner #content .ctc-form input[type="text"],
.inner #content .ctc-form textarea {
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ddd;
  color:#000;
  height:45px;
  display: block;
  width: 100%;
  padding: 5px 10px 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 8px;
  max-width: 100%;
  font-family: 'Open Sans';
  background: transparent;
}

.inner #content .ctc-form textarea {
  height: 120px;
  padding-top:10px;
}

.inner #content .ctc-form button {
  display: block;
}

.inner #content .ctc-form .recap {
  display: inline-block;
}

.inner #content .ctc-form .g-recaptcha div {
  margin: 0 auto 10px;
}

/*gallery*/
#content .gallery {list-style-type: none;
  margin: 0;
  padding: 0;
}

#content .gallery li {
  display: inline-block;
}

#content .gallery li a img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}


#content .gallery-container {
  text-align: center;
}

#content .thumbnail {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: block;
  line-height: .42857;
  margin-bottom: 20px;
  padding: 4px;
  -webkit-transition: border 0.5s ease-in-out 0s;
  -o-transition: border 0.5s ease-in-out 0s;
  transition: border 0.5s ease-in-out 0s;
}

#content .thumbnail:hover {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

#content .page_navigation {
  display: inline-block;
}

#content .page_link,
#content .previous_link,
#content .next_link,
#content  .first_link,
#content  .last_link, 
#content .ellipse {
  background-color: #fff;
  border: 1px solid #ddd;
  color:  #0275d8;
  display: inline-block;
  line-height: 1.25;
  margin-left: -1px;
  padding: 0.5rem 0.75rem;
  position: relative;
}
#content .page_navigation > a:hover, 
.page_navigation > a.active_page {
  background-color: #eceeef;
  border-color: #ddd;
  color: #014c8c;
  text-decoration: none;
}

h1 {
  font-size: 50px;
  font-weight: 400;
  color: #000;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  font-weight: 400;
  color: #000;
  line-height: 120%;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  line-height: 120%;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 120%;
}

h5 {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  line-height: 120%;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 120%; font-family:'Montserrat', sans-serif
}

/*header*/
#header {
  padding: 20px 0 0;
  width: 100%;
  position: relative;
  z-index: 99;
  background: url(../images/common/header-bg.jpg) no-repeat center;
  background-size: 100% 100%;
  height: 500px;
}
#header .row {
  max-width: 1300px;
}
#header img[alt="ms2-logo"] {
  max-width: 708px;
}
#header nav {
  margin-top: 15px;
  padding: 20px 10px;
  position: relative;
}
#header nav::before {
  content: "";
  width: 1035px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#header nav::after {
  content: "";
  width: 1035px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#header nav ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header nav ul li {
  vertical-align: middle;
}
#header nav ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.09em;
}


/*banner*/
/* #banner {
  background: #6497B1;
  padding: 40px 10px;
} */


/*guarantee*/
#guarantee {
  background: url(../images/content/guarantee.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 50px 10px 160px;
  font-family: 'Russo One', sans-serif;
}
#guarantee .row {
  max-width: 1366px;
}
#guarantee h2 {
  font-size: 80px;
  color: #fff;
  line-height: 88px;
}
#guarantee h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
#guarantee #gq {
  margin-top: 46px;
  display: flex;
  justify-content: space-between;
}
#guarantee #gq > div {
  flex-basis: 32%;
}
#guarantee #gq #gq-left img {
  max-width: 435px;
}
#guarantee #gq #gq-left > div:first-of-type,
#guarantee #gq #gq-right > div:first-of-type {
  margin-bottom: 33px;
}
#guarantee #gq > div div {
  position: relative;
  line-height: 0;
}
#guarantee #gq > div h4 {
  font-size: 36px;
  color: #fff;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
}


/*welcome*/
#welcome {
  position: relative;
  line-height: 0;
}
#welcome #wc-top::before {
  content: "";
  background: #8C1818;
  width: 15px;
  height: 180px;
  position: absolute;
  left: 0;
}
#welcome #wc-top {
  background: url(../images/content/house-right.jpg) no-repeat right;
  background-size: 704px 100%;
  padding: 150px 10px;
}
#welcome #wc-top .row {
  position: relative;
  max-width: 1618px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
#welcome #wc-top #wt-left {
  flex-basis: 45%;
  margin: 0 0 0 200px;
  font-family: 'Play', sans-serif;
}
#welcome #wc-top #wt-left h4 {
  color: #8C1818;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
#welcome #wc-top #wt-left h3 {
  font-size: 70px;
  color: #212121;
  line-height: 110%;
  max-width: 680px;
}
#welcome #wc-top #wt-right {
  flex-basis: 42%;
  font-family: 'Montserrat', sans-serif;
}
#welcome #wc-top #wt-right p {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 3px;
  color: #333333;
  max-width: 671px;
}
#welcome #wc-bot {
  position: relative;
  background: url(../images/content/mhs.jpg) no-repeat center;
  background-size: 100% 100%;
  height: 570px;
}
#welcome #wc-bot .row {
  max-width: 1400px;
  background: #8C1818;
  padding: 15px 0;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
}
#welcome #wc-bot h4 {
  font-size: 38px;
  line-height: 35px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
#welcome #wc-bot h3 {
  font-size: 80px;
  line-height: 88px;
  color: #fff;
  font-family: 'Russo One';
}


/*recent-works*/
#recent-works {
  position: relative;
}
#recent-works #rw-top {
  position: relative;
  line-height: 0;
  padding: 250px 0 150px;
  font-family: 'Play', sans-serif;
}
#recent-works #rw-top::before {
  content: "";
  background: #8C1818;
  width: 15px;
  height: 180px;
  position: absolute;
  left: 0;
  top: 250px;
}
#recent-works #rw-top .row {
  max-width: 100%;
  text-align: left;
}
#recent-works #rw-top h4 {
  font-size: 20px;
  color: #8C1818;
  font-weight: 700;
}
#recent-works #rw-top h4,
#recent-works #rw-top h3 {
  text-indent: 205px;
}
#recent-works #rw-top h3 {
  font-size: 70px;
  color: #212121;
  margin: 10px 0 85px;
}
#recent-works #rw-top #home-gallery {
  display: flex;
}

#recent-works #rw-bot {
  position: relative;
  line-height: 0;
  background: url(../images/content/rw-bot.jpg) no-repeat center;
  background-size: cover;
  padding: 0 10px 180px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
#recent-works #rw-bot .row {
  position: relative;
  max-width: 1760px;
  display: flex;
  justify-content: space-between;
  height: 955px;
}
#recent-works #rw-bot .row #rwb-left {
  flex-basis: 56%;
}
#recent-works #rw-bot .row #rwb-left img {
  max-width: 990px;
  height: 100%;
}
#recent-works #rw-bot .row #rwb-right {
  flex-basis: 42%;
  text-align: left;
}
#rbr-container {
  position: absolute;
  max-width: 957px;
  width: 100%;
  height: 736px;
  top: 110px;
  right: 0;
  text-align: left;
  box-sizing: border-box;
  border: 11px solid #8C1818;
  z-index: 9;
}
#rr-text {
  position: relative;
  z-index: 10;
  margin-top: 200px;
  padding-right: 10px;
}
#recent-works #rw-bot .row #rwb-right h4 {
  font-size: 20px;
  font-family: 'Play', sans-serif;
  color: #8C1818;
}
#recent-works #rw-bot .row #rwb-right h3 {
  font-size: 45px;
  line-height: 110%;
  color: #212121;
  font-family: 'Play', sans-serif;
  max-width: 250px;
  margin: 26px 0;
}
#recent-works #rw-bot .row #rwb-right p {
  font-family: 'Montserrat', sans-serif;
  max-width: 569px;
  font-size: 20px;
  line-height: 160%;
  font-weight: 400;
  margin-bottom: 27px;
}

/*client-reviews*/
#client-reviews {
  background: url(../images/content/client-reviews.jpg) no-repeat center;
  background-size: 100% 100%;
  padding: 45px 10px 200px;
}
#client-reviews .row {
  max-width: 1500px;
}
#client-reviews h2 {
  font-size: 64px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 800;
  line-height: 92px;
  margin-bottom: 40px;
}
#client-reviews #reviews {
  display: flex;
  justify-content: space-between;
}
#client-reviews #reviews .rvw {
  position: relative;
  line-height: 0;
  box-sizing: border-box;
  max-width: 740px;
  width: 100%;
  height: 300px;
  background: #fff;
  display: flex;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
#client-reviews #reviews .rvw .rvw-img {
  flex-basis: 26%;
}
#client-reviews #reviews .rvw .rvw-img img {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  height: 100%;
  width: 100%;
  max-width: 181px;
}
#client-reviews #reviews .rvw .rvw-text {
  flex-basis: 70%;
  padding: 50px 40px;
  text-align: left;
}
#client-reviews #reviews .rvw .rvw-text .stars {
  max-width: 230px;
  display: flex;
  align-items: center;
}
#client-reviews #reviews .rvw .rvw-text .stars img {
  max-width: 130px;
}
#client-reviews #reviews .rvw .rvw-text .stars h5 {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
#client-reviews #reviews .rvw .rvw-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-style: italic;
  line-height: 32px;
  max-width: 443px;
}


/*contact-us*/
#contact-us {
  position: relative;
}
#contact-us .row {
  max-width: 100%;
  display: flex;
}
#contact-us #map {
  flex-basis: 50%;
}
#contact-us #map iframe {
  width: 100%;
  height: 99.5%;
}
#contact-us #reach-to-us {
  flex-basis: 50%;
  background: #8C1818;
  padding: 60px 20px;
}
#contact-us #reach-to-us h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 700;
}
#contact-us #reach-to-us h2 {
  font-family: 'Teko';
  color: #fff;
  font-weight: 700;
  font-size: 77px;
}

#contact-us #reach-to-us .ctc-form {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Open Sans';
}
#contact-us #reach-to-us .ctc-form input[type="text"],
#contact-us #reach-to-us .ctc-form textarea {
  font-size: 14px;
  font-family: 'Open Sans';
  color: #fff;
  height: 45px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 5px 10px 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 25px;
  max-width: 660px;
  background: transparent;
}
#contact-us #reach-to-us .ctc-form ::placeholder {
  color: #fff;
  text-transform: uppercase;
}
#contact-us #reach-to-us .ctc-form textarea {
  height: 120px;
  padding-top: 10px;
}
#contact-us #reach-to-us .ctc-form button {
  display: block;
  background: transparent;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  height: 71px;
  width: 291px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
}
#contact-us #reach-to-us .ctc-form .recap {
  display: inline-block;
}
#contact-us #reach-to-us .ctc-form .g-recaptcha div {
  margin: 0 auto 10px;
}


/*footer*/
#footer {
  background: url(../images/common/footer.jpg) no-repeat top center;
  background-size: cover;
  font-family: serif;
}
#footer .silver img {
  display: inline-block;
  vertical-align: middle;
  max-width: 50px;
}
#footer .ft-top {
  font-family: 'Montserrat', sans-serif;
  padding: 33px 10px 70px;
}
#footer .ft-top .row {
  max-width: 1070px;
}
#footer .ft-top .row img[alt="ms2-logo"] {
  max-width: 634px;
  width: 100%;
}
#footer .ft-top .row #details {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 0;
}
#footer .ft-top .row #details > div {
  flex-basis: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer .ft-top .row #details > div img {
  max-width: 75px;
  margin-bottom: 30px;
}
#footer .ft-top .row #details #locate h4 {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  max-width: 270px;
}
#footer .ft-top .row #details #email a,
#footer .ft-top .row #details #call a {
  line-height: 25px;
  font-weight: 700;
}
#footer .ft-top .row #details #email a {
  font-size: 20px;
}
#footer .ft-top .row #details #call a {
  font-size: 35px;
}
#footer .ft-bot {
  padding: 0 10px 40px 10px;
}
#footer .ft-bot .row {
  max-width: 1290px;
} 
#footer .ft-bot .socials {
  position: relative;
}
#footer .ft-bot .socials::before {
  content: "";
  background: rgba(255, 255, 255, 0.23);
  width: 100%;
  max-width: 473px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 27px;
}
#footer .ft-bot .socials::after {
  content: "";
  background: rgba(255, 255, 255, 0.23);
  width: 100%;
  max-width: 473px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 27px;
}
#footer .ft-bot .socials a {
  font-family: 'socialicoregular';
  font-size: 43px;
  color: #fff;
  letter-spacing: 1em;
  line-height: 120%;
}
#footer .ft-bot .socials a:last-of-type {
  letter-spacing: 0;
}
#footer .ft-bot #ft-nav {
  max-width: 1237px;
  margin: 30px auto;
}
#footer .ft-bot #ft-nav nav ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .ft-bot #ft-nav nav ul li {
  vertical-align: middle;
}
#footer .ft-bot #ft-nav nav ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  position: relative;
  letter-spacing: 0.2em;
}
#footer .ft-bot .copy,
#footer .ft-bot .silver {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 31px;
}

/*inner pages*/
.inner #content {
  min-height: 600px;
  padding: 40px 0
}

.inner #content .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.inner #content h1 {
  text-align: center;
  padding-bottom: 20px;font-family:'Russo One', sans-serif; color:#8C1818
};


.inner #content p {
  text-align: center;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 3px;
  color: #333333;font-family:'Montserrat', sans-serif
}



/*privacy policy*/
.inPrivacyBox {
  max-width: 850px;
  margin: 0 auto;
}

.inPrivacyBox p {
  text-align: justify!important;
}


.destroy-on-load {
  display: none;
}

/*INNER PAGE*/

.inner .content-text p, .inner .content-text ul {
  text-align: left!important;
}

.inner .content-text p {
  margin: 15px 0;
  
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 3px;
  color: #333333;font-family:'Montserrat', sans-serif
}

.inner .inner-content .col h3 {
  
  font-weight: 400;
  font-size: 30px;
  padding-bottom: 20px; font-family:'Play', sans-serif
}

.inner-wrap .col { 
  width: 50%; 
  padding: 0 20px;
}

.inner-wrap .col.line {
  border-right: 1px solid #DDDDDD;
}

.inner-col {
  margin-bottom: 20px;
}

.inner-col .content-img {
  width: 30%;
}

.inner-col .content-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inner-col .content-text {
  width: 65%;
  text-align: left;
}

.inner-col .content-text h5 {
  font-weight: 700;
  font-size: 20px; font-family:'Play', sans-serif
}

.inner-wrap .content-text p a {
  color: #000000!important;
}

.inner-wrap .content-text ul {
  max-width: 400px;
  column-count: 2; 
  padding: 0;
  margin: 0 auto 20px;
}

.inner-wrap .content-text ul li {
  line-height: 180%;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 3px;
  color: #333333;font-family:'Montserrat', sans-serif
}

/*SERVICES*/

#gq {
  margin-top: 46px;
  display: flex;
  justify-content: space-between;
}
#gq > div {
  flex-basis: 32%;
}
#gq #gq-left img {
  max-width: 435px;
}
#gq #gq-left > div:first-of-type,
#gq #gq-right > div:first-of-type {
  margin-bottom: 33px;
}
#gq > div div {
  position: relative;
  line-height: 0;
}
#gq > div h4 {
  font-size: 36px;
  color: #fff;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;font-family:'Play', sans-serif
}

/*REVIEWS*/

.inner .revCon {
    max-width: 960px;
    margin: 30px auto;
    background: transparent;
    box-shadow: 0 0 10px #000;
    padding: 20px;
    text-align: center;
}

.inner .revCon .stars {
    font-size: 30px;
    color: #ffd633;
    line-height: 1;
    letter-spacing: 5px;
}

.inner .revCon p {
    font-size: 20px;
    color: #545454;
    margin: 0 auto;
    line-height: 2;
} 

.inner .revCon strong {
    font-size: 20px;
}



/* privacy page */
.inPrivacyBox ul li {
    text-align: left;
    list-style: disc;
}
.inPrivacyBox p {
    line-height: 180%;
}


.socials a {
    pointer-events: none;
}






/* mobile fit */
@media screen and ( max-width: 1700px ){
  #rbr-container {
    max-width: 920px;
  }
}
@media screen and ( max-width: 1620px ){
  #welcome #wc-top #wt-left {
    flex-basis: 45%;
    margin: 0 0 0 50px;
  }
  #welcome #wc-top #wt-left h3 {
    font-size: 54px;
  }
  #welcome #wc-top #wt-right {
    flex-basis: 52%;
  }
  #welcome #wc-top #wt-right p {
    font-size: 13.3px;
  }
}
@media screen and ( max-width: 1550px ){
  #rbr-container {
    max-width: 800px;
  }
}
@media screen and ( max-width: 1530px ){
  #client-reviews #reviews .rvw {
    margin: 0 10px;
  }
  #recent-works #rw-top h4,
  #recent-works #rw-top h3 {
    text-indent: 120px;
  }
}
@media screen and ( max-width: 1440px ){
  #rbr-container {
    max-width: 760px;
  }
}
@media screen and ( max-width: 1400px ){
  
  #welcome #wc-bot .row {
    max-width: 1200px;
  }
  #welcome #wc-bot h4 {
    font-size: 30px;
  }
  #welcome #wc-bot h3 {
    font-size: 70px;
  }
  #guarantee h2 {
    font-size: 70px;
  }
  #guarantee #gq > div h4 {
    font-size: 30px;
  }
}
@media screen and ( max-width: 1270px ){
  #welcome #wc-top #wt-left h3 {
    font-size: 50px;
  }

  #rbr-container {
    max-width: 670px;
  }
}
@media screen and ( max-width: 1200px ){
  #welcome #wc-bot .row {
    max-width: 1150px;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
    width: 100%;
    margin: auto !important;
  }

  .mobile{
    display:block;
  }

  .desktop{
    display: none;
  }

  .btn {
    width: 200px;
    height: 50px;
    margin: auto;
  }

  #header {
    position: relative;
    height: 400px;
    padding: 0
  }

  #header .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }

  #header nav {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #header nav ul {
    max-width: 100%;
    display: none;
    height: auto;
    background: #000;
  }

  #header nav ul li {
    max-width: 100%;
    position: relative;
    padding: 10px 35px;
    display: block;
    text-align: center
  }

  #header nav ul li a {
    padding: 0;
    font-size: 16px;
  }

  #header nav a {
    text-align: left;
    width: 100%;
    text-indent: 25px;
  }

  #header nav a#pull {
    display: block;
    background:#8C1818;
    background: #8C1818;
    width: 100%;
    position: relative;
    height: 45px;
    color: #fff;
    z-index: 999;
  }

  #header nav a#pull:after {
    content: "";
    background: url("../images/nav-icon.png") no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 13px;
  }

  #header nav a#pull strong {
    line-height: 45px;
  }

  #guarantee {
    background-attachment: fixed;
    background-size: cover;
    padding: 40px 10px;
  }

  #guarantee h2 {
    font-size: 40px;
  }

  #guarantee h3 {
    font-size: 20px;
  }

  #guarantee #gq {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  #guarantee #gq > div {
    flex-basis: 100%;
  }

  #welcome #wc-top {
    padding: 40px 10px;
  }

  #welcome #wc-top .row {
    flex-direction: column;
    align-items: center;
  }

  #welcome #wc-top #wt-left {
    margin: 0;
    text-align: center;
  }

  #welcome #wc-bot {
    height: auto;
  }

  #welcome #wc-bot h4 {
    font-size: 20px;
  }

  #welcome #wc-bot h3 {
    font-size: 40px;
  }

  #recent-works #rw-top {
    padding: 40px 10px;
  }

  #recent-works #rw-top #home-gallery {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  #recent-works #rw-bot .row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
  }

  #recent-works #rw-top h4, 
  #recent-works #rw-top h3 {
    text-indent: 0;
    text-align: center
  }

  #recent-works #rw-top h3 {
    margin: 15px 0;
    font-size: 40px
  }

  #rr-text {
    margin-top: 0;
  }

  #recent-works #rw-bot {
    padding: 40px 10px;
  }

  #recent-works #rw-bot .row #rwb-right h3 {
    text-align: center;
    max-width: 100%;
  }

  #recent-works #rw-bot .row #rwb-right h4 {
    text-align: center
  }

  #recent-works #rw-bot .row #rwb-right {
    flex-basis: 100%;
  }

  #recent-works #rw-bot .row #rwb-right p {
    font-size: 16px;
    max-width: 100%;
  }

  #rbr-container {
    display: none
  }

  #client-reviews {
    background-attachment: fixed;
    background-size: cover;
    padding: 40px 10px;
  }

  #client-reviews #reviews .rvw .rvw-text .stars {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center
  }

  #client-reviews h2 {
    font-size: 40px;
  }

  #client-reviews #reviews {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  #client-reviews #reviews .rvw {
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  #client-reviews #reviews .rvw .rvw-img {
    flex-basis: 100%;
  }

  #contact-us .row {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }

  #contact-us #map iframe {
    height: 300px;
  }

  #contact-us #map,
  #contact-us #reach-to-us {
    flex-basis: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  #footer .ft-top .row #details {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  #footer .ft-top .row #details > div {
    width: 100%;
    flex-basis: 100%;
  }

  #footer .ft-bot #ft-nav nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  #header nav::after,
  #header nav::before {
    display: none
  }

  #client-reviews #reviews .rvw .rvw-text {
    padding: 30px 10px;
  }

  .cta {
    background: #8C1818 url("../images/common/phonecall.png") no-repeat center
      center;
    border-bottom-left-radius: 40px;
    border: 2px solid #fff;
    border-top-left-radius: 40px;
    bottom: 1%;
    display: block;
    height: 70px;
    position: fixed;
    right: 0;
    text-decoration: none;
    text-indent: -9999em;
    width: 80px;
    z-index: 999;
    border-right: none;
  }

  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }

  .sticky a#pull {
    height: 40px !important;
  }

  .sticky a#pull strong {
    line-height: 40px !important;
  }

  .sticky a#pull:after {
    top: 10px !important;
  }

  .sticky ul li {
    padding: 5px 35px !important;
  }

  .inner #content {
    padding: 20px 10px;
  }

  .flexs,
  .flexc,
  #gq {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .inner-col .content-text {
    text-align: center;
    width: 100%
  }

  .inner-col .content-img {
    width: 50%;
  }

  .inner-wrap .col {
    width: 100%
  }
}

@media screen and (max-width: 425px) {
  #header {
    height: 250px;
  }

  .cta {
    height: 60px;
  }

  #content .page_link,
  #content .previous_link,
  #content .next_link,
  #content .first_link,
  #content .last_link,
  #content .ellipse {
    font-size: 12px;
    padding: 5px 7px;
  }
}

@media screen and (max-width: 320px) {
  .g-recaptcha {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }

  .inner #content .testi .auth {
    font-size: 17px;
    text-align: left;
  }
}
