/*========================================================
	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;
}
.owl-dots button{
     padding: 10px !important;
 }
/* fonts declaration */
@font-face {
    font-family: Barlow;
    src: url('../fonts/Barlow-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: Barlow-Medium;
    src: url('../fonts/Barlow-Medium.ttf');
    font-display: block;
}

@font-face {
    font-family: Barlow-Bold;
    src: url('../fonts/Barlow-Bold.ttf');
    font-display: block;
}

@font-face {
    font-family: Barlow-Black;
    src: url('../fonts/Barlow-Black.ttf');
    font-display: block;
}

@font-face {
    font-family: PT-Sans-Narrow;
    src: url('../fonts/PTSansNarrow-Bold.ttf');
    font-display: block;
}

/*========================================================
										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;
    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: capitalize;
}

h2,
h3,
h4 {
    font-size: 72px;
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {

    h2,
    h3,
    h4 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {

    h2,
    h3,
    h4 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {

    h2,
    h3,
    h4 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {

    h2,
    h3,
    h4 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {

    h2,
    h3,
    h4 {
        font-size: 28px;
    }
}

/*=======================================================
    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;
}
.owl-theme .owl-dots .owl-dot span  {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    padding: 10px;
}

.logoBox {
    position: relative;
}

.logoBox img {
    width: 215px;
    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');
}
.owl-dot span{
    padding: 10px;
}
@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: 1600px) {
    .two,
    .three {
        width: 20%;
    }
    .one {
       width: 60%;
    }
}
@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: 155px;
        top: -40px;
    }

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

    .companyData {
        height: 90px;
    }
    .topInfoList a{
        padding-left: 45px;
    }
    .two,
    .three {
        width: 20%;
    }
    .one {
       width: 60%;
    }
}

/*========================================================
	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,
.outerSticky {
    display: none;
}

.menuTop ul li.mlink {
    font-family: Barlow-Medium, arial, sans-serif;
    font-size: 30px;
    display: inline-block;
    text-transform: capitalize;
    padding: 0px 12px;
    font-weight: 500;
    cursor: pointer;
    position: relative;

    display: inline-block;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .menuTop ul li.mlink {
        font-size: 27px;
    }
}
@media only screen and (min-width: 1601px) and (max-width: 1919px) {
     .menuTop ul li.mlink {
        font-size: 25px;
    }
}
@media only screen and (min-width: 1301px) and (max-width: 1600px) {
     .menuTop ul li.mlink {
        font-size: 21px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .menuTop ul li.mlink {
        font-size: 19px;
        padding: 5px 5px;
    }
}

/*========================================================
	            Buttons
=========================================================*/
.newBanBtn {
    background: var(--topblue);
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    padding: 35px 105px;
    font-family: Barlow-Medium, arial, sans-serif;
    font-size: 36px;
    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-Medium, arial, sans-serif;
    font-size: 36px;
    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: 25px 45px;
    font-family: Barlow-Medium, arial, sans-serif;
    font-size: 32px;
    line-height: 1.3;
    text-transform: capitalize;
    text-align: center;
    border-radius: 64px;
    letter-spacing: 2px;
}
.vidBtn{
  background: var(--new-yellow);
	color: var(--dark-blue);
}

@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;
    }
    .stucSecBtnPlaceMob .newBanBtn {
        font-size: 28px;
    }
    .stucSecBtnPlaceMob .newBanBtn span {
        font-size: 19px;
    }
    .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: 20px 65px;
        font-size: 21px;
    }
    .stucSecBtnPlaceMob .newBanBtn {
        font-size: 28px;
    }
    .stucSecBtnPlaceMob .newBanBtn span {
        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) {
    .newBanBtn {
        padding: 15px 35px;
        font-size: 19px;
    }
}

