@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  /* font-family: "Montserrat", sans-serif; */
  color: #555555;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

a {
  text-decoration: none;
  color: #e53e29;
  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;
}

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

@font-face {
  font-family: "buttershine";
  src: url(../fonts/BUTTERSHINE\ SERIF.otf) format("embedded-opentype");
}

@font-face {
  font-family: "buttershineBold";
  src: url(../fonts/BUTTERSHINE\ SERIF-bld.otf) format("embedded-opentype");
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "buttershine";
  font-weight: 900;
}

h1 {
  font-size: 75px;
  line-height: 1.1;
}

h2 {
  font-size: 60px;
  line-height: 1.1;
}

h3 {
  font-size: 34px;
  line-height: 38px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

::-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: 10px 60px 0;
  position: relative;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
}

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

.menuSec li ul {
  display: none;
}

ul.social a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #393939;
  font-size: 13px;
}

.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:hover li {
  float: none;
}

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

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

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

/*banner css end*/

/* Header Top sec  */

header {
  position: relative;
}

header .topSec {
  position: relative;
  padding: 12px 0;
  background-color: #19101b;
}

header .headerLinks ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0px;
  position: relative;
}

header .headerLinks ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #403f3f;
  transition: 0.4s;
  font-size: 15px;
  line-height: 24px;
}

header .headerLinks ul li a:hover {
  text-decoration: underline;
}

.header-social ul.social {
  justify-content: flex-end;
}

ul.social {
  display: flex;
  margin: 0px;
  align-items: center;
  gap: 16px;
}

ul.social li a i {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: #fff;
  font-size: 19px;
  transition: 0.5s;
  background: #e53e29;
}

ul.social li a i:hover {
  background: #f25a29;
  color: #fff;
  border: 1px solid #f25a29;
  transform: scale(0.98);
}

header {
  position: relative;
  overflow: hidden;
}

.header-social ul.social a {
  padding: 0;
}

header .headerLinks ul li a:hover {
  text-decoration: unset;
  color: #e53e29;
}

header .headerLinks ul li a:hover span {
  text-decoration: underline;
}

header .topsecLinks {
  padding-left: 20px;
}

.headerMenu {
  padding: 10px 0px 0 20px;
  position: relative;
  margin-top: 10px;
}

.header-logo {
  position: relative;
}

.header-logo:before {
  position: absolute;
  /* content: ""; */
  width: 137%;
  height: 124%;
  background: #000000;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
  top: -10px;
  left: -70px;
}

.header-logo a {
  display: inline-block;
  position: relative;
  padding: 18px;
  padding-left: 0px;
}

.header-logo a img {
  position: relative;
  width: 130px;
}

.siteBtn {
  display: inline-block;
}

.siteBtn .pbtn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0px;
  height: 55px;
  background: #e53e29;
  color: #fff;
  padding: 0px 10px 0px 18px;
  font-weight: 300;
  transition: 0.4s;
  width: 100%;
}

.siteBtn .pbtn .arrow {
  width: 48px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding-left: 7px;
  clip-path: polygon(31% 0, 100% 0, 100% 100%, 0 100%);
  transition: 0.5s;
}

.siteBtn .pbtn .arrow i {
  color: #e53e29;
}

.siteBtn .pbtn:hover {
  background: #000;
  color: #fff;
  transform: scale(0.98);
}

.menuSec ul#menu li a {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  transition: 0.5s;
  text-transform: uppercase;
  position: relative;
}

.headerMenu:before {
  position: absolute;
  width: 100%;
}

.headerMenu:before {
  position: absolute;
  content: "";
  width: 130%;
  height: 118%;
  background: #171616;
  left: -17px;
  bottom: -10px;
  clip-path: polygon(2.7% 0, 100% 0, 100% 100%, 0 100%);
}

.menuSec ul#menu li a:hover {
  color: #e53e29;
  text-decoration: underline;
}

header .headerLinks ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 48%;
  background: #000;
  opacity: 40%;
}

header .headerLinks ul li a i {
  color: #000;
  font-size: 16px;
}

/* ================ */

/* Banner slider section start  */

section.main_slider {
  overflow: hidden;
}

section.main_slider .banerImg {
  height: 700px;
  width: 100%;
  object-fit: fill;
}

section.main_slider .banner_text {
  position: relative;
}

section.main_slider .carousel-caption .container-fluid {
  padding-left: 70px;
}

section.main_slider .banner_text h1 {
  color: #000;
  font-weight: 800;
  line-height: 1;
}

section.main_slider .banner_text p {
  color: #333333;
  word-spacing: 4px;
  margin: 10px 0 16px;
  line-height: 28px;
}

/* Banner slider section end */
section.quality {
  position: relative;
  color: #fff;
  padding: 10px 60px 0;
  background: #000000;
  margin-top: -2px;
}

section.quality .i-box {
  position: relative;
  gap: 20px;
  padding: 0px 0 24px;
}

