html {
    scroll-behavior: smooth;
}

body {
     font-family: 'Inter 18pt';
    font-style: normal;
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    font-size: 16px;
    color: #000;
    overflow-x: hidden;
    background-color: #fff;
}



ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;      font-family: 'Inter 18pt';
}

p {
     font-family: 'Inter 18pt';
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 35px;
    color: #000;
}

img {
    max-width: 100%;
    border: 0;
    height: auto;
}

.clear {
    clear: both;
    float: none;
    width: 100%;
}

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

a {
    text-decoration: none !important;
    transition: all 0.2s ease-in;
    color: #1f1f1f;
  
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Canela';
}

a:hover {
    color: #000;
}

a,
span {
    display: inline-block;
}

:focus {
    box-shadow: none !important;
    outline: none !important;
}





@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Black.woff2') format('woff2'),
        url('../fonts/Canela-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Bold.woff2') format('woff2'),
        url('../fonts/Canela-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Light.woff2') format('woff2'),
        url('../fonts/Canela-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Medium.woff2') format('woff2'),
        url('../fonts/Canela-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Regular.woff2') format('woff2'),
        url('../fonts/Canela-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Black.woff2') format('woff2'),
        url('../fonts/Inter18pt-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Bold.woff2') format('woff2'),
        url('../fonts/Inter18pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Italic.woff2') format('woff2'),
        url('../fonts/Inter18pt-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Medium.woff2') format('woff2'),
        url('../fonts/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-Regular.woff2') format('woff2'),
        url('../fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter 18pt';
    src: url('../fonts/Inter18pt-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}






@media (min-width: 1366px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px;
    }
}

@media (min-width: 1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1350px;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1500px;
    }
}




/* HEADER STYLES*/
/* =========================
   DROPDOWN STYLE
========================= */


.navbar-nav .nav-link{
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    transition: 0.5s cubic-bezier(.77,0,.175,1);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #61993b;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.navbar-nav .nav-link:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link:hover {
color: #61993b;
}

.navbar-expand-lg .navbar-nav .nav-link {
padding: 0;
}

.dropdown-menu-item {
    position: relative;
}

.dropdown-toggle-custom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: 0.3s ease;
}

.dropdown-menu-item.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Dropdown */

.custom-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 230px;
    background: #fff;  
    margin: 0;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 999;
}

.custom-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
     transition: 0.5s ease-in-out;
}

.custom-dropdown li a:hover {
    background: #61993b;
    padding-left: 28px;
    color: #fff;
    transition: 0.5s ease-in-out;
}

/* Hover Animation Desktop */

.dropdown-menu-item:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* =========================
   MOBILE DROPDOWN
========================= */
@media(max-width:991px){

    .custom-dropdown{
        display:none;
    }

    .dropdown-menu-item.active .custom-dropdown{
        display:block;
    }

}

.main-menulist {
    padding: 15px 40px 15px 40px;
}


.navpage-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;   
    /* background: #f5f5f5; */
    z-index: 1;
}


/* STICKY STYLES */
.navpage-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgb(238 230 230 / 23%);
    padding: 0px 0;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
    z-index: 9999;
    color: #000; 
    background-color: #ffffffa6; 
}


.navpage-header.is-sticky .logo-box img {
    max-width: 36%;
}

.navpage-header.is-sticky .main-menulist {
    padding: 0px 30px 0px 30px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

i.fa.fa-bars {
    color: #000;
}

.navbar-toggler {
    background-color: #000;
}

.navbar {
    align-items: self-start;
    padding: 0;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
    padding-top: 30px;
}
.dropdown-arrow i {
    font-size: 14px;
}

.nav-phone {
    padding-top: 25px;
}

.btn-secondary {
    font-size: 20px;
    color: #000;
    font-weight: 300;
    background-color: transparent;
    border-color: transparent;
}

.btn-secondary:hover {
    color: #000;
    background-color: transparent;
    border-color: transparent;
    transition: 0.5s ease-in-out;
}

.navbar .nav-link {
    font-size: 19px;
    color: #000;
    font-weight: 500;
    transition: 0.5s ease-in-out;
    position: relative;
    padding: 0;
}

.nav-item {
    padding: 0px 25px 0px 25px;
    display: flex;
    align-items: center;
    color: #000;   
    transition: 0.6s ease-in-out;
}

.nav-phone a {
    font-size: 19px;
    font-weight: 500;
}

.nav-phone img {
    padding-right: 10px;
    padding-bottom: 5px;
}

.nav-phone{
    text-align: center;
}





/* ------------home-page-css------------- */







.home-banner-section {  
    background-image: url(../images/banner-grey-bg.webp);
    background-repeat: no-repeat;    
    position: relative;
    background-size: cover;
	background-attachment: fixed;
}

.homebannerwrapper {  
    padding: 160px 40px 50px 40px;
}


.home-banner-content {
    padding-top: 120px;
}



.home-banner-title {
    font-size: 64px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
    
}

.home-banner-content p {
    font-size: 23px;
    color: #000;  
    line-height: 36px;
}




.banner-img {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(80px) scale(1.08) rotate(-2deg);
    animation: imageReveal 1.0s ease-out forwards;
    animation-delay: .2s;
}

.banner-img img {
    display: block;
    width: 100%;
    transition: transform .8s ease;
}


.banner-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 25%,
        rgba(255,255,255,.45) 50%,
        transparent 75%
    );
    transform: translateX(-150%);
    animation: shine 2.5s ease forwards;
    animation-delay: 1.0s;
    pointer-events: none;
}


