@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 14px;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid #a81515;
  text-transform: uppercase;
  background: #a81515;
  font-family: 'Poppins';
}

.theme-btn:hover {
  background-color: #023484;
  color: #fff;
  border-color: #a00000;
  transform: scale(.9);
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 23px;
    font-size: 16px;
    font-family: 'Poppins';
}

/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}*/

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}

.menuSec .row {
    align-items: center;
}
.menuSec ul {
    text-align: center;
}
.menuSec {
    background: #023689;
}
.header-logo a img {
    width: 100%;
    /* background: #fff; */
}

a.phone-head i {
    font-size: 20px;
    padding: 10px 10px;
    border-radius: 20px;
    border: 1px solid #fff;
    color: #fff;
}

a.phone-head {
    color: #fff;
    font-family: 'Poppins';
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 10px;
}

.right-head-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: end;
}


/*banner Css Start*/
img.banner-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}
.banner_text h1 {
    font-weight: 600;
    font-size: 70px;
    text-transform: capitalize;
}
a.theme-btn.ban-ser {
    background: unset;
    border-color: #fff;
}
.banner-btn {
    margin-top: 40px;
}
section.main_slider {
    position: relative;
}

section.main_slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #00000033;
    z-index: 1;
}

.banner_text {
    position: relative;
    z-index: 2;
}

.carousel-control-prev, .carousel-control-next {
    width: 3%;
}
/*banner Css ENd*/


/*Services Services Start*/

.service-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 11px;
}

.service-text h2 {
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #000000c4;
    margin-bottom: 0px;
    margin-top: 6px;
    line-height: 52px;
}

.service-text p {
    font-family: 'Poppins';
    font-size: 14px;
    color: #000000c4;
    font-weight: 300;
}


.service-box:hover .service-img {
    transform: scale(1.1);
    transition: 0.9s;
}

.services .row {
    justify-content: center;
}

.services {
    padding: 100px 0px;
}
.services .row {
    justify-content: center;
}

.services {
    padding: 100px 0px;
}
.heading-sec {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.heading-sec h2 {
    font-family: 'Poppins';
    font-size: 40px;
    margin-bottom: 10px;
    color: #023689;
    font-weight: 600;
}

.heading-sec:before {
    position: absolute;
    content: '';
    background: #023689;
    width: 2px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -50px;
}
.services .heading-sec:before {
    display: none;
}
.services .row {
    width: 83%;
    margin: 0 auto;
}
/*Section Services End*/

/*Section gallery Start*/


.gallery-slider  .slider .slick-center {
      transform: scale(1.1);
      z-index: 2;
  
}
.gallery-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
}
.gallery-slider  .slider {
    width: 100%;
    margin: 60px auto;
}

.gallery-slider .slider .slide {
    padding: 10px;
    transition: transform 0.3s ease;
}

.gallery-slider .slider .slide img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.gallery-slider  .slick-slide.slick-current.slick-active.slick-center {
    margin: 0px 20px;
}

.gallery-slider .slick-current .gallery-img img {
    height: 580px;
    transition: 0.9s;
}

.gallery-slider  .gallery-sec .row {
    align-items: center;
}

.gallery-slider  .slick-active {
    opacity: 1.5;
}

.gallery-slider  .slick-slide {
    opacity: 1.2;
}

.gallery-slider  .gallery-sec .container-fluid {
    padding: unset;
}

.gallery-slider  .gallery-sec {
    background: #F8F7F7;
    padding: 100px 0px;
}
.gallery-slider  .slick-slide {
    margin: 65px 20px;
}
.gallery-sec {
    background: #F8F7F7;
    padding: 100px 0px;
}

.gallery-sec .container-fluid {
    padding: unset;
}
.gallery-sec .slick-prev {
    display: none;
}
.gallery-sec .slick-prev:before, .slick-next:before {
    color: #dc3545;
}
.gallery-sec .slick-next:before {
    content: '\f054' !important;
    font-family: 'FontAwesome';
    padding: 12px 16px;
    background: #023689;
    opacity: 1;
    border-radius: 10px;
}
.gallery-sec .slick-next {
    right: 145px;
}