section.quality .i-box h4 {
  font-weight: 700;
  margin-bottom: 3px;
}

section.quality .i-box p {
  margin: 0px;
  font-size: 14px;
  line-height: 24px;
  width: 80%;
  font-weight: 300;
}

section.quality .colRight {
  position: relative;
  text-align: center;
}

section.quality h3 {
  position: relative;
  font-weight: 700;
  width: 70%;
  margin: 0px auto;
  text-align: center;
}

section.quality .colMiddle {
  position: relative;
}

section.quality .colMiddle .i-box:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  top: 13%;
  background: #fff;
  left: -13%;
  opacity: 40%;
}

section.quality .i-box img {
  width: 55px;
  height: 48px;
  object-fit: fill;
}

section.quality .row {
  align-items: flex-end;
  position: relative;
  z-index: 12;
}

section.quality .carbox {
  position: relative;
  padding-bottom: 20px;
}

section.quality:before {
  background: #e53e29;
  position: absolute;
  content: "";
  height: 112%;
  left: 0;
  width: 66%;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
  z-index: 12;
  top: -13px;
}

section.quality:after {
  height: 100%;
  top: 0;
  width: 40%;
  z-index: 9;
  right: 0;
}

/* About Us Section Start  */

section.about {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/about-bg.jpg);
}

section.about .abt-main-img {
  position: relative;
  padding-right: 18px;
}

section.about .abt-main-img img {
  height: 700px;
  width: 100%;
  border-radius: 10px;
  object-fit: fill;
  transition: 0.3s;
}

.about-text {
  position: relative;
  padding-top: 20px;
}

.about-text h2 {
  color: #000;
  font-size: 50px;
}

.about-text h2 span {
  font-size: 60px;
  display: inline;
  color: #e53e29;
}

.about-text p {
    color: #555555;
    font-size: 17px;
    line-height: 30px;
    word-spacing: 2px;
    margin: 0px 0px 10px;
}

.listing {
  gap: 60px;
}

.listing ul {
  flex-direction: column;
  gap: 23px;
  margin-bottom: 40px;
}

.listing ul li {
  gap: 16px;
}

.listing ul li span {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.aboutWrapre {
  position: relative;
  width: 90%;
  margin: 0px 0 0 auto;
  padding-left: 16%;
      margin-top: -200px;
}

.aboutWrapre .aboutImg {
  position: relative;
}

.aboutWrapre .aboutImg img {
  height: 480px;
  width: 100%;
  object-fit: fill;
  border-radius: 2px;
  outline: 4px solid #fff;
  outline-offset: -3px;
  position: relative;
  transition: 0.4s;
}

.aboutWrapre .milesBox {
  height: 140px;
  background: #e53e29;
  width: 310px;
  text-align: center;
  border-radius: 6px;
  outline: 5px solid #fff;
  outline-offset: -3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 0;
}

.aboutWrapre .milesBox h2 {
  color: #fff;
  margin: 0;
  font-size: 65px;
  line-height: 70px;
}

.aboutWrapre .milesBox h4 {
  color: #fff;
  font-size: 26px;
  line-height: 30px;
}

.aboutWrapre .aboutImg img:hover {
  filter: brightness(0.9);
  transform: scale(0.99);
}

section.about .abt-main-img img:hover {
  filter: brightness(0.9);
  transform: scale(0.99);
}

/* ===============  CONTACT SEC START ================*/

section.rafeer {
  position: relative;
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
  background-image: url(../images/h-contact-bg.jpg);
  color: #fff;
}

section.rafeer h3 {
  font-size: 40px;
  line-height: 45px;
}

section.rafeer h1 {
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 15px;
}

/* Services Section start  */

section.services {
  position: relative;
  padding: 100px 60px 110px;
  background: #f2f2f2;
}

.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading p {
  width: 62%;
  margin: 10px auto 0;
  color: #555353;
  line-height: 28px;
}

.heading h2 {
  color: #000;
}

.heading h2 {
  margin: 0px;
}

.heading h2 span {
  color: #e53e29;
}

section.services .card {
  border: 0px;
  margin: 10px 8px 0;
  filter: drop-shadow(2px 4px 6px #0000002e);
  transition: 0.5s;
}

section.services .card .card-img {
  position: relative;
  width: 100%;
  transition: 0.4s;
  overflow: hidden;
  border-radius: 6px;
}

section.services .card .card-img img {
  width: 100%;
  border-radius: 5px;
  transition: 0.4s;
}

section.services .card:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 61px;
  top: -18px;
  background: #e53e29;
  margin: 0px auto;
  right: 0;
  left: 0;
  border-radius: 5px;
}

section.services .card .card-txt {
  padding: 28px 20px 34px 32px;
  position: relative;
}

section.services .card .card-txt h3 {
  color: #000;
  font-size: 35px;
  margin-bottom: 10px;
}

section.services .card .card-txt p {
  color: #6c6b6b;
  font-size: 18px;
  line-height: 33px;
  word-spacing: 5px;
}

section.services .card .card-txt a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

section.services .card:hover .card-img img {
  transform: scale(1.1);
}

/* Services Section End  */

/* Gallery section Start  */

section.galerySec {
  position: relative;
  padding: 100px 60px 110px;
  background: #f2f2f2;
}

section.galerySec .gallery {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

section.galerySec .gallery .gallery-item {
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.4s;
}

section.galerySec .gallery .gallery-item a {
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.4s;
}

section.galerySec .gallery .gallery-item a img {
  width: 100%;
  height: 320px;
  position: relative;
  display: inline-block;
  transition: 0.4s;
  object-fit: cover;
  box-shadow: 0px 0px 20px 6px #44444414;
}

section.galerySec .gallery.verse {
  grid-template-columns: 1fr 1fr 2fr;
  margin-bottom: 16px;
}

section.galerySec .gallery.reverse {
  grid-template-columns: 2fr 1fr 1fr;
}

/* Contact Us section start  */

section.contact {
  position: relative;
  padding: 0 60px 0px;
  background: #f2f2f2;
}

section.contact .contactWraper {
  position: relative;
  border-radius: 12px;
  padding: 60px 40px;
  border: 8px solid #fff;
  background: url(../images/contcat--bgImg.png), no-repeat;
  margin-bottom: -200px;
  z-index: 1;
}

section.contact .contactForm {
  position: relative;
  padding-left: 40px;
}

.contactForm h2 {
  color: #fff;
  font-size: 55px;
  line-height: 44px;
  margin-bottom: 12px;
}

.contactForm p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  opacity: 80%;
  margin-bottom: 26px;
}

.formField {
  position: relative;
  margin-bottom: 24px;
}

.formField input {
  width: 100%;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 10px 20px;
}

.formField input::placeholder {
  color: #fff;
}

.formField textarea::placeholder {
  color: #fff;
}

.formField textarea {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 10px 20px;
  height: 150px;
  width: 100%;
  resize: unset;
}

.contactForm button.pbtn {
  border: 1px solid #ffffff7d;
}

section.contact .contactWraper:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  right: 0px;
  margin: 0px auto;
  background: url(../images/conatact-pageShape.png), no-repeat, 100% 100%;
  top: 0;
  border-radius: 6px;
}

