/*========================================================
	Main Style CSS for BestRescreenCompany 2023
=========================================================*/

/* colors declaration */
:root {
    --main-text: #000;
    --white: #fff;
    --new-yellow: #f7cc18;
    --new-fushia: #f24141;
    --blue: #00a3d7;
    --pink: #ee3b77;
    --dark-blue: #25547c;
    --drreptext: #dde1eb;
    --services-box: #f5f6fa;
    --footerBg: #f3f4f8;
    --contactform: #777;
     --topblue: #068fd3;
    --lightblue: #b7dcf9;
  }
/* fonts declaration */
@font-face {
  font-family: Barlow;
  src: url('../../fonts/Barlow-Regular.ttf');
}
@font-face {
  font-family: Barlow-Medium;
  src: url('../../fonts/Barlow-Medium.ttf');
}
@font-face {
  font-family: Barlow-Bold;
  src: url('../../fonts/Barlow-Bold.ttf');
}
@font-face {
  font-family: Barlow-Black;
  src: url('../../fonts/Barlow-Black.ttf');
}
@font-face {
  font-family: PT-Sans-Narrow;
  src: url('../../fonts/PTSansNarrow-Bold.ttf');
}
  /*========================================================
                                          RESET
  =========================================================*/

  html,
  body,
  div,
  span,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  abbr,
  address,
  em,
  img,
  sub,
  sup,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  form,
  label,
  legend,
  caption,
  article,
  aside,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section,
  time,
  mark,
  audio,
  video {
    margin: 0;
    padding: 0;
    border: 0;
  }

  ul {
    list-style: none;
  }

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

  *:focus {
    outline: none;
  }

  * {
    box-sizing: border-box;
  }

  input[type='submit'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  /*========================================================
                        Main Styles
  =========================================================*/
  body {
    background: #fff;
    font-family: 'Barlow', arial, sans-serif;
    font-weight: 400;
    color: var(--main-text);
    font-size: 30px;
    margin: 0;
  }

  li {
    list-style-type: none;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
  h1,h2,h3,h4,h5,h6{
    font-weight: 900;
    text-transform: uppercase;
  }
  h2{
    font-size: 72px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
     h2{
        font-size: 52px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     h2{
        font-size: 42px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      h2{
        font-size: 36px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      h2{
        font-size: 32px;
      }
  }
  @media only screen and (max-width: 767px) {
     h2{
        font-size: 28px;
      }
  }
  @media only screen and (max-width: 479px) {

  }
 /*=======================================================
    TOP
=========================================================*/
.bodyFrame {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.navFrame {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    top: 0;
    z-index: 9999;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .1);
}

.companyData {
    width: 100%;
    margin: 0 auto;
    height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.one {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two {
    width: 25%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.three {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.logoBox {
    position: relative;
}

.logoBox img {
	width: 216px;
	position: absolute;
	top: -54px;
	left: 0px;
}

.topInfoList {
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-position: left center;
    font-family: Barlow-Bold, arial, sans-serif;
    font-size: 30px;
    text-transform: capitalize;
    /* padding-left: 88px; */
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topInfoList span {
    text-align: left;
    display: block;
    color: var(--topblue);
}

.topInfoList a {
    padding-left: 88px;
    display: inline-block;
    position: relative;
}

.hoursList {
    background-image: url('../images/index/icon-clock-min.png');
}

.phonesList {
    background-image: url('../images/index/icon-phone.png');
}

/* .m-highlight{
    border-bottom: 3px solid var(--pink);
} */

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .logoBox img {
        width: 180px;
    }

    .topInfoList {
        font-size: 31px;
    }

    .topInfoList a{
        padding-left: 70px;
    }

}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .logoBox img {
        width: 155px;
        top: -40px;
    }
    .topInfoList {
        font-size: 24px;
        padding-left: 0;
    }
    .companyData {
        height: 90px;
    }
    .topInfoList a{
        padding-left: 55px;
    }

}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .logoBox img {
        width: 140px;
        top: -40px;
    }

    .topInfoList {
        font-size: 19px;
        padding-left: 0;
    }

    .companyData {
        height: 100px;
    }
    .topInfoList a{
        padding-left: 45px;
    }

}
  /*========================================================
      NAVIGATION
  =========================================================*/
  .smobitrigger,
  .mnuclose,
  .telMob,
  .menuTop ul li.mlogo,
  .menuTop ul li.mphone,
  .menuTop ul li.mhours,
  .menuTop ul li.maddress,
  .menuTop ul li.msocial,
  .menuTop .mLine,
  .menuTop .mmlink,
  .logoMobi,
  .menuTop ul li.mmlinkMargTop{
    display: none;
  }
  .menuTop ul li.mlink {
    font-size: 30px;
    display: inline-block;
    text-transform: capitalize;
    padding: 5px 10px;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
  }

  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .menuTop ul li.mlink {
        font-size: 23px;
    }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .menuTop ul li.mlink {
        font-size: 18px;
    }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .menuTop ul li.mlink {
        font-size: 16px;
      padding: 5px 5px;
    }
  }


  /*========================================================
                  Buttons
  =========================================================*/
  .newBanBtn {
    background: var(--topblue);
    color: var(--white);
    cursor: pointer;
      display: inline-block;
      padding: 35px 105px;
      font-family: 'Barlow', arial, sans-serif;
    font-size: 36px;
      font-weight: 500;
      line-height: 1.3;
    text-transform: capitalize;
      text-align: center;
      border-radius: 64px;
      letter-spacing: 2px;
  }
  .newBanBtn span {
      font-size: 21px;
      display: block;
  }
  .gallBtn {
      padding: 15px 55px;
      line-height: 1.1;
  }
  .drRepTodayBtn {
    background: var(--pink);
    color: var(--white);
    cursor: pointer;
      display: inline-block;
      padding: 35px 55px;
      font-family: 'Barlow', arial, sans-serif;
    font-size: 36px;
      font-weight: 500;
      line-height: 1.3;
    border: 20px solid #f5f6fa;
    text-transform: capitalize;
      text-align: center;
      border-radius: 120px;
      letter-spacing: 2px;
  }
  .servDryBtn {
    background: var(--topblue);
    color: var(--white);
    cursor: pointer;
      display: inline-block;
      padding: 35px 65px;
      font-family: 'Barlow', arial, sans-serif;
    font-size: 36px;
      font-weight: 500;
      line-height: 1.3;
    text-transform: capitalize;
      text-align: center;
      border-radius: 64px;
      letter-spacing: 2px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .newBanBtn {
          padding: 25px 85px;
          font-size: 26px;
      }
      .drRepTodayBtn {
          padding: 25px 45px;
          font-size: 26px;
          border: 16px solid #f5f6fa;
      }
      .servDryBtn {
          padding: 25px 55px;
          font-size: 26px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .newBanBtn {
          padding: 20px 65px;
          font-size: 21px;
      }
      .drRepTodayBtn {
          padding: 20px 35px;
          font-size: 21px;
          border: 9px solid #f5f6fa;
      }
      .servDryBtn {
          padding: 20px 35px;
          font-size: 19px;
      }
      .gallBtn {
          border-radius: 38px;
          padding: 15px 55px;
      }
      .gallBtn  span {
          font-size: 16px;

      }

  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .newBanBtn {
          padding: 20px 65px;
          font-size: 21px;
      }
      .drRepTodayBtn {
          padding: 20px 35px;
          font-size: 21px;
          border: 9px solid #f5f6fa;
      }
      .servDryBtn {
          padding: 20px 35px;
          font-size: 19px;
      }
      .gallBtn {
          border-radius: 38px;
          padding: 15px 55px;
      }
      .gallBtn  span {
          font-size: 14px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .newBanBtn {
          padding: 20px 65px;
          font-size: 21px;
      }
      .drRepTodayBtn {
          padding: 20px 35px;
          font-size: 21px;
          border: 9px solid #f5f6fa;
      }
      .servDryBtn {
          padding: 20px 35px;
          font-size: 19px;
      }
      .gallBtn {
          border-radius: 38px;
          padding: 15px 55px;
      }
      .gallBtn  span {
          font-size: 14px;
      }
  }
  @media only screen and (max-width: 767px) {
    .newBanBtn {
         padding: 15px 35px;
         font-size: 19px;
     }
      .drRepTodayBtn {
          padding: 15px 25px;
          font-size: 18px;
          border: 9px solid #f5f6fa;
      }
      .servDryBtn {
          padding: 20px 35px;
          font-size: 19px;
      }
      .gallBtn {
          border-radius: 38px;
          padding: 15px 55px;
      }
      .gallBtn  span {
          font-size: 14px;
      }
  }
  @media only screen and (max-width: 479px) {

  }
  /*========================================================
      CONTENT
  =========================================================*/
  .pageFull{
    width: 100%;
    margin: 0 auto;
  }
  .pageTop {
    width: 75%;
    margin: 0 auto;
  }
  .container {
    width: 75%;
    margin: 0 auto;
  }

  @media only screen and (max-width: 2559px) {
    .pageTop {
      width: 90%;
    }
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .container {
      width: 80%;
    }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .container {
      width: 90%;
    }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .container {
      width: 90%;
    }
  }
  @media only screen and (max-width: 1023px){
    .container {
      width: 90%;
    }
  }

  /*========================================================
          Index Banner
  =========================================================*/
  .aplusBan{
    background-image: url('../../images/index/banner-top-best-rescreen.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1384px;
    position: relative;
  }
  .aplusBanTop{
    text-align: center;
  }
  .aplusBanTop h1{
    color: var(--pink);
    font-family: 'Barlow', arial, sans-serif;
    font-size: 182px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }
  .aplusBanTop h1 span{
    display: block;
    font-size: 82px;
  }
  .aplusBanTop p{
    margin: 30px 0 0;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: capitalize;
  }
  .aplusBanTop p span{
    display: block;
  }
  .aPlusBalloon{
    width: 496px;
    height: 496px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .aplBlue{
    background-image: url('../../images/index/balloon-blue.png');
    position: absolute;
    left: 30%;
    bottom: 20%;
  }
  .aplOrange{
    background-image: url('../../images/index/balloon-orange.png');
    position: absolute;
    left: 51%;
    bottom: 4%;
  }
  .aPlusBalloon p{
    color: var(--white);
    font-size: 39px;
    font-weight: 700;
    margin: 50px;
    text-align: center;
    text-transform: capitalize;
  }
  .aPlusBalloon p span{
    display: block;
    text-transform: uppercase;
  }
  .aPlusBalloon a{
    color: var(--white);
    font-size: 34px;
    font-weight: 700;
    text-decoration: underline;
    text-transform: capitalize;
  }
  .aPlusBalloon a:hover{
    text-decoration: none;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .aplusBanTop h1 {
          font-size: 130px;
      }
      .aplusBanTop h1 span {
          font-size: 58px;
      }
      .aplusBanTop p {
          font-size: 36px;
      }
      .aPlusBalloon {
          width: 400px;
          height: 400px;
      }
      .aplBlue  {
          bottom: 30%;
          left: 29%;
      }
      .aPlusBalloon p {
          font-size: 48px;
      }
      .aPlusBalloon a {
          font-size: 28px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .aplusBanTop h1 {
          font-size: 100px;
      }
      .aplusBanTop h1 span {
          font-size: 44px;
      }
      .aplusBanTop p {
          font-size: 26px;
          margin-top: 20px;
      }
      .aPlusBalloon {
          width: 300px;
          height: 300px;
      }
      .aplBlue  {
          bottom: 30%;
          left: 29%;
      }
      .aPlusBalloon p {
          font-size: 34px;
          margin: 30px 50px 25px 50px;
      }
      .aPlusBalloon a {
          font-size: 21px;
      }
      .aplusBan {
          height: 980px;
      }
      .aplusBanTop {
          margin-top: 20px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .aplusBanTop h1 {
          font-size: 90px;
      }
      .aplusBanTop h1 span {
          font-size: 40px;
      }
      .aplusBanTop p {
          font-size: 26px;
          margin-top: 20px;
      }
      .aPlusBalloon {
          width: 250px;
          height: 250px;
      }
      .aplBlue  {
          bottom: 30%;
          left: 29%;
      }
      .aPlusBalloon p {
          font-size: 28px;
          margin: 20px 50px 15px 50px;
      }
      .aPlusBalloon a {
          font-size: 18px;
      }
      .aplusBan {
          height: 880px;
      }
      .aplusBanTop {
          margin-top: 20px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .aplusBanTop h1 {
          font-size: 90px;
      }
      .aplusBanTop h1 span {
          font-size: 40px;
      }
      .aplusBanTop p {
          font-size: 21px;
          margin-top: 20px;
      }
      .aplusBanTop p span {
          display: inline-block;
      }
      .aPlusBalloon {
          width: 250px;
          height: 250px;
      }
      .aplBlue  {
          bottom: 30%;
          left: 29%;
      }
      .aPlusBalloon p {
          font-size: 28px;
          margin: 20px 50px 15px 50px;
      }
      .aPlusBalloon a {
          font-size: 18px;
      }
      .aplusBan {
          height: 820px;
      }
      .aplusBanTop {
          margin-top: 35px;
      }
  }
  @media only screen and (max-width: 767px) {
      .aplusBan {
          background: url('../../images/index/bannerMob.jpg') no-repeat;
          background-size: cover;
          background-position: center center;
          height: 900px;
      }
      .aplusBanTop h1 {
          font-size: 80px;
      }
      .aplusBanTop h1 span {
          font-size: 36px;
      }
      .aplusBanTop p {
          font-size: 21px;
          margin-top: 20px;
      }
      .aplusBanTop p span {
          display: inline-block;
      }
      .aPlusBalloon {
          width: 220px;
          height: 220px;
      }
      .aplBlue {
          bottom: 35%;
          left: 42%;
      }
      .aPlusBalloon p {
          font-size: 26px;
          margin: 20px 30px 15px 30px;
      }
      .aPlusBalloon a {
          font-size: 18px;
      }
      .aplusBanTop {
          margin-top: 35px;
      }
      .aplOrange {
          left: 8%;
      }
  }
  @media only screen and (max-width: 479px) {
       .aplusBanTop h1 {
          font-size: 60px;
      }
       .aplusBanTop h1 span {
          font-size: 28px;
      }
      .aplusBanTop p {
          font-size: 18px;
          margin-top: 10px;
      }
      .aplusBan {
          height: 800px;
      }
      .aplOrange {
          left: 2%;
      }
  }
  /*========================================================
          Free Estimate Index
  =========================================================*/
  .freeEstimate{
      margin: 100px 0 160px;
      padding: 150px 0;
      background-color: var(--dark-blue);
  text-align: center;
  }
  .freeEstimate h2{
      color: var(--white);
      font-family: 'Barlow', arial, sans-serif;
      font-size: 82px;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
  }
  .freeEstimate h2 span{
      display: block;
      font-size: 150px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .freeEstimate{
          margin: 90px 0 160px;
          padding: 110px 0;

      }
      .freeEstimate h2{
          font-size: 58px;
      }
      .freeEstimate h2 span{
          font-size: 100px;
      }
      .freeEstimate .stucSecBtnPlace {
          display: inline-block;
          margin-top: 70px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
      .freeEstimate{
          margin: 80px 0 110px;
          padding: 90px 0;
      }
      .freeEstimate h2{
          font-size: 44px;
      }
      .freeEstimate h2 span{
          font-size: 70px;
      }
      .freeEstimate .stucSecBtnPlace {
          margin-top: 40px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .freeEstimate{
          margin: 60px 0 90px;
          padding: 70px 0;
      }
      .freeEstimate h2{
          font-size: 40px;
      }
      .freeEstimate h2 span{
          font-size: 60px;
      }
      .freeEstimate .stucSecBtnPlace {
          margin-top: 30px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .freeEstimate{
          margin: 60px 0 90px;
          padding: 70px 0;
      }
      .freeEstimate h2{
          font-size: 40px;
      }
      .freeEstimate h2 span{
          font-size: 60px;
      }
      .freeEstimate .stucSecBtnPlace {
          display: inline-block;
          margin-top: 30px;
      }
  }
  @media only screen and (max-width: 767px) {
      .freeEstimate{
          margin: 60px 0 60px;
          padding: 70px 0;
      }
      .freeEstimate h2{
          font-size: 40px;
      }
      .freeEstimate h2 span{
          font-size: 60px;
      }
      .freeEstimate .stucSecBtnPlace {
          display: inline-block;
          margin-top: 30px;
      }
  }
  @media only screen  and (min-width: 480px) and (max-width: 767px) {
      .freeEstimate{
          margin: 0 0 60px;
      }
  }
  @media only screen and (max-width: 479px) {
      .freeEstimate{
          margin: 40px 0 60px;
          padding: 50px 0;
      }
      .freeEstimate h2{
          font-size: 28px;
      }
      .freeEstimate h2 span{
          font-size: 40px;
      }
  }

  /*========================================================
          Stucco Section Index
  =========================================================*/
  .stucGallMob {
      display: none!important;
  }
  .stucSecBtnPlaceMob {
      display: none;
  }
  .stucSec{
    padding: 40px 0 160px;
  }
  .stucSec h2{
    text-align: center;
    margin-bottom: 100px;
  }
  .stucSecWrap{
      margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .stucSecWrapRev{
    flex-direction: row-reverse;
  }
  .stucSecLeft,
  .stucSecRight{
    width: 48%;
  }
  .stucSecLeft p{
    line-height: 1.4;
  }
  .stucSecLeft ul{
    margin-top: 100px;
  }
  .stucSecLeft ul li{
    font-size: 32px;
    padding: 0 0 40px;
  }
  .stucSecRight{
    display: flex;
      flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .stucGall{
    background: var(--pink);
    color: var(--white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 90px;
    font-size: 36px;
    text-transform: capitalize;
  }
  .stucGall p{
    margin-bottom: 25px;
  }
  .stucGall,
  .stucGalImg{
    width: 49%;
  }
  .stucGall{
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .stucGalImg{
    display: block;
    padding: 10px;
    border-radius: 90px;
  }
  .stucSecBtnPlace{
    margin-top: 100px;
    text-align: center;
  }
  .stucSec2{
    position: relative;
  }
  .plasterImg{
    position: absolute;
    right: 0;
    top: -8%;
    width: 14%;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .stucSecWrap {
          max-width: 1536px;
      }
      .stucSecLeft p {
          font-size: 22px;
      }
      .stucGall, .stucGalImg {
          width: 47%;
      }
      .stucSecRight {
          width: 705px;
          justify-content: space-between;
      }
      .stucGall {
          margin: 0 0 15px 0;
          width: 346px;
          height: 346px;
      }
      .stucGalImg {
          padding: 0;
          width: 346px;
          height: 346px;
      }
      .stucSecLeft ul li {
          background-size: 50px 50px;
          padding: 20px 0 20px 65px;
          font-size: 28px;
      }
      .stucSecLeft ul {
          margin-top: 75px;
      }
      .stucGall p {
          font-size: 28px;
      }
      .gallArrow {
          width: 90px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .stucSecWrap {
          max-width: 1536px;
      }
      .stucSecLeft p {
          font-size: 18px;
      }
      .stucGall, .stucGalImg {
          width: 47%;
      }
      .stucSecRight {
          width: 556px;
          justify-content: space-between;
      }
      .stucGall {
          margin: 0 0 15px 0;
          width: 271px;
          height: 271px;
          border-radius: 50px;
      }
      .stucGalImg {
          padding: 0;
          width: 271px;
          height: 271px;
          border-radius: 50px;
      }
      .stucSecLeft ul li {
          background-size: 35px 35px;
          padding: 15px 0 15px 45px;
          font-size: 21px;
      }
      .stucSecLeft ul {
          margin-top: 50px;
      }
      .stucGall p {
          font-size: 22px;
      }
      .gallArrow {
          width: 60px;
      }
      .stucSec {
          padding: 20px 0 110px;
      }
      .stucSecBtnPlace {
          margin-top: 60px;
      }
      .plasterImg {
          top: -15%;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .stucSecWrap {
          max-width: 1536px;
      }
      .stucSecLeft p {
          font-size: 16px;
      }
      .stucGall, .stucGalImg {
          width: 47%;
      }
      .stucSecRight {
          width: 442px;
          justify-content: space-between;
      }
      .stucGall {
          margin: 0 0 15px 0;
          width: 214px;
          height: 214px;
          border-radius: 50px;
      }
      .stucGalImg {
          padding: 0;
          width: 214px;
          height: 214px;
          border-radius: 50px;
      }
      .stucSecLeft ul li {
          background-size: 35px 35px;
          padding: 15px 0 15px 45px;
          font-size: 19px;
      }
      .stucSecLeft ul {
          margin-top: 20px;
          padding-left: 40px;
      }
      .stucGall p {
          font-size: 22px;
      }
      .gallArrow {
          width: 60px;
      }
      .stucSec {
          padding: 0 0 90px;
      }
      .stucSecBtnPlace {
          margin-top: 30px;
      }
      .plasterImg {
          top: -15%;
          width: 13%;
      }
      .stucSec h2 {
          margin-bottom: 60px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .stucSecWrap {
          max-width: 100%;
          flex-direction: column;
      }
      .stucSecLeft,
      .stucSecRight {
          width: 100%;
      }
      .stucSecLeft p {
          font-size: 18px;
      }
      .stucGall, .stucGalImg {
          width: 47%;
      }
      .stucSecRight {
          margin: 30px auto 0;
          width: 553px;
          justify-content: space-between;
          text-align: center;
          align-items: center;
      }
      .stucGall {
          margin: 0 0 12px 0;
          width: 271px;
          height: 271px;
          border-radius: 50px;
      }
      .stucGalImg {
          padding: 0;
          width: 271px;
          height: 271px;
          border-radius: 50px;
          margin: 0 0 12px 0;
      }
      .stucSecLeft ul li {
          background-size: 35px 35px;
          padding: 15px 0 15px 0;
          font-size: 19px;
      }
      .stucSecLeft ul {
          margin-top: 20px;
      }
      .stucGall p {
          font-size: 22px;
      }
      .gallArrow {
          width: 60px;
      }
      .stucSec {
          padding: 0 0 60px;
      }
      .stucSecBtnPlace {
          display: none;
      }
      .stucSecBtnPlaceMob {
          display: flex;
          flex-direction: row;
          justify-content: center;
          text-align: center;
          margin: 30px auto 0;
          align-items: center;
          width: 100%;
      }
      .plasterImg {
          top: -15%;
          width: 15%;
      }
      .stucSec h2 {
          margin-bottom: 25px;
      }
  }
  @media only screen and (max-width: 767px) {
     .stucSecWrap {
          max-width: 100%;
          flex-direction: column;
      }
      .stucSecLeft,
      .stucSecRight {
          width: 100%;
      }
      .stucSecLeft p {
          font-size: 18px;
      }
      .stucGall, .stucGalImg {
          width: 47%;
      }
      .stucSecRight {
          margin: 30px auto 0;
          width: 100%;
          justify-content: space-between;
          text-align: center;
          align-items: center;
      }
      .stucGall,
      .stucGalImg {
          display: none;
      }

      .stucGalImgMob {
          padding: 0;
          width: 100%;
          height: auto;
          border-radius: 50px;
          margin: 0 0 12px 0;
      }
      .stucSecLeft ul li {
          background-size: 35px 35px;
          padding: 15px 0 15px 0;
          font-size: 19px;
      }
      .stucSecLeft ul {
          margin-top: 20px;
          padding-left: 40px;
      }
      .stucGall p {
          font-size: 22px;
      }
      .gallArrow {
          width: 60px;
      }
      .stucSec {
          padding: 0 0 60px;
      }
      .stucSecBtnPlace {
          display: none;
      }
      .stucSecBtnPlaceMob {
          display: flex;
          flex-direction: row;
          justify-content: center;
          text-align: center;
          margin: 30px auto 0;
          align-items: center;
          width: 100%;
      }
      .plasterImg {
          display: none;
      }
      .stucSec h2 {
          margin-bottom: 25px;
      }
      .stucGallMob {
          display: block!important;
          width: 432px!important;
          margin: 0 auto;
      }
  }
  @media only screen and (max-width: 479px) {
      .stucSecLeft ul {
          padding-left: 0;
      }
      .stucGallMob {
          width: 100%!important;
      }
  }

  /*========================================================
          Drywall Repair Section Index
  =========================================================*/
  .drRepTodayMob {
      display: none;
  }
  .drRep{
    background: url('../../images/index/need-call-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 170px 0 160px;
    position: relative;
  }
  .drRepWrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .drRepLeft{
    width: 52%;
  }
  .drRepRight{
    width: 48%;
  }
  .drRepLeft h2{
    color: var(--dark-blue);
    font-size: 146px;
    font-weight: 700;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  }

  .drRepPainted{
    background-image: url('../../images/index/bg-blue-min.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 53px 80px 50px 90px;
    text-align: center;
      max-width: 998px;
  }
  .drRepPainted p{
    color: var(--drreptext);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
  }
  .drRepToday{
    color: var(--pink);
    font-size: 347px;
    font-weight: 500;
    line-height: 0.8;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
  }
  .drRepTodayBtnPlace{
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 158px;
  }
  .drRepMan{
    position: absolute;
    bottom: 0;
    right: 11%;
    width: 35%;
      max-width: 896px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .drRepLeft h2 {
        font-size: 111px;
    }
      .drRepPainted p {
          font-size: 28px;
      }
      .drRepPainted {
          background-size: contain;
          max-width: 730px;
          padding: 53px 50px 50px 50px;
      }
      .drRepToday {
          font-size: 270px;
          margin-top: 50px;
      }
      .drRepTodayBtnPlace {
             top: -80px;
      }
      .drRep {
          padding: 90px 0 95px;
      }
      .drRepMan {
          max-width: 672px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .drRepLeft h2 {
        font-size: 89px;
    }
      .drRepPainted p {
          font-size: 21px;
      }
      .drRepPainted {
          background-size: contain;
          max-width: 570px;
          padding: 53px 40px 50px 40px;
      }
      .drRepToday {
          font-size: 210px;
          margin-top: 50px;
      }
      .drRepTodayBtnPlace {
             top: -60px;
      }
      .drRep {
          padding: 60px 0 75px;
      }
      .drRepMan {
          width: 42%;
          right: 5%;
          max-width: 547px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .drRepLeft h2 {
        font-size: 72px;
    }
      .drRepPainted p {
          font-size: 18px;
      }
      .drRepPainted {
          background-size: contain;
          padding: 40px 40px;
          max-width: 480px;
      }
      .drRepToday {
          font-size: 170px;
          margin-top: 50px;
      }
      .drRepTodayBtnPlace {
             top: -50px;
      }
      .drRep {
          padding: 60px 0 75px;
      }
      .drRepMan {
          width: 42%;
          right: 5%;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .drRepToday {
          display: none;
      }
      .drRepLeft h2 {
          font-size: 86px;
          text-align: center;
      }
      .drRepPainted p {
          font-size: 21px;
          width: 520px;
          margin: 0 auto;
      }
      .drRepPainted {
          background-size: contain;
          padding: 34px 20px 38px;
          max-width: 580px;
          margin: 0 auto;
      }
      .drRepToday {
          font-size: 170px;
          margin-top: 50px;
      }
      .drRepTodayBtnPlace {
             top: -60px;
      }
      .drRep {
          padding: 30px 0 0;
          text-align: center;
      }
      .drRepMan {
         position: static;
          width: 490px;
          margin: 30px auto 0;
          display: block;
      }
      .drRepTodayMob {
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--pink);
          font-size: 197px;
          font-weight: 500;
          line-height: 0.8;
          text-transform: uppercase;
          position: relative;
      }
      .drRepWrap {
          flex-direction: column;
      }
      .drRepLeft,
      .drRepRight {
          width: 100%;
      }
  }
  @media only screen and (max-width: 767px) {
     .drRepToday {
          display: none;
      }
      .drRepLeft h2 {
          font-size: 60px;
          text-align: center;
      }
      .drRepPainted p {
          font-size: 18px;
      }
      .drRepPainted {
          background-size: cover;
          padding: 13px 20px 15px 20px;
          max-width: 450px;
          margin: 0 auto;
      }
      .drRepToday {
          font-size: 170px;
          margin-top: 50px;
      }
      .drRepTodayBtnPlace {
             top: -45px;
      }
      .drRep {
          padding: 30px 0 0;
          text-align: center;
      }
      .drRepMan {
         position: static;
          width: 490px;
          margin: 30px auto 0;
          display: block;
      }
      .drRepTodayMob {
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--pink);
          font-size: 147px;
          font-weight: 500;
          line-height: 0.8;
          text-transform: uppercase;
          position: relative;
      }
      .drRepWrap {
          flex-direction: column;
      }
      .drRepLeft,
      .drRepRight {
          width: 100%;
      }
  }
  @media only screen and (max-width: 479px) {
      .drRepLeft h2 {
          font-size: 42px;
          padding-bottom: 5px;
      }
      .drRepPainted {
          width: 280px;
          background-size: 280px 95px;
          padding: 15px 20px;
      }
      .drRepPainted span {
          display: none;
      }
      .drRepMan {
          width: 90%;
      }
      .drRepTodayMob {
          font-size: 105px;
      }
      .drRepTodayBtn {
          font-size: 16px;
          padding: 5px 15px;
          border: 4px solid #f5f6fa;
      }
      .drRepTodayBtnPlace {
          top: -35px;
      }
  }
  /*========================================================
          Drywall Repair Section Index
  =========================================================*/
  .servDryMob {
      display: none!important;
  }
  .servDryBtnPlaceMob {
      display: none;
  }
  .servDry{
    background-image: url('../../images/index/services-bg.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 1152px;
    padding: 200px 0 100px;
  }
  .servDryWrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .servDryBox1,
  .servDrySingle{
    width: 32%;
  }
  .servDryBox1{
    padding: 40px 0 0;
  }
  .inServDryBox1{
    background-image: url('../../images/index/line-blue-min.png');
    background-repeat: no-repeat;
    background-position: left center;
    padding: 30px 0 40px 30px;
  }
  .servTextOran{
    background-image: url('../../images/index/line-orange-min.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 56px 7px;
    color: var(--pink);
    padding-left: 70px;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
  }
  .inServDryBox1 h3 {
    font-size: 48px;
    font-weight: 900;
    margin: 40px 0 0;
  }
  .servDryBtnPlace{
    margin: 60px 0 0;
    text-align: center;
  }
  .servDrySingle img.servIcon{
    width: 118px;
  }
  .servDrySingle{
    background: var(--services-box);
    border-radius: 90px;
    padding: 70px 60px 60px 60px;
    margin-bottom: 45px;
      text-align: left;
  }
  .servDrySingle p span{
    display: block;
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 40px;
  }
  .servDrySingle p{
    font-size: 30px;
    margin: 50px 0 20px 0;
  }
  .learnPriceBtnPlace a{
    font-size: 30px;
    color: var(--pink);
    text-transform: capitalize;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .learnPriceBtnPlace a img{
    margin-left: 20px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .servTextOran {
          font-size: 28px;
      }
      .inServDryBox1 h3 {
          font-size: 40px;
      }
      .servDrySingle img.servIcon {
          width: 90px;
      }
      .servDrySingle p span {
          font-size: 36px;
      }
      .servDrySingle p {
          margin: 25px 0 20px 0;
          font-size: 24px;
      }
      .learnPriceBtnPlace a {
          font-size: 24px;
      }
      .learnPriceBtnPlace a img {
          width: 48px;
      }
      .servDry {
          padding-bottom: 0;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .servTextOran {
          font-size: 21px;
         background-size: 36px 7px;
         padding-left: 46px;
      }
      .inServDryBox1 h3 {
          font-size: 28px;
          margin-top: 20px;
      }
      .inServDryBox1 {
          padding: 15px 0 20px 30px;
      }
      .servDrySingle img.servIcon {
          width: 60px;
      }
      .servDrySingle p span {
          font-size: 26px;
          margin-bottom: 20px;
      }
      .servDrySingle p {
          margin: 15px 0 20px 0;
          font-size: 18px;
      }
      .learnPriceBtnPlace a {
          font-size: 17px;
      }
      .learnPriceBtnPlace a img {
          width: 38px;
      }
      .servDry {
          padding: 90px 0 0;
      }
      .servDrySingle {
          padding: 40px 40px 40px 50px;
      }
      .servDryBtnPlace {
          margin: 20px 0 0;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .servTextOran {
          font-size: 18px;
         background-size: 30px 4px;
         padding-left: 40px;
      }
      .inServDryBox1 h3 {
          font-size: 22px;
          margin-top: 20px;
      }
      .inServDryBox1 {
          padding: 15px 0 20px 30px;
      }
      .servDrySingle img.servIcon {
          width: 45px;
      }
      .servDrySingle p span {
          font-size: 21px;
          margin-bottom: 20px;
      }
      .servDrySingle p {
          margin: 15px 0 20px 0;
          font-size: 16px;
      }
      .learnPriceBtnPlace a {
          font-size: 16px;
      }
      .learnPriceBtnPlace a img {
          width: 32px;
      }
      .servDry {
          padding: 90px 0 0;
      }
      .servDrySingle {
          padding: 40px 40px 40px 50px;
          border-radius: 50px;
      }
      .servDryBtnPlace {
          margin: 30px 0 0;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .servDryWrap {
          flex-direction: column;
      }
      .servDryBox1,
      .servDrySingle {
          width: 100%;
      }
      .servTextOran {
          font-size: 21px;
         background-size: 30px 4px;
         padding-left: 40px;
          width: 170px;
          margin: 0 auto;
      }
      .inServDryBox1 h3 {
          font-size: 26px;
          margin-top: 20px;
      }
      .servDryBtnPlace {
          display: none;
      }
      .inServDryBox1 {
          padding: 15px 0 20px 30px;
          background: none;
          text-align: center;
      }
      .learnPriceBtnPlace a {
          font-size: 18px;
      }
      .servDry {
          padding: 90px 0;
          text-align: center;
      }
      .servDryBox1 {
          padding: 40px 0;
      }
      .servDryBtnPlace,
      .servDrySingle {
          display: none;
      }
      .servDryMob {
          display: block!important;
      }
      .servDrySingleMob {
          padding: 40px 40px 40px 50px;
          width: 320px;
          margin: 0 auto;
          border-radius: 40px;
          background: var(--services-box);
          text-align: left;
          height: auto;
      }
      .servDrySingleMob img.servIcon {
          width: 65px!important;
      }
      .servDrySingleMob p span {
          font-size: 26px;
          margin-bottom: 20px;
          display: block;
          text-transform: capitalize;
      }
      .servDrySingleMob p {
          margin: 15px 0 20px 0;
          font-size: 18px;
      }
      .learnPriceBtnPlace a img {
          width: 40px!important;
      }
      .servDryBox1 {
          padding: 40px 0;
      }

  }
  @media only screen and (max-width: 767px) {
     .servDryWrap {
          flex-direction: column;
      }
      .servDryBox1   {
          width: 100%;
      }
      .servDrySingle {
          display: none;
      }
      .servDrySingleMob {
          display: block;
          padding: 40px 40px 40px 50px;
          width: 360px;
          margin: 0 auto 35px;
          border-radius: 40px;
          background: var(--services-box);
      }
      .servTextOran {
          font-size: 21px;
         background-size: 30px 4px;
         padding-left: 40px;
          width: 180px;
          margin: 0 auto;
      }
      .inServDryBox1 h3 {
          font-size: 26px;
          margin-top: 20px;
      }
      .servDryBtnPlace {
          display: none;
      }
      .inServDryBox1 {
          padding: 15px 0 20px 30px;
          background: none;
          text-align: center;
      }
      .servDrySingleMob img.servIcon {
          width: 65px!important;
      }
      .servDrySingleMob p span {
          font-size: 26px;
          margin-bottom: 20px;
          display: block;
          font-weight: 700;
          text-transform: capitalize;
      }
      .servDrySingleMob p {
          margin: 15px 0 20px 0;
          font-size: 18px;
          text-align: left;
      }
      .learnPriceBtnPlace a {
          font-size: 18px;
      }
      .learnPriceBtnPlace a img {
          width: 40px!important;
      }
      .servDry {
          padding: 60px 0;
          text-align: center;
      }
      .servDrySingleMob {
          padding: 40px 40px 40px 50px;
          width: 360px;
          margin: 0 auto;
          border-radius: 40px;
      }
      .servDryBox1 {
          padding: 40px 0;
      }
      .servDryMob {
          display: block!important;
      }
      .servDryBtnPlaceMob {
          margin-top: 20px;
          display: block;
      }
  }
  @media only screen and (max-width: 479px) {
      .servDry {
          padding-top: 0;
      }
      .inServDryBox1 {
          padding: 15px 0 20px;
      }
      .servDrySingle {
          width: 100%;
          padding: 40px 20px 35px 30px;
      }
      .servDrySingle p {
          text-align: left;
      }
      .servDrySingleMob {
          width: 100%;
          padding: 30px 30px 30px 40px;
      }
  }
  /*========================================================
          Our Last Works Section Index
  =========================================================*/
  .ourLWorksWrapMob {
      display: none!important;
  }
  .ourLWorks{
    padding: 100px 0 180px;
    text-align: center;
  }
  .ourLWorks h2{
    margin: 0 0 150px;
  }
  .ourLWorksWrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ourLWorksSingle{
    width: 32%;
  }
  .ourLWorksSingle img{
    width: 100%;
  }
  .ourLWorksTextPart{
    padding: 0 60px;
  }
  .ourLWorksSingle p{
    font-size: 30px;
    text-align: center;
    margin: 20px 0 0;
  }
  .ourLWorksSingle p span{
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .ourLWorks {
          padding: 75px 0 120px;
      }
      .ourLWorks h2 {
          margin-bottom: 115px;
      }
      .ourLWorksSingle p span {
          font-size: 38px;
      }
      .ourLWorksSingle p {
          font-size: 24px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .ourLWorks {
          padding: 50px 0 70px;
      }
      .ourLWorks h2 {
          margin-bottom: 86px;
      }
      .ourLWorksSingle p span {
          font-size: 24px;
      }
      .ourLWorksSingle p {
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .ourLWorks {
          padding: 50px 0 70px;
      }
      .ourLWorks h2 {
          margin-bottom: 56px;
      }
      .ourLWorksSingle p span {
          font-size: 24px;
      }
      .ourLWorksSingle p {
          font-size: 16px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .ourLWorks {
          padding: 50px 0 70px;
      }
      .ourLWorks h2 {
          margin-bottom: 56px;
      }
      .ourLWorksSingle p span {
          font-size: 24px;
      }
      .ourLWorksSingle p {
          font-size: 16px;
      }
      .ourLWorksTextPart {
          padding: 0 20px;
      }

  }
  @media only screen and (max-width: 767px) {
     .ourLWorks {
          padding: 50px 0 70px;
      }
      .ourLWorks h2 {
          margin-bottom: 56px;
      }
      .ourLWorksSingle p span {
          font-size: 24px;
      }
      .ourLWorksSingle p {
          font-size: 16px;
      }
      .ourLWorksTextPart {
          padding: 0 20px;
      }
      .ourLWorksWrap {
          flex-direction: column;
      }
      .ourLWorksSingle {
          width: 100%;
      }
      .ourLWorksWrap {
          display: none;
      }
      .ourLWorksWrapMob {
          display: block!important;
      }
      .ourLWorksSingle img {
          max-width: 432px;
          margin: 0 auto;
      }
  }
  @media only screen and (max-width: 479px) {
      .ourLWorks h2 {
          margin-bottom: 26px;
      }
  }
  /*========================================================
          Footer
  =========================================================*/
  .footerCl{
    background: var(--footerBg);
    padding: 100px 0;
  }
  .fooTopLogo{
    text-align: center;
  }
  .fooTopLogo img{
    width: 465px;
  }
  .fooTopLogo p{
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
    text-transform: uppercase;
  }
  .fooBottomInfoWrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 90px 0 0;
  }
  .fooBox1,
  .fooBox3{
    width: 30%;
  }
  .fooBox2{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fooPhone{
    background-image: url('../../images/index/phone-icon.png');
    font-size: 38px;
    font-weight: 500;
  }
  .fooAdrs{
    background-image: url('../../images/index/location.png');
  }
  .fooHours{
    background-image: url('../../images/index/hours-icon.png');
  }
  .fooPhone,
  .fooAdrs,
  .fooHours{
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 55px 55px;
    min-height: 55px;
    display: flex;
    align-items: center;
    padding-left: 90px;
  }
  .fooPhone{
    margin: 0 0 50px;
  }
  .fooAdrs{
    margin: 0 0 50px;
  }
  .fooAdrs p,
  .fooHours p{
    font-size: 26px;
    line-height: 1.1;
    font-weight: 500;
  }
  .fooAdrs p span,
  .fooHours p span{
    display: block;
  }

  .fooSocials img{
    width: 69px;
    margin: 0 15px;
  }
  .bbbPlace{
    margin-top: 25px;
  }
  .bbbPlace img{
    max-width: 180px;
  }
  .fooBtnPlace{
    margin: 25px 0 0;
  }

  .fooBox3{
    display: flex;
      flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .fooBox3 ul {
      width: 50%;
  }
  .fooUl .mlogo,
  .fooUl .mphone,
  .fooUl .mhours,
  .fooUl .msocial,
  .fooUl .maddress,
  .fooUl .mmlink{
    display: none;
  }
  .fooUl li{
    background-image: url('../../images/index/bullet-foo.png');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 13px 13px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    padding-left: 25px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .fooUlSecond{

  }
  .footerCopy{
    background: var(--dark-blue);
    color: var(--white);
    padding: 40px 0;
    font-size: 30px;
    text-align: center;
  }
  .sitemapPlace{
    font-size: 21px;
    margin: 20px 0 0;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .footerCl {
          padding: 100px 0 90px;
      }
      .fooTopLogo img {
          width: 400px;
      }
      .fooTopLogo p{
        font-size: 28px;
      }
      .fooSocials img {
          width: 60px;
      }
      .fooPhone,
      .fooHours,
      .fooAdrs {
         background-size: 50px 50px;
          min-height: 60px;
      }
      .fooPhone {
          font-size: 32px;
      }
      .fooAdrs p,
      .fooHours p {
          font-size: 24px;
      }
      .fooUl li {
          font-size: 20px;
      }
      .footercp {
          font-size: 26px;
      }
      .sitemapPlace {
          font-size: 21px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .footerCl {
          padding: 70px 0 90px;
      }
      .fooTopLogo img {
          width: 300px;
      }
      .fooTopLogo p{
        font-size: 21px;
      }
      .fooSocials img {
          width: 50px;
          margin: 0 8px;
      }
      .fooPhone,
      .fooHours,
      .fooAdrs {
         background-size: 40px 40px;
          min-height: 40px;
          padding-left: 50px;
      }
      .fooPhone {
          font-size: 26px;
          margin-bottom: 30px;
      }
      .fooAdrs{
        margin-bottom: 30px;
      }
      .fooAdrs p,
      .fooHours p {
          font-size: 19px;
      }
      .fooBox1, .fooBox3 {
          width: 35%;
      }
      .fooBox2 {
          width: 30%;
      }
      .fooUl li {
          font-size: 16px;
          margin-bottom: 10px;
          background-size: 8px 8px;
          padding-left: 18px;
      }
      .footercp {
          font-size: 19px;
      }
      .sitemapPlace {
          font-size: 16px;
      }
      .fooBottomInfoWrap {
          margin: 50px auto 0;
          width: 100%;
      }
      .fooUlSecond {

      }
      .fooBox3 {

      }
      .fooSocials {
          width: 260px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: center;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .footerCl {
          padding: 70px 0 90px;
      }
      .fooTopLogo img {
          width: 240px;
      }
      .fooTopLogo p{
        font-size: 18px;
      }
      .fooSocials img {
          width: 45px;
          margin: 0 8px;
      }
      .fooPhone,
      .fooHours,
      .fooAdrs {
         background-size: 37px 37px;
          min-height: 37px;
          padding-left: 50px;
      }
      .fooPhone {
          font-size: 26px;
          margin-bottom: 30px;
      }
      .fooAdrs{
        margin-bottom: 30px;
      }
      .fooAdrs p,
      .fooHours p {
          font-size: 17px;
      }
      .fooUl li {
          font-size: 15px;
          margin-bottom: 10px;
          background-size: 8px 8px;
          padding-left: 18px;
      }
      .footercp {
          font-size: 19px;
      }
      .sitemapPlace {
          font-size: 16px;
          margin-top: 10px;
      }
      .fooBottomInfoWrap {
          margin: 50px auto 0;
          width: 100%;
      }
      .fooBtnPlace {
          margin-top: 70px;
      }
      .fooSocials {
          width: 260px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      .footerCopy {
          padding: 30px 0;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .footerCl {
          padding: 40px 0 35px;
      }
      .fooTopLogo img {
          width: 240px;
      }
      .fooTopLogo p{
        font-size: 18px;
      }
      .fooSocials img {
          width: 45px;
          margin: 0 8px;
      }
      .fooPhone,
      .fooHours,
      .fooAdrs {
         background-size: 37px 37px;
          min-height: 37px;
          padding-left: 50px;
      }
      .fooPhone {
          font-size: 26px;
          margin-bottom: 30px;
      }
      .fooAdrs{
        margin-bottom: 30px;
      }
      .fooAdrs p,
      .fooHours p {
          font-size: 17px;
      }
      .fooBox3 ul {
          width: 100%;
          margin-bottom: 50px;
      }
      .fooUlSecond {
          margin-bottom: 0;
      }
      .fooUl li {
          font-size: 17px;
          margin-bottom: 10px;
          background-size: 8px 8px;
          padding-left: 18px;
      }
      .footercp {
          font-size: 19px;
      }
      .sitemapPlace {
          font-size: 16px;
          margin-top: 10px;
      }
      .fooBottomInfoWrap {
          margin: 30px auto 0;
          width: 95%;
          flex-direction: column;
      }
      .fooUlSecond {
          margin-left: 0;
      }
      .fooBtnPlace {
          display: none;
      }
      .fooSocials {
          width: 260px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      .footerCopy {
          padding: 30px 0;
      }
      .fooBox1, .fooBox3, .fooBox2 {
          width: 100%;
      }
      .fooBox1 {
          width: 260px;
          margin: 0 auto 30px;
      }
      .fooBox3 {
          justify-content: center;
          margin: 35px auto 0;
          flex-direction: column;
          width: 200px;
      }
      .fooUlSecond {
          margin-bottom: 0!important;
      }
  }
  @media only screen and (max-width: 767px) {
     .footerCl {
          padding: 40px 0 35px;
      }
      .fooTopLogo img {
          width: 240px;
      }
      .fooTopLogo p{
        font-size: 18px;
      }
      .fooSocials img {
          width: 45px;
          margin: 0 8px;
      }
      .fooPhone,
      .fooHours,
      .fooAdrs {
         background-size: 37px 37px;
          min-height: 37px;
          padding-left: 50px;
      }
      .fooPhone {
          font-size: 26px;
          margin-bottom: 30px;
      }
      .fooAdrs{
        margin-bottom: 30px;
      }
      .fooAdrs p,
      .fooHours p {
          font-size: 17px;
      }
      .fooBox3 ul {
          width: 100%;
          margin-bottom: 50px;
      }
        .fooUlSecond {
          margin-bottom: 0!important;
      }
      .fooUl li {
          font-size: 17px;
          margin-bottom: 18px;
          background-size: 8px 8px;
          padding-left: 18px;
      }
      .footercp {
          font-size: 18px;
      }
      .sitemapPlace {
          font-size: 16px;
          margin-top: 10px;
      }
      .fooBottomInfoWrap {
          margin: 30px auto 0;
          width: 95%;
          flex-direction: column;
      }
      .fooBtnPlace {
          display: none;
      }
      .fooSocials {
          width: 260px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      .footerCopy {
          padding: 30px 0;
          margin-bottom: 60px;
      }
      .fooBox1, .fooBox3, .fooBox2 {
          width: 100%;
      }
      .fooBox1 {
          width: 260px;
          margin: 0 auto 30px;
      }
      .fooBox3 {
          justify-content: center;
          margin: 35px auto 0;
          flex-direction: column;
          width: 227px;
      }
      .bbbPlace img {
          max-width: 135px;
      }
  }
  @media only screen and (max-width: 479px) {
      .footercp span {
          display: block;
      }
  }
  /*========================================================
      SERVICES page
  =========================================================*/
  .servicesBan {
      height: auto;
  }
  .servicespTit {
      margin-top: 160px;
      text-align: center;
  }
  .newSerTitle{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .newIconCir {
      width: 160px;
      border: 6px solid var(--dark-blue);
      background: #fff;
      border-radius: 50%;
      margin-right: 20px;
  }
  .newIconCir img{
    width: 90%;
  }
  .servicespTit h1 {
      font-size: 58px;
      font-weight: 900;
      text-transform: uppercase;
      margin-top: 10px;
      text-align: left;
      max-width: 58%;
  }
  .servicesLineSub {
      font-size: 36px;
      font-weight: 700;
      text-transform: capitalize;
      color: var(--topblue);
      position: relative;
      padding-left: 70px;
      width: 290px;
      margin: 0 auto;
  }
  .servicesLineSub::before {
      position: absolute;
      left: 0;
      top: 21px;
      height: 7px;
      width: 56px;
      background-image: url(../../images/index/line-orange-min.png);
      background-repeat: no-repeat;
      background-position: left center;
      background-size: 56px 7px;
      content: " ";
  }
  .servicespWrap {
      margin: 180px auto 120px;
  }
  .servicesSingle p span {
      font-size: 38px;
      line-height: 1.2;
  }
  .stuccogWrap {
      margin: 160px auto 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .stuccogBox {
      width: 32%;
  }
  .stuccogBox img {
      width: 637px;
      height: 637px;
      display: block;
      padding: 10px;
      border-radius: 90px;
  }
  .stuccogBox h3 {
      font-size: 32px;
      line-height: 1.2;
      font-weight: 600;
      text-transform: capitalize;
      margin: 20px auto 15px;
      padding: 0 30px;
  }
  .stuccogBox p {
      font-size: 24px;
      line-height: 1.3;
      padding: 0 30px 50px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .servicespTit {
          margin-top: 70px;
      }
      .newIconCir{
          width: 140px;
      }
      .servicespTit h1 {
          font-size: 50px;
      }
      .servicesLineSub {
          width: 250px;
          font-size: 30px;
      }
      .servicesSingle p span {
          font-size: 32px;
      }
      .servicespWrap {
          margin-top: 130px;
      }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .servicespTit {
          margin-top: 70px;
      }
      .newIconCir{
          width: 110px;
      }
      .servicespTit h1 {
          font-size: 38px;
      }
      .servicesLineSub {
          font-size: 21px;
          width: 170px;
          padding-left: 40px;
      }
      .servicesLineSub::before {
          background-size: 30px 4px;
          top: 9px;
      }
      .servicesSingle p span {
          font-size: 24px;
      }
      .servicespWrap {
          margin: 130px auto 60px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .servicespTit {
          margin-top: 70px;
      }
      .newIconCir{
          width: 90px;
      }
      .servicespTit h1 {
          font-size: 30px;
      }
      .servicesLineSub {
          font-size: 21px;
          width: 170px;
          padding-left: 40px;
      }
      .servicesLineSub::before {
          background-size: 30px 4px;
          top: 9px;
      }
      .servicesSingle p span {
          font-size: 21px;
      }
      .servicespWrap {
          margin: 50px auto 35px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .servicespTit {
          margin-top: 70px;
      }
      .newIconCir{
          width: 130px;
      }
      .servicespTit h1 {
          font-size: 30px;
      }
      .servicesLineSub {
          font-size: 21px;
          width: 170px;
          padding-left: 40px;
      }
      .servicesLineSub::before {
          background-size: 30px 4px;
          top: 9px;
      }
      .servicesSingle p span {
          font-size: 21px;
          font-weight: 700;
      }
      .servicespWrap {
          margin: 50px auto 35px;
      }
  }
  @media only screen and (max-width: 767px) {
     .servicespTit {
          margin-top: 70px;
      }
      .servicespTit h1 {
          font-size: 30px;
          width: 100%;
      }

      .servicesLineSub {
          font-size: 21px;
          width: 170px;
          padding-left: 40px;
      }
      .servicesLineSub::before {
          background-size: 30px 4px;
          top: 9px;
      }
      .servicesSingle p span {
          font-size: 21px;
          font-weight: 700;
      }
      .servicespWrap {
          margin: 50px auto 35px;
      }
  }
  @media only screen  and (min-width: 480px) and (max-width: 767px) {
    .newIconCir {
        width: 140px;
    }
  }
  @media only screen and (max-width: 479px) {
      .servicespTit h1 span {
          display: block;
      }
      .newIconCir {
          width: 120px;
      }
  }
  /*========================================================
      STUCCO & DRYWALL page
  =========================================================*/
  .stuccogWrapMob {
      display: none!important;
  }
  .stuccopWrap {
      width: 80%;
      margin: 180px auto 90px;
  }
  .stuccoBox {
      width: 100%;
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }
  .stuccoLeft {
      width: 35%;
  }
  .stuccoRight {
      width: 65%;
      padding: 0 60px;
  }
  .stuccoImgSub {
      display: block;
      padding: 10px;
      border-radius: 90px;
      width: 452px;
      height: 452px;
  }
  .stuccoRight h3 {
      font-size: 38px;
      line-height: 1.2;
      font-weight: 600;
      text-transform: capitalize;
      margin-bottom: 15px;
  }
  .stuccoRight p {
      font-size: 30px;
      line-height: 1.3;
  }
  .servicesBott {
      background-image: url(../../images/index/services-bg.jpg);
      background-repeat: no-repeat;
      background-position: top center;
      background-size: 100% auto;
      padding: 70px 0 160px;
  }
  .servicesbotBox {
      width: 1300px;
      margin: 0;
  }
  .servicesbotIn {
      background-image: url(../../images/index/line-blue-min.png);
      background-repeat: no-repeat;
      background-position: left center;
      padding: 30px 0 40px 30px;
  }
  .servicesbotIn h3 {
      font-size: 32px;
      font-weight: 700;
      text-transform: capitalize;
      line-height: 1.2;
      text-align: left;
  }
  .servicesbotBox ul {
      padding-left: 30px;
      margin: 50px auto 0;
  }
  .servicesbotBox ul li {
      background-image: url(../../images/index/mark-list-min.png);
      background-repeat: no-repeat;
      background-size: 50px 50px;
      background-position: left center;
      font-size: 30px;
      padding: 20px 0 20px 65px;
      text-transform: capitalize;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      .stuccoRight p,
      .servicesbotBox ul li {
          font-size: 24px;
      }
      .servicesbotBox ul li {
          background-size: 40px 40px;
          padding-left: 55px;
      }
      .servicesBott {
          padding: 90px 0 80px;
      }

  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .stuccoRight p,
      .servicesbotBox ul li {
          font-size: 18px;
      }
      .servicesbotBox ul li {
          background-size: 35px 35px;
          padding-left: 50px;
      }
      .servicesBott {
          padding: 50px 0 80px;
      }
      .stuccopWrap {
          margin: 70px auto 50px;
          max-width: 938px;
      }
      .stuccoRight h3 {
          font-size: 24px;
      }
      .stuccoImgSub {
          width: 323px;
          height: 323px;
      }
      .servicesbotIn h3 {
          font-size: 26px;
      }
      .servicesbotIn {
          padding: 15px 0 20px 30px;
      }
      .stuccogWrap,
      .servicesbotBox {
          width: 100%;
      }
      .stuccogBox img {
          width: 440px;
          height: 440px;
      }
      .stuccogBox h3 {
          font-size: 24px;
      }
      .stuccogBox p {
          font-size: 18px;
      }
      .stuccogWrap {
          margin: 90px auto 0;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .stuccoRight p,
      .servicesbotBox ul li {
          font-size: 18px;
      }
      .servicesbotBox ul li {
          background-size: 35px 35px;
          padding-left: 50px;
      }
      .servicesBott {
          padding: 50px 0 80px;
      }
      .stuccopWrap {
          margin: 70px auto 50px;
          max-width: 938px;
      }
      .stuccoRight h3 {
          font-size: 26px;
      }
      .stuccoImgSub {
          width: 323px;
          height: 323px;
      }
      .servicesbotIn h3 {
          font-size: 26px;
      }
      .servicesbotIn {
          padding: 15px 0 20px 30px;
      }
      .stuccogWrap,
      .servicesbotBox {
          width: 800px;
      }
      .stuccogBox img {
          width: 380px;
          height: 380px;
      }
      .stuccogBox h3 {
          font-size: 24px;
      }
      .stuccogBox p {
          font-size: 18px;
      }
      .stuccogWrap {
          margin: 70px auto 0;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .stuccogWrap,
      .servicesbotBox {
          width: 700px;
      }
      .stuccogBox img {
          width: 320px;
          height: 320px;
          border-radius: 60px;
      }
      .stuccogBox h3 {
          font-size: 24px;
          margin: 10px auto 15px;
          padding: 0 20px;
      }
      .stuccogBox p {
          font-size: 18px;
          padding: 0 20px 30px;
      }
      .stuccogWrap {
          margin: 60px auto 25px;
      }
      .servicesBott {
          padding: 0 0 50px;
      }
      .servicesbotIn h3 {
          font-size: 21px;
          line-height: 1;
      }
      .servicesbotIn {
          padding: 5px 0 5px 30px;
      }
      .servicesbotBox ul li {
          background-size: 25px 25px;
          font-size: 18px;
          padding: 8px 0 8px 35px;
      }
      .servicesbotBox ul {
          margin-top: 30px;
      }
      .drRepstucco {
          margin-bottom: 30px;
      }
  }
  @media only screen and (max-width: 767px) {
     .stuccogWrap,
      .servicesbotBox {
          width: 440px;
      }
      .stuccogWrap {
          flex-direction: column;
      }
      .stuccogBox {
          width: 440px;
          margin: 20px auto 0;
      }
      .stuccogBox img {
          width: 420px!important;
          height: 420px;
          border-radius: 60px;
          margin: 0 auto;
      }
      .stuccogBox h3 {
          font-size: 24px;
          margin: 10px auto 15px;
          padding: 0 20px;
      }
      .stuccogBox p {
          font-size: 18px;
          padding: 0 20px;
      }
      .stuccogWrap {
          margin-top: 60px;
      }
      .servicesBott {
          padding: 35px 0 50px;
      }
      .servicesbotIn h3 {
          font-size: 24px;
          line-height: 1.3;
      }
      .servicesbotIn h3 span {
          display: block;
      }
      .servicesbotIn {
          padding: 5px 0 5px 30px;
      }
      .servicesbotBox ul li {
          background-size: 25px 25px;
          font-size: 18px;
          padding: 8px 0 8px 35px;
      }
      .servicesbotBox ul {
          margin-top: 30px;
      }
      .drRepstucco {
          margin-bottom: 20px;
      }
      .stuccogWrap {
          display: none;
      }
      .stuccogWrapMob {
          display: block!important;
      }
  }
  @media only screen and (max-width: 479px) {
      .stuccogWrap,
      .servicesbotBox {
          width: 100%;
      }
      .stuccogBox {
          width: 100%;
      }
      .stuccogBox img {
          width: 280px!important;
          height: 280px;
      }
      .stuccogWrap {
          margin-top: 35px;
      }
      .stuccogBox h3 {
          padding: 0;
          text-align: center;
      }
      .stuccogBox p {
          padding: 0 0 30px;
          text-align: center;
      }
      .stuccogBox h3 span,
      .servicesbotIn h3 span {
          display: block;
      }
      .drRepstucco {
          margin-bottom: 15px;
      }
  }
  /*========================================================
     GALLERY page
  =========================================================*/
  .galleryMob,
  .gallpWrapMob {
      display: none!important;
  }
  .gallTextPlace {
      text-align: center;
      margin-top: 35px;
  }
  .gallTextPlace p {
      font-size: 28px;
      text-align: center;
      margin: 20px 0 0;
  }
  .gallTextPlace p span {
      display: block;
      font-size: 42px;
      font-weight: 700;
      margin: 0 0 10px;
    text-transform: capitalize;
  }
  .gallBox {
      margin-bottom: 60px;
  }
  .gallpWrap {
      margin: 160px auto 50px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .gallpBox {
      width: 32%;
      margin-bottom: 50px;
  }
  .gallBox img,
  .gallpBox img {
      width: 100%;
      padding: 10px;
      border-radius: 90px;
      height: auto;
  }
  .stuccogBoxEmpty {
      width: 32%;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .gallTextPlace p {
        font-size: 24px;
    }
    .gallTextPlace p span {
        font-size: 38px;
    }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
      .gallWrap {
          width: 100%;
          margin-top: 70px;
      }
      .gallBox img, .gallpBox img {
          border-radius: 40px;
      }
      .gallTextPlace p {
          font-size: 18px;
      }
      .gallTextPlace p span {
          font-size: 24px;
      }
      .gallBox {
          width: 33%;
          margin-bottom: 30px;
      }
      .gallpWrap {
          margin-top: 70px;
      }
      .gallpBox {
          margin-bottom: 15px;
      }
      .stuccogBoxEmpty {
          width: 33%;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .gallBox {
          width: 49%;
          margin-bottom: 35px;
      }
      .gallBox img {
           border-radius: 50px;
      }
      .gallWrap {
          width: 100%;
          margin: 70px auto 35px;
      }
      .gallTextPlace {
          margin-top: 5px;
      }
      .gallTextPlace p {
          font-size: 16px;
      }
      .gallTextPlace p span {
          font-size: 24px;
      }
      .gallpWrap {
          margin: 70px auto 0;
      }
      .gallpBox {
          width: 49%;
          margin-bottom: 25px;
      }
      .gallBox img, .gallpBox img {
          border-radius: 40px;
      }
      .stuccogBoxEmpty {
          width: 49%;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .gallBox {
          width: 100%;
          margin-bottom: 35px;
      }
      .gallBox img {
           border-radius: 50px;
      }
      .gallWrap {
          width: 600px;
          margin: 70px auto 35px;
          flex-direction: column;
      }
      .gallTextPlace {
          margin-top: 5px;
      }
      .gallTextPlace p {
          font-size: 21px;
      }
      .gallTextPlace p span {
          font-size: 26px;
      }
      .gallpWrap {
          margin: 50px auto 35px;
          flex-direction: column;
      }
      .gallpBox {
          width: 100%;
          margin-bottom: 0;
      }
      .gallBox img, .gallpBox img {
          border-radius: 40px;
      }
  }
  @media only screen and (max-width: 767px) {
      .gallWrap {
          display: none;
      }
      .galleryMob {
          display: block!important;
          margin-bottom: 35px;
      }
      .gallTextPlace {
          margin-top: 5px;
      }
      .gallTextPlace p {
          font-size: 21px;
      }
      .gallTextPlace p span {
          font-size: 26px;
      }
      .gallBox {
          margin-bottom: 0;
      }
      .gallpWrap {
         display: none;
      }
      .gallpBox {
          width: 100%;
          margin-bottom: 0;
      }
      .gallBox img, .gallpBox img {
          border-radius: 40px;
          padding: 0;
      }
      .gallBox img{
        width: 100%!important;
      }
      .gallpWrapMob {
          display: block!important;
          margin: 35px auto;
      }
  }
  @media only screen and (max-width: 479px) {}
  /*========================================================
      ABOUT page
  =========================================================*/
  .aboutTit {
      width: 580px;
  }
  .aboutWrap {
      margin: 110px auto 70px;
      padding-bottom: 90px;
      width: 70%;
  }
  .aboutWrap p {
      font-size: 30px;
      line-height: 1.5;
  }
  .aboutWrap h2,
  .aboutWrap h3 {
      text-align: center;
      font-size: 48px;
      font-weight: 700;
      padding: 60px 0;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {}
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
      .aboutTit {
          width: 340px;
      }
      .aboutWrap {
          width: 85%;
          margin: 70px auto 0;
      }
      .aboutWrap p {
          font-size: 24px;
      }
      .aboutWrap h2,
      .aboutWrap h3 {
          font-size: 30px;
          padding: 35px 0;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .aboutTit {
          width: 340px;
      }
      .aboutWrap {
          width: 95%;
          margin: 70px auto 0;
      }
      .aboutWrap p {
          font-size: 18px;
      }
      .aboutWrap h2,
      .aboutWrap h3 {
          font-size: 26px;
          padding: 35px 0;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .aboutTit {
          width: 340px;
      }
      .aboutWrap {
          width: 95%;
          margin: 50px auto 0;
          padding-bottom: 50px;
      }
      .aboutWrap p {
          font-size: 18px;
      }
      .aboutWrap h2,
      .aboutWrap h3 {
          font-size: 26px;
          padding: 35px 0;
      }
  }
  @media only screen and (max-width: 767px) {
     .aboutTit {
          width: 340px;
      }
      .aboutWrap {
          width: 95%;
          margin: 50px auto 0;
          padding-bottom: 50px;
      }
      .aboutWrap p {
          font-size: 18px;
      }
      .aboutWrap h2,
      .aboutWrap h3 {
          font-size: 26px;
          padding: 35px 0;
      }
  }
  @media only screen and (max-width: 479px) {
      .aboutTit {
          width: 280px;
          font-size: 18px;
      }
      .aboutTit:before {
          width: 36px;
      }
      .aboutWrap {
          margin: 35px auto 0;
          padding-bottom: 35px;
      }
  }
  /*========================================================
      FAQ page
  =========================================================*/
  .faqWrap {
      margin: 110px auto 70px;
      padding-bottom: 90px;
      width: 70%;
  }
  .faqRow {
      padding: 10px;
      background: rgba(255,255,255,0.5);
      margin: 10px auto;
      width: 100%;
  }
  p.faq {
      text-align: left;
      font-size: 24px;
  }
  a.question {
      line-height: 1.5;
      display: inline-block;
      font-size: 28px;
      line-height: 1.3;
      font-weight: 700;
      margin: 5px 0;
      cursor: pointer;
  }
  .faqa {
      text-align: left;
      padding: 10px 0 10px 40px;
      font-size: 21px;
      line-height: 1.5;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {}
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
      .faqWrap {
          margin: 60px auto 50px;
          width: 85%;
          padding-bottom: 20px;
      }
      a.question {
          font-size: 21px;
      }
      .faqa {
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .faqWrap {
          margin: 60px auto 30px;
          width: 95%;
          padding-bottom: 20px;
      }
      a.question {
          font-size: 21px;
      }
      .faqa {
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .faqWrap {
          margin: 60px auto 30px;
          width: 100%;
          padding-bottom: 20px;
      }
      a.question {
          font-size: 21px;
      }
      .faqa {
          font-size: 18px;
      }
  }
  @media only screen and (max-width: 767px) {
     .faqWrap {
          margin: 60px auto 30px;
          width: 100%;
          padding-bottom: 20px;
      }
      a.question {
          font-size: 21px;
      }
      .faqa {
          font-size: 18px;
      }
  }
  @media only screen and (max-width: 479px) {
      .faqWrap {
          margin: 35px auto 0;
          width: 100%;
          padding-bottom: 25px;
      }
      .faqa {
          padding: 10px 0;
      }
  }
  /*========================================================
      CONTACT page
  =========================================================*/
  .contactWrap {
      width: 70%;
      margin: 90px auto 0;
      padding-bottom: 90px;
      text-align: center;
  }
  .cTel {
      font-size: 38px;
      font-weight: 500;
  }
  .cServ {
      font-size: 26px;
      font-weight: 400;
      padding: 25px 0;
      line-height: 1.3;
  }
  .cServ span {
      display: block;
  }
  .contForm {
      padding-top: 70px;
  }
  .contPar {
      text-align: center;
      font-size: 36px;
      font-weight: 500;
      color: var(--blue);
  }
  p.sendUsMes{
    font-size: 28px;
    color: #0070ba;
  }

  form.contactForm {
      width: 70%;
      margin: 35px auto;
  }
  .contactFormFirst input[type="text"] {
      margin: 0 auto;
      border: none;
      color: #fff;
      padding: 1px;
      display: block;
      width: 100%;
      height: 0;
      font-size: 14px;
      outline: none;
      background: transparent;
  }
  .formHalfWrapper {
      display: flex;
      justify-content: space-between;
  }
  .contactFormHalf {
      width: 32%;
      padding: 20px 0;
  }
  .contactFormHalf input[type="text"] {
      margin: 0 auto;
      border-bottom: 1px solid var(--blue);
      border-top: none;
      border-right: none;
      border-left: none;
      background: transparent;
      color: var(--contactform);
      padding: 8px 8px 8px 20px;
      display: block;
      width: 100%;
      height: 70px;
      font-size: 18px;
      outline: none;
  }
  .contactFormFull {
      width: 100%;
      margin: 0 auto;
      overflow: hidden;
  }
  .contactFormFull textarea {
      margin: 0 auto 35px;
      border: none;
      padding: 8px;
      display: block;
      width: 100%;
      height: 160px;
      font-size: 18px;
      border-bottom: 1px solid var(--blue);
      outline: none;
      color: var(--contactform);
      background: transparent;
  }
  .contactFormFull input[type="submit"] {
      background: var(--pink);
      color: var(--white);
      cursor: pointer;
      display: inline-block;
      padding: 25px 75px;
      font-size: 26px;
      font-weight: 500;
      line-height: 1.3;
      text-transform: capitalize;
      text-align: center;
      border-radius: 64px;
      letter-spacing: 2px;
      border: none;
  }
  .contactFormFull input[type="submit"]:hover{
    background: var(--blue);
  }
  .erGreen {
      font-weight: 700;
      color: #0070ba;
  }
  .erRed {
      color: red;
  }
  .quoteformEr {
      font-size: 32px!important;
      font-weight: 500;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {}
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
      .contactWrap {
          margin-top: 30px;
          padding-bottom: 50px;
      }
      .cServ {
          font-size: 21px;
      }
      .contPar {
          font-size: 28px;
      }
      form.contactForm {
          margin: 0 auto 35px;
          width: 90%;
      }
      .contactFormFull input[type="submit"] {
          padding: 15px 45px;
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
       .contactWrap {
          margin-top: 15px;
          padding-bottom: 35px;
           width: 85%;
      }
      .cTel {
          font-size: 32px;
      }
      .cServ {
          font-size: 18px;
      }
      .contPar {
          font-size: 28px;
      }
      form.contactForm {
          margin: 0 auto 35px;
          width: 90%;
      }
      .contactFormFull input[type="submit"] {
          padding: 15px 45px;
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .contactWrap {
          margin-top: 15px;
          padding-bottom: 35px;
           width: 100%;
      }
      .cTel {
          font-size: 32px;
      }
      .cServ {
          font-size: 18px;
      }
      .contPar {
          font-size: 24px;
      }
      form.contactForm {
          margin: 0 auto 35px;
          width: 90%;
      }
      .contactFormFull input[type="submit"] {
          padding: 15px 45px;
          font-size: 18px;
      }
  }
  @media only screen and (max-width: 767px) {
     .contactWrap {
          margin-top: 15px;
          padding-bottom: 50px;
           width: 100%;
      }
      .cTel {
          font-size: 32px;
      }
      .cServ {
          font-size: 18px;
      }
      .contPar {
          font-size: 24px;
      }
      form.contactForm {
          margin: 0 auto;
          width: 90%;
      }
      .contactFormFull input[type="submit"] {
          padding: 15px 45px;
          font-size: 18px;
      }
      .formHalfWrapper {
          flex-direction: column;
      }
      .contactFormHalf {
          width: 100%;
      }
  }
  @media only screen and (max-width: 479px) {
      .servicespTit h1 {
          font-size: 23px;
      }
      .contactWrap {
          margin-top: 10px;
      }
      .cTel {
          font-size: 26px;
      }
      .cServ {
          padding: 10px 0;
          font-size: 18px;
      }
      .contForm {
          padding-top: 50px;
      }
      form.contactForm {
          width: 100%;
      }
      .contactFormHalf input[type="text"] {
          height: 50px;
          font-size: 16px;
      }
  }
  /*========================================================
      REVIEW US page
  =========================================================*/
  .reviewsWrapMob {
      display: none!important;
  }
  .reviewsWrap {
      width: 70%;
      margin: 0 auto;
      padding: 90px 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .reviewsBox {
      width: 24%;
      border: 1px solid var(--white);
      background: var(--main-text);
      padding: 10px 15px;
      margin-bottom: 15px;
  }
  .reviewsBox img {
      width: 100%;
      display: block;
  }
  .reviewsBox p {
      font-size: 16px;
      line-height: 1.3;
      color: var(--white);
      text-align: center;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {}
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {}
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .reviewsWrap {
          padding: 50px 0;
      }
      .reviewsBox p {
          font-size: 14px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .reviewsWrap {
          padding: 50px 0;
      }
      .reviewsBox p {
          font-size: 16px;
      }
      .reviewsBox {
          width: 49%;
      }
  }
  @media only screen and (max-width: 767px) {
     .reviewsWrap {
         display: none;
      }
      .reviewsWrapMob {
          display: block!important;
          padding: 35px 0;
      }
      .reviewsBox p {
          font-size: 16px;
      }
      .reviewsBox {
          width: 100%;
          max-width: 300px;
          margin: 0 auto 15px;
      }
  }
  @media only screen and (max-width: 479px) {
      .reviewsBox {
          max-width: 280px;
      }
  }
  /*========================================================
      DISCLAIMER page
  =========================================================*/
  .dislaimerWrap {
      width: 70%;
      margin: 0 auto;
      padding: 90px 0;
  }
  .dislaimerWrap h3 {
      font-size: 28px;
      font-weight: 500;
      padding-bottom: 15px;
  }
  .dislaimerWrap p {
      font-size: 21px;
      line-height: 1.5;
      padding-bottom: 35px;
  }
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {}
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
      .dislaimerWrap {
          width: 85%;
          padding: 90px 0 50px;
      }
      .dislaimerWrap h3 {
          font-size: 24px;
      }
      .dislaimerWrap p {
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .dislaimerWrap {
          width: 90%;
          padding: 50px 0 35px;
      }
      .dislaimerWrap h3 {
          font-size: 24px;
      }
      .dislaimerWrap p {
          font-size: 18px;
      }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .dislaimerWrap {
          width: 90%;
          padding: 50px 0 35px;
      }
      .dislaimerWrap h3 {
          font-size: 24px;
      }
      .dislaimerWrap p {
          font-size: 18px;
      }
  }
  @media only screen and (max-width: 767px) {
     .dislaimerWrap {
          width: 100%;
          padding: 50px 0 15px;
      }
      .dislaimerWrap h3 {
          font-size: 24px;
      }
      .dislaimerWrap p {
          font-size: 18px;
      }
  }
  @media only screen and (max-width: 479px) {
      .dislaimerWrap h3 {
          font-size: 21px;
      }
      .dislaimerWrap  {
          padding: 50px 0 0;
      }
  }
  /*========================================================
                      Pet Screen Page
  =========================================================*/
  .wrapListPet:not(:last-child){
      margin-top: 70px;
  }
  .wrapListPet .servDrySingle{
      width: 48%;
  }
  .wrapListPet .servDrySingle p {
     margin: 0;
  }
  .wrapContPet p{
      text-align: left;
  }
  .boxContText h2 span,
  .boxContText h3 span{
    display: block;
  }

  @media only screen and (min-width: 1920px) and (max-width: 2559px) {}
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {}
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {}
  @media only screen and (min-width: 768px) and (max-width: 1023px) {}
  @media only screen and (max-width: 1024px) {
      .wrapListPet{
          display: flex;
          flex-direction: row;
      }
      .wrapListPet .servDrySingle{
         display: block;
      }
  }
  @media only screen and (max-width: 767px) {
      .wrapListPet{
          flex-direction: column;
          align-items: center;
      }
      .wrapListPet .servDrySingle{
          width: 100%;
      }
  }
  @media only screen  and (min-width: 480px) and (max-width: 767px) {}
  /*========================================================
                      Lanai Screen Repair Page
  =========================================================*/
  .forAllPages .wrapListPet:not(:last-child){
      margin-top: 10px;
  }

  /*========================================================
          Lanai Screen Repair And Replacement Services Pages
  =========================================================*/
  .addIndents{
    padding: 80px 0;
}
.wrapCont {
    display: flex;
    align-items: center;
    background: var(--dark-blue);
}
.wrapContLeft ,
.wrapContRight {
    width: 50%;
}
.wrapContRight{
  display: flex;
  justify-content: center;
  align-items: center;
}
.otherSide .stucSecLeft ul{
  padding-left: 0;
  padding-right: 80px;
}

.boxContText {
    width: 85%;
    margin: 0 auto;
}
/* .extremeSection{
    padding: 100px 0;
} */
/* .middleSection {
    background: var(--dark-blue);
} */
/* .middleSection .boxContText h3,
.middleSection .boxContText p,
.middleSection .boxContText ul li {
    color: var(--white);
}  */
.boxContText h2,
 .boxContText h3,
 .boxContText p,
 .boxContText ul li {
    color: var(--white);
}
.boxContText ul li {
    text-align: left;
}

.boxContText ul li span{
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
 .stucSecLeft{
  width: 100%;
}
.boxContText, .stucSecLeft ul{
  margin: 0;
  }

.contImg{
    width: 100%;
}
.contImg img{
    display: block;
    width: 100%;
}
.wrapCont .aboutWrap h2,
.wrapCont .aboutWrap h3,
.wrapCont .aboutWrap p{
  text-align: left;
}
.wrapCont .aboutWrap p{
  line-height: 1.2;
  margin-bottom: 20px;
}
.wrapCont .aboutWrap{
  padding-bottom: 0;
}
.wrapCont .aboutWrap h2,
.wrapCont .aboutWrap h3{
  font-size: 60px;
  text-transform: capitalize;
  padding-top: 0;
}
.pinkLine{
  border-bottom: 6px solid var(--topblue);
  width: 100%;
  margin: 30px 0;
}
.boxContEstimPlace{
  padding: 20px 0 0;
}
.stucSecBtnPlaceNew{
    margin-top: 50px;
}
.mosqPage .aboutWrap{
    margin: 0 auto;
    padding: 40px 0 100px;
}
@media only screen and (min-width: 2559px){
    .wrapCont .aboutWrap p{
        font-size: 32px;
      }
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .addIndents{
        padding: 80px 0;
    }
    .otherSide .stucSecLeft ul{
    padding-right: 80px;
    }
    .wrapCont .aboutWrap h2,
    .wrapCont .aboutWrap h3 {
    	font-size: 45px;
      padding: 30px 0;
    }
    .aboutWrap p {
    	font-size: 22px;
    }
    .stucSecLeft ul li {
    	padding: 20px 0 20px 0px;
    	font-size: 22px;
    }
}
@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .addIndents{
        padding: 40px 0;
    }
.wrapCont .aboutWrap h2,
.wrapCont .aboutWrap h3,
.wrapCont .aboutWrap p{
  text-align: left;
}

.boxContText .stucSecLeft ul li{
  padding: 10px 0 10px 0;
  }
    .otherSide .stucSecLeft ul{
    padding-right: 60px;
    }
    .wrapCont .aboutWrap h2,
    .wrapCont .aboutWrap h3 {
    	font-size: 32px;
      padding: 20px 0;
    }
    .aboutWrap p {
    	font-size: 19px;
    }
    .stucSecLeft ul li {
    	padding: 20px 0 20px 0px;
    	font-size: 19px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .addIndents{
        padding: 40px 0;
    }

    .wrapCont .aboutWrap h2,
    .wrapCont .aboutWrap h3{
      padding-bottom: 20px;
    }


    .stucSecLeft ul li {
      background-size: 30px 30px;
      padding: 10px 0 10px 0;
      font-size: 16px;
  }
    .bottomBox .aboutWrap{
        padding-bottom: 30px;
    }
    .addIndents .poolSecTop{
        padding: 30px 0;
    }
    .stucSecBtnPlaceNew {
        margin-top: 20px;
    }
    .wrapCont .aboutWrap h2,
    .wrapCont .aboutWrap h3 {
      font-size: 28px;
      padding: 20px 0;
    }
    .aboutWrap p {
      font-size: 16px;
    }
    .stucSecLeft ul li {
      padding: 0 0 20px;
      font-size: 16px;
    }
    .boxContText, .stucSecLeft ul {
    	padding-left: 0;
    }
    .pinkLine{
      border-bottom: 4px solid var(--pink);
    }
    .boxContEstimPlace {
    	padding: 20px 0 40px;
    }
}
@media only screen and (max-width: 1023px) {
    .wrapCont{
        padding-bottom: 50px;
        flex-direction: column;
    }
.wrapContReverse{
  flex-direction: column-reverse;
}
.bottomBox .aboutWrap{
  margin: 0 auto 0;
}
.wrapCont .aboutWrap h2,
.wrapCont .aboutWrap h3{
  font-size: 30px;
  padding: 30px 0;
}
    .wrapCont .aboutWrap h2,
    .wrapCont .aboutWrap h3,
    .wrapCont .aboutWrap p {
        padding-left: 0;
    }
    .boxContText{
        width: 85%;
        margin: 0 auto;
    }
    .contImg{
        width: 100%;
    }
    .otherSide{
        flex-direction: column-reverse;
    }
    .wrapContLeft ,
.wrapContRight {
    width: 100%;
}
.middleSection{
    flex-direction: column-reverse;
}
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .addIndents{
        padding: 20px 0;
    }

    .otherSide .stucSecLeft ul{
    padding-right: 0;
    }
    .bottomBox .aboutWrap{
        padding-bottom: 30px;
    }
    .addIndents .poolSecTop{
        padding: 30px 0 30px;
    }
}
@media only screen and (max-width: 767px) {
    .addIndents{
        padding: 20px 0;
    }
    .otherSide .stucSecLeft ul{
    padding-right: 0;
    padding-left: 0;
    }
    .boxContText .stucSecLeft ul{
        padding-right: 0;
        padding-left: 0;
    }
    .bottomBox .aboutWrap{
        padding-bottom: 30px;
    }
    .addIndents .poolSecTop{
        padding: 30px 0 30px;
    }
    .stucSecBtnPlaceNew {
      margin-top: 30px;
  }

}
  /*========================================================
     Section With Icons Screen Types
=========================================================*/
.wrapIconsSTMob{
    display: none!important;
}
.wrapIconsST{
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 100px 0;
    background: var(--footerBg); */
}
.boxIconST{
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}
.boxIconST:hover {
    transform: scale(1.30);
}
.boxIconST .newIconCir{
    width: 160px;
    margin: 0 30px;
}

   @media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .boxIconST .newIconCir{
        width: 150px;
        margin: 0 20px;
    }
  }
@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .boxIconST .newIconCir{
        width: 130px;
        margin: 0 15px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .boxIconST .newIconCir{
        width: 100px;
        margin: 0 12px;
    }
}
@media only screen  and (max-width: 1023px) {
    .wrapIconsST{
        display: none;
    }
    .wrapIconsSTMob{
        display: block!important;
    }
    .boxIconST .newIconCir{
        width: 130px;
    }
    .boxIconST .newIconCir{
        margin: 0 auto;
    }

}
@media only screen and (max-width: 767px) {
    .boxIconST .newIconCir{
        width: 140px;
    }

}

/*========================================================
    Changing Menu
=========================================================*/
@media only screen and (min-width: 1024px) {
    .menuTop ul {
        background: transparent !important;
    }
}

 /*========================================================
                    Mobile Menu
=========================================================*/
@media only screen and (max-width: 1023px) {

    .smobitrigger,
    .mnuclose {
        display: inline-block;
    }

    .smobitrigger {
        color: transparent;
        width: 30%;
        margin: 0 auto;
    }

    .smobitrigger {
        background: url("../../images/menuopen.png") no-repeat;
        background-position: center top;
        background-size: 100px 100px;
        width: 100px;
        height: 100px;
        font-size: 100px;
    }

    .mnuclose {
        background: url('../../images/menuclose.png') no-repeat;
        background-position: right top;
        background-size: 50px 50px;
        color: transparent;
        height: 50px;
        margin: 0 0 10px 0;
        width: 100%;
        text-align: right;
        display: inline-block;
    }

    .menuTop ul {
        padding: 0 20px 10px 20px;
        overflow-y: auto;
        margin: 0 auto;
        display: inline-block;
    }

    .menuTop ul li {
        font-size: 1.1em;
        margin: 2px 0;
        display: block;
    }

    .menuTop ul li.mlink,
    .menuTop ul li.mmlink {
        text-align: left;
        width: 100%;
        line-height: inherit;
        margin-left: 0;
        padding: 0 0;
    }

    .menuTop ul li.mlink a,
    .menuTop ul li.mmlink a {
        font-size: 18px;
        line-height: 40px;
        text-transform: uppercase;
        width: 100%;
        display: inline-block;
    }
    .menuTop ul li.mmlink{
      display: block;
      font-family: Barlow-Medium, arial, sans-serif;
    }
    .menuTop ul li.mlink a::after {
        display: none;
    }

    .menuTop ul li.mlink a,
    .menuTop ul li.mmlink a {
        margin: 0 0;
    }
    .menuTop ul li.mmlinkMargTop {
    	display: block;
    	font-family: barlow-medium, arial, sans-serif;
    	font-size: 22px;
    	text-transform: uppercase;
    	margin-top: 30px;
    }
    .menuTop ul li.mlogo {
        margin: 20px auto 0 auto;
        height: auto;
        display: block;
        width: 100%;
        text-align: left;
    }

    .menuTop ul li.mlogo img {
        width: 85%;
        margin: 0 auto 30px auto;
    }

    .menuTop ul li.mphone {
        display: inline-block;
        text-align: left;
        width: 100%;
        padding-bottom: 30px;
        margin: 0 auto;
        color: #777;
    }

    .menuTop ul li.mphone a {
        font-size: 32px;
    }

    .menuTop ul li.mhours {
        display: inline-block;
        text-align: left;
        font-size: 20px;
        line-height: 1.5;
        text-transform: capitalize;
        margin: 0 auto 20px;
        width: 100%;
        color: #777;
    }

    .menuTop ul li.mhours span {
        display: block;
    }

    .menuTop ul li.maddress {
        display: inline-block;
        text-align: center;
        font-size: 20px;
        line-height: 1.5;
        text-transform: capitalize;
        margin: 30px auto 20px;
        width: 100%;
        color: #777;
    }

    .menuTop ul li.maddress span {
        display: block;
    }

    .menuTop ul li.msocial {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 20px 0 40px;
        width: 260px;
    }

    .menuTop ul li.msocial a {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s ease-in-out;
        border-radius: 5px;
        overflow: hidden;
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }

    .menuTop ul li.msocial a img {
        width: 40px;
        margin: 5px;
    }

    .mobimenu {
        padding: 0;
        margin: 0px;
        width: 10.9375em;
        position: fixed;
        height: 100% !important;
        top: 0px;
        left: -24.625em;
    }

    .mnuopn {
        left: 0px !important;
    }

    .ovrActv {
        position: fixed;
        background: rgba(0, 0, 0, 0.79);
        width: 100%;
        height: 100%;
        z-index: 9998;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    .companyData {
        height: 130px;
    }
    .one {
        width: 100%;
        padding-bottom: 0;
    }

    .three,
    .two,
    .logoBox {
        display: none;
    }

    .logoMobi {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 50%;
        margin: 0 auto;
    }

    .logoMobi img {
        width: 200px;
        position: static;
        top: -30px;
        left: 0;
    }

    .telMob {

        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 25%;
    }

    .telMob img {
        width: 70px;
    }

    nav {
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 767px) {
    .menu ul li.speclink {
        display: none;
    }
    .companyData {
        height: 80px;
    }
    .top {
        padding: 10px 0;
        border-bottom: 1px solid rgba(247, 144, 51, .5);
    }

    .one {
        justify-content: space-between;
    }

    .topLogo {
        width: 280px;
    }

    .logoMobi {
        margin: 0;
        width: 220px;
    }

    .telMob{
        display: none;
      }
    nav {
        width: 20%;
    }

    .telMob {
        display: none;
        justify-content: flex-start;
    }

    .smobitrigger {
        background-size: 100px 100px;
        width: 100px;
        height: 100px;
        font-size: 100px;
    }

    /*
    @supports (background-image: url(../images/index/bg-top-banner(1).webp)) {
        .navFrame {
            background: url('../images/index/bg-top-banner(1).webp');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            border-bottom: 1px solid var(--pink);
        }
    }

    else {
        .navFrame {
            background: url('../images/index/bg-top-banner(1).jpg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            border-bottom: 1px solid var(--pink);
        }
    }

    .companyData {
        height: 150px;
    }
*/
}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .logoMobi {
            width: 220px;
        }
    }

    @media only screen and (max-width: 479px) {
        .topLogo {
            width: 95%;
        }

        .logoMobi {
            width: 180px;
        }

        .smobitrigger {
            background-size: 70px 70px;
            width: 70px;
            height: 70px;
            font-size: 70px;
        }

        .boxTop {
            width: 60%;
        }

        .topNav {
            width: 40%;
        }

        .telMob {
            justify-content: flex-start;
        }

    }
    /*========================================================
            Rescreening Section New Index
    =========================================================*/
    .rescbgMob {
        display: none;
    }

    .rescbg {
        background: url(../../images/index/rescreening-best-value-banner-new.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 100px 0 158px;
        height: 992px;
    }

    .rescWrap {
        width: 90%;
        margin: 0 auto;
    }

    .rescLeft {
        width: 45%;
        display: flex;
        flex-direction: column;
        max-width: 1036px;
    }

    .rescLeftTop {
        background: var(--dark-blue);
        padding: 50px;
        text-align: center;
        color: var(--white);
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .rescLeftTop h3 {
        font-size: 138px;
        font-weight: 700;
        text-transform: uppercase;
        padding-bottom: 25px;
        border-bottom: 2px solid var(--topblue);
        line-height: .8;
        max-width: 860px;
        margin: 0 auto;
    }

    .rescLeftTop p {
        font-size: 40px;
        font-weight: 600;
        text-transform: uppercase;
        padding-top: 25px;
    }

    .rescLeftTop p span {
        font-weight: 700;
        font-size: 78px;
    }

    .rescLeftBel {
        background: var(--white);
        padding: 30px 50px 50px;
        text-align: center;
    }

    .rescLeftBel p {
        color: var(--main-text);
        font-size: 68px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .btnRescWrap {
        text-align: center;
        padding-top: 35px;
    }

    .rscnmodal {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
    }

    .rscnmodalContent {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
    }

    .rescreenDisclbg {
        margin-bottom: 60px;
    }

    .rescreenDisclWrap {
        padding: 20px 0 0 !important;
    }

    .rescreenDisclWrap h2 {
        padding-bottom: 35px;
    }

    @media only screen and (min-width: 1920px) and (max-width: 2559px) {
        .rescbg {
            height: auto;
            padding-bottom: 118px;
        }

        .rescLeft {
            max-width: 778px;
        }

        .rescLeftTop h3 {
            font-size: 105px;
        }

        .rescLeftTop p {
        	font-size: 38px;
        	line-height: 1;
        }

        .rescLeftTop {
            padding: 40px;
        }

        .rescLeftTop p span {
            font-size: 64px;
        }

        .rescLeftBel p {
            font-size: 56px;
            line-height: .9;
        }
    }

    @media only screen and (min-width: 1301px) and (max-width: 1919px) {
        .rescbg {
            height: auto;
            padding-bottom: 118px;
        }

        .rescLeft {
            max-width: 570px;
            min-width: 570px;
        }

        .rescLeftTop h3 {
            font-size: 75px;
            padding-bottom: 15px;
        }

        .rescLeftTop p {
        	font-size: 24px;
        	line-height: 1;
        	padding-top: 15px;
        }

        .rescLeftTop {
            padding: 30px;
        }

        .rescLeftTop p span {
            font-size: 44px;
        }

        .rescLeftBel p {
            font-size: 42px;
            line-height: .9;
        }

        .rescLeftBel {
            padding: 20px 30px 30px;
        }

        .btnRescWrap {
            padding-top: 20px;
        }
    }

    @media only screen and (min-width: 1024px) and (max-width: 1300px) {
        .rescbg {
            height: auto;
            padding: 70px 0 78px;
        }

        .rescLeft {
            max-width: 450px;
            min-width: 450px;
        }

        .rescLeftTop h3 {
            font-size: 58px;
            padding-bottom: 15px;
        }

        .rescLeftTop p {
        	font-size: 24px;
        	line-height: 1;
        	padding-top: 15px;
        }

        .rescLeftTop {
            padding: 30px;
        }

        .rescLeftTop p span {
            font-size: 44px;
        }

        .rescLeftBel p {
            font-size: 34px;
            line-height: .9;
        }

        .rescLeftBel {
            padding: 20px 20px 30px;
        }

        .btnRescWrap {
            padding-top: 20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1023px) {
        .rescbg {
            height: auto;
            padding: 70px 0 78px;
        }

        .rescLeft {
            max-width: 450px;
            min-width: 450px;
        }

        .rescLeftTop h3 {
            font-size: 58px;
            padding-bottom: 15px;
        }

        .rescLeftTop p {
        	font-size: 24px;
        	line-height: 1;
        	padding-top: 15px;
        }

        .rescLeftTop {
            padding: 30px;
        }

        .rescLeftTop p span {
            font-size: 44px;
        }

        .rescLeftBel p {
            font-size: 34px;
            line-height: .9;
        }

        .rescLeftBel {
            padding: 20px 20px 30px;
        }

        .btnRescWrap {
            padding-top: 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .rescbg {
            background: none;
            height: auto;
            padding: 0;
        }

        .rescbgMob {
            display: block;
        }

        .rescbgMob img {
            display: block;
            width: 100%;
        }

        .rescWrap,
        .rescLeft {
            width: 100%;
            max-width: 100%;
        }

        .rescLeftTop {
            border-radius: 0;
            padding: 20px;
        }

        .rescLeftTop h3 {
            font-size: 68px;
            padding-bottom: 15px;
        }

        .rescLeftTop p {
        	padding-top: 15px;
        	font-size: 20px;
        	line-height: 1;
        }

        .rescLeftTop p span {
            font-size: 48px;
        }

        .rescLeftBel {
            padding: 10px 20px 35px;
        }

        .rescLeftBel p {
            font-size: 36px;
        }

        .btnRescWrap {
            padding-top: 15px;
        }

        .rescWrap {
        }

        .rscnmodalContent {
            width: 98%;
        }
    }

    @media only screen and (max-width: 479px) {
        .rescLeftTop h3 {
            font-size: 44px;
        }

        .rescLeftBel p {
            line-height: 1;
        }
    }
  /*========================================================
        ADDITIONAL changes
  =========================================================*/
  .poolbg {
      background-image: url(../images/pool-cage-bg.jpg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      height: 1384px;
  }
  .lanaibg {
      background-image: url(../images/lanai-bg.jpg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      height: 1384px;
  }
  .poolBan p {
      width: 720px;
      margin: 20px auto 0;
      background: var(--white);
      color: var(--dark-blue);
      padding: 10px 0;
      border-radius: 60px;
  }
  .poolTit {
      margin-top: 0;
      padding-top: 0;
  }
  .poolSecTop {
      margin: 0 auto;
      padding: 70px 0 70px;
  }
  ul.lanoiList {
      width: 70%;
      margin: 0 auto 70px;
  }
  ul.lanoiList li {
      background: url('../../images/index/mark-list-min.png') no-repeat;
      background-position: left top;
      background-size: 70px 70px;
      font-size: 36px;
      padding: 8px 0 20px 90px;
      text-align: left;
  }
  ul.lanoiList li span {
      font-weight: 700;
  }
  h2.lanoiH2 {
      font-size: 64px;
      font-weight: 700;
      padding-bottom: 50px;
  }
  .aplusBanTop h1 {
          text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
      }
  .poolBanMob {
      display: none;
  }
  .outerSticky {
      display: none;
  }
.topInfoList a {
    display: inline-block;
    position: relative;
}
.rscnmodal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.rscnmodalContent {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
.rescreenDisclbg {
    margin-bottom: 60px;
}
.rescreenDisclWrap {
    padding: 20px 0 0!important;
}
.rescreenDisclWrap h2 {
    padding-bottom: 35px;
}
.deviderBg {
    margin: 0 auto;
}
.wrapDevider a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapDevider a img {
    width: 200px;
    display: block;
    margin-left: 50px;
}
  @media only screen and (min-width: 1920px) and (max-width: 2559px) {
      h2.lanoiH2 {
          font-size: 54px;
          font-weight: 700;
          padding-bottom: 50px;
      }
      ul.lanoiList {
          width: 85%;
      }
      ul.lanoiList li {
          font-size: 30px;
      }
      .poolBan p {
          width: 560px;
      }
      .aplusBanTop h1 {
          text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
      }
      .wrapDevider a img {
        width: 160px;
    }
  }
  @media only screen and (min-width: 1301px) and (max-width: 1919px) {
     .poolbg,
      .lanaibg {
          height: 900px;
      }
      h2.lanoiH2 {
          font-size: 42px;
          font-weight: 700;
          padding-bottom: 50px;
      }
      ul.lanoiList {
          width: 85%;
      }
      ul.lanoiList li {
          font-size: 24px;
          background-size: 50px 50px;
          padding-left: 70px;
      }
      .aplusBanTop h1 {
          text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
      }
      .poolBan p {
          width: 420px;
      }
      .wrapDevider a img {
        width: 105px;
        margin-left: 30px;
    }
  }
  @media only screen and (min-width: 1024px) and (max-width: 1300px) {
      .poolbg,
      .lanaibg {
          height: 780px;
      }
      h2.lanoiH2 {
          font-size: 36px;
          font-weight: 700;
          padding-bottom: 50px;
      }
      ul.lanoiList {
          width: 85%;
      }
      ul.lanoiList li {
          font-size: 18px;
          background-size: 40px 40px;
          padding-left: 55px;
      }
      .aplusBanTop h1 {
          text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
      }
      .poolBan p {
          width: 370px;
          font-size: 24px;
      }
      .wrapDevider a img {
        width: 105px;
        margin-left: 30px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .poolbg,
      .lanaibg {
          height: 680px;
      }
      h2.lanoiH2 {
          font-size: 30px;
          font-weight: 700;
          padding-bottom: 50px;
      }
      ul.lanoiList {
          width: 85%;
      }
      ul.lanoiList li {
          font-size: 18px;
          background-size: 40px 40px;
          padding-left: 55px;
      }
      .logoMobi img {
          width: 165px;
      }
      .aplusBanTop h1 {
          text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
      }
      .poolBan p {
          width: 370px;
          font-size: 24px;
      }
      .wrapDevider a img {
        width: 100px;
        margin-left: 25px;
    }
    .deviderBg {
        padding: 70px 0;
    }
  }
  @media only screen and (max-width: 767px) {
     .poolbg,
      .lanaibg {
          background: url(../../images/services/bannersub.jpg) no-repeat;
          background-position: top center;
          background-size: cover;
          height: auto;
      }
      .aplusBanTop {
          margin: 35px 0 50px;
      }
      .poolBanMob {
          display: block;
          width: 100%;
      }
      h2.lanoiH2 {
          font-size: 30px;
          font-weight: 700;
          padding-bottom: 20px;
      }
      ul.lanoiList {
          width: 100%;
          margin-bottom: 0;
      }
      ul.lanoiList li {
          font-size: 18px;
          background-size: 40px 40px;
          padding-left: 55px;
      }
      .poolSecTop {
          padding: 35px 0 0;
      }
      .menu ul li.speclink {
          display: none;
      }
      .top {
          padding: 10px 0;
          border-bottom: 1px solid rgba(247,144,51,.5);
      }
      .topLogo {
          width: 280px;
      }
      .logoMobi{
        width: 60%;
      }
      .telMob,
      nav {
          width: 20%;
      }
      .logoMobi {
    width: 200px;
          margin: 0;
}
   .logoMobi img {
    width: 100%;
    position: absolute;
    top: -30px;
    left: 0;
}
      .telMob {
          justify-content: flex-start;
      }
      .companyData {
          height: 80px;
      }
      .aplusBanTop h1 {
          text-shadow: 2px 2px 1px rgba(255, 255, 255, 1);
      }
      .poolBan p {
          width: 350px;
          font-size: 24px;
          font-weight: 700;
          border: 1px solid var(--dark-blue);
      }
      .servicesBan {
          background-position: center bottom;
      }
      .rscnmodalContent {
        width: 98%;
    }
      .deviderBg h2 {
        font-size: 30px;
    }
    .deviderBg h2 span {
        font-size: 50px;
    }
    .wrapDevider a img {
        width: 70px;
        margin-left: 15px;
    }
    .deviderBg {
        padding: 50px 0;
        background: var(--pink);
    }
  }
  @media only screen and (max-width: 479px) {
      .poolBan p {
          width: 280px;
          font-size: 24px;
      }
      .deviderBg h2 {
    font-size: 21px;
}
    .deviderBg h2 span {
    font-size: 38px;
}
    .wrapDevider a img {
    width: 35px;
    margin-left: 10px;
}
    .deviderBg {
        padding: 35px 0;
    }
      .logoMobi {
        width: 180px;
      }
  }
  /*========================================================
   Modal window
=========================================================*/

.rescreenDisclbg {
    width: 100%;
    margin: 35px auto 60px;
}
.rescreenDisclWrap {
    width: 75%;
    margin: 0 auto;
}
.rescreenDisclWrap h2 {
    text-align: center;
    padding-bottom: 35px;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.rescreenDisclWrap h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 15px;
}
.rescreenDisclWrap p {
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 35px;
}
.btnRescDWrap {
    margin: 0 auto 20px;
    text-align: center;
}
.rescDiscBtn {
    background: var(--pink);
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Barlow', arial, sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: capitalize;
    text-align: center;
    border-radius: 64px;
    letter-spacing: 2px;
}
.close {
      color: #aaaaaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
}

.close:hover,
.close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 1919px) {
    .rescreenDisclWrap p {
        font-size: 16px;
    }
    .rescDiscBtn {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .rescreenDisclbg {
        margin: 0 auto 20px;
    }
    .rescreenDisclWrap {
        width: 90%;
    }
}
@media only screen and (max-width: 479px) {
    .rescreenDisclWrap {
        width: 100%;
    }
}

/*========================================================
          BBB section hidden
=========================================================*/
.generalDivrbg{
  display: none;
}

  /*========================================================
       Sticky footer
  =========================================================*/
  @media only screen and (max-width: 767px) {
  .outerSticky {
      display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 2;
  }
  .stickyFooter {
      background: #1e4363;
      color: #fff;
      padding: 10px 0;
  }
  .innerStickyFooter {
      width: 100%;
      margin: 0 auto;
      overflow: hidden;
      display: flex;
      justify-content: space-between;
  }
  .centeringSticky {
      width: 100%;
      margin: 0 auto;
      text-align: center;
  }
  .innerStickyFooter a p {
      display: inline-block;
      font-family: arial, sans-serif;
      font-size: 29px;
      font-weight: 700;
      vertical-align: middle;
      color: #fff;
  }
  }