/*========================================================
	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
=========================================================*/
.aplusbannrightMobile {
    display: none;
}
.aplusBan {
    background-image: url('../images/index/mainbannerbg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 1300px;
    position: relative;
}
.aplusBanWrap {
    display: flex;
    width: 100%;
}
.aplusBanLeft,
.aplusBanRight {
    width: 50%;
}
.aplusBanLeft {
    background-image: url('../images/index/bannmainleftbg.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    height: 1130px;
}
.aplusBanRight {
    background-image: url('../images/index/bannmainrightbg.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    height: 1130px;
    position: relative;
}
.bannertopCont {
    padding-top: 350px;
}
.aplusBanTop {
    text-align: center;
}
.aplusBanTop h1 {
    color: var(--white);
    font-family: Barlow-Black, arial, sans-serif;
    font-size: 119px;
    line-height: 1.2;
    text-transform: uppercase;
}
.aplusBanTop h1 span {
    display: block;
    font-family: Barlow-Bold, arial, sans-serif;
    font-size: 75px;
}
.aplusBanRight h2,
p.underTitleP{
  display: none;
}
.aplusBanTop p {
    margin: 30px 0 0;
    font-size: 37px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--lightblue);
}
.mainText {
    text-align: left;
    width: 840px;
    margin: 260px 0 0 25%;
}
.bannTwoBtnsWrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}
.bannTwoBtnsOne {
    display: inline-block;
    width: 48%;
    background: var(--topblue);
    padding: 30px 25px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    font-family: Barlow-Bold, arial, sans-serif;
    font-size: 24px;
    cursor: pointer;
    border-radius: 60px;
    text-align: center;
}
.bannTwoBtnsOne span,
.bannTwoBtnsTwo span{
  display: block;
  font-size: 46px;
}
.bannTwoBtnsTwo {
    background: var(--new-yellow);
    color: var(--dark-blue);
}
.bannScheduleBtnWrap {
    position: absolute;
    bottom: 220px;
    left: 5px;
    width: 300px;
}
.bannScheduleBtn {
    display: inline-block;
    background: var(--topblue);
    padding: 20px 25px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
    font-family: Barlow-Bold, arial, sans-serif;
    font-size: 32px;
    cursor: pointer;
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    text-align: left;
}
.mainButton {
    margin-top: 70px;
}
.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.webp'), url('../images/index/balloon-blue.png');
    position: absolute;
    left: 30%;
    bottom: 20%;
}
.aplOrange {
    background-image: url('../images/index/balloon-orange.webp'), url('../images/index/balloon-orange.png');
    position: absolute;
    left: 51%;
    bottom: 4%;
}
.aPlusBalloon p {
    color: var(--white);
    font-size: 39px;
    font-family: Barlow-Bold, arial, sans-serif;
    margin: 0 50px 50px 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) {
    .aplusBanLeft,
    .aplusBanRight {
        height: 900px;
    }
    .mainText {
        margin: 210px 0 0 10%;
        width: 700px;
    }
    .aplusBanTop h1 {
        font-size: 100px;
    }
    .aplusBanTop h1 span {
        font-size: 62px;
    }
    .aplusBanTop p {
        font-size: 30px;
    }
    .bannTwoBtnsOne,
    .bannTwoBtnsTwo {
        font-size: 21px;
    }
    .bannTwoBtnsOne span,
    .bannTwoBtnsTwo span {
    	display: block;
    	font-size: 36px;
    }
    .bannScheduleBtn {
        font-size: 26px;
    }
    .bannScheduleBtnWrap {
        width: 260px;
    }
    .aPlusBalloon {
        width: 400px;
        height: 400px;
    }
    .aplBlue {
        bottom: 30%;
        left: 29%;
    }
    .aPlusBalloon p {
        font-size: 36px;
    }
    .aPlusBalloon a {
        font-size: 28px;
    }
    .aplBlue p {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .aplusBanLeft,
    .aplusBanRight {
        height: 760px;
    }
    .mainText {
        margin: 160px 0 0 10%;
        width: 520px;
    }
    .aplusBanTop h1 {
        font-size: 74px;
        line-height: 1.1;
    }
    .aplusBanTop h1 span {
        font-size: 46px;
    }
    .aplusBanTop p {
        font-size: 22px;
        margin-top: 20px;
    }
    .bannTwoBtnsOne,
    .bannTwoBtnsTwo {
        font-size: 16px;
        padding: 25px 25px;
    }
    .bannTwoBtnsOne span,
    .bannTwoBtnsTwo span {
    	display: block;
    	font-size: 26px;
    }
    .bannScheduleBtn {
        font-size: 19px;
    }
    .bannScheduleBtnWrap {
        width: 200px;
    }

    .mainButton {
        margin-top: 50px;
    }

    .aPlusBalloon {
        width: 300px;
        height: 300px;
    }

    .aplBlue {
        bottom: 30%;
        left: 29%;
    }

    .aPlusBalloon p {
        font-size: 26px;
        margin: 0 50px 25px 50px;
    }

    .aPlusBalloon a {
        font-size: 21px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .aplusBanLeft,
    .aplusBanRight {
        height: 660px;
    }
    .mainText {
        margin: 100px 0 0 10%;
        width: 420px;
    }
    .aplusBanTop h1 {
        font-size: 60px;
        line-height: 1.1;
    }
    .aplusBanTop h1 span {
        font-size: 37px;
    }
    .aplusBanTop p {
        font-size: 18px;
        margin-top: 20px;
    }
    .bannTwoBtnsWrap {
        flex-direction: column;
    }
    .bannTwoBtnsOne,
    .bannTwoBtnsTwo {
        font-size: 16px;
        width: 300px;
    }
    .bannTwoBtnsOne {
        margin-bottom: 20px;
    }
    .bannTwoBtnsOne span,
    .bannTwoBtnsTwo span {
    	display: block;
    	font-size: 32px;
    }
    .bannScheduleBtn {
        font-size: 19px;
    }
    .bannScheduleBtnWrap {
        width: 200px;
        bottom: 100px;
    }

    .mainButton {
        margin-top: 50px;
    }

    .aPlusBalloon {
        width: 250px;
        height: 250px;
    }

    .aplBlue {
        bottom: 30%;
        left: 29%;
    }

    .aPlusBalloon p {
        font-size: 22px;
        margin: 0 50px 15px 50px;
    }

    .aPlusBalloon a {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .aplusBanWrap {
        flex-direction: column-reverse;
    }
    .aplusBanLeft, .aplusBanRight {
        width: 100%;
    }
    .aplusBanRight {
        background: url('../images/index/bannrmainrightMidbg.jpg');
    }
    .aplusBanLeft {
         height: 600px;
        background-position: center bottom;
    }
    .aplusBanRight {
        height: 780px;
        border-bottom: 8px solid var(--topblue);
    }
    .mainText {
        margin: 100px 0 0 10%;
        width: 420px;
    }
    .aplusBanTop h1 {
        font-size: 60px;
        line-height: 1.1;
    }
    .aplusBanTop h1 span {
        font-size: 37px;
    }
    .aplusBanTop p {
        font-size: 18px;
        margin-top: 20px;
    }
    .bannTwoBtnsWrap {
        flex-direction: column;
    }
    .bannTwoBtnsOne,
    .bannTwoBtnsTwo {
        font-size: 16px;
        width: 300px;
    }
    .bannTwoBtnsOne {
        margin-bottom: 20px;
    }
    .bannTwoBtnsOne span,
    .bannTwoBtnsTwo span {
    	display: block;
    	font-size: 32px;
    }
    .bannScheduleBtn {
        font-size: 18px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        padding: 15px 25px;
    }
    .bannScheduleBtnWrap {
        width: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .mainButton {
        margin-top: 50px;
        text-align: center;
    }

    .mainText {
        text-align: center;
        margin: 55px auto 0;
    }

    .aPlusBalloon {
        width: 250px;
        height: 250px;
    }

    .aplBlue {
        bottom: 30%;
        left: 29%;
    }

    .aPlusBalloon p {
        font-size: 21px;
        margin: 0 50px 15px 50px;
    }

    .aPlusBalloon a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .aplusBanWrap {
        flex-direction: column-reverse;
    }
    .aplusBanLeft, .aplusBanRight {
        width: 100%;
    }
    .aplusBanRight {
        background: none;
    }
    .aplusbannrightMobile {
        width: 100%;
        display: block;
    }
    .aplusBanLeft {
         height: 580px;
    }
    .aplusBanRight {
        height: auto;
        border-bottom: 8px solid var(--topblue);
    }
    .mainText {
        margin: 100px 0 0 10%;
        width: 420px;
    }
    .aplusBanTop h1 {
        font-size: 60px;
        line-height: 1.1;
        display: none;
    }
    .aplusBanTop h1 span {
        font-size: 37px;
    }
    .aplusBanRight h2{
      display: block;
      color: var(--white);
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
      font-family: Barlow-Black, arial, sans-serif;
      font-size: 40px;
      line-height: 1.1;
      text-transform: uppercase;
      position: absolute;
      bottom: 200px;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: center;
    }
    .aplusBanRight h2 span{
      display: block;
      font-family: Barlow-Bold, arial, sans-serif!important;
      font-size: 24px;
    }
    .aplusBanTop p {
        font-size: 28px;
        margin-top: 20px;
    }
    p.underTitleP{
      color: var(--white);
      display: block;
      font-size: 22px;
      line-height: 1.4;
      max-width: 80%;
      margin: 30px auto 0;
    }
    .bannTwoBtnsWrap {
        flex-direction: column;
    }
    .bannTwoBtnsOne,
    .bannTwoBtnsTwo {
        font-size: 16px;
        width: 300px;
        padding: 25px 25px;
    }
    .bannTwoBtnsOne {
        margin-bottom: 20px;
    }
    .bannTwoBtnsOne span,
    .bannTwoBtnsTwo span {
    	display: block;
    	font-size: 32px;
    }
    .bannScheduleBtn {
        font-size: 18px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        padding: 15px 25px;
        width: 320px;
    }
    .bannScheduleBtnWrap {
        width: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .mainButton {
        margin-top: 50px;
        text-align: center;
    }

    .mainText {
        text-align: center;
        margin: 50px auto 0;
    }

    .aPlusBalloon {
        width: 220px;
        height: 220px;
    }

    .aplBlue {
        bottom: 35%;
        left: 42%;
    }

    .aPlusBalloon p {
        font-size: 21px;
        margin: 0 30px 15px 30px;
    }

    .aPlusBalloon a {
        font-size: 18px;
    }

    .aplOrange {
        left: 8%;
    }
}

@media only screen and (max-width: 479px) {
    .aplusBanRight {
        border-bottom: 0;
    }
    .mainText {
        width: 90%;
        margin: 35px auto 0;
    }
    .aplusBanTop h1 {
        font-size: 40px;
    }
    .aplusBanTop h1 span {
        font-size: 24px;
    }
    .aplusBanTop p span {
        display: block;
    }
    .aplusBanLeft {
        height: 540px;
    }

    .mainButton {
        margin-top: 30px;
    }

    .aplOrange {
        left: 2%;
    }
}

/*========================================================
        new2Boxes under banner index
=========================================================*/
.new2BoxesPlace {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.new2BoxesWrap {
    width: 75%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%);
}

.new2Box {
    width: 49%;
    /* border: 6px solid var(--white); */
    border-radius: 18px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0px 0px 0px 1px #ccc; */
}

.new2Box img {
    width: 64px;
    margin-right: 10px;
}

.new2Box p {
    font-family: Barlow-Black, arial, sans-serif;
    font-size: 34px;
    text-transform: uppercase;
}

.new2Left {
    background: var(--white);
}
.new2Left p{
    color: var(--main-text);
}

.new2Right {
    background: var(--pink);
}
.new2Right p{
    color: var(--white);
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .new2BoxesWrap {
        width: 80%;
        bottom: -40px;
    }


    .new2Box p {
        font-size: 24px;
    }

    .new2Box img {
        width: 48px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .new2BoxesWrap {
        width: 90%;
        bottom: -30px;
    }

    .new2Box{
        padding: 20px 30px;
    }


    .new2Box p {
        font-size: 19px;
    }

    .new2Box img {
        width: 38px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .new2BoxesWrap {
        width: 90%;
        bottom: -35px;
    }

    .new2Box {
        padding: 12px 20px;
    }

    .new2Box p {
        font-size: 20px;
        margin-top: 0;
    }

    .new2Box img {
        width: 48px;
    }


    .new2Left {
        margin-right: 0;
    }

    .new2Right {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .new2BoxesWrap {
        width: 90%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .new2BoxesWrap {
        bottom: -35px;
    }

    .new2Box {
        padding: 10px 15px;
    }

    .new2Box p {
        font-size: 22px;
        margin-top: 0;
    }

    .new2Box img {
        width: 48px;
    }


    .new2Left {
        margin-right: 0;
    }

    .new2Right {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .new2BoxesWrap {
        flex-wrap: wrap;
        bottom: -78px;
    }

    .new2Box {
        width: 100%;
        padding: 10px 15px;
    }

    .new2Box p {
        font-size: 22px;
        margin-top: 0;
    }

    .new2Box img {
        width: 48px;
    }

    .new2Left {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 479px){
    .new2BoxesWrap{
        width: 100%;
    }
    .new2Box{
        border-radius: 0;
    }
    .new2Left{
        margin-bottom: 0;
    }

}

/*========================================================
        Free Estimate Index
=========================================================*/
.freeEstimate {
    padding: 190px 0 150px;
    background-color: var(--dark-blue);
    text-align: center;
}

.freeEstimate h2 {
    color: var(--white);
    font-family: Barlow-Black, arial, sans-serif;
    font-size: 82px;
    text-transform: uppercase;
    text-align: center;
}


.freeEstimate h2 span {
    display: block;
    font-size: 150px;
}

.freeEstimate h2 span.callToAct {
    font-size: 42px;
    color: var(--pink);
    font-family: Barlow, arial, sans-serif;
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .freeEstimate {
        padding: 140px 0 110px;
    }

    .callToAct,
    .freeEstimate h2 {
        font-size: 58px;
    }

    .freeEstimate h2 span {
        font-size: 100px;
    }

    .freeEstimate h2 span.callToAct {
        font-size: 38px;
    }

    .freeEstimate .stucSecBtnPlace {
        display: inline-block;
        margin-top: 70px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .freeEstimate {
        padding: 130px 0 90px;
    }

    .freeEstimate h2 {
        font-size: 44px;
    }

    .freeEstimate h2 span {
        font-size: 70px;
    }

    .freeEstimate h2 span.callToAct {
        font-size:32px;
    }

    .freeEstimate .stucSecBtnPlace {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .freeEstimate {
        padding: 120px 0 70px;
    }

    .callToAct,
    .freeEstimate h2 {
        font-size: 40px;
    }

    .freeEstimate h2 span {
        font-size: 60px;
    }

    .freeEstimate h2 span.callToAct {
        font-size: 28px;
    }

    .freeEstimate .stucSecBtnPlace {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .freeEstimate {
        padding: 120px 0 70px;
    }

    .freeEstimate h2 {
        font-size: 40px;
    }

    .freeEstimate h2 span {
        font-size: 60px;
    }
    .freeEstimate h2 span.callToAct {
        font-size: 26px;
    }

    .freeEstimate .stucSecBtnPlace {
        display: inline-block;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .freeEstimate {
        padding: 170px 0 70px;
    }

    .freeEstimate h2 {
        font-size: 40px;
    }

    .freeEstimate h2 span {
        font-size: 60px;
    }

    .freeEstimate h2 span.callToAct {
        font-size: 24px;
    }

    .freeEstimate .stucSecBtnPlace {
        display: inline-block;
        margin-top: 30px;
    }
}


@media only screen and (max-width: 479px) {
    .freeEstimate {
        padding: 150px 0 50px;
    }

    .freeEstimate h2 {
        font-size: 28px;
    }

    .freeEstimate h2 span {
        font-size: 40px;
    }
    .freeEstimate h2 span.callToAct {
        font-size: 21px;
    }
}


/*========================================================
        Stucco Section Index
=========================================================*/
.stucGallMob {
    display: none !important;
}

.stucSecBtnPlaceMob,
.gallTitOnlyMob {
    display: none;
}

.stucSec {
    padding: 40px 0 160px;
}

.stucSec h2,
.stucSec h3,
.stucSec h4 {
    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 {
    padding-left: 80px;
    margin-top: 50px;
}

.stucSecLeft ul li {
    background-image: url('../images/index/mark-list-min.png');
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: left center;
    font-size: 36px;
    padding: 30px 0 30px 75px;
    text-transform: capitalize;
}
.stucSecLeft ul li span{
  display: block;
  font-weight: 600;
}

.stucSecRight {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 430px;
}

.stucGall {
    background: var(--topblue);
    color: var(--white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 90px;
    font-size: 36px;
    text-transform: capitalize;
    min-height: 440px;
}

.stucGall p {
    margin-bottom: 25px;
}

.stucGall,
.stucGalImg {
    width: 49%;
}

.stucGalImg {
    width: 100%;
}

.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%;
}

.stucBothBtnPlace {
    margin: 100px auto 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 800px;
}

.stucOneBtnPlace {
    width: 50%;
}

@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;
        padding-bottom: 300px;
    }

    .stucGall {
        margin: 0 0 15px 0;
        width: 346px;
        height: 346px;
        min-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;
    }

    .stucBothBtnPlace {
        width: 660px;
    }
}

@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;
        padding-bottom: 180px;
    }

    .stucGall {
        margin: 0 0 15px 0;
        width: 271px;
        height: 271px;
        min-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%;
    }

    .stucBothBtnPlace {

        width: 500px;
    }
}

@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;
        padding-bottom: 200px;
    }

    .stucGall {
        margin: 0 0 15px 0;
        width: 214px;
        height: 214px;
        min-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,
    .stucSec h3,
    .stucSec h4 {
        margin-bottom: 60px;
    }

    .stucBothBtnPlace {
        margin: 70px auto 0;
        width: 500px;
    }
}

@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;
        padding-bottom: 100px;
    }

    .stucGall {
        margin: 0 0 12px 0;
        width: 271px;
        height: 271px;
        min-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 45px;
        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 {
        top: -15%;
        width: 15%;
    }

    .stucSec h2,
    .stucSec h3,
    .stucSec h4 {
        margin-bottom: 25px;
    }

    .stucBothBtnPlace {
        margin: 70px auto 0;
        width: 500px;
    }
    .belowGallBtnMob {
        display: none;
    }
}

@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;
        flex-direction: column;
        padding-bottom: 40px;
    }

    .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 45px;
        font-size: 19px;
    }

    .stucSecLeft ul {
        margin-top: 20px;
        padding-left: 40px;
    }

    .stucGall p {
        font-size: 22px;
    }

    .gallArrow {
        width: 60px;
    }

    .gallTitOnlyMob {
        display: block;
        text-align: center;
    }
    .gallTitOnlyMob h4 {
        font-size: 28px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 25px;
        color: var(--pink);
    }

    .stucSec {
        padding: 0 0 35px;
    }

    .stucSecBtnPlace {
        display: none;
    }

    .stucSecBtnPlaceMob {
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
        margin: 30px auto 0;
        align-items: center;
        width: 100%;
    }

    .belowGallBtnMob {
        display: none;
    }

    .plasterImg {
        display: none;
    }

    .stucSec h2,
    .stucSec h3,
    .stucSec h4 {
        margin-bottom: 25px;
    }

    .stucGallMob {
        display: block !important;
        width: 432px !important;
        margin: 0 auto;
    }

    .stucBothBtnPlace {
        width: 440px;
        margin-top: 30px;
        flex-direction: column;
    }

    .stucOneBtnPlace {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .stucSecLeft ul {
        padding-left: 0;
    }

    .stucGallMob {
        width: 100% !important;
    }

    .stucBothBtnPlace {
        width: 90%;
    }
}

/*========================================================
        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;
    }
}

/*========================================================
        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;
    }
}

/*========================================================
        Google Rating under banner Index
=========================================================*/
.gRate{
  padding: 50px 0;
}
.gRateSize{
  width: 74%;
  margin: 0 auto;
}
.gRateWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.gRateBtn{
  display: inline-block;
  border: 2px solid var(--topblue);
  border-radius: 65px;
  font-family: Barlow-Black, arial, sans-serif;
  font-size: 72px;
  line-height: 1;
  text-transform: uppercase;
  padding: 20px 80px;
}
.gRateBtn img{
  width: 60px;
}
.gRateText{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 50px;
}
.gRateTextLeft p{
  font-family: Barlow-Bold, arial, sans-serif;
  font-size: 96px;
  line-height: 0.8;
  margin-right: 20px;
}
.gRateTextRight p{
  line-height: 1;
  text-transform: capitalize;
}
.gRateTextRight p span{
  display: block;
  font-family: Barlow-Bold, arial, sans-serif;
  font-size: 54px;
  text-transform: uppercase;
}
.gRateTextRight p br{
  display: none;
}
@media only screen and (min-width: 1920px) and (max-width: 2559px) {
  .gRateSize {
  	width: 90%;
  }
  .gRateBtn {
  	font-size: 70px;
  }
  .gRateTextLeft p {
  	font-size: 90px;
  }
  .gRateText{
    margin-left: 40px;
  }
  .gRateTextRight p span {
  	font-size: 47px;
  }
  .gRateTextRight p{
    font-size: 26px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1525px){
  .gRateText{
    margin-left: 20px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1919px) {
  .gRateSize {
  	width: 90%;
  }
  .gRateBtn {
  	font-size: 56px;
    padding: 12px 54px;
  }
  .gRateBtn img{
    width: 50px;
  }
  .gRateText{
    margin-left: 40px;
  }
  .gRateTextLeft p {
  	font-size: 67px;
  }
  .gRateTextRight p span {
  	font-size: 37px;
  }
  .gRateTextRight p{
    font-size: 20.5px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  .gRateSize {
  	width: 90%;
  }
  .gRateWrap{
    justify-content: center;
  }
  .gRateBtn {
  	font-size: 42px;
    padding: 12px 54px;
  }
  .gRateBtn img{
    width: 40px;
  }
  .gRateText{
    margin: 20px 0 0;
  }
  .gRateTextLeft p {
  	font-size: 67px;
  }
  .gRateTextRight p span {
  	font-size: 37px;
  }
  .gRateTextRight p{
    font-size: 20.5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .gRateSize {
  	width: 90%;
  }
  .gRateWrap{
    justify-content: center;
  }
  .gRateBtn {
  	font-size: 42px;
    padding: 12px 54px;
  }
  .gRateBtn img{
    width: 40px;
  }
  .gRateText{
    margin: 20px 0 0;
  }
  .gRateTextLeft p {
  	font-size: 67px;
  }
  .gRateTextRight p span {
  	font-size: 37px;
  }
  .gRateTextRight p{
    font-size: 20.5px;
  }
}
@media only screen and (max-width: 767px) {
  .gRate{
    border-bottom: 1px solid #ccc;
  }
  .gRateSize {
  	width: 90%;
  }
  .gRateWrap{
    flex-direction: column;
    justify-content: center;
  }
  .gRateBtn {
  	font-size: 26px;
    padding: 12px 24px;
  }
  .gRateBtn img{
    width: 26px;
  }
  .gRateText {
    line-height: 1.2;
  	justify-content: center;
    margin: 20px 0 0;
    text-align: center;
  }
  .gRateTextLeft p {
  	font-size: 74px;
    margin: 0 0 15px 0;
  }
  .gRateTextRight p span {
  	font-size: 37px;
    margin: 0 0 10px;
  }
  .gRateTextRight p{
    font-size: 22px;
    line-height: 1.2;
  }
  .gRateTextRight p br{
    display: block;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .gRateText {
  	display: flex;
    flex-direction: column;
  	justify-content: flex-start;
  	align-items: center;
  	flex-wrap: wrap;
  	margin-left: 0;
  }
}

/*========================================================
        Drywall Repair Section Index
=========================================================*/
.servDryMob {
    display: none !important;
}
.wrapTitleDry{
    text-align: center;
    margin-bottom: 100px;
}
.wrapTitleDry h2 span{
   display: block;
}

.servDryBtnPlaceMob {
    display: none;
}

/* Default styles for browsers that do not support the specified feature */
.servDry {
    background-image: url(../images/index/services-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 1152px;
    padding: 280px 0 100px;
}

/* Override styles for browsers that support the specified feature */
@supports (background-image: url(../images/index/services-bg.webp)) {
    .servDry {
        background-image: url(../images/index/services-bg.webp);
        padding: 200px 0 100px;
    }
}


.servDryWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.servDryBox1,
.servDrySingle {
    width: 32%;
}

.servDryBox1 {
    display: flex;
    align-items: flex-start;
    /* 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 30px 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(--topblue);
    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;
}

.servDryTop {
    display: flex;
    justify-content: flex-start;
}

.servDryImg {
    width: 140px;
    height: 140px;
    border: 6px solid var(--dark-blue);
    background: #fff;
    border-radius: 50%;
    margin-right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.servDryText {
    display: flex;
    align-items: center;
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
}

.learnPriceBtnPlace a {
    font-size: 30px;
    color: var(--topblue);
    text-transform: capitalize;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.learnPriceBtnPlace a img {
    margin-left: 20px;
}

.servMobSub {
    display: none;
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .servTextOran {
        font-size: 28px;
    }

    .inServDryBox1 h3 {
        font-size: 40px;
    }

    .servDryBtnPlace {
        margin: 30px 0 0;
    }

    .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: 160px 0 0;
    }

    .servDryImg {
        width: 115px;
        height: 115px;
    }

    .servDryText {
        font-size: 34px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .wrapTitleDry{
        margin-bottom: 70px;
    }
    .servTextOran {
        font-size: 21px;
        background-size: 36px 7px;
        padding-left: 46px;
    }

    .inServDryBox1 h3 {
        font-size: 28px;
        margin-top: 20px;
    }

    .inServDryBox1 {
        padding: 15px 0 15px 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: 30px 0 0;
    }

    .servDryImg {
        width: 75px;
        height: 75px;
        border: 4px solid var(--dark-blue);
    }

    .servDryText {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .wrapTitleDry{
        margin-bottom: 70px;
    }

    .servTextOran {
        font-size: 18px;
        background-size: 30px 4px;
        padding-left: 40px;
    }

    .inServDryBox1 h3 {
        font-size: 22px;
        margin-top: 20px;
    }

    .inServDryBox1 {
        padding: 15px 0 15px 20px;
    }

    .servDrySingle img.servIcon {
        width: 65px;
    }

    .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;
    }

    .servDryImg {
        width: 75px;
        height: 75px;
        border: 4px solid var(--dark-blue);
    }

    .servDryText {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1023px){
    .inServDryBox1 h3 {
       display: none;
    }
}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .wrapTitleDry{
        margin-bottom: 0px;
    }
    .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: 50px 0 90px;
        text-align: center;
    }

    .servDryBox1 {
        justify-content: center;
        padding: 10px 0;
    }

    .servDryBtnPlace,
    .servDrySingle {
        display: none;
    }

    .servDryMob {
        display: block !important;
    }

    .servMobSub {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5px 0 25px;
        font-size: 16px;
        color: var(--pink);
        font-family: arial, sans-serif;
        font-weight: 600;
    }

    .swipestleft,
    .swipestright {
        color: var(--pink);
        font-size: 18px;
    }

    .swipestleft {
        margin-right: 5px;
    }

    .swipestright {
        margin-left: 5px;
    }

    .clickMob {
        text-align: center;
        font-family: Barlow-Medium, arial, sans-serif;
    }

    .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;
    } */
    .servDryImg {
        width: 75px;
        height: 75px;
        border: 4px solid var(--dark-blue);
    }

    .servDryText {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .wrapTitleDry{
        margin-bottom: 0px;
    }

    .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;
    }

    .servMobSub {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5px 0 25px;
        font-size: 16px;
        color: var(--pink);
        font-family: arial, sans-serif;
        font-weight: 600;
    }

    .swipestleft,
    .swipestright {
        color: var(--pink);
        font-size: 18px;
    }

    .swipestleft {
        margin-right: 5px;
    }

    .swipestright {
        margin-left: 5px;
    }

    .clickMob {
        text-align: center;
        font-family: Barlow-Medium, arial, sans-serif;
    }

    .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: 50px 0 60px;
        text-align: center;
    }

    .servDrySingleMob {
        padding: 40px 40px 40px 50px;
        width: 360px;
        margin: 0 auto;
        border-radius: 40px;
    }

    .servDryBox1 {
        justify-content: center;
        padding: 10px 0;
    }

    .servDryMob {
        display: block !important;
    }

    .servDryBtnPlaceMob {
        margin-top: 20px;
        display: block;
    }

    .servDryImg {
        width: 75px;
        height: 75px;
        border: 4px solid var(--dark-blue);
    }

    .servDryText {
        font-size: 22px;
    }
}

@media only screen and (max-width: 479px) {
    .servDry {
        padding-top: 50px;
    }

    .inServDryBox1 {
        padding: 10px 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;
    }
}

/*========================================================
        Devider Above Footer
=========================================================*/
.deviderBg{
    padding: 150px 0;
    background-color: var(--dark-blue);
}
.wrapDevider{
    display: flex;
    align-items: center;
    justify-content: center;
}

.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) {
    .deviderBg{
        padding: 110px 0;
    }
    .wrapDevider a img{
        width: 160px;
    }
}
@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .deviderBg{
        padding: 80px 0;
    }
    .wrapDevider a img{
        width: 105px;
        margin-left: 30px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .deviderBg{
        padding: 80px 0;
    }
    .wrapDevider a img{
        width: 105px;
        margin-left: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .deviderBg{
        padding: 70px 0;
    }
    .wrapDevider a img{
        width: 100px;
        margin-left: 25px;
    }
}
@media only screen and (max-width: 767px) {
    .deviderBg{
        padding: 60px 0;
    }
    .deviderBg h2 {
        font-size: 30px;
    }

    .deviderBg h2 span{
        font-size: 50px;
    }
    .wrapDevider a img{
        width: 70px;
        margin-left: 15px;
    }
}
@media only screen  and (min-width: 480px) and (max-width: 767px) {}
@media only screen and (max-width: 479px) {
    .deviderBg{
        padding: 50px 0;
    }
    .deviderBg h2 {
        font-size: 21px;
    }

    .deviderBg h2 span{
        font-size: 38px;
    }
    .wrapDevider a img{
        width: 35px;
        margin-left: 10px;
    }
}


/*========================================================
        Footer
=========================================================*/
.footerCl {
    background: var(--footerBg);
    padding: 200px 0 180px;
}

.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;
    }
    .fooUlSecond {
        padding-left: 20px;
    }
}

@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;
}

.servicespTit h1 {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 10px;
}

.servicesLineSub {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--topblue);
    position: relative;
    padding-left: 70px;
    width: 200px;
    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;
    }

    .servicespTit h1 {
        font-size: 50px;
    }

    .servicesLineSub {
        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;
    }

    .servicespTit h1 {
        font-size: 38px;
    }

    .servicesLineSub {
        font-size: 21px;
        width: 120px;
        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;
    }

    .servicespTit h1 {
        font-size: 30px;
    }

    .servicesLineSub {
        font-size: 21px;
        width: 120px;
        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;
    }

    .servicespTit h1 {
        font-size: 30px;
    }

    .servicesLineSub {
        font-size: 21px;
        width: 120px;
        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;
    }

    .servicesLineSub {
        font-size: 21px;
        width: 120px;
        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: 479px) {
    .servicespTit h1 span {
        display: block;
    }
}

/*========================================================
    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;
    }
}

/*========================================================
    ABOUT page
=========================================================*/
.aboutTit {
    width: 580px;
}
.aboutTitm h1 {
    font-size: 56px;
}
.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;
}
/* Ewa: I added on 19/04/25 @ 15:08pm EST */
.aboutWrap ul {
    padding-bottom: 75px;
}
.aboutWrap ul li {
    background: url('../images/blue-dot.png') no-repeat;
    background-position: left top 19px;
    background-size: 25px 25px;
    padding: 12px 0 12px 40px;
    font-weight: bold;
}
.aboutWrap ul li span {
    font-weight: normal;
}
@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .aboutWrap {
        width: 80%;
    }
}
@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;
    }
    .aboutTitm h1 {
        font-size: 38px;
    }
    .aboutWrap ul li {
        font-size: 24px;
        background-position: left top 17px;
        background-size: 20px 20px;
        padding: 12px 0 12px 30px;
    }
}

@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;
    }
    .aboutTitm h1 {
        font-size: 38px;
    }
    .aboutWrap ul li {
        font-size: 18px;
        background-position: left top 15px;
        background-size: 15px 15px;
        padding: 12px 0 12px 25px;
    }
    .aboutWrap ul {
        padding-bottom: 50px;
    }
}

@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;
    }
    .aboutTitm h1 {
        font-size: 32px;
    }
    .aboutWrap ul li {
        font-size: 18px;
        background-position: left top 15px;
        background-size: 15px 15px;
        padding: 12px 0 12px 25px;
    }
    .aboutWrap ul {
        padding-bottom: 35px;
    }
}

@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;
    }
     .aboutTitm h1 {
        font-size: 26px;
         width: 400px;
         margin: 10px auto 0;
    }
    .aboutWrap ul li {
        font-size: 18px;
        background-position: left top 15px;
        background-size: 15px 15px;
        padding: 10px 0 10px 25px;
    }
    .aboutWrap ul {
        padding-bottom: 35px;
    }
}