@keyframes imageReveal{

    to{
        opacity:1;
        transform:translateX(0) scale(1) rotate(0deg);
    }

}

@keyframes shine{

    to{
        transform:translateX(150%);
    }

}


/* .banner-img{
  width:600px;
    height:400px;

    -webkit-mask: url('../images/thanku-bg.webp') center/100% 100% no-repeat;
    mask: url('../images/thanku-bg.webp') center/100% 100% no-repeat;
}

.banner-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
} */


/* 
.banner-img::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0%;
  right: 0%;
  bottom: 0;
  position: absolute;
  background-image: url("../images/thanku-bg.webp");
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
  animation: brush 1.5s linear forwards;
}


@keyframes brush {
  0% {
    transform: translate(15%, 0);
  }
  50% {
    transform: translate(-50%, 5%);
  }
  100% {
    transform: translate(-100%, 12%);
  }
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -25%);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
} */


.home-banner-section::after {
    content: '';
    position: absolute;
    right: 0;
    width: 156px;
    height: 209px;
    bottom: 30px;
    background-image: url(../images/banner-brush.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    animation: fadeInRight 1s ease-in-out forwards;
    z-index: 1;
}


 .cmn-btn {
  color: #fff; 
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
   width: 249px;
    height: 53px;
  position: relative;
   transition: .4s ease; 
  position: relative;
  z-index: 1;
  line-height: 50px;
}
.cmn-btn:hover{
 color: #fff;
}

 .cmn-btn:hover::after {
     transition: .4s ease; 
    background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/cmn-btn2.webp);
      filter: brightness(1.05)
            drop-shadow(0 8px 18px rgba(0, 56, 140, 0.35));
}

 .cmn-btn:hover{
     transition: .4s ease; 
     transform: translateY(-4px);
}

 .cmn-btn::after {
    content: '';
    position: absolute;
    background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/cmn-btn.webp);
    width: 249px;
    height: 53px;
    right: 0;
    left: 0;
    z-index: -1;
     background-repeat: no-repeat;
     background-size: 100%;
    transition: .4s ease;  
 }

 .cmn-btn.read-btn::after{
 background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/read-btn-bg.webp) !important;
 width: 184px;
 height: 53px;
}

.cmn-btn.read-btn{
 width: 184px;
 height: 53px;
}

 .cmn-btn.read-btn::after{
 background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/read-btn-bg.webp) !important;
 width: 184px;
 height: 53px;
}

 .cmn-btn.read-btn:hover::after {
    transition: 0.7s ease-in-out;
background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/read-btn-blue.webp) !important;
}





/* 
.brush-btn{
    position:relative;
    width:250px;
    height:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    font-weight:600;
    z-index: 1;
}

.brush-btn svg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    fill:#01398e; 
    z-index:-1;
}
 */






.home-title {
    color: #60993b;
    font-size: 60px;
    font-weight: 400;   
    text-align: center;
    margin-bottom: 20px;
}


.top-main-container{
    padding: 100px 0px;
}

.quality-subtitle{
    font-size: 30px;
    font-weight: 500;
}


.qualitynum{
    font-size: 150px;
     font-weight: 500;
}

.work-num p {
    font-size: 21px;
    font-weight: 500;
}
.work-num span{
    color: #60993b;
}

.quality-text{
    margin-bottom: 80px;
}

.quality-text span{
 color: #60993b;   
}

.home-services-card a{
    display: block;
}

.home-sec2{
    background-color: #191e28;
    padding: 0px 45px;
}

.service-title{
    font-size: 30px;
    font-weight: 400;
}

.home-service-text {
    background-color: #c5c7c4;
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
}

.home-service-text p{
margin: 0;

}

.home-services-card:hover .home-service-img img{
    transition: 0.7s ease-in-out;
    transform: scale(1)
}


.home-service-img img{
    transition: 0.7s ease-in-out; 
    overflow: hidden; 
    transform: scale(1.1) 
}


.home-services-card {
    height: 100%;
    transition: 0.7s ease-in-out;
    overflow: hidden;
    display:flex;
    flex-direction:column;
    width:100%;
}



.home-service-text{
    flex-grow:1;
}

.replace-text ul li {
    font-size: 18px;
    padding-bottom: 20px;
    list-style: disc;
}

.replace-text ul{
    padding-left: 20px;
}


.replace-box {
    background: #ecebe9;
    padding: 0px 350px 0px 80px;
    border-radius: 10px;
}


.replace-img {
    margin: -60px 0px;
}


.home-sec3 {
    padding: 150px 0px 80px 130px;
    position: relative;
    
}

.home-sec3::after {
    content: '';
    background-image: url(../images/replace-brush.webp);
    width: 341px;
    height: 322px;
    position: absolute;
    right: 0;
    background-size: 100%;
    background-repeat: no-repeat;
    top: 33%;
    animation: fadeInRight 1.5s ease-in-out forwards;
}


.replace-text {
    padding-left: 30px;
}


.projct-img {position:relative;}

.projct-img::after {
    background: #ffffff5e;
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    right: 0;
}


.projct-img:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all .4s linear;
    transition: all 0.7s linear;
}


.testistartop {
    margin-bottom: 20px;  
}


.testistartop ul{
    display: flex;
    margin-top: 20px;   
}



.testimonial-box {   
    padding: 20px 50px;
    border-radius: 10px;  
     transition: all .4s ease;
    position: relative;
    overflow: hidden;
    height: 94%;
    background-color: #f4f5f5;
    z-index: 9;
}