/*Section gallery End*/


/*Section Unique Start*/

.unirue-img svg {
    width: 53px;
    border: 2px dotted #dc3545;
    padding: 10px 10px;
    border-radius: 6px;
    margin-top: 10px;
    height: 53px;
}

.text-unique h2 {
    font-size: 19px;
    margin-bottom: 0px;
    line-height: 28px;
    color: #023689;
}

.text-unique p {
    font-weight: 300;
}

.unique-box {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}
.unique-sec {
    padding: 100px 0px 20px;
    position: relative;
}

.unique-sec .row {
    width: 89%;
    margin: 0 auto;
}
.unique-sec .heading-sec:before {
    display: none;
}
.unique-sec:before {
    position: absolute;
    content: '';
    background-image: url(../images/unique-back.webp);
    width: 740px;
    height: 510px;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    margin: 0 auto;
    filter: grayscale(1);
    z-index: -1;
    top: 40px;
    opacity: 0.2;
}
/*Section Unique End*/


/*Section process Start*/

.tab-box {
      background-color: #dc3545;
      color: white;
      padding: 9px 20px;
      border-radius: 0px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      cursor: pointer;
      font-family: 'Poppins';
      font-size: 15px;
      font-weight: 500;
    }
    .circle-btn {
      background-color: #E3F1FF;
      color: black;
      border-radius: 50%;
      width: 38px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 400;
      font-size: 23px;
    }
.process-sec {
    background: #023689;
    padding: 100px 0px;
    margin-top: 30px;
}

.process-sec .heading-sec:before {
    background: #fff;
}

.process-sec .heading-sec h2 {
    color: #fff;
}
.process-sec .heading-sec p {
  color: #fff;
}
.card.card-body {
    background: unset;
    color: #fff;
    border: unset;
}
.process-sec .row {
    justify-content: center;
}
    /*Section process End*/

/*Section Faqs Start*/

.faqs-main .tab-box {
    background-color: #e7f3ff;
    color: #000;
    font-family: 'Poppins';
    padding: 9px 20px;
}

.faqs-main .circle-btn {
    background-color: #dc3545;
    color: #fff;
}

.faqs-main .card.card-body {
    color: #000;
    border: unset;
}

.heading-faqs h2 {
    font-weight: 600;
    color: #023689;
    text-align: center;
    margin-bottom: 40px;
}

.faqs-sec {
    padding: 100px 0px;
}

.faqs-sec .row {
    justify-content: center;
}


/*Section Faqs End*/



/*Section Transform Start*/