@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;
    }
    .aboutTitm h1 {
        width: 280px;
    }
}

/*========================================================
    FAQ page
=========================================================*/
.faqSec{
  padding: 120px 0 0;
}
.faqSec h3{
  text-align: center;
}
.servicesBan {
	height: auto;
}
.faqWrap {
    margin: 110px auto 70px;
    padding-bottom: 90px;
    width: 70%;
}

.faqRow {
    padding: 10px;
    background: rgba(255,255,255,0.8);
    margin: 10px auto;
    width: 100%;
}

p.faq {
    text-align: left;
    font-size: 24px;
}

a.question {
    line-height: 1.5;
    display: inline-block;
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    margin: 5px 0;
    cursor: pointer;
}

.faqa {
    text-align: left;
    padding: 10px 0 10px 40px;
    font-size: 30px;
    line-height: 1.5;
}
@media only screen and (min-width: 1920px) and (max-width: 2559px) {
  a.question {
      font-size: 28px;
  }

  .faqa {
      font-size: 22px;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .faqSec{
      padding: 90px 0 0;
    }
    .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) {
  .faqSec{
    padding: 90px 0 0;
  }
    .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) {
    .faqSec{
      padding: 60px 0 0;
    }
    .faqWrap {
        margin: 60px auto 30px;
        width: 100%;
        padding-bottom: 20px;
    }

    a.question {
        font-size: 19px;
    }

    .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: 1301px) and (max-width: 1919px) {

    .contactWrap {
        margin-top: 70px;
        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: 50px;
        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: 50px;
        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: 50px;
        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(--main-text);
    background: #e5e5e7;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.reviewsBoxEmpty {
    width: 24%;
}

.reviewsBox img {
    width: 100%;
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

.reviewsBox p {
    font-size: 16px;
    line-height: 1.3;
    color: var(--main-text);
    text-align: center;
}

@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,
    .reviewsBoxEmpty {
        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;
    }

    .reviewsBoxEmpty {
        width: 100%;
    }
}

@media only screen and (max-width: 479px) {

    .reviewsBox,
    .reviewsBoxEmpty {
        max-width: 280px;
    }
}

/*========================================================
    DISCLAIMER page
=========================================================*/
.dislaimerWrap {
    width: 70%;
    margin: 0 auto;
    padding: 90px 0;
}

.dislaimerWrap h2,
.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: 1301px) and (max-width: 1919px) {
    .dislaimerWrap {
        width: 85%;
        padding: 90px 0 50px;
    }

    .dislaimerWrap h2,
    .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 h2,
    .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 h2,
    .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 h2,
    .dislaimerWrap h3 {
        font-size: 24px;
    }

    .dislaimerWrap p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 479px) {

    .dislaimerWrap h2,
    .dislaimerWrap h3 {
        font-size: 21px;
    }

    .dislaimerWrap {
        padding: 50px 0 0;
    }
}

/*========================================================
   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-Medium, arial, sans-serif;
    font-size: 21px;
    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%;
    }
}

/*========================================================
                    Pet Screen Page
=========================================================*/
.wrapListPet:not(:last-child) {
    margin-top: 70px;
}

.wrapListPet .servDrySingle {
    width: 48%;
}

.wrapListPet .servDrySingle p {
    margin: 0;
}

.wrapContPet p {
    text-align: left;
}

@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%;
    }
}