.customer-span {
    font-size: 18px;
    text-align: center;
    display: block;
    padding-top: 10px;
}


.home-sec5{
    padding: 0px 0px 80px 0px;
}

.testi-name {
    font-size: 20px;
    font-weight: 600;   
    display: block;
}


.home-slider,
.home-slider .owl-stage-outer,
.home-slider .owl-stage{
    height:100%;
}

.owl-dots span {
    background: #838383;
    width: 15px;
    height: 15px;
    border-radius: 100px;
}

 .owl-dot.active span {
    background: #60931b;
}

.owl-dots {
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 45px;  
}


 .owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav i{
    display: none;
}

.owl-nav {
    display: none;
}


.owl-nav.disabled {
    display: none !important;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.customers-img img{
	  transition: all .4s ease;
}

.customers-img img:hover {      
    transform: translateY(-12px);  
}







/* -----scrolling image-css-------- */


.container-inview.hide {
    display: none;
}

.container-scroll {
    padding: 0;
    height: 100%;
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-r{
    border-radius: 10px;
    overflow: hidden;
}

.img-r img{
    border-radius: 10px;
    overflow: hidden;
}



/* ----------end------------ */



/* -------euqal-height-css------ */

.home-sec5 .owl-carousel .owl-stage {
  display: flex;
}

.home-sec5 .owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto; 
}

.home-sec5 .owl-carousel .areascard{
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* -------end----- */





/* ----------------------blog-listing-css-------------------------- */


.inner-banner-sec {
    padding: 190px 0px 0px 0px;
}


.home-blog-img img {
    border-radius: 10px;
}


.blog-section {
    padding: 80px 0px 80px 0px;
}


.blog-text {
    padding: 30px 30px 50px 30px;
}


.blog-img a {
    width: 100%;
}
.blog-text p {
    padding: 10px 0px;
}
.blog-search .blog-submit {
    position: absolute;
    right: 0px;
    top: 0px;
}

.blog-img {
    border-radius: 8px;
    transition: 0.7s ease-in-out;
    overflow: hidden;
}


.blog-title {
    font-size: 28px;
    color: #333333;
    font-weight: 500;
}

.blog-search button {
    font-size: 22px;
    color: #000;   
    transition: 0.5s ease-in-out;
    font-weight: bold;
    border: 0;
    background: none;
}

.blog-search input {
    width: 90%;
}

.blog-listing-title {
    color: #333333;
    font-size: 31px;
    font-weight: 500;
}


.inner-blog-card-text {
    padding: 30px;
    transition: 0.5s ease-in-out;
    border: 1px dashed #fff;
}

.blog-search-box {
    padding: 25px 25px 200px 25px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.blog-search {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    margin-right: 10px;
}


.blog-search input{   
    border: none;  
}


.blog-categories-list {
    margin-top: 20px;
}

.blog-categories ul li {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    border-bottom: 1px solid #999999;
    padding: 20px 0px 20px 0px;
    position: relative;
    list-style: none !important;
}

.blog-categories ul {
padding: 0 !important;
}



.inner-blog-img {
    border-radius: 8px;
}

.inner-blog-img img {
    border-radius: 8px;
}

.home-blog-text p {
    font-size: 18px;
    line-height: 28px;
}

.blog-categories ul li a {
    display: inherit !important;
    transition: 0.5s ease-in-out;
}

.blog-categories a:hover {
    color: #7a9e8b;
    transition: 0.5s ease-in-out;
}

.blog-banner-text h1 {
    font-size: 30px;
    font-weight: 400;
}

.blog-banner-text h3 {
    font-size: 30px;
    font-weight: 600;
    padding-top: 15px;
}

.blog-banner-text li {
    padding-bottom: 5px;
    font-size: 18px;
}

.blog-detail-btn a {
    text-transform: lowercase;
}

.blog-btn{
    margin: auto;
    display: inline-block;
}


/* -----------------blog-detail-csss------------------- */

.blog-banner-text {
    margin: 30px 0px;
}

.blog-detail-title {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.blog-contact-title {
    color: #000;
    font-size: 26px;
    font-weight: 500;
}

.blog-detail ul li{
list-style-type: disc;
}

.blog-detail ul{
padding-left: 20px;
}

.blog-detail ol{
padding-left: 20px;
}

.blog-detail ol li{
list-style: number;
}


.blog-detail  h2{
font-size: 32px;
font-weight: 600;
}

.blog-detail  h3 {
font-size: 28px;
font-weight: 600;
}

.blog-detail  h4 {
font-size: 22px;
font-weight: 600;
}

.blog-detail  h5 {
font-size: 22px;
font-weight: 600;
}

.blog-detail  h6 {
font-size: 20px;
font-weight: 600;
margin-top: 20px;
}


.blog-detail p a {
color: #da090f;
}




/* -------------------end---------------------- */


/* -------------------------error-page---------------------- */



.error-title {
    color: #fff;
    font-weight: 500;
    font-size: 80px;
    text-align: center;
    margin-top: 40px;
    -webkit-text-stroke: 2px #63961c;
}

.error {
    text-align: center;
    position: relative;
}

.error > .code {
    font-size: 15rem;
    line-height: 230px;
    letter-spacing: 12px;
    font-weight: bold; 
    color: #63961c;
}

.error > p {
  font-weight: 400;
  font-size: 24px;
  padding-bottom: 20px;
  color: #000;
}


/* --------------thanku-page-css---------------- */

.no-banner-pad {
    padding: 200px 0px 0px 0px;
   
}

.message {
    padding: 80px 50px;
    text-align: center;  
    transition: 0.7s ease-in-out;
    position: relative;     
    border-radius: 50px;
}

.message::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0;
    background-image: url(../images/thanku-bg.webp);
    width: 820px;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    left: 0;
    margin: auto;
}

.thanku-text {
  font-size: 80px;
 color: #61993b;
  font-weight: bold;

}

.message p{
  font-size: 25px;
  color: #000;
  font-weight: 600;
  padding: 10px 0px 20px 0px;
  letter-spacing: 2px;
}



/* ---------------------------end-------------------------- */


.inner-banner-section {
    background-image: url(../images/inner-banner-bg.webp);
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}


.blue-bg{
    background-color: #191e28;
}


.inner-banner-title {
    font-size: 68px;
    font-weight: 400;
    color: #000;
}

.service-sub-title{
    font-size: 36px;
}

.blue-bg p{
    color: #fff;
}

.srevicesubtitle {
     font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;   
}

.blue-bg .inner-service-text  ul li{
     color: #fff;
}

.inner-service-text ul li {
    font-size: 18px;
    padding-bottom: 10px;
    color: #000;
    list-style: disc;
}

.inner-service-text ul{
    padding-left: 20px;
}

.grey-bg{
    background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/grey-inner-bg.webp);
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
}


.about-sec3{
    position: relative;
    margin-top: 100px;  
}



 .about-sec3::after {
    content: '';
    background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/about-owner-bg.png);
    width: 100%;
    height: 518px;
    position: absolute;
    right: 0;
    background-size: 100%;
    top: 50%;
    z-index: -1;
    transform: translate(8%, -50%);
    background-repeat: no-repeat;
} 


.about-inner-text ul li {
    font-size: 18px;
    padding: 12px 0px;
    color: #000;
    list-style: disc;
    border-bottom: 1px solid #ccc;
}


.about-inner-text ul {
    padding-left: 20px;
}








.contact-sub-title{
    font-size: 48px;
}


.contact-form input::placeholder{
   color: #606060;
  font-size: 18px;
  font-weight: 300;
}


.contact-form textarea::placeholder {
  color: #606060;
  font-size: 18px;
  font-weight: 300;
}

.input-text {
  border: 1px solid #e1dfdf;
  padding: 18px 15px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
}

.input-textarea {
  border: 1px solid #dedede;
  padding: 18px 15px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 15px;
  height: 200px;
}


.textarea{
  border: 1px solid #dedede;
  padding: 18px 15px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 15px;
  color: #000;
  font-size: 17px;
  font-weight: 500;
}




.contact-map iframe{
    width: 100%;
    height: 570px;
    border-radius: 10px;   
}

.contact-map{
    margin-bottom: 100px;
}


.contact-sec1{
    padding-top: 100px;
}


.contact-card{
    background:#f5f5f5;
    border-radius:10px;
    padding:45px 25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.45s ease;
    border-bottom:5px solid #4f9d46;  
    height: 100%;
}

.contact-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#4f9d46;
    transform:scaleX(0);
    transform-origin:left;
    transition:.45s;
}