.trabsform-sec {
    background-image: url(../images/transform.jpg);
    width: 100%;
    height: 580px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.transform-txt h2 {
    color: #fff;
    font-family: 'Poppins';
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
}

.trabsform-sec:before {
    position: absolute;
    content: '';
    background: #00000042;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/*Sectioin Transform End*/


/*Footer Start*/

.footer {
      background-color: #023689;
      color: white;
      padding: 60px 40px 30px;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-col {
      flex: 1 1 220px;
      margin: 10px;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
      padding-right: 25px;
    }

    .footer-desc {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .footer h3 {
      font-size: 18px;
      margin-bottom: 10px;
      position: relative;
      color: #fff;
      margin-bottom: 23px;
      margin-left: 20px;
    }

    .footer h3::after {
      content: '';
      display: block;
      width: 38px;
      height: 3px;
      background: #a81515;
      margin-top: 4px;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin-left: 43px;
    }

    .footer ul li {
      margin: 8px 0;
      font-size: 14px;
      font-weight: 500;
    }

    .footer a {
      color: white;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      background: #a81515;
      padding: 8px 15px;
      border-radius: 50%;
      color: white;
      display: inline-block;
    }

    .footer-bottom {
      border-top: 1px solid #3671ce;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin: 10px 0;
    }

    .contact-item i {
      background: #a81515;
      border-radius: 50%;
      padding: 8px;
      margin-right: 12px;
      width: 32px;
      height: 32px;
      text-align: center;
      line-height: 16px;
    }
    .footer h3::before {
    position: absolute;
    content: '';
    background: #fff;
    width: 11px;
    height: 3px;
    left: 44px;
    bottom: 0;
}
.contact-item span a {
    font-size: 14px;
}

/*Footer End*/


/*WORK PROCESS SEC STRT*/

.work_process_icons {
    padding: 50px 50px 30px 50px;
    background-color: #fff;
    box-shadow: 0px 0px 20px #00000021;
}

.work_process_icons ul {
    justify-content: space-around;
    text-align: center;
}

.work_process_icons ul img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(43%) saturate(7500%) hue-rotate(321deg) brightness(91%) contrast(90%);
    margin: 0 0 40px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(98%) saturate(1899%) hue-rotate(207deg) brightness(95%) contrast(107%);
}

.work_process_icons ul h5 {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    margin: 0 0 0;
}

.work_process_icons ul li {
    width: 65px;
}

.work_process_icons ul span {
    width: 20px;
    height: 20px;
    background-color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 100px;
    border: 5px solid #023689;
    content: '';
    position: relative;
    top: -50px;
}

.work_process_icons ul span:after {
    position: absolute;
    left: 28px;
    top: 50%;
    width: 70px;
    height: 2px;
    content: '';
    background-color: #000;
}

.work_process_icons ul li:last-child span:after {
    display: none;
}

.work_list h5 {
    background-color: #fff;
    border-radius: 100px;
    box-shadow: 0px 0px 13px #00000040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 !important;
    color: #023689;
    font-weight: 600;
}

.wrk_process_right_wrap h3 {
    font-size: 46px;
    line-height: 50px;
    color: #000;
    font-weight: 600;
    margin: 0 0 50px 0px;
}

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

.work_list h4 {
    font-size: 24px;
    line-height: 30px;
    color: #333;
    font-weight: 600;
    margin: 0 0 10px;
}

.work_list p {
    font-size: 16px;
    line-height: 24px;
    color: #666;
    font-weight: 500;
    margin: 0 0 0px;
}


/*WORK PROCESS SEC END*/


/*Section Painting Process Start*/
.img-painting-process img {
    width: 50%;
    float: right;
}

.text-painting-process {
    width: 50%;
    float: left;
}

.painting-process .row {
    /* align-items: center; */
}

.text-painting-process {
    margin-top: 30px;
}

.text-painting-process h2 {
    font-size: 46px;
    line-height: 50px;
    color: #000;
    font-weight: 600;
    margin: 0 0 20px 0px;
}

.painting-process {
    padding: 64px 0px 100px;
}
.text-painting-process p {
    margin-bottom: 30px;
    width: 90%;
}
.prefered-paints {
    padding: 100px 0px 0px;
}
/*Section Painting Process End*/
.unique-logo img {
    width: 437px;
}

.unique-logo {
    text-align: center;
}


section.main_slider.inner-banner img {
    height: 350px;
    object-fit: cover;
}

section.empl-form {
    padding: 90px 0;
}
section.work_process_sec {
    padding-top: 100px !important;
}
.services-main-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.services-main-box h2 {
    font-family: 'Poppins';
    font-size: 22px;
    text-align: center;
    position: absolute;
    top: 39%;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    right: 0;
    color: #fff;
}

.services-main-box {
    position: relative;
    margin-bottom: 30px;
}

.services-main-box:before {
    position: absolute;
    content: '';
    background: #00000091;
    width: 100%;
    height: 100%;
}

.services-main-box:after {
    position: absolute;
    content: '';
    width: 89%;
    border: 1px solid #fff;
    height: 89%;
    top: 10px;
    z-index: 3;
    left: 0;
    margin: 0 auto;
    right: 0;
    opacity: 0;
}

.services-main-box:hover:after {
    opacity: 1;
    height: 85%;
    width: 85%;
    transition: 0.9s;
    top: 17px;
}

.services-main-box:hover:before {
    background: #000000d6;
    transition: 0.9s;
}
.new-services {
    padding: 90px 0px;
}
.new-services .row {
    justify-content: center;
}
.service-area {
    padding: 30px 0px 100px;
}
.contact-item span {
    font-size: 14px;
}
.service-area-main ul li {
    font-family: 'Poppins';
    font-size: 19px;
    border: 2px solid #103887;
    padding: 13px 23px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
}

.service-area-main ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-area-main ul li i {
    color: #d42b48;
}

.service-area-main {
    padding-top: 20px;
}
.service-area-main ul li a {
    color: #000;
}
.right-head-btn .theme-btn {
    margin-right: 6px;
    padding: 13px 33px;
}
.menuSec ul li a i {
    font-size: 10px;
    margin-left: 4px;
}


/*interior Painting Page Start*/
.text-experience h2 {
    font-size: 42px;
    font-weight: 600;
    color: #103887;
    margin-bottom: 20px;
}


.experience-img img {
    width: 100%;
    height: 789px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 1px 2px 7px 4px #00000033;
}

.experience-sec {
    padding: 100px 0px;
}

.experience-sec .row {
    align-items: center;
}
.experience-btn {
    margin-top: 38px;
}
.popular-box h3 {
    margin-bottom: 10px;
    font-size: 23px;
    color: #fff;
}

.popular-box p {
    font-size: 16px;
    ]: 500;
    font-weight: 500;
    color: #fff;
}

.popular-box {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    padding: 33px 24px;
    border-radius: 16px;
    background: #103887;
    margin-bottom: 25px;
    height: 280px;
}
.popular-sec {
    padding: 40px 0px 100px;
    position: relative;
}
.popular-sec:before {
    position: absolute;
    content: '';
    background: #f8f7f7;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 88%);
    width: 100%;
    height: 141%;
    z-index: -1;
    top: -190px;
}
.feel-the-sec {
    padding: unset;
    padding-bottom: 100px;
}

.text-experience p {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
}


.interior-pain-ban .banner_text h1 {
    width: 66%;
    line-height: 82px;
}

.interior-pain-ban .banner_text p {
    font-size: 23px;
    margin-bottom: 50px;
}

a.theme-btn.ban-btn2 {
    background: #103887;
    border-color: #103887;
}
/*In terior Painting Page End*/


.view-mire-btn a {
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
}

.view-mire-btn {
    padding-bottom: 21px;
}
.popular-sec.paint-for-day-sec::before {
    height: 127%;
    top: -242px;
}



.careerform-container {
      background: white;
      padding: 30px;
      border-radius: 10px;
      max-width: 870px;
      margin: auto;
      box-shadow: 0 0 10px rgb(16 56 135);
    }

    .careerform-heading {
      text-align: center;
      margin-bottom: 20px;
      color: #003366;
      font-weight: 600;
    }

    .careerform-subheading {
      text-align: center;
      color: #333;
      margin-bottom: 30px;
    }

    .careerform-label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }

    .careerform-input,
    .careerform-textarea,
    .careerform-file {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .careerform-row {
      display: flex;
      gap: 15px;
    }

    .careerform-col {
      flex: 1;
    }

    .careerform-checkbox-group {
      margin-top: 10px;
    }

    .careerform-checkbox-group label {
      font-weight: normal;
      display: block;
    }

    .careerform-submit-button {
      margin-top: 25px;
      text-align: center;
    }

    .careerform-button {
      background-color: #4cb0c9;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 36px;
      cursor: pointer;
      font-size: 16px;
    }

    .careerform-button:hover {
      background-color: #3a9bb1;
    }

    .careerform-required {
      color: red;
    }

    .careerform-note {
      display: block;
      margin-top: 10px;
      color: gray;
    }
.careerform-checkbox-group label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.careerform-checkbox-group label input {
    width: unset;
}
.contant-form-main {
    padding: 100px 0px;
}




/*==================================== Responsiveness Starts ==================================== */
html{
    overflow-x:hidden !important;
}
.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: #a81515;
  padding: 5px;
  }
.slicknav_btn {
  background-color: #023689 !important;
  }
  .slicknav_menu .slicknav_icon-bar {
    background-color: white;
}
.slicknav_nav a:hover {
    background: #023689 !important;
    color: #fff;
}
@media only screen and (min-width: 1366px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1291) and (max-width: 1365px) {
    .carousel-inner .row .col-md-6 {
    width: 70%;
}

}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    .menuSec ul li a {
    font-size: 14px;
    padding: 11px;
}
.carousel-caption>.container>.row>.col-md-6 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.service-area-main ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-area-main ul li {
    flex: 0 1 calc(50% - 15px);
    box-sizing: border-box;
}
.gallery-sec .slick-next {
    right: 85px;
}
    .unique-sec .row {
        width: 100%;
        margin: 0 auto;
        display: flex
;
        flex-wrap: wrap;
        justify-content: center;
    }
.unique-sec .row>.col-md-4 {
    width: 50%;
}
.faqs-sec>.container>.row>.col-md-5 {
    width: 100%;
}
.transform-txt h2 {
    font-size: 35px;
    line-height: 50px;
}
.transform-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.transform-txt a {
    margin: 0;
}
.footer h3 {
    margin-left: 18%;
}
.footer-col.footer_list_wrapper h3 {
    margin-left: 0;
}
.experience-img img {
    height: 689px;
}
.popular-sec>.container>.row {
    justify-content: center;
    flex-wrap: wrap;
}
.popular-box {
    height: -webkit-fill-available;
}

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menuSec .row .col-md-5 {
    width: 80%;
}

.menuSec .row {
    align-items: center;
    padding: 50px 0 0 0;
}
.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 35%;
    width: 150px;
    text-align: left;
    top: 38px;
}
.carousel-caption .col-md-6 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.services-main-box h2 {
    font-family: 'Poppins';
    font-size: 14px;
    text-align: center;
    position: absolute;
    top: 39%;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    right: 0;
    color: #fff;
}
.service-area-main ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-area-main ul li {
    flex: 0 1 calc(50% - 15px);
    box-sizing: border-box; 
}
.heading-sec p {
    width: 80%;
    text-align: center;
}