/*========================================================
        Video Section Index
=========================================================*/
.lrSection{
  padding: 135px 0 145px;
}
.indexVideoSec{
  padding: 80px 0;
}
.indexVideoSec .lrSecLeftImg img{
  border-radius: 15px;
  border: 6px solid #ccc;
}
.lrSection h1,
.lrSection h2{
  text-align: center;
  margin: 0 0 130px;
}
.lrTitleSpec h2{
  font-size: 33px;
  line-height: 1.5;
}
.lrSection h1 span,
.lrSection h2 span{
  display: block;
}
.lrTitleH2Mob{
  display: none;
}
.lrSectionWrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lrSecLeftImg{
  width: 48%;
}
.lrSecRightText{
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lrSecLeftImg img{
  width: 100%;
}
.lrSecRightText h3{
  font-size: 48px;
  line-height: 1.2;
}
.lrSecRightText h3 span{
  display: block;
}
.lrSecRightText p,
.lrExtraRect p{
  margin: 15px 0 0;
}
.lrGrayRectRound{
  background: #e8eae9;
  border-radius: 30px;
  padding: 20px 30px;
}
.lrSecUl{
  margin: 40px 0 0;
}
.lrSecUl li{
  background-image: url('../images/index/blue-tick.svg');
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 18px 18px;
  padding-left: 30px;
  margin-bottom: 15px;
}
.lrSubUl{
  padding-left: 20px;
}
.lrSubUl2Cols{
  column-count: 2;
}
.lrSubUl li{
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 15px;
}
.lrSubUl li span{
  display: block;
  font-weight: 700;
}
.lrSubOl li{
  margin-bottom: 15px;
}
.lrSecBtnPlace{
  margin: 25px 0 0;
  display: flex;
}
.lrSecBtnPlace .servDryBtn:nth-of-type(2) {
  margin-left: 10px;
}
.lrSecBtnPlace .lrBtn{
  background: var(--blue);
}
.lrSectionSubPage .lrSecBtnPlace .lrBtn{
  background: var(--orange);
}
.lrSecQuoteBtnPlace{
  text-align: center;
}
/*
.lrSecQuoteBtnPlace .lrBtn{
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
}
*/
.lrSectionWrapRever{
  flex-direction: row-reverse;
}
.lrSecAddMargin{
  margin: 110px 0 0;
}
.newBlue{
  background: var(--blue);
  color: var(--white);
}
.newBlue img{
  border-radius: 30px;
}
.lrExtraWrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0 0;
}
.lrExtraRect{
  width: 48%;
}
.lrSection h4{
  text-transform: uppercase;
}
@media only screen and (min-width: 1920px) and (max-width: 2559px) {
  .lrTitleSpec h2{
    font-size: 30px;
    line-height: 1.5;
  }
  .lrSecRightText p, .lrExtraRect p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1919px) {
  .lrSection {
  	padding: 115px 0 125px;
  }
  .lrSection h1,
  .lrSection h2 {
  	margin: 0 0 110px;
  }
  .lrSecRightText h3 {
  	font-size: 36px;
  }
  .lrTitleSpec h2{
    font-size: 24px;
    margin: 0 auto 110px;
  }
  .lrSecRightText p, .lrExtraRect p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  .lrSection {
  	padding: 80px 0 85px;
  }
  .lrSection h1,
  .lrSection h2 {
  	margin: 0 0 100px;
  }
  .lrSecRightText h3 {
  	font-size: 28px;
  }
  .lrSecAddMargin {
  	margin: 80px 0 0;
  }
  .lrTitleSpec h2{
    font-size: 19px;
    margin: 0 auto 100px;
  }
  .lrSecRightText p, .lrExtraRect p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .lrSection {
  	padding: 80px 0 85px;
  }
  .lrSection h1,
  .lrSection h2 {
  	margin: 0 0 90px;
  }
  .lrTitleSpec h2{
    font-size: 19px;
    margin: 0 auto 90px;
  }
  .title768 h2 {
    width: 70%;
    margin: 0 auto 90px;
  }
  .lrSecLeftImg,
  .lrSecRightText {
  	width: 100%;
  }
  .lrSecLeftImg{
    margin-bottom: 40px;
  }
  .lrSecRightText h3 {
  	font-size: 34px;
  }
  .lrSecAddMargin {
  	margin: 80px 0 0;
  }
  .lrSubUl2Cols{
    column-count: 1;
  }
  .lrExtraRect{
    width: 100%;
  }
  .lrExtraRect:last-child{
    margin: 40px 0 0;
  }
  .lrSecRightText p, .lrExtraRect p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .lrSection {
  	padding: 80px 0 85px;
  }
  .indexVideoSec{
    padding: 60px 0;
  }
  .lrSectionSubPage{
    padding: 60px 0 65px;
  }
  .lrSection h1,
  .lrSection h2 {
  	margin: 0 0 60px;
  }
  .lrTitleSpec h2{
    font-size: 19px;
    margin: 0 auto 60px;
  }
  .lrSection h1 span,
  .lrSection h2 span{
    display: block;
  }
  .lrTitleH2Desk{
    display: none;
  }
  .lrTitleH2Mob{
    display: block!important;
  }
  .lrSecLeftImg,
  .lrSecRightText {
  	width: 100%;
  }
  .lrSecLeftImg{
    margin-bottom: 40px;
  }
  .lrSecRightText h3 {
  	font-size: 26px;
  }
  .lrGrayRectRound{
    padding: 20px;
  }
  .lrSecAddMargin {
  	margin: 60px 0 0;
  }
  .lrSecBtnPlace{
    text-align: center;
  }
  .lrSecBtnPlace .servDryBtn {
  	padding: 20px 17px;
  	font-size: 19px;
  }
  .lrSubUl2Cols{
    column-count: 1;
  }
  .lrExtraRect{
    width: 100%;
  }
  .lrExtraRect:last-child{
    margin: 40px 0 0;
  }
  .lrSecRightText p, .lrExtraRect p {
    font-size: 18px;
  }
}