.contact-card:hover::before{
    transform:scaleX(1);
}

.contact-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    background-color: #fff;
}

.contactcardtitle{
    font-size:36px;
    margin-bottom:20px;
    font-weight:400;
}

.contact-card a{
    color:#000;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.contact-card:hover a{
    color:#4f9d46;
}

.contact-card:hover .social-icons a{
    color:#fff;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:10px;
}

.social-icons i {
    font-size: 26px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#4f9d46;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
    font-size:20px;
}

.social-icons a:hover{
    transform:translateY(-5px);
    background:#023787;
}

.contact-btn{
    position: relative;
}


.submit-btn{
  padding: 12px 50px;
  color: #fff;
  border: none;
  font-size: 19px;
  font-weight: 400;
   transition: 0.7s ease-in-out;
   background-color: transparent;
}


.contact-btn::after {
    content: '';
    position: absolute;
     background-image: url(../images/read-btn-bg.webp) !important;
     width: 184px;
    height: 53px;
    right: 0;
    left: 0;
    z-index: -1;
     transition: 0.7s ease-in-out;
     background-repeat: no-repeat;
     background-size: 100%;
      top: 0;
 }

.contact-btn{
 width: 184px;
 height: 53px;
}

.contact-btn:hover::after {
    transition: 0.7s ease-in-out;
background-image: url(../images/read-btn-blue.webp) !important;
}







/* gallery page css  */



.gallery a {
    width: 100%;   
    position: relative;
}
.gallery {
    text-align: center;
    margin: 10px auto;
    clear: both;
    border-radius: 5px;
    position: relative;
    z-index: 999;
    padding: 100px 35px;
}
.gallery img {
    width: 100%;
    border-radius: 10px;  
}
.gallery a::after {
    background: #ffffff5e;
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    right: 0;
}

.gallery a:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all .4s linear;
    transition: all 0.7s linear;
}   


.gallery-grid {
    column-count: 4;
    column-gap: 5px;
}

.gallery-grid a {
    display: inline-block;
    width: 100%;   
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}





/* end here  */


    #rmp-menu-wrap-311 .rmp-menu-current-item .rmp-menu-item-link {
		color: #61993b !important;}