/* FOOTER SECTION START  */

/* Footer sectrion css */

.footerSec {
  position: relative;
  overflow: hidden;
  padding: 270px 50px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/footerIMG.png);
  background-position: center;
  background-color: #000;
}

.footerSec p {
  font-weight: 500;
  transition: 0.9s;
  color: #fff;
  opacity: 50%;
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 25px;
}

footer ul.social {
  display: flex;
  gap: 10px;
}

footer ul.social li a i {
  width: 40px;
  height: 40px;
  border-radius: 45px;
  color: #fff;
  background: #e53e29;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
  border: 1px solid transparent;
  opacity: 1;
  font-size: 15px;
}

footer ul.social li a i:hover {
  background: transparent;
  transform: rotate(360deg) scale(1.3);
  border: 1px solid #fff;
}

footer ul li a {
  color: #fff;
  transition: 0.6s;
  font-weight: 500;
  font-size: 14px;
  line-height: 36px;
  text-transform: uppercase;
  font-family: "Montserrat";
  opacity: 50%;
}

footer ul.social li a {
  color: #fff;
  opacity: 1;
  transition: 0.6s;
}

footer ul.social li a:hover {
  opacity: 1;
  color: #fff;
  color: #000;
}

.footerSec .footer-btm .row {
  padding-top: 18px;
  padding-bottom: 18px;
  margin-top: 40px;
  position: relative;
}