/*========================================================
                    Lanai Screen Repair Page
=========================================================*/
.forAllPages .wrapListPet:not(:last-child) {
    margin-top: 10px;
}

@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: 70px 70px;
        width: 70px;
        height: 70px;
        font-size: 70px;
    }

    .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: center;
        width: 100%;
        line-height: inherit;
        margin-left: 0;
    }
    .menuTop ul li.mmlink{
      display: block;
      font-family: Barlow-Medium, arial, sans-serif;
    }

    .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.mlink a::after {
        display: none;
    }

    .menuTop ul li.mlink a,
    .menuTop ul li.mmlink a {
        margin: 0 0;
    }
    .menuTop ul li.mmlinkMargTop{
      margin-top: 30px;
    }

    .menuTop ul li.mlogo {
        margin: 20px auto 0 auto;
        height: auto;
        display: block;
        width: 100%;
        text-align: center;
    }

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

    .menuTop ul li.mphone {
        display: inline-block;
        text-align: center;
        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: center;
        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: center;
        margin: 20px auto 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: 90px;
    }

    .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: 155px;
        position: static;
        top: 15px;
        left: 50%;
        margin-top: 35px;
    }

    .telMob {

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

    .telMob img {
        width: 55px;
    }

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

@media only screen and (max-width: 767px) {
    .menu ul li.speclink {
        display: none;
    }

    .top {
        padding: 10px 0;
        border-bottom: 1px solid rgba(247, 144, 51, .5);
    }

    .one{
        justify-content: space-between;
        height: 80px;
    }

    .topLogo {
        width: 280px;
    }

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

    .telMob,
    nav {
        width: 20%;
    }

    .logoMobi img {
        width: 180px;
        top: -35px;
        left: 0;
        transform: none;
        margin-top: 60px;
    }

    .telMob {
        display: none;
        justify-content: flex-start;
    }
    .companyData {
        height: 80px;
    }
}

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

@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;
    }

}