/* ----------------------footer-section------------------------- */
.footer {
    background: url(../images/footer-bg.webp);
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 180px;
}


.footer::before {
    content: '';
    background-image: url(https://thewebsite.world/dreadinpaintingwp/wp-content/uploads/2026/07/footer-brush.webp);
    position: absolute;
    top: 54px;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 205px;
    height: 295px;
}

.footer-content .footitl {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    padding: 0px 0px 10px 0px;
    position: relative;
}


.footer-content ul li {
    font-size: 18px;
    color: #fff;
    padding-bottom: 8px;
    font-weight: 400;
}

/* .footer-content ul li:hover {
    color: #013684;
    transition: 0.5s ease-in-out;
} */

.footer-content ul a:hover {
    color: #013684;
    transition: 0.5s ease-in-out;
}

.footer-content ul li a {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.social-links ul li i {
    color: #000;
    font-size: 27px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    border-radius: 50px;
    text-align: center;
    align-items: center;
    margin: 0px 6px 10px 0px;
    transition: 0.5s ease-in-out;
    border: 1px solid transparent;
}

.social-links ul li i:hover {
    background-color: #023787;
    transition: 0.5s ease-in-out;   
    transform:translateY(-5px);
    color: #fff;
}
.social-links ul {
    padding-top: 10px;
}

.social-header {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 0px;
    padding-top: 20px;
}


.copy-right-inner {
    padding: 40px 0px;
    border-top: 1px solid #a0be77;
    margin-top: 70px;
}

.copy-right p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.copy-right a {
    color: #fff;
    font-size: 17px;
}

.copy-right a:hover {
    color: #013684;
}

.copy-right {
    position: relative;
    z-index: 1;
}

.copy-right-inner i {
    color: #ff0000;
}





#rmp-menu-wrap-311 .rmp-menu-subarrow {	color: #61993b !important;}
.inner-contact-form form p { margin: 0;}






/* ---------media-query------------- */

@media (max-width:1600px){
.home-banner-title { font-size: 52px; margin-bottom: 20px;}
.home-banner-content p {font-size: 20px; line-height: 36px;}
.navbar .nav-link {font-size: 18px;}	
.nav-phone a { font-size: 18px;}
.nav-phone { padding-top: 30px;}
.logo-box img { max-width: 88%;}
.top-main-container {padding: 80px 0px;}
.home-title { font-size: 56px;}
.quality-subtitle {font-size: 28px;  }
.qualitynum {font-size: 110px;}
p { font-size: 17px;  line-height: 30px; }
.replace-box {  padding: 0px 230px 0px 60px;}
.home-sec3 {padding: 130px 0px 45px 100px;  }
.replace-text ul li {  font-size: 17px;    padding-bottom: 15px; }
.replace-text p { padding-right: 20%;}
.home-sec3::after { right: -47px; background-size: 86%; top: 34%;}
.footer::before {   top: 10px;    left: -15px;      width: 123px;}
.copy-right-inner { padding: 30px 0px;    margin-top: 40px;}
.footer-content ul li a { font-size: 17px;}
.footer-content ul li { font-size: 17px;}
.copy-right p { font-size: 17px;}
.error > .code {  font-size: 12rem;    line-height: 170px;}
.error-title { font-size: 65px; }
.no-banner-pad { padding: 150px 0px 0px 0px;}	
.blog-title { font-size: 26px;}
.blog-text { padding: 20px 30px 40px 30px;}
.blog-listing-title {  font-size: 28px;}
.blog-categories-list { margin-top: 5px;}
.blog-categories ul li { font-size: 18px;   padding: 18px 0px 18px 0px;}
.inner-banner-title { font-size: 55px;}
.contactcardtitle {font-size: 32px;}
.social-icons i {font-size: 20px;}
.social-icons a { width: 40px;    height: 40px;}
.contact-map {margin-bottom: 70px;}
.contact-form input::placeholder{font-size: 16px;}
.contact-form textarea::placeholder {font-size: 16px;}
.contact-sub-title { font-size: 42px;}
.about-sec3::after { transform: translate(2%, -50%); height: 460px;}
.about-sec3 { margin-top: 80px;}
.owner-text { padding-left: 30px;}
.inner-service-text ul li { font-size: 17px;}

}


html,body{overflow-x: hidden;}

@media (max-width:1440px){
.logo-box img { max-width: 70%;}
.home-banner-title { font-size: 48px; }	
.home-banner-content p { font-size: 19px; line-height: 34px; }
.home-banner-content { padding-top: 60px;}
.qualitynum { font-size: 100px;}
.work-num p { font-size: 19px;}
.service-title { font-size: 26px;}
.replace-box { padding: 0px 90px 0px 50px; }
.home-title { font-size: 52px; }
.replace-text {padding-left: 15px;}
.home-sec3::after { right: -70px; background-size: 78%; top: 41%;  }
.cmn-btn { font-size: 16px; }
.home-sec3 { padding: 130px 0px 45px 80px;}
.home-sec5 { padding: 0px 0px 60px 0px;}
.about-sec3 { margin-top: 60px;}
.about-sec3::after { transform: translate(2%, -50%); height: 518px; }
.gallery { padding: 60px 0px;}	


	
}
@media (max-width:1400px){
.home-banner-title { font-size: 45px; }
.footer::before {top: 30px; left: -5px; width: 103px;}	
.home-title { font-size: 50px; }	
.contact-sec1 {  padding-top: 80px;}	
	
	
	
	
	
	
	
	
	

}
@media (max-width:1366px){
.homebannerwrapper {padding: 160px 25px 50px 25px;}
.home-banner-title { font-size: 40px; margin-bottom: 15px;}
.home-banner-content p { font-size: 18px; }
.navbar .nav-link { font-size: 17px; }
.nav-phone a { font-size: 17px; }
.homebannerwrapper { padding: 140px 25px 50px 25px;}
.top-main-container { padding: 60px 0px; }
.quality-subtitle { font-size: 26px; }
.qualitynum { font-size: 80px;}
.work-num p { font-size: 17px; }
p { font-size: 16px;  line-height: 28px; }
.home-title { font-size: 45px; }
.navpage-header.is-sticky .logo-box img { max-width: 26%;}
.service-title { font-size: 23px; }
.home-service-text p { font-size: 15px;      }
.home-service-text { padding: 20px 15px;  }
.replace-text ul li { font-size: 16px;  padding-bottom: 12px; }
.testi-name { font-size: 16px;}
.copy-right p { font-size: 15px;}
.footer-content ul li a { font-size: 15px; }
.footer-content ul li { font-size: 15px; }
.social-links ul li i {  font-size: 22px;  width: 45px;  height: 45px;  line-height: 45px;}
.footer-content .footitl {  font-size: 28px;}
.thanku-text { font-size: 70px;}
.message p {   font-size: 20px;     padding: 10px 0px 15px 0px; }	
.message { padding: 60px 50px;	}	
.message::after {  width: 660px;}
.blog-title { font-size: 22px;}	
.blog-text { padding: 20px 25px 30px 25px;}	
.blog-section { padding: 70px 0px 50px 0px;}	
.blog-listing-title { font-size: 24px;}	
.blog-search input { width: 85%;}	
.blog-search { padding: 8px;}	
.blog-categories ul li { font-size: 17px;}	
.error > .code {  font-size: 10rem;   line-height: 130px;    }
.error > p { font-size: 19px;}
.error-title { font-size: 50px;  margin-top: 30px;}
.inner-banner-title { font-size: 50px; }
.contact-sec1 {padding-top: 70px;}
.contactcardtitle { font-size: 28px; }
.contact-card a {font-size: 16px; }
.social-icons i {font-size: 18px;}
.social-icons a { width: 35px;    height: 35px;}
.contact-sub-title { font-size: 36px;}
.input-text { padding: 10px 12px;}
.contact-form input::placeholder{font-size: 14px;}
.contact-form textarea::placeholder {font-size: 14px;}
.submit-btn { font-size: 16px;}
.contact-btn::after { width: 170px;}
.input-textarea { height: 170px;}
.contact-map { margin-bottom: 0px;}
.contact-map iframe {height: 480px;}
.about-sec3::after { transform: translate(4%, -50%); height: 64%; }
.about-sec4 .top-main-container {padding-top: 40px;}
.about-inner-text ul li {font-size: 16px; padding: 10px 0px;}
.inner-service-text ul li { font-size: 16px;}
.cmn-btn.read-btn { width: 170px; }
.cmn-btn.read-btn::after { width: 170px;}
.home-banner-section::after { width: 125px;  height: 200px;	bottom: 0;}
.testimonial-box {padding: 20px 30px;}
.home-banner-content p { font-size: 16px; line-height: 30px; }
.footer { padding-top: 140px;}
.nav-item { padding: 0px 20px 0px 20px;}
.inner-service-text.ps-4 {  padding-left: 0px !important;}	
.logo-box img { max-width: 60%;}	
.about-sec3 { margin-top: 20px;}	
.services-top-text.text-center p { margin-bottom: 0px;}	
.input-textarea { padding: 10px 12px;}	
.custom-dropdown li a { padding: 10px 15px;}	
.custom-dropdown li a:hover { padding-left: 20px;}	
.home-title {  margin-bottom: 10px;}	
.srevicesubtitle { font-size: 30px; margin-bottom: 10px;}	
.custom-dropdown li a { font-size: 14px; }	
	
	
}


@media (max-width:1280px){
.home-banner-title { font-size: 40px; }	
.home-banner-content p {line-height: 30px;}	
.replace-img { margin: -45px 0px;}	
.home-sec3::after {right: -11%; background-size: 60%; }	
.testimonial-box {padding: 20px 20px;}	
.testistartop ul { margin-top: 15px;}	
.testistartop img { width: 30px !important;}	
.home-sec5 { padding: 0px 0px 30px 0px;  }	
.home-banner-content { padding-top: 90px; }	
.top-main-container { padding: 50px 0px 50px 0px;}	
.about-sec3::after {  height: 72%;}	
.about-sec3 { margin-top: 0; }	
.srevicesubtitle {font-size: 30px;}
.gallery { padding: 50px 0px;}	
.contact-sec1 { padding-top: 50px; }	
.mb-5 {  margin-bottom: 2rem !important;}	
.home-title { font-size: 40px; }	

}


@media (max-width:1200px){
.home-sec3 { padding: 110px 0px 45px 55px; }	
.home-title {font-size: 40px; margin-bottom: 15px;}	
.replace-img { margin: -30px 0px; }	
.replace-text { padding-left: 5px;}	
.footer { padding-top: 140px;}	
.inner-service-text.ps-4 { padding-left: 10px !important;}	
.footer::before { top: -15px; left: -15px; width: 110px; }	
.contact-card {	padding: 35px 25px;}	
.contactcardtitle { font-size: 26px; }	
	
	
	
	
}



@media (max-width:1152px){
.logo-box { width: 20%;}	
.logo-box img { max-width: 100%;  width: 100%;}	
.homebannerwrapper { padding: 120px 25px 50px 25px; }	
.navpage-header.is-sticky .logo-box img {max-width: 48%; }
.home-banner-title { font-size: 38px; }
.quality-text {margin-bottom: 50px;}	
.qualitynum { font-size: 70px; }
.quality-subtitle { font-size: 24px; }	
.home-sec2 { padding: 0px 25px;}	
.home-sec2 .col-md-3 { padding: 4px;}	
.replace-text ul li { font-size: 15px; padding-bottom: 7px;}
.replace-text  p { font-size: 15px; line-height: 26px; }	
.home-sec3 { padding: 90px 0px 30px 30px; }	
.replace-box { padding: 0px 90px 0px 35px; }	
.yelp-img img { width: 150px;}	
.testimonial-box {	height: 100%}	
.copy-right-inner { padding: 20px 0px; margin-top: 30px; }	
.footer-content .footitl { font-size: 25px; }	
.social-links ul li i { font-size: 20px; width: 40px; height: 40px; line-height: 40px; }	
.home-title {font-size: 37px;}	
.owner-text { padding-left: 0px; }	
.owner-text  p { font-size: 15px;  line-height: 26px; }	
.about-sec4 .top-main-container { padding-top: 0px;}	
.inner-banner-title { font-size: 40px; }	
.services-top-text p br {  display: none;}		
.blog-search-box { padding: 20px 15px 200px 15px; }	
.wp-block-search__button svg { font-size: 15px !important;}
.wp-block-search__button {   padding: 0 !important;}	
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input { padding: 5px 4px !important;}	
.blog-listing-title {font-size: 21px;}	
.blog-categories ul li { font-size: 16px; }	
.error-title {  font-size: 42px;  margin-top: 30px; }	
.error > .code { font-size: 8rem; line-height: 100px;  }	
.error > p { padding-bottom: 0;}	
.cmn-btn::after {width: 220px;}	
.cmn-btn{width: 220px;}		
.container{ max-width: 90%; }	
.service-title { font-size: 22px; }	
.home-sec3::after { right: -12%; }	
	
	
}


@media (max-width:1024px){
.navbar .nav-link { font-size: 16px; }	
.nav-item {	padding: 0px 20px 0px 20px;}	
.nav-phone a {font-size: 15px; }	
.homebannerwrapper { padding: 110px 25px 50px 25px;}	
.home-banner-content p {font-size: 17px;    line-height: 27px;}
.home-banner-title { font-size: 33px; }	
.home-banner-section::after { width: 100px;  height: 155px; }	
.home-sec3 .home-title { font-size: 35px; margin-bottom: 8px;}
.replace-img { margin: -15px 0px; }	
.cmn-btn::after {width: 232px;}	
.cmn-btn { font-size: 15px; width: 232px;}	
.home-sec3::after {right: -16%; background-size: 54%;}	
.home-sec3 { padding: 70px 0px 20px 30px; }	
.footer::before { width: 98px; }	
.home-sec5 { padding: 0; }
.about-sec3::after {display:none; }
.about-sec3 {margin-top: 50px;  background: #f1eeeb;}	
.about-sec4 .top-main-container {padding-top: 30px;}	
.gallery { padding: 50px 0px;}		
.blog-section {   padding: 50px 0px 50px 0px;    }
.message p {  font-size: 16px; padding: 10px 0px 10px 0px; }
.replace-text p { padding-right: 16%; }	
	
	
	
	
	
	
}




@media (max-width:991px){
.navbar-expand-lg .navbar-collapse { display: none;}	
.container { max-width: 95%; }	
.homebannerwrapper { padding: 90px 25px 30px 25px; }	
.nav-phone { padding-top: 0; position: absolute; right: 10%; top: 15%; }	
#rmp-container-311 { background-color: #61993b !important;}
#rmp-menu-wrap-311 .rmp-menu-current-item .rmp-menu-item-link { background-color: #fff !important;}
.home-banner-title { font-size: 36px;}	
.logo-box {width: 15%;}	
.qualitynum { font-size: 60px; }	
.work-num p {font-size: 16px; }	
.navpage-header.is-sticky  .nav-phone { top: 32%; }	
.navpage-header.is-sticky #rmp_menu_trigger-311 {	top: 15px;}	
.top-main-container { padding: 40px 0px 40px 0px;  }	
.home-title {font-size: 36px;}	
.home-sec2 	.home-title {margin-bottom:30px !important;}	
.service-title { font-size: 20px; }	
.home-service-text { padding: 20px 10px; }	
.home-service-text p {line-height: 25px; }	
.replace-img {margin: 0; }	
.replace-box { padding: 30px 90px 35px 35px; border-radius:0;}	
.home-sec3 { padding: 40px 0px 0px 0px; }	
.yelp-img img {width: 130px; }	
.customers-head.text-center.mb-5 {margin-bottom: 30px !important;}	
.owl-dots { margin-top: 25px;}	
.footer-content .footitl { font-size: 23px; }	
.about-inner-text.ps-4 { padding-left: 5px !important;}	
#rmp_menu_trigger-311 {top: 18px !important;}	
.srevicesubtitle { font-size: 26px;  margin-bottom: 15px;}	
.custom-btn.mt-4 { margin-top: 15px !important;}	
.thanku-text { font-size: 56px; }		
	
	
}

body,html{overflow-x:hidden;}

@media (max-width:840px){
.homebannerwrapper {padding: 40px 15px 30px 15px;}	
.home-banner-title {font-size: 34px; }	
.home-banner-section::after { width: 90px;  height: 140px;}	
.quality-text br { display: none;}	
.quality-text { margin-bottom: 25px; }	
.quality-subtitle { font-size: 20px; }	
.home-sec1  p { font-size: 15px;  line-height: 26px; }	
.home-title { font-size: 32px; }	
.home-sec3 .home-title { font-size: 32px; margin-bottom: 8px; }	
.home-sec3::after { right: -24%; background-size: 45%; top: 26%; }	
.footer-content ul li a {font-size: 14px;}	
.footer-content ul li {font-size: 14px;}		
.copy-right-inner { padding: 15px 0px;  margin-top: 20px; }	
.inner-banner-section  .homebannerwrapper { padding: 85px 15px 30px 15px; }	
.inner-banner-section  .home-banner-content { padding-top: 40px; }	
.inner-banner-title { font-size: 30px; }	
.srevicesubtitle {font-size: 23px;}
.contact-card { padding: 30px 12px; }	
.contactcardtitle { font-size: 23px; margin-bottom: 15px;}	
.contact-card a { font-size: 14px;  }	
.contact-sub-title { font-size: 32px; }	
.input-text { padding: 10px 12px; }
.input-textarea {  height: 130px; }	
.inner-contact-form.contact-form.ps-4 { padding-left: 5px !important;}	
	
	
	
	
	
}


@media (max-width:767px){
.logo-box { width: 30%; }	
.main-menulist { padding: 0px 15px 0px 15px;}	
.nav-phone {  right: 20%;    top: 18%; }	
.banner-img {  margin-top: 20px;}	
.navpage-header.is-sticky .logo-box img {max-width: 62%; }	
 #rmp_menu_trigger-311 {top: 14px !important;}	
.home-sec1 p { font-size: 17px;  line-height: 30px; }	
.quality-subtitle { font-size: 24px; }	
.qualitywork-right-text.text-end { text-align: left !important; padding-top:20px;}	
.home-title { font-size: 28px; }	
.home-sec2 { padding: 0px 15px; }	
.replace-box { padding: 30px 15px 35px 15px;  }	
.replace-text p { padding-right: 0;  }	
.replace-text { padding-top: 20px; }	
.replace-text ul { margin-bottom: 10px;}	
.home-sec3::after{display:none;}	
.projct-img { margin-bottom: 10px !important;}		
.customers-img { margin-bottom: 20px;}	
.footer::before {top: -15px;}
.footer-content .footitl { padding: 10px 0px 5px 0px;  }	
.copy-right-inner {  margin-top: 10px; }	
.navpage-header.is-sticky .main-menulist { padding: 0px 15px 0px 15px;}
.quality-text.text-center { text-align: left !important;}	
.quality-text .home-title { text-align: left !important;}	
.home-services-card.home-services-card2 { flex-direction: column-reverse;}	
.home-services-card.home-services-card2 .home-service-text { margin-bottom: 10px;  }	
.inner-banner-section .homebannerwrapper .row {  flex-direction: column-reverse;}		
.inner-banner-section .home-banner-content { padding-top: 20px;  }	
.inner-banner-section  .homebannerwrapper { padding: 85px 15px 15px 15px; }		
.inner-service-text.ps-4 { padding-left: 0px !important;  padding-top: 20px;    }	
p { font-size: 17px;  line-height: 30px;    }	
.about-sec3 {margin-top: 0;}	
.about-inner-text.ps-4 {padding-left: 0px !important; padding-top: 20px; }	
.services-top-text p {  text-align: left; margin: 0;}	
.inner-service-text ul li { font-size: 17px; }	
.services-sec2 .inner-service-text { padding-top: 25px;}	
.inner-service-text.pe-4 { padding-right: 0 !important;  margin-top: 25px;}	
.services-sec2 .row {  flex-direction: column-reverse;}	
.services-sec4 	.row {  flex-direction: column-reverse;}	
.gallery { padding: 30px 0px;}	
.contact-card a { font-size: 16px; }	
.contactcardtitle { font-size: 25px; }	
.inner-contact-form.contact-form.ps-4 { padding-top: 20px;}	
.blog-section { padding: 30px 0px 50px 0px;  }	
.blog-listing-cards .mb-5 { margin-bottom: 20px !important;}	
.custom-btn.text-end { text-align: left !important;}	
.error > .code { font-size: 6rem;  line-height: 65px;  }	
.error-title { font-size: 28px; margin-top: 25px;  }	
.error > p {font-size: 15px; }	
.no-banner-pad { padding: 150px 0px 50px 0px; }	
.thanku-text { font-size: 40px; }	
.message::after{display:none}	
.message { padding: 30px 20px;  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);  border-radius: 0; }	
.container {  max-width: 100%;}	
.top-main-container { padding: 30px 0px 30px 0px;}	
.home-sec3 {  padding: 30px 0px 0px 0px;}	
.replace-text { padding-left: 0px; }	
.footer-content ul li a { font-size: 16px; }	
.footer-content .footitl { font-size: 26px; }	
.inner-banner-section .homebannerwrapper { padding: 85px 0px 15px 0px;}	
.home-title { font-size: 26px; }	
.inner-about-text.pe-4 { padding-right: 0px !important;}	
.contact-sec1 { padding-top: 30px; }	
	
	
}