.heading-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.gallery-sec .slick-next {
    right: 100px;
}
.unique-sec .row {
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.unique-sec .row .col-md-4 {
    width: 50%;
}
.faqs-sec {
    padding: 50px 0px;
}
.faqs-sec .row .col-md-5 {
    width: 100%;
}
.transform-txt h2 {
    font-size: 35px;
    line-height: 51px;
    text-align: center;
}

.transform-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.transform-txt a {
    margin: 0;
}
.footer-col {
    flex: 1 1 200px;
    margin: 10px;
}
.footer h3 {
        padding-left: 0%;
        margin-left: 22%;
    }
.footer-col.footer_list_wrapper h3 {
    margin-left: 0;
}
.banner_text {
    position: relative;
    z-index: 2;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.interior-pain-ban .banner_text h1 {
    width: 100%;
    line-height: 82px;
}
.experience-sec .row>.col-md-5 {
    width: 100%;
}

.experience-sec .row>.col-md-6 {
    width: 100%;
}
.text-experience {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 50px 0 0 0;
}
.popular-sec>.container>.row>.col-md-4 {
    width: 50%;
}
.popular-sec {
    padding: 40px 0px 0;
    position: relative;
}
.experience-img {
    margin: 50px 0  0 0;
}
.popular-sec>.container>.row {
    justify-content: center;
}
.popular-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: -webkit-fill-available;
}

}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .menuSec .row {
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.slicknav_nav .slicknav_item a i {
    visibility: hidden;
}    

.right-head-btn {
    display: flex
;
    align-items: center;
    gap: 9px;
    justify-content: center;
}
.carousel-item .row .col-sm-6 {
    width: 100% !important;
}
.banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
 .banner_text h1 {
    font-weight: 600;
    font-size: 50px;
    text-transform: capitalize;
}   
 .service-area-main ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-area-main ul li {
    flex: 0 1 calc(50% - 15px); 
    box-sizing: border-box;
}   
 .gallery-sec .slick-next {
    right: 90px;
}   
 .heading-sec h2 {
    font-size: 35px;
}   
.faqs-main .tab-box span {
    display: inline-flex;
    width: 85%;
}

.faqs-main .circle-btn {
    background-color: #dc3545;
    color: #fff;
    display: inline-flex
;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.transform-txt h2 {
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    padding: 0;
    margin: 0;
}

.transform-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.social-icons {
    margin: 0 0 30px 0;
}
.footer h3 {
    margin-left: 42px;
}
.footer-col.footer_list_wrapper h3 {
    padding: 0;
    margin-left: 7px !important;
}
.interior-pain-ban .banner_text h1 {
    width: 100%;
    line-height: 62px;
    font-size: 50px;
}
.experience-sec {
    padding: 70px 0px;
}
.experience-img img {
    height: auto;
}
.text-experience {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 0 0 0;
}
.popular-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.popular-sec {
    padding: 40px 0px 0px;
    position: relative;
}
.experience-img {
    margin: 50px 0 0 0;
}
.process-sec .tab-box span {
    display: inline-flex;
    width: 85%;
}

.circle-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.faqs-sec {
    padding: 50px 0px;
}
.menuSec .col-sm-6 {
    width: 100%;
}
    
}



.comments-area {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.comments-area h3,
.comments-area h4 {
  font-weight: 600;
}

.comment-form label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
}

.comment-form .btn-primary {
  background: #1B7CE3;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
}

.comment-form .btn-primary:hover {
  background: #0B5CC0;
}


@media only screen and (min-width: 300px) and (max-width: 519px) {
  h1 {
    font-size: 50px !important;
    margin: 0;
  }
  p {
    font-size: 12px !important;
    margin: 0;
  }
  .right-head-btn {
    display: flex
;
    align-items: center;
    gap: 9px;
    justify-content: center;
}
a.phone-head {
    font-size: 12px;
}
.menu-item a i {
    display: none;
}
  img.banner-img {
    width: 100%;
    height: 770px;
    object-fit: cover;
}
  .banner_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px 0 0 0;
}
.heading-sec h2 {
    font-family: 'Poppins';
    font-size: 30px;
    margin-bottom: 10px;
    color: #023689;
    font-weight: 600;
    margin: 0 0 0px 0;
}
.service-area-main ul {
    flex-direction: column !important;
}
.service-area-main ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.unique-sec {
    padding: 70px 0px 20px;
    position: relative;
}
.unique-box {
    display: flex
;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin: 0 0 30px 0;
}
.faqs-sec {
    padding: 50px 0px;
}
.heading-faqs h2 {
    font-weight: 600;
    color: #023689;
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}
.faqs-main .tab-box span {
    display: inline-flex;
    width: 85%;
}

.faqs-main .tab-box {
    background-color: #e7f3ff;
    color: #000;
    font-family: 'Poppins';
    padding: 9px 4px;
}
.faqs-main .circle-btn {
    background-color: #dc3545;
    color: #fff;
    height: 50px;
    width: 50px;
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.transform-txt h2 {
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    margin: 0;
}
.gallery-sec .slick-next {
    right: 55px;
}
.transform-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-desc {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.interior-pain-ban .banner_text h1 {
    width: 100%;
    line-height: 42px;
    font-size: 30px !important;
    padding: 0 0 9px 0;
}

/*about us page starts */
.experience-img img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 1px 2px 7px 4px #00000033;
}
.experience-sec {
    padding: 50px 0px;
}
.text-experience {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-experience h2 {
    margin: 20px 0 0;
    font-size: 30px;
    line-height: 40px;
}
    .text-experience br {
    display: none;
}
.popular-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.popular-sec {
    padding: 40px 0px 0px;
    position: relative;
}
.experience-img {
    margin: 60px 0 0 0;
}
.interior-banner-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.interior-banner-btns a {
    margin: 0 0 20px 0;
}
/*about us page ends */
.careerform-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #003366;
    font-weight: 600;
    font-size: 29px;
}
.right-head-btn .theme-btn {
    margin-right: 6px;
    padding: 13px 33px;
    font-size: 14px;
}









}
/*==================================== Responsiveness Ends==================================== */