/*========================================================
     Additional main changes
=========================================================*/
@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;
    }
}

/*========================================================
     General Divider Section
=========================================================*/
.generalDivrbg {
    padding: 70px 0;
    background-color: var(--topblue);
}

.generalDivrH3 {
    width: 65%;
    margin: 0 auto;
}

.generalDivrH3 h3 {
    font-family: Barlow-Bold, arial, sans-serif;
    font-size: 80px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    color: var(--white);
    padding-bottom: 95px;
}

.generalDivrWrap {
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 1664px;
}

.generaldivrCol {
    width: 33.3%;
    padding: 0 75px;
}

.divrbbb {
    height: 158px;
}

.generalDivrSince {
    border-top: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    padding: 5px 0;
}

.divr1,
.divr2 {
    font-family: PT-Sans-Narrow, arial, sans-serif;
    font-size: 100px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}

.divr2 {
    font-size: 42px;
    text-align: center;
}

.divr3 {
    font-family: PT-Sans-Narrow, arial, sans-serif;
    font-size: 50px;
    color: var(--white);
    text-align: center;
}

.divrstars {
    width: 390px;
}

@media only screen and (min-width: 1920px) and (max-width: 2559px) {
    .generalDivrWrap {
        width: 1248px;
    }

    .divrbbb {
        height: auto;
        width: 100%;
    }

    .divr1 {
        font-size: 82px;
    }

    .divr2 {
        font-size: 34px;
    }

    .divrstars {
        width: 335px;
    }

    .divr3 {
        font-size: 38px;
    }

    .generaldivrCol {
        padding: 0 40px;
    }
}