.footerSec .footer-btm .row p {
  opacity: 59%;
  font-weight: 400;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.footerSec .footer-btm .row:before {
  position: absolute;
  content: "";
  width: 124%;
  height: 1px;
  top: 0;
  right: -148px;
  margin: 0px auto;
  background: #fff;
  opacity: 0.2;
}

.news-letter ul li a {
  gap: 20px;
  line-height: 28px;
  margin: 14px 0;
  opacity: 1;
}

.news-letter ul li a:hover {
  transform: translate(3px, 0px);
}

footer ul li a:hover {
  opacity: 1;
  color: #fff !important;
}

footer ul.social li a:hover {
  text-decoration: unset !important;
}

h5.subscribe {
  margin-top: 20px;
  font-size: 24px;
}

.ft-header {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
  text-decoration: underline;
  font-size: 25px;
  line-height: 30px;
  text-transform: capitalize;
}

.footer-about h4.text-light.ft-header {
  text-transform: unset;
}

.ft-header:before {
  position: absolute;
  content: "";
  width: 65%;
  height: 1px;
  bottom: 0;
  background: #fff;
  opacity: 23%;
}

.foot-products {
  position: relative;
}

.foot-products ul {
  position: relative;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

footer .news-letter {
  position: relative;
}

footer .foot-quick-links {
  position: relative;
}

.foot-products .ft-header:before {
  width: 80%;
}

footer .ft-lgo {
  display: inline-block;
  margin-bottom: 20px;
}

footer ul.works {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0px;
}

footer ul.works li {
  font-size: 14px;
  font-family: "Montserrat";
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 50%;
  transition: 0.4s;
}

footer ul.works li span {
  float: right;
}

footer ul.works li:hover {
  transform: translate(3px, 0px);
  opacity: 1;
}

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

.footerSec .row .col-lg-3.col-md-6.col-sm-12 {
  width: auto;
}

.footerSec .row .col-lg-2.col-md-6.col-sm-12 {
  width: auto;
}

.footerSec .row .col-lg-3.co-md-6.col-sm-12.col-12 {
  width: 22%;
}

.footerSec .row .col-lg-2.col-md-6.col-sm-12.col-12 {
  width: 18%;
}

footer ul.works li span small {
  color: #e53e29;
  display: inline-block;
  font-weight: 600;
  opacity: 1;
  text-transform: capitalize;
  font-size: 16px;
}

footer ul li a:hover {
  opacity: 1;
}

.news-letter ul li a span {
  font-size: 13px;
  opacity: 50%;
  transition: 0.4s;
  line-height: 23px;
}

footer .news-letter ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

footer.footerSec {
  margin-top: 0px;
}

/* Footer section end */

/* Reviews slider section start  */

section.reviews {
  position: relative;
  overflow: hidden;
  padding: 50px 0 80px;
  background-image: url(../images/test-bg-img.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.reviews .headtext {
  text-align: center;
}

section.reviews .headtext h1 {
  color: #fff;
}

section.reviews .headtext h2 {
  font-weight: 400;
  color: #fff;
}

section.reviews .item {
  opacity: 1;
  position: relative;
}

section.reviews .slick-list {
  padding: 30px 0 40px;
}

section.reviews .cbox {
  position: relative;
  padding: 20px 30px 30px;
  transition: 0.9s;
  cursor: pointer;
}

section.reviews .cbox ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

section.reviews .cbox ul .userim img {
  position: relative;
  transition: 0.9s;
  cursor: pointer;
}

section.reviews .cbox .ratingNmae {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

section.reviews .cbox .ratingNmae h6 {
  margin: 0px;
  font-family: "roboto";
  font-size: 17px;
  font-weight: bold;
  color: #000;
}

section.reviews .cbox .ratingNmae p {
  margin: 0px;
  word-spacing: 0;
  color: #e53e29;
  font-size: 15px;
}

section.reviews .cbox p {
  font-weight: 400;
  line-height: 30px;
  font-size: 18px;
  color: #858585;
  word-spacing: 4px;
}

section.reviews .cbox .c-dtal {
  margin-bottom: 24px;
  transition: 0.9s;
  margin-top: 30px;
}

section.reviews .cbox .author-rating {
  position: relative;
}

section.reviews .cbox .author-rating ul {
  display: flex;
  align-items: center;
  gap: 1px;
  margin: 0px 0 10px;
}

section.reviews .cbox .author-rating ul li a i {
  color: #ffc107;
  transition: 0.9s;
  cursor: pointer;
  font-size: 16px;
}

section.reviews .cbox:hover .author-rating ul li a i {
  transform: rotate(360deg);
  color: #000;
}

section.reviews .cbox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 87%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: -1;
  transition: 1s;
}

section.reviews .cbox:hover:before {
  height: 100%;
}

section.reviews .cbox:hover ul .userim img {
  transform: rotate(5deg);
}

section.reviews .heading h2 {
  color: #ffff;
  font-size: 65px;
  line-height: 70px;
  margin-bottom: 5px;
}

section.reviews h3 {
  font-size: 50px;
  color: #fff;
  line-height: 60px;
  font-weight: 600;
}

section.reviews .cbox .userIMGBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  position: relative;
}

section.reviews .cbox .ratingNmae h5 {
  margin: 0px;
  color: #000;
}

section.reviews .cbox .userIMGBox .userim {
  position: relative;
}

section.reviews .cbox .userIMGBox .userim::before {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #e53e29;
  border-radius: 45px;
  top: 0;
  left: 0;
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

section.reviews .heading {
  margin-bottom: 10px;
}

/* Reviews slider section ended */

section.reviews ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

section.reviews ul.slick-dots li {
  padding: 0px;
  margin: 0px;
  width: 22px;
  height: 10px;
  background: #d6dcdb;
  border-radius: 45px;
  transition: 0.6s;
}

section.reviews ul.slick-dots ul li button {
  display: none !important;
  padding: 0px;
  width: 0px;
  height: 0px;
}

section.reviews ul.slick-dots ul li button::before {
  display: none;
}

section.reviews .slick-dots li button:hover,
section.reviews .slick-dots li button:focus {
  display: none;
}

.slick-dots li.slick-active button:before {
  display: none !important;
}

section.reviews ul.slick-dots li.slick-active {
  background: #e53e29;
  opacity: 1;
}

/* ===================== */

/*iner-banner start*/


section.main_slider.inn img.img-fluid.banerImg {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.about-text.in .listing ul {
    margin-bottom: 10px;
}
/*chose-us start*/
section.chose.inn {
    padding: 100px 60px;
}
.chose-txt h3 {
    color: #e53e29;
    font-size: 60px;
    line-height: 70px;
}
.chose-txt h4 {
    color: #000;
    font-size: 50px;
    line-height: 60px;
}
.chose-txt p {
    color: #555555;
    font-size: 17px;
    line-height: 30px;
    word-spacing: 2px;
    margin: 16px 0px 30px;
}
footer.footerSec.inn {
    padding-top: 80px;
}

section.team {
    padding: 100px 60px;
}
.team-txt {
    text-align: center;
    margin-bottom: 30px;
}
.team-txt h4 {
    font-size: 60px;
    line-height: 70px;
    color: #e53e29;
}

.team-txt h3 {
    font-size: 60px;
    line-height: 66px;
    color: #000;
}
.team-bot-txt {
    text-align: center;
    margin-top: 10px;
}

.team-bot-txt ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.team-bot-txt ul li a i {
    font-size: 17px;
    border: 1px solid #e53e29;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-bot-txt h4 {
    font-size: 25px;
    line-height: 30px;
    color: #000;
}

.team-bot-txt h4 span {
    display: block;
    font-size: 16px;
}

section.services-inn {
    padding: 100px 60px;
}
.ser-in-img img {
    width: 100%;
}
.ser-in-txt h3 {
    font-size: 55px;
    line-height: 70px;
    color: #000;
}

.ser-in-txt p {
    font-size: 16px;
    line-height: 28px;
    color: #6c6b6b;
    margin-bottom: 30px;
}
section.services-inn .row {
    align-items: center;
}
.gallery.verse.innn {
    margin-bottom: 0;
    margin-top: 16px;
}

/*get an estmate start*/
section.get-an form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #a7a5a2;
    outline: none;
    border-radius: 0px;
}
section.get-an{
  padding: 70px 0px;
}
.input-icon {
    position: absolute;
    top: 18px;
    right: 15px;
}
.input {
    position: relative;
}
.input-icon i {
    font-size: 22px;
    color: #000;
}
section.get-an form input::placeholder {
    color: #000;
}
.text-area textarea {
    width: 100%;
    height: 300px;
    border: 1px solid #a7a5a2;
    resize: none;
    padding: 10px 20px;
    border-radius: 0px;
}
.Message-icon {
    position: absolute;
    top: 15px;
    right: 15px;
}
.text-area {
    position: relative;
}
.Message-icon i {
    font-size: 22px;
    color: #2500fe;
}
section.form-2 button.theme_btn {
    font-size: 30px;
    font-weight: 400;
    background-color: #091d35;
}
.text-area {
    position: relative;
    margin-bottom: 30px;
}
section.get-an button.theme_btn {
    font-size: 25px;
    font-weight: 400;
    padding: 15px 100px;
    color: #ffff;
    border: none;
    background: #1ba8f0;
    border-radius: 0px;
}
.input select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 0px;
}
.get-in-head h3 {
    text-align: center;
    font-size: 60px;
    line-height: 44px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #000000;
}
.get-in-head p {
    font-size: 16px;
    margin: 0 auto;
    width: 63%;
    text-align: center;
    line-height: 31px;
}
.get-in-head {
    margin-bottom: 40px;
}
button.pbtn {
    border: unset;
}
/*get an estmate end*/

/* contact start */
.c-txt {
    width: 79%;
}
.in-banner.contact {
    width: 60%;
}

.contact-us {
    padding-top: 100px;
    padding-bottom: 90px;
}

.contact-us h3 {
    font-size: 60px;
    text-transform: capitalize;
    line-height: 74px;
    text-align: left;
    color: #000000;
    width: 79%;
    margin-bottom: 24px;
}

.contact-us input {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    color: #666666;
    font-size: 17.9px;
}

 ::placeholder {
    color: #9d9a9a;
}
.contact-us .form-select{
     padding: 15px 10px;
    border: 1px solid #d2d2d2;
    color: #9d9a9a;
    font-size: 15px;
}

.contact-us textarea {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    height: 125px;
    resize: none;
    font-size: 15px;
    color: #9d9a9a;
}
.contact-us p {
    width: 85%;
    font-size: 16px;
    line-height: 25.42px;
    color: #666666;
}
.contact-us button {
    height: 62px;
    width: 35%;
    border: 0;
    font-weight: 400;
    margin-top: 32px;
    color: #fff;
}

.detai-s {
    margin-top: 30px;
    padding-bottom: 15px
}

.detai-s i {
    color: #fff200;
    line-height: 80px;
    font-size: 30px
}

.detai-s a {
    color: #000000b3;
    font-size: 14.42px;
    line-height: 36.06px;
    font-family: "Poppins";
    font-weight: 400
}

section.contact-us .soccail-icon {
    display: flex;
    gap: 18px;
        padding: 35px 0;
}

section.contact-us .soccail-icon i {
    /* background: #f25764; */
    color: #fff;
    font-size: 22px;
}

.detai-s img {
    height: 50px;
    line-height: 53px;
    margin-top: 20px
}

.detai-s h6 {
    margin: 0;
    color: #000;
    font-family: 'SuiGeneris';
    font-weight: 400;
    font-size: 21.18px;
    line-height: 11px;
}

.detai-s .row {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    gap: 0
}

.detai-s i {
    color: #e53e29;
    line-height: 80px;
    font-size: 27px;
    height: 55px;
    border-radius: 100%;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e53e29;
}

.detai-s a:hover i {
    border: 1px solid #facf54;
    color: #fff;
    background: #34349b;
}
.detai-s ul {
    display: flex;
    gap: 20px;
}
.socails ul li img {
    width: 26px;
    height: 29px;
    object-fit: none
}

iframe {
    width: 100%;
    height: 534px;
    margin: 5% 0 2%;
    border: 2px solid #c1bfbf;
    border-radius: 10px;
}
.soccail-icon a {
    width: 36px;
    height: 36px;
   background: #48a1d7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.soccail-icon a:hover{
   transform: translate(0, -5px);
    box-shadow: #679297 0px 12px 15px 0px;
}
 ::placeholder {
    color: #9d9a9a;
    font-size: 15px;
}
.c-txt h6 {
    font-size: 30px;
    margin: 0 0 10px;
    font-weight: 500;
    color: #000;
    font-family: "buttershine";
}

.c-page a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.c-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 19%;
}
.c-page i {
    font-size: 36px;
    height: 100px;
    width: 100px;
    /* border-radius: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #e53e29;
    font-weight: 400;
    font-family: 'FontAwesome';
}
.c-txt p {
    font-size: 22px;
    width: 100%;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #191a1a;
    margin: 0;
    width: 100%;
}

button.btn-theme.btn1 {
    border-radius: 0;
}
.c-txt p span {
    display: block;
}
/* contact end */

@media only screen and (min-width: 1661px) and (max-width: 1920px){}
@media only screen and (min-width: 1400px) and (max-width: 1600px){
	.footerSec .row .col-lg-2.col-md-6.col-sm-12.col-12 {
    width: 50%;
}

.footerSec .row .col-lg-3.co-md-6.col-sm-12.col-12 {
    width: 45%;
}
	.aboutWrapre {
    margin-top: -140px;
}

.chose-txt h4 {
    font-size: 41px;
}
	
.ser-in-txt p {
    font-size: 15px;
    line-height: 25px;
}

.ser-in-img img {
    height: 500px;
    object-fit: cover;
}
	
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
	.footerSec .row .col-lg-2.col-md-6.col-sm-12.col-12 {
    width: 50%;
}

.footerSec .row .col-lg-3.co-md-6.col-sm-12.col-12 {
    width: 45%;
}
	.aboutWrapre {
    margin-top: -150px;
}

.page-id-9 .about-text p {
  font-size: 13px !important;
}
	.chose-txt h4 {
    font-size: 32px;
}

.chose-txt p {
    font-size: 13px;
    line-height: 22px;
}

.chose-img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}
	
.ser-in-txt p {
    font-size: 15px;
    line-height: 25px;
}

.ser-in-img img {
    height: 500px;
    object-fit: cover;
}
.c-txt p {
    font-size: 15px;
}

section.contact-us .col-md-3.col-12 {
    width: 33.3333%;
}
section.contact-us .col-md-5.col-12 {
    width: 33.33333%;
}
section.reviews .cbox p {
    font-size: 16px;
}	
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
	header .headerLinks ul {
    padding-left: 0;
    gap: 30px;
}

header .headerLinks ul:before {
    left: 40%;
}

.menuSec ul {
    padding: 0;
}

section.main_slider .banner_text h1 {
    font-size: 62px;
}

section.quality .i-box h4 {
    font-size: 21px;
}

section.quality h3 {
    width: 90%;
}

.about-text p {
    margin-bottom: 40px;
}

section.about img {
    object-fit: cover;
}

section.about .abt-main-img img {
    object-fit: cover;
}

.aboutWrapre .aboutImg img {
    object-fit: cover;
}

section.rafeer h1 {
    font-size: 60px;
    line-height: 1.2;
}

.heading p {
    width: 80%;
}

section.services .card .card-txt h3 {
    font-size: 23px;
}

section.services .card .card-txt p {
    font-size: 16px;
    line-height: 23px;
}

.footerSec .row .col-lg-2.col-md-6.col-sm-12.col-12 {
    width: 47%;
}

.footerSec .row .col-lg-3.co-md-6.col-sm-12.col-12 {
    width: 47%;
}
section.about .about-text.in p {
    font-size: 13px;
    margin-bottom: 22px;
    line-height: 21px;
}

.aboutWrapre {
    margin-top: -110px;
}
.chose-img img {
    height: 700px;
    object-fit: cover;
}

.chose-txt h4 {
    font-size: 40px;
    line-height: 1.2;
}

.ser-in-txt p {
    font-size: 13px;
    line-height: 20px;
}

.ser-in-img img {
    height: 400px;
    object-fit: cover;
}

section.contact-us .col-md-3.col-12 {
    width: 50%;
}

section.contact-us .col-md-4.col-12 {
    width: 50%;
}

section.contact-us .col-md-5.col-12 {
    width: 50%;
}

.c-txt p {
    font-size: 15px;
}

.c-page i {
    width: 80px;
    height: 80px;
}

.c-page {
        justify-content: start;
        margin-bottom: 30px;
}

.contact-us h3 {
    font-size: 50px;
}
section.reviews .cbox p {
    font-size: 16px;
}
		
	
	
	
	
	
	
	
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	header .headerLinks ul {
    padding: 0;
    gap: 10px;
}

.menuSec {
    padding: 10px 20px;
}

header .topsecLinks {
    padding: 0;
}


header .headerLinks ul li a {
    font-size: 12px;
}

.header-social ul.social {
    padding: 0;
}

.menuSec ul {
    padding: 0;
}

.menuSec ul#menu li a {
    font-size: 13px;
}

.header-logo a {
    padding: 0;
}

section.main_slider .banner_text h1 {
    font-size: 50px;
}

section.main_slider .col-sm-6.col-md-6.align-self-center {
    width: 80%;
}

section.quality {
    padding: 10px 20px;
}

section.quality h3 {
    width: 100%;
    font-size: 30px;
}

section.quality .i-box h4 {
    font-size: 18px;
    line-height: 1.2;
}

section.quality .i-box p {
    font-size: 10px;
    line-height: 20px;
}

section.quality .i-box {
    gap: 10px;
}

section.about {
    padding: 50px 10px;
}

section.about .abt-main-img img {
    height: 600px;
    object-fit: cover;
}

.about-text p {
    font-size: 14px;
}

.aboutWrapre .aboutImg img {
    object-fit: cover;
}

section.rafeer h3 {
    font-size: 30px;
}

section.rafeer h1 {
    font-size: 60px;
    line-height: 1.2;
}

.heading h2 {
    font-size: 50px;
}

.heading p {
    width: 80%;
}
	section.services .col-xl-4.co-lg-4.col-md-4 {
    width: 50%;
}

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

section.services .card .card-txt h3 {
    font-size: 27px;
}

section.services .card .card-txt p {
    font-size: 17px;
    line-height: 20px;
}

section.services .card {
    margin-bottom: 20px;
}

section.galerySec {
    padding: 100px 40px;
}

section.contact .contactForm {
    width: 410px;
    margin-left: -140px;
}
.footerSec .row .col-lg-2.col-md-6.col-sm-12.col-12 {
    width: 50%;
}

.footerSec .row .col-lg-3.co-md-6.col-sm-12.col-12 {
    width: 50%;
}

.footerSec .row .col-lg-3.col-md-6.col-sm-12 {
    width: 100%;
    margin-bottom: 20px;
}

.footerSec .row .col-lg-2.col-md-6.col-sm-12 {
    width: 50%;
    margin-bottom: 20px;
}
section.about .about-text.in p {
    font-size: 13px;
    line-height: 21px;
}

.aboutWrapre {
    margin-top: 20px;
}
section.chose.inn .col-md-6.col-lg-6.col-12 {
    width: 100%;
}
.ser-in-txt h3 {
    font-size: 37px;
    line-height: 1.2;
}

.ser-in-txt p {
    font-size: 13px;
    line-height: 20px;
}

.ser-in-img img {
    height: 400px;
    object-fit: cover;
}
.input select {
    margin-bottom: 20px;
}

section.contact-us .col-md-3.col-12 {
    width: 50%;
}

section.contact-us .col-md-4.col-12 {
    width: 50%;
}

section.contact-us .col-md-5.col-12 {
    width: 50%;
}

.c-txt p {
    font-size: 15px;
}

.c-page i {
    width: 80px;
    height: 80px;
}

.c-page {
    justify-content: start;
}

.contact-us h3 {
    font-size: 50px;
}
section.reviews .cbox p {
    word-spacing: 2px;
    font-size: 15px;
}

section.reviews .slick-slide.slick-current  .cbox .userIMGBox {
    align-items: flex-end;
}

section.reviews .cbox .author-rating ul {
    margin: 0;
}

section.reviews .slick-slide .cbox .userIMGBox {
    align-items: center;
}
	
	
}
@media only screen and (min-width: 520px) and (max-width: 767px){}
@media only screen and (min-width: 300px) and (max-width: 519px){
	.header-logo a {
    padding: 0;
}

.menuSec {
    padding: 10px 0;
}

.header-logo a img {
    width: 160px;
    margin: 0 auto;
    display: block;
}

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

header .headerLinks ul {
    padding: 0;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.topsecLinks.d-flex.align-items-center.justify-content-between {
    display: block !important;
    padding: 0;
}

header .headerLinks ul:before {
    display: none;
}
.headerLinks ul li {
    margin: 0 auto;
    display: block;
}

header .headerLinks ul li a {
    justify-content: center;
}
section.main_slider .carousel-caption .container-fluid {
    padding: 0;
}

section.main_slider .banner_text {
    text-align: center;
}

section.main_slider .banner_text h1 {
    font-size: 41px;
}

section.main_slider .banner_text p {
    font-size: 14px;
    line-height: 20px;
}

section.main_slider .banerImg {
    height: 600px;
    object-fit: cover;
}
.header-social ul.social {
    justify-content: center;
    padding: 0;
    margin-top: 10px;
}
	section.quality:before {
    display: none;
}

section.quality {
    padding: 10px;
}

section.quality .i-box p {
    font-size: 10px;
}

section.quality .i-box h4 {
    font-size: 20px;
}

section.quality h3 {
    width: 100%;
    font-size: 28px;
}

section.quality .i-box {
    gap: 10px;
}

section.quality .i-box {
    justify-content: center;
}

section.about {
    padding: 50px 10px;
}

section.about .abt-main-img img {
    height: 400px;
    object-fit: cover;
}

section.about .abt-main-img {
    padding: 0;
}

.about-text h2 {
    font-size: 30px;
}

.about-text p {
    font-size: 14px;
    line-height: 24px;
}

.aboutWrapre .milesBox {
    position: static;
    width: 100%;
}

.aboutWrapre .aboutImg img {
    height: 300px;
    margin: 20px 0;
}

.aboutWrapre {
    width: 100%;
    margin: 0;
    padding: 0;
}
	section.rafeer h1 {
    font-size: 33px;
    line-height: 1.2;
}

section.rafeer h3 {
    font-size: 24px;
    line-height: 1.2;
}

section.services {
    padding: 40px 0;
}

.heading h2 span {
    font-size: 50px;
}

.heading h2 {
    font-size: 35px;
}

.heading p {
    width: 100%;
}

section.services .card .card-txt h3 {
    font-size: 27px;
}

section.services .card .card-txt p {
    font-size: 15px;
    line-height: 20px;
}

section.services .card {
    margin-bottom: 20px;
}

section.services .card .card-txt {
    padding: 20px;
}

section.reviews .heading h2 {
    font-size: 40px;
}

section.reviews h3 {
    font-size: 25px;
    line-height: 1.2;
}
	section.galerySec .gallery {
    display: block;
}

section.galerySec {
    padding: 50px 10px;
}

section.galerySec .gallery .gallery-item a img {
    margin-bottom: 15px;
}

section.contact {
    padding: 0 10px;
}

section.contact .contactForm {
    padding: 0;
}

section.contact .contactWraper {
    padding: 30px 10px;
}

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

footer.footerSec {
    padding-left: 20px;
    padding-right: 20px;
}

.foot-useful-link {
    margin: 20px 0;
}

.footerSec .row .col-lg-2.col-md-6.col-sm-12.col-12 {
    width: 100%;
    margin-top: 20px;
}

.footerSec .row .col-lg-3.co-md-6.col-sm-12.col-12 {
    width: 100%;
    margin: 20px 0;
}

.footerSec .footer-btm .row {
    margin-top: 0px;
}
	html{
		overflow-x:hidden;
	}
	.page-id-9 .abt-nt h2 {
           font-size: 34px !important;
}

section.chose.inn {
    padding: 40px 10px;
}

.chose-txt h3 {
    font-size: 39px;
}

.chose-txt h4 {
    font-size: 30px;
    line-height: 1.2;
}

.chose-txt p {
    font-size: 13px;
    line-height: 20px;
}
section.services-inn {
    padding: 50px 10px;
}

.ser-in-txt h3 {
    font-size: 40px;
}
.get-in-head h3 {
    font-size: 38px;
}


.input select {
    margin-bottom: 20px;
}
.contact-us {
    padding: 40px 0;
}

.c-txt p {
    font-size: 16px;
    line-height: 20px;
}

.c-page.two {
    margin-bottom: 20px;
}

.c-page {
    margin-bottom: 20px;
}

.contact-us h3 {
   font-size: 47px;
}
section.reviews .cbox p {
    font-size: 15px;
    line-height: 24px;
    align-items: start;
    word-spacing: 1px;
}

section.reviews .cbox {
    padding: 20px;
}

section.reviews .slick-slide {
    margin: 0 10px;
}

section.reviews .cbox .userIMGBox {
    align-items: center;
}

section.reviews .cbox .author-rating ul {
    margin: 0;
}
}


