@media only screen and (min-width: 1301px) and (max-width: 1919px) {
    .generalDivrH3 {
        width: 75%;
    }

    .generalDivrH3 h3 {
        font-size: 60px;
        padding-bottom: 50px;
    }

    .generalDivrWrap {
        width: 976px;
    }

    .divrbbb {
        height: auto;
        width: 100%;
    }

    .divr1 {
        font-size: 62px;
    }

    .divr2 {
        font-size: 28px;
    }

    .divrstars {
        width: 255px;
    }

    .divr3 {
        font-size: 30px;
    }

    .generaldivrCol {
        padding: 0 35px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
    .generalDivrH3 {
        width: 85%;
    }

    .generalDivrH3 h3 {
        font-size: 48px;
        padding-bottom: 50px;
    }

    .generalDivrWrap {
        width: 870px;
    }

    .divrbbb {
        height: auto;
        width: 100%;
    }

    .divr1 {
        font-size: 54px;
    }

    .divr2 {
        font-size: 26px;
    }

    .divrstars {
        width: 220px;
    }

    .divr3 {
        font-size: 26px;
    }

    .generaldivrCol {
        padding: 0 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .generalDivrH3 {
        width: 85%;
    }

    .generalDivrH3 h3 {
        font-size: 48px;
        padding-bottom: 50px;
    }

    .generalDivrWrap {
        width: 653px;
    }

    .divrbbb {
        height: auto;
        width: 100%;
    }

    .divr1 {
        font-size: 38px;
    }

    .divr2 {
        font-size: 21px;
    }

    .divrstars {
        width: 157px;
    }

    .divr3 {
        font-size: 21px;
    }

    .generaldivrCol {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .generalDivrbg {
        padding: 35px 0;
    }

    .generalDivrH3 {
        width: 90%;
    }

    .generalDivrH3 h3 {
        font-size: 42px;
        padding-bottom: 50px;
    }

    .generalDivrH3 h3 span {
        display: block;
    }

    .generalDivrWrap {
        width: 95%;
        flex-direction: column;
    }

    .generaldivrCol {
        width: 100%;
        padding: 0 0 35px;
        text-align: center;
    }

    .divrbbb {
        width: 260px;
        height: auto;
    }

    .generalDivrSince {
        width: 260px;
        margin: 0 auto;
    }

    .divr1 {
        font-size: 62px;
    }

    .divr2 {
        font-size: 28px;
    }

    .divrstars {
        width: 260px;
    }

    .divr3 {
        font-size: 28px;
        line-height: 1;
    }
}

@media only screen and (max-width: 479px) {

    .divrbbb,
    .divrstars,
    .generalDivrSince {
        width: 240px;
    }

    .generalDivrH3 h3 {
        font-size: 32px;
    }

    .divr1 {
        font-size: 54px;
    }
}

/*========================================================
     Section With Icons Screen Types
=========================================================*/
.wrapIconsST {
    display: flex;
}

.wrapIconsST {
    display: flex;
}


.faq-displau {
    display: block;
}

.faqu-none {
    display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
