@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 {
  font-family: "Montserrat", sans-serif;
  color: #201b1b;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #835037;
  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: "Cangste";
  src: url(../fonts/Cangste.otf) format("opentype");
}

/***** Custom Classes *****/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cangste";
  line-height: 1.1;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 70px;
}

h3 {
  font-size: 50px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
}

::-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: 24px 0;
  background-color: #fff;
  border-radius: 0px 0px 70px 70px;
  position: relative;
  z-index: 1;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-right: 10px;
}

.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: #393939;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.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: #835037;
}

.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;
}

/* Custom header start  */

header .menuSec .row {
  align-items: center;
}

.siteBtn {
  display: inline-block;
}

/* general btn css start  */

.p-btn {
  background-color: #835037;
  border: 2px solid #fff;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  height: 55px;
  padding: 5px 10px 5px 20px;
}

.p-btn img {
  width: auto;
  transition: 0.6s;
}

.p-btn:hover img {
  transform: scale(0.98);
}

.p-btn:hover {
  background-color: #000 !important;
  color: #fff;
}

.p-btn span {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

header .header-datebtn {
  display: flex;
  justify-content: flex-end;
}

/* Custom header End  */

section.banner {
  position: relative;
}

section.banner .coleft {
  padding: 0px;
  position: relative;
  background-color: #fff;
  padding-right: 14px;
  height: 100%;
}

section.banner .colright {
  height: 100%;
  padding: 0px;
  position: relative;
  padding-left: 14px;
  margin-top: -117px;
}

section.banner .banertxt {
  height: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 150px;
  justify-content: flex-start;
  background: #fbf6f0;
  border-radius: 0px 130px 0px 0px;
  padding-top: 160px;
}

section.banner .banertxt h1 {
  display: inline-block;
  color: #000;
  line-height: 80px;
  margin-bottom: 25px;
}

section.banner .banertxt h1 span {
  padding: 10px;
  position: relative;
  display: inline-block;
  line-height: 80px;
  color: #835037;
}

section.banner .banertxt p {
  width: 87%;
  font-size: 15px;
  line-height: 27px;
  opacity: 80%;
}

.banegrup {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.headphone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.headphone .headText {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.headphone .headText span {
  display: inline-block;
  line-height: 24px;
  font-size: 18px;
}

.headphone .headText a {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
}

.headphone div img.img-fluid {
  height: 50px;
  width: auto;
}

section.banner .last_img_sc {
  width: 100%;
  object-fit: fill;
  height: 100%;
}

section.banner .last_img_sc img.img-fluid {
  height: 900px;
  object-fit: cover;
  object-position: right;
  filter: brightness(0.8);
  border-radius: 60px 0px 0px 0px;
  opacity: 0;
}

header {
  position: relative;
  background: #fbf6f0;
}

.growth {
  padding: 32px 0;
  background: #835037;
  border-radius: 80px 0px 0px 0px;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.growth .box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.growth .box h4 {
  margin: 0;
  font-size: 29px;
  line-height: 35px;
  color: #fff;
}

.growth .box p {
  color: #fff;
  opacity: 50%;
}

.growth .box .box-i {
  margin-bottom: 12px;
}

.growth .box .box-i img {
  width: 60px;
  height: 50px;
  object-fit: contain;
  transition: 0.4s;
}

.growth .box:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  right: 0;
  top: 11%;
  background: #fff;
  opacity: 40%;
}

.growth .row > div:last-of-type .box::before {
  display: none;
}

section.banner .last_img_sc {
  background-image: url(../images/banneimg-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/*banner css end*/

/* about css start  */

section.about {
  position: relative;
  overflow: hidden;
  background-color: #fbf6f0;
}

section.about .aboutWarp {
  padding: 100px 0;
  background: #fff;
  border-radius: 0px 0px 100px 100px;
}

section.about .col-lg-5.col-md-5 {
  padding-right: 30px;
  height: 100%;
  position: relative;
}

section.about .col-lg-7.col-md-7 {
  padding-right: 0px;
}

section.about .ab-text {
  position: relative;
  padding-left: 30px;
  padding-top: 10px;
  padding-right: 50px;
}

section.about .row {
  align-items: center;
  position: relative;
}

/* section.about .ab-img {
    padding-left: 40px;
  } */

section.about .ab-img img {
  width: 100%;
  transition: 0.9s;
  height: 550px;
  object-fit: fill;
}

section.about .ab-img img:hover {
  filter: brightness(0.7);
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 4px;
  transform: translateY(10px);
}

section.about .colLeft:before {
  position: absolute;
  content: "";
  width: 70px;
  right: 10px;
  background: #835037;
  height: 140px;
  top: -50px;
  transition: 0.9s;
  border-radius: 8px;
}

section.about .ab-text p {
  color: #48644d;
  font-weight: 500;
}

section.about .colLeft:hover:before {
  height: 100%;
}

section.about .mission {
  position: relative;
}

section.about .mission .msn-text p br {
  display: none;
}

section.about .mission .msn-text p {
  margin: 0;
  color: #000;
  font-size: 13px;
  line-height: 23px;
}

section.about .mission .msn-text {
  padding-right: 60px;
}

section.about .mission .msn-heading {
  background: #835037;
  padding: 50px 10px 50px 20px;
  border-radius: 0px 20px 40px 20px;
  text-align: center;
}

section.about .mission .msn-heading h2 {
  color: #fff;
  font-size: 60px;
  text-align: center;
}

section.about .mission .msn-heading h3 {
  color: #fff;
  font-weight: 100 !important;
  letter-spacing: 17px;
  text-transform: uppercase;
  font-family: "Montserrat";
  transition: 1s;
  position: relative;
  margin: 0;
  text-align: center;
  font-size: 23px;
  line-height: 33px;
}

section.about .col-lg-5.col-md-5.msn-colLeft {
  padding-left: 0px;
}

section.about .mission .msn-heading h6 {
  font-family: "Montserrat";
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
  color: #fff;
}

/* about css end */

/* Services Start  */

section.services {
  position: relative;
  background: #fbf6f0;
  text-align: center;
  padding: 100px 0;
}

.heading {
  margin-bottom: 40px;
}

.heading p {
  width: 60%;
  margin: 0px auto;
  opacity: 80%;
}

section.services .item.slick-slide {
  opacity: 1;
}

section.services .card {
  position: relative;
  border-radius: 30px;
  border: 0px;
  transition: 0.5s;
}

section.services .card .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

section.services .card .card-img img {
  height: 300px;
  width: 100%;
  border-radius: 24px;
  position: relative;
  object-fit: fill;
  transition: 0.5s;
}

section.services .card .card-text {
  padding: 50px 30px 40px;
  position: relative;
}

section.services .card .card-text h4 {
  font-size: 29px;
  line-height: 36px;
  background: #835037;
  width: 85%;
  border-radius: 45px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
}

section.services .card .card-text h4 span {
  position: relative;
  color: #fff;
}

section.services .card .card-text p {
  opacity: 80%;
  font-size: 13px;
  line-height: 23px;
}

section.services .card:hover {
  transform: scale(0.98);
}

section.services .card:hover .card-img img {
  transform: scale(1.1);
}

/* Services End */

/* Work Start  */
section.work {
  position: relative;
  background: #fbf6f0;
  padding: 100px 0;
}

.wrokWarp {
  margin: 0px auto;
  /*background: #fff;*/
  padding: 100px 100px;
  box-sizing: border-box;
  border-radius: 80px;
  border: 1px solid #c2c2c2;
  position: relative;
  overflow: hidden;
}

.wrokWarp .last_img_sc {
  position: relative;
  overflow: hidden;
  padding-left: 10px;
}

.wrokWarp .last_img_sc img.img-fluid {
  height: 550px;
  width: 100%;
  object-fit: fill;
  transition: 0.4s;
}

.wrokWarp .last_img_sc img.img-fluid:hover {
  filter: brightness(0.8);
  transform: scale(0.98);
}

.wrokWarp .card {
  position: relative;
  background-color: #fff;
  box-shadow: -3px 9px 20px 20px #00000005;
  border: 0px;
  padding: 55px 57px;
  border-radius: 160px 20px 20px 20px;
  filter: drop-shadow(2px 24px 96px #00000014);
}

.wrokWarp .card ul.d-flex.mb-0 {
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.wrokWarp .card .card-header {
  background: transparent;
  border: 0px;
  padding: 0;
}

.wrokWarp .card .card-header p {
  font-size: 13px;
  line-height: 21px;
  color: #111111;
  opacity: 80%;
  margin-bottom: 10px;
}

.wrokWarp .card .card-body {
  padding: 0;
  position: relative;
}

.wrokWarp .card ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cad8d4;
  padding: 6px 0;
  box-shadow: 0px 1px 0px 0px #cad8d470;
}

.wrokWarp .card ul li span {
  color: #835037;
  font-size: 18px;
  font-family: "Cangste";
  font-weight: 500;
  letter-spacing: 1px;
}

.wrokWarp .card ul li:last-child span {
  color: #000;
}

.wrokWarp:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/work-shape.png);
  filter: brightness(0) saturate(100%) invert(30%) sepia(9%) saturate(2896%)
    hue-rotate(335deg) brightness(107%) contrast(86%) !important;
}

.wrokWarp .colright {
  padding-right: 24px;
}

.wrokWarp .colLeft {
  padding-left: 24px;
}

/* Work end */
/* AppointMents Start  */

/* Online Booking Page  */

section.get-an {
  position: relative;
  text-align: center;
  padding: 100px 0;
}

section.get-an .formWraper {
  width: 90%;
  margin: 0px auto;
  background: #fff;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 45px;
  box-shadow: 0px 0px 20px 7px #0000000f;
}

section.get-an .formWraper form {
  position: relative;
}

section.get-an h2 {
  color: #222;
}

section.get-an form .formField input {
  position: relative;
  width: 100%;
  outline: none;
  padding: 18px 20px 18px 24px;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  box-sizing: border-box;
  box-shadow: 0px 0px 0px 1px #00000014;
  border: 0px;
  text-transform: capitalize;
}

section.get-an form .formField {
  position: relative;
  margin-bottom: 18px;
}

section.get-an form .formField input::placeholder {
  color: #000;
}

section.get-an form .formField textarea::placeholder {
  color: #000;
}

section.get-an form .formField select {
  position: relative;
  width: 100%;
  outline: none;
  padding: 18px 40px 18px 24px;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  box-sizing: border-box;
  box-shadow: 0px 0px 2px 1px #00000014;
  border: 0px;
  text-transform: capitalize;
}

section.get-an form .formField textarea {
  position: relative;
  width: 100%;
  outline: none;
  padding: 18px 40px 18px 24px;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  box-sizing: border-box;
  box-shadow: 0px 0px 2px 1px #00000014;
  border: 0px;
  height: 170px;
  resize: unset;
}

section.get-an form .formField i {
  position: absolute;
  right: 22px;
  top: 33%;
  font-size: 22px;
  color: #835037;
}

section.work:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 77%;
  top: 0;
  border-radius: 100px;
  background: #fff;
}

/* AppointMents End */

/* Miles start  */

section.miles {
  padding: 40px 0;
  background: #835037;
  position: relative;
}

section.miles .miles-bx {
  display: flex;
  align-items: center;
  gap: 30px;
}

section.miles .miles-bx .shape {
  width: 220px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/Polygon-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.miles .miles-bx .shape h3 {
  margin: 0px;
  font-size: 35px;
  line-height: 45px;
  color: #fff;
  position: relative;
  z-index: 1;
}

section.miles .miles-bx .text {
  position: relative;
  padding-right: 20px;
}

section.miles .miles-bx .text h5 {
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  line-height: 35px;
}

section.miles .miles-bx .text p {
  line-height: 23px;
  color: #fff;
  opacity: 60%;
  font-weight: 400;
  margin: 0;
  font-family: "roboto";
  font-size: 14px;
}

section.miles .row {
  justify-content: space-between;
}

/* Miles End */

/* Testimonial start  */

.happyShape {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 100px 0;
  border-radius: 70px;
  z-index: 1;
}

section.happy {
  position: relative;
}

ul.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  gap: 4px;
}

ul.rating span i {
  color: #fd8f00;
  font-size: 12px;
}

section.happy .box {
  background: #fff;
  box-sizing: border-box;
  border-radius: 17px;
  position: relative;
  padding: 50px 40px 40px;
  text-align: center;
  transition: 0.4s;
  overflow: scroll;
  overflow-x: hidden;
  height: 400px;
}

section.happy .item {
  opacity: 1;
  transform: scale(1.07);
  padding: 20px 0;
}

section.happy .box p {
  font-family: "Roboto";
  font-weight: 400;
  color: #7c7c7c;
  font-size: 13px;
  margin-bottom: 10px;
}

.client-box .quotess {
  margin-left: 20px;
  position: relative;
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #f3a2145c;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

section.happy .box .quote-i i {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #835037;
  color: #fff;
  font-size: 20px;
  outline: 13px solid #cad8d4;
}

section.happy .box .quote-i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

section.happy .box .title {
  margin-bottom: 16px;
}

section.happy .box .title h5 {
  font-weight: 500;
  margin: 0px;
  color: #835037;
  font-family: "Montserrat";
  letter-spacing: 0px;
}

section.happy .box .title h6 {
  font-size: 15px;
  font-family: "Roboto";
  opacity: 60%;
  font-weight: 400;
}

.item.slick-slide.slick-current.slick-active.slick-center .box {
  border: 1px solid#835037;
}

/* PREV & NEXT BTN START  */
section.happy .slick-prev:before {
  content: "\f104";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
  color: #835037;
  background-color: #fff;
  opacity: 3 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  border: 2px solid #835037;
  transition: 0.4s;
}

section.happy .slick-next:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
  color: #835037;
  background-color: #fff;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  content: "\f105";
  border: 2px solid #835037;
  transition: 0.4s;
}

section.happy button.slick-prev.slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 32%;
  z-index: 12;
  top: 49%;
}

section.happy button.slick-prev.slick-arrow:hover:before {
  background: #835037;
  color: #fff;
}

section.happy button.slick-next.slick-arrow:hover:before {
  background: #835037;
  color: #fff;
}

section.happy button.slick-next.slick-arrow {
  position: absolute;
  right: 34%;
  z-index: 1;
  top: 43%;
}

/* FOOTER SECTION START  */

footer.footer {
  position: relative;
  background-color: #1e1e1e;
  overflow: hidden;
  color: #fff;
}

footer.footer .paddsSec {
  padding: 80px 0 60px;
  text-align: center;
}

.footer.footer .Colcenter.paddsSec .ftLogo {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0px auto;
  align-items: center;
  justify-content: center;
}

.footer.footer .Colcenter.paddsSec .ftLogo p {
  margin: 0px;
  opacity: 50%;
  font-weight: 400;
  font-family: "Roboto";
  font-size: 15px;
}

footer.footer .colLeft.paddsSec {
  padding-right: 80px;
  position: relative;
}

footer.footer h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 24px;
}

footer.footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  flex-direction: column;
  gap: 8px;
}

footer.footer ul li a {
  font-size: 13px;
  color: #fff;
}

footer.footer .colLeft.paddsSec ul li a {
  text-transform: uppercase;
  font-family: "Montserrat";
  line-height: 30px;
  font-size: 13px;
  opacity: 70%;
  font-weight: 500;
  transition: 0.4s;
  display: inline-block;
}

footer.footer .colLeft.paddsSec ul li a:hover {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
  transform: 0;
  contain-intrinsic-block-size: AUTO 100px;
}

footer.footer .colright.paddsSec {
  padding-left: 130px;
  text-align: left;
  position: relative;
}

footer.footer .colright.paddsSec ul {
  align-items: flex-start;
  gap: 20px;
}

footer.footer .colright.paddsSec ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer.footer .colright.paddsSec ul li a span {
  opacity: 70%;
  transition: 0.4s;
}

footer.footer .colright.paddsSec ul li a:hover span {
  opacity: 1;
}

footer.footer .colLeft.paddsSec:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  right: 18%;
  background: #fff;
  opacity: 24%;
  top: 0;
}

footer.footer .colright.paddsSec:before {
  width: 2px;
  position: absolute;
  content: "";
  height: 100%;
  left: 16%;
  background: #fff;
  opacity: 24%;
  top: 0;
}

/* ========= */

ul.social {
  display: flex;
  align-items: center;
  margin: 0px;
  gap: 10px;
}

ul.social li a i {
  width: 40px;
  height: 40px;
  border-radius: 45px;
  color: #a5a5a5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  transition: 0.9s;
  opacity: 1;
  border: 1px solid;
}

ul.social li a i:hover {
  opacity: 1;
}

footer .copyRght .paddsSec {
  padding: 20px 0 20px;
}

footer .copyRght .colright.paddsSec ul.social {
  flex-direction: row;
  justify-content: flex-start;
}

footer .copyRght .paddsSec .copy p {
  font-family: "Roboto";
  font-weight: 400;
  transition: 0.3s;
  opacity: 80%;
  font-size: 13px;
  margin: 0px;
  padding: 8px 0;
}

footer .copyRght .paddsSec .copy p a {
  color: #fff;
  transition: 0.4s;
}

footer .copyRght .paddsSec .copy p a:hover {
  text-decoration: underline;
}

footer .copyRght .paddsSec .copy p:hover {
  opacity: 1;
}

footer .copyRght .colright.paddsSec ul.social a {
  justify-content: flex-start;
  align-items: flex-start;
}

ul.social li a i:hover {
  background: #835037;
  color: #fff;
}

footer.footer .copyRght .row {
  align-items: center;
}

footer.footer .copyRght {
  border: 1px solid #545454;
}

section.happy:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 13%;
  bottom: 0;
  background: #1e1e1e;
  z-index: -1;
}

section.happy:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 13%;
  background: #835037;
  top: 0;
}

/* ================== */

/* Banner SLiders Button Counters */

section.services .svsSlides {
  padding-bottom: 100px;
}

.slide_counter {
  position: absolute;
  bottom: 70px;
  display: table;
  margin: 0px auto;
  right: 0;
  left: 0;
}

.slide_counter span.start_number {
  color: #111111c7;
}

.slide_counter span {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  font-family: "Montserrat";
  font-weight: 500;
}

.slide_counter span.current-number {
  font-size: 40px;
  line-height: 50px;
  width: 150px;
  display: inline-block;
  text-align: right;
  position: relative;
  color: #835037;
  top: 4px;
}

.slide_counter span.current-number:before {
  position: absolute;
  content: "";
  width: 82px;
  height: 1px;
  left: 0px;
  bottom: 21px;
  background: #000;
}

section.services button.slick-next.slick-arrow::before {
  display: none;
}

section.services button.slick-prev.slick-arrow::before {
  display: none;
}

section.services button.slick-prev.slick-arrow {
  width: 70px;
  height: 40px;
  left: 402px;
  top: 101%;
  background-image: url(../images/prev-arrow.png);
  background-size: 100% 100%;
  filter: brightness(0);
  transition: 0.7s;
}

section.services button.slick-next.slick-arrow {
  width: 70px;
  height: 40px;
  right: 400px;
  top: 100%;
  background-image: url(../images/next_arrow.png);
  background-size: 100% 100%;
  filter: brightness(0);
  transition: 0.7s;
}

section.services button.slick-prev.slick-arrow:hover {
  filter: unset;
}

section.services button.slick-next.slick-arrow:hover {
  filter: unset;
}

section.banner .banertxt h1 span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/baner-txt-shape.png);
  left: -10px;
  right: 0;
  bottom: -4px;
  filter: brightness(0) saturate(100%) invert(53%) sepia(82%) saturate(460%)
    hue-rotate(156deg) brightness(84%) contrast(90%);
}

input[type="date"] {
  appearance: none;
  -moz-appearance: textfield; /* removes spinner for number inputs */
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ========= */

div#input_3_7 {
  width: auto !important;
  height: auto !important;
  padding: 30px 0 !important;
}

/* ============================== */

/* New Faqs Start  */

.faqsSec .fqsWraper button.accordion-button {
  font-size: 20px;
  line-height: 30px;
  color: #000;
  text-transform: capitalize;
  font-weight: 500;
  padding: 26px 20px;
}

.faqsSec .fqsWraper .accordion-button:not(.collapsed) {
  color: #fff;
  background: #0031ff;
  padding: 24px 20px;
}

.faqsSec .fqsWraper .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faqsSec .fqsWraper .accordion-body {
  padding: 40px;
}

.faqsSec .fqsWraper .accordion-body p {
  margin: 0px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  opacity: 70%;
}

.accordion-button:focus {
  box-shadow: unset !important;
  outline: unset !important;
}

.faqsSec {
  position: relative;
  padding: 60px 0 20px;
  width: 80%;
  margin: 80px auto 0 auto;
}

.faqsSec .row {
  align-items: center;
}

.faqsSec .fqs-img {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 40px;
  padding-right: 24px;
  margin-left: 20px;
}

.faqsSec .fqs-img:before {
  position: absolute;
  content: "";
  width: 86%;
  height: 84%;
  left: 0;
  top: 0;
  background: #835037;
  border-radius: 22px;
}

.faqsSec .fqs-img img {
  position: relative;
  display: inline-block;
  border-radius: 22px;
  transition: 0.3s;
  height: 550px;
}

.faqsSec .fqs-txt {
  text-align: left;
}

.faqsSec .fqs-txt h2 {
  color: #000;
  line-height: 70px;
}

.faqsSec .fqs-txt p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  opacity: 80%;
}

.faqsSec .fqs-txt .accordion {
  margin-top: 20px;
}

.faqsSec .fqs-txt .accordion-button:not(.collapsed) {
  color: #fff;
  box-shadow: unset;
  background: #835037;
}

.faqsSec .fqs-txt button.accordion-button {
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 600;
  color: #000;
  border: 1px solid #d9d9d9;
  border-radius: 12px !important;
  padding: 14px 24px;
}

.faqsSec .fqs-txt .accordion-item {
  margin: 16px 0;
  border: 0px !important;
}

.accordion-button::after {
  width: 40px;
  height: 40px;
  background: #835037;
  border-radius: 10px;
  font-family: "FontAwesome 6 brands";
  content: "\2b";
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: 900;
  position: absolute;
  right: 8px;
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 10px;
  font-family: "FontAwesome 6 brands";
  content: "-";
  color: #835037;
  font-size: 55px;
  font-weight: 900;
  position: absolute;
  right: 8px;
  transition: 0.3s;
  display: inline-block;
  line-height: 30px;
}

/* ===================== */

/* ========================= */
/* ========================= */

/* INNER PAGES CSS START  */

section.innerPage {
  position: relative;
  margin-top: -90px;
}

section.innerPage .innerTxt {
  padding-left: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 0px 80px 0px 0px;
  margin-right: 30px;
  overflow: hidden;
  height: 100%;
  padding-top: 140px;
}

section.innerPage .innerImg {
  margin-left: 10px;
}

section.innerPage .innerpageWrap {
  position: relative;
  height: 100%;
}

section.innerPage .innerTxt h1 {
  display: inline-block;
  position: relative;
}

section.innerPage .innerTxt h1 span {
  padding: 10px;
  position: relative;
  display: inline-block;
  line-height: 80px;
  color: #000;
}

section.innerPage .innerTxt h1 span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/baner-txt-shape.png);
  left: -10px;
  right: 0;
  bottom: -4px;
  filter: brightness(0) saturate(100%) invert(53%) sepia(82%) saturate(460%)
    hue-rotate(156deg) brightness(84%) contrast(90%);
}

/* INNER PAGES CSS END */

section.mistion {
  background: #fbf6f0;
  padding: 80px 0;
}

section.mistion .row {
  align-items: center;
}

section.mistion .mis-img {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  padding-right: 20px;
}

section.mistion .mis-img img.img-fluid {
  display: inline-block;
  position: relative;
  height: 460px;
  border-radius: 20px;
  transition: 0.4s;
  width: 95%;
}

section.mistion .mis-img img.img-fluid:hover {
  filter: brightness(0.8);
  transform: scale(0.98);
}

section.mistion .mis-img:before {
  position: absolute;
  content: "";
  width: 85%;
  height: 84%;
  top: 0;
  background: #835037;
  border-radius: 22px;
  right: 0px;
}

section.mistion .mistxt {
  padding-top: 40px;
  padding-right: 30px;
}

section.mistion .mistxt h2 {
  color: #000;
  padding-bottom: 10px;
}

section.mistion .mistxt p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  opacity: 80%;
  color: #000;
}

section.innerPage .innerTxt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 86%;
  top: 90px;
  background: #fbf6f0;
  left: 0;
  border-radius: 0px 90px 0px 0px;
}

section.innerPage .innerTxt p {
  position: relative;
  width: 80%;
  color: #000;
  line-height: 24px;
}

section.get-an.inner_gtPage {
  padding: 0px;
  position: relative;
}

/* ================ */

/* contact us page st  */

.contcat-p .box {
  position: relative;
  text-align: center;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px;
  transition: 0.5s;
  margin: 0 10px;
  border-radius: 40px;
  color: #fff;
  border: 2px solid #835037;
}

.contcat-p .box h3 {
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  transition: 0.5s;
  color: #000;
}

.contcat-p .box p {
  margin: 0px;
  color: #636363;
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 400;
}

section.ctc-contactform {
  position: relative;
}

section.ctc-contactform h1.bold {
  text-align: center;
}

section.ctc-contactform form {
  padding: 20px 0px 0px 0px;
}

section.ctc-contactform form label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #5d5d5d;
  font-family: "Roboto";
  font-weight: 400;
}

section.ctc-contactform form input {
  width: 100%;
  border: 0px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0px 0px 1px 1px #44444445;
  border-radius: 9px;
  color: #000;
  font-family: "Roboto";
  font-weight: 400;
}

section.ctc-contactform form textarea#msg {
  width: 100%;
  padding: 24px 30px;
  margin-bottom: 24px;
  resize: unset;
  height: 250px;
  box-shadow: 0px 0px 1px 1px #4444444a;
  border: 0;
  border-radius: 10px;
}

section.ctc-contactform form .thembtn {
  display: table;
  margin: 0 auto;
}

section.contcat-p.all-section {
  padding-top: 100px;
  padding-bottom: 60px;
}

.contcat-p .box .box-text {
  margin-top: 10px;
}

section.ctc-contactform form .thembtn button.theme_btn {
  border: 0px;
  font-size: 14px;
  background: #54595f;
  line-height: 1.7;
}

section.contcat-p.section .headings p {
  opacity: 80%;
  line-height: 26px;
  margin-bottom: 50px;
}

.contcat-p .box:hover {
  transform: scale(0.98);
  filter: drop-shadow(2px 2px 86px #4444);
}

.contcat-p .box p a {
  transition: 0.9s;
  color: #636363;
}

section.contcat-p {
  padding: 100px 0px 80px;
}

.contact-h {
  margin-bottom: 50px;
}

.contact-h h2 {
  color: #000;
}

.contact-h p {
  opacity: 70%;
}

.contcat-p .box .box-img {
  display: inline-block;
  margin-bottom: 9px;
}

.box-img img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(82%) saturate(460%)
    hue-rotate(156deg) brightness(84%) contrast(90%);
}

.contcat-p .box h4 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-family: "Montserrat";
  font-weight: 600;
}

.contcat-p .box p a:hover {
  text-decoration: underline;
}

section.ctc-contactform .happyShape {
  padding-top: 20px;
  text-align: left;
}

.svs-shape:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20%;
  bottom: 0;
  left: 0;
  background: #1e1e1e;
}

/* Contact Us page End  */

/*service start*/

section.inner-service {
  padding: 80px 0;
  position: relative;
}

.inner-service-img img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border: 1px solid #835037;
  padding: 15px;
  border-radius: 45px;
  position: relative;
}

.service-img-pos img {
  object-position: right;
}

.inner-service-img {
  position: relative;
}

section.inner-service .row {
  position: relative;
  padding-bottom: 50px;
}

section.inner-service .row:before {
  content: "";
  position: absolute;
  top: 40%;
  left: -30%;
  width: 35%;
  height: 20%;
  z-index: -1;
  background: #835037;
}

.inner-service-text h5 {
  color: #ff7e25;
  font-size: 30px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.inner-service-text h4 {
  font-size: 50px;
  color: #000;
  line-height: 55px;
  margin-bottom: 10px;
}

.inner-service-text p {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  opacity: 80%;
  color: #000;
  line-height: 30px;
}

.inner-service-text ul {
  margin-bottom: 20px;
  margin-top: 20px;
}

.inner-service-text ul li {
  line-height: 40px;
  color: #000000db;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: "Roboto";
}

.inner-service-text ul li img {
  margin-right: 15px;
  filter: brightness(0) saturate(100%) invert(53%) sepia(82%) saturate(460%)
    hue-rotate(156deg) brightness(84%) contrast(90%);
}

.row.d-flex.right-img:before {
  right: -30%;
  left: inherit;
}

section.inner-service .row {
  align-items: center;
}

.inner-service-text.new-services {
  padding-left: 14px;
  padding-right: 0px;
}

.inner-service-text {
  padding-right: 14px;
}

section.inner-service .insWrap {
  width: 90%;
  margin: 0px auto;
}

section.scheduleInner.svs-shape {
  position: relative;
}

section.scheduleInner.svs-shape .inner-sched-img {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px;
}

section.scheduleInner.svs-shape .inner-sched-img img {
  width: 99%;
  position: relative;
}

section.scheduleInner.svs-shape .inner-sched-img:before {
  position: absolute;
  content: "";
  content: "";
  width: 86%;
  height: 100%;
  left: 0;
  top: 0;
  background: #835037;
  border-radius: 22px;
}

section.scheduleInner .inner-service-text.new-services {
  text-align: left;
  margin-top: 40px;
}

section.scheduleInner .inner-service-text ul {
  column-count: 2;
}

/*service end*/
section.inner-service .happyShape {
  text-align: unset;
}

.menuSec ul li.active a {
  background: #835037;
  color: #fff;
  font-weight: 700;
}

.schedule-bodypage section.work:before {
  border-radius: 0px;
  height: 100%;
}

section.banner .banertxt h1 span {
  color: #835037;
}

.aboutWarp::before {
  content: "";
  position: absolute;
  top: -13%;
  left: -20%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}
.aboutWarp::after {
  content: "";
  position: absolute;
  top: -13%;
  right: -20%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}

.aboutWarp {
  position: relative;
  z-index: 1;
}

.workWarpBg::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -24%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}
.workWarpBg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -24%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}

.workWarpBg {
  position: relative;
  z-index: 1;
}

.happyBgWrap {
  position: relative;
  z-index: 1;
}

.happyBgWrap .happyShape:before {
  content: "";
  position: absolute;
  top: 0;
  left: -23%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}
.happyBgWrap .happyShape:after {
  content: "";
  position: absolute;
  top: 0;
  right: -23%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}

.serviceBg .happyShape:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}
.serviceBg .happyShape:after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 97%;
  background-image: url(https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png);
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
  right: -16%;
}

.serviceBg {
  position: relative;
  z-index: 1;
}
.contactBg .happyShape:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  background-image: url("https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png");
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}

.contactBg {
  position: relative;
  z-index: 1;
}

.bookBg .happyShape:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  background-image: url("https://cmscustom-staginglink1.com/mitzi-burton/wp/wp-content/uploads/2025/06/20250611194217_0-ChatGPT-Image-Jun-12-2025-12_40_47-AM-1.png");
  background-size: contain;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  background-repeat: no-repeat;
}

.bookBg {
  position: relative;
  z-index: 1;
}

.menuSec img {
  margin: 0;
  max-width: 100%;
  height: 100%;
}

section.services .card .card-text h4 span {
  position: relative;
  color: #fff;
  font-size: 17px;
}

.box-img img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(9%) saturate(2896%)
    hue-rotate(335deg) brightness(107%) contrast(86%) !important;
}

.ft-log {
  width: 53%;
}

.error404 h1 {
  font-family: "Jost", Sans-Serif;
  font-size: 45px;
  line-height: 75px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.error404 .page-content {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 83px;
}

section.work {
  position: relative;
  background: #fbf6f0;
  padding: 0px;
}

/*===============================================*/

section.happy .box::-webkit-scrollbar {
  width: 2px; /* scrollbar width */
}

section.happy .box::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

section.happy .box::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}

/*===============================================*/

/* Schedul page  */

section.innerPage.schedule {
  margin-top: 0px;
}

section.innerPage.schedule .innerTxt:before {
  height: 100%;
  top: 0;
  border-radius: 0px 10px 0px 0px;
}

section.innerPage.schedule .innerImg {
  overflow: hidden;
  border-radius: 20px;
}

section.innerPage.schedule .innerImg img.img-fluid.innerPg_img {
  height: 400px;
  object-fit: cover;
  transform: scale(1.1);
  border-radius: 60px;
}

section.innerPage.schedule .innerTxt {
  height: 100%;
  padding: 10px 20px 0px 90px;
  border-radius: 0px 30px 0px 0px;
}

/* Schedul page  */

@media (max-width: 1600px) {
  section.work {
    overflow: hidden;
  }

  section.happy {
    overflow: hidden;
  }

  .faqsSec .fqs-img img {
    height: 440px;
  }
}

@media (max-width: 1440px) {
  section.banner .last_img_sc img.img-fluid {
    height: 810px;
  }

  section.banner .banertxt {
    padding-left: 60px;
    padding-top: 180px;
  }

  section.banner .banertxt h1 {
    font-size: 83px;
    line-height: 82px;
  }

  h2 {
    font-size: 45px;
  }

  section.get-an .heading p {
    width: auto;
  }
}

@media (max-width: 1366px) {
  section.banner .last_img_sc img.img-fluid {
    height: 740px;
    object-fit: cover;
    object-position: top;
  }

  section.banner .last_img_sc {
    background-size: 120% 133%;
  }

  section.banner .banertxt {
    padding-left: 60px;
    padding-top: 140px;
    height: 810px;
  }

  section.about .ab-text p {
    line-height: 20px;
  }

  section.about .ab-text {
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 30px;
  }

  section.about .colLeft:before {
    width: 30px;
  }

  section.about .mission .msn-heading h2 {
    font-size: 50px;
    line-height: 60px;
  }

  section.services .card .card-img img {
    height: 260px;
  }

  section.services button.slick-next.slick-arrow {
    right: 300px;
  }

  section.services button.slick-prev.slick-arrow {
    left: 300px;
  }

  .wrokWarp .last_img_sc img.img-fluid {
    height: 460px;
  }

  .wrokWarp .card {
    padding: 80px 35px;
  }

  .wrokWarp .card h3 {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 10px;
  }

  .wrokWarp .card .card-header p {
    font-size: 16px;
    line-height: 30px;
  }

  .wrokWarp {
    padding: 60px 80px;
  }

  section.work.wow.fadeInRight {
    padding-top: 100px;
  }

  .faqsSec .fqs-txt h2 {
    line-height: 50px;
  }

  .faqsSec .fqs-txt p br {
    display: none;
  }

  .faqsSec .fqs-img {
    padding-right: 0px;
  }

  .faqsSec .fqs-img img {
    height: 360px;
  }

  footer.footer .paddsSec {
    padding: 60px 0 40px;
  }

  section.mistion .mis-img img.img-fluid {
    height: 390px;
  }

  .inner-service-img img {
    height: 460px;
  }
}

@media (max-width: 1024px) {
  .menuSec {
    padding: 10px 0;
    border-radius: 0px 0px 40px 40px;
  }

  .menuSec ul li a {
    font-size: 11px;
    line-height: 18px;
  }

  .menuSec ul {
    gap: 5px;
  }

  section.banner .banertxt {
    padding-left: 30px;
    padding-top: 80px;
    height: 660px;
    border-radius: 0px;
  }

  section.banner .banertxt h1 {
    font-size: 55px;
    line-height: 45px;
  }

  section.banner .banertxt h1 span {
    padding: 10px;
    line-height: 30px;
  }

  .headphone div img.img-fluid {
    height: 40px;
  }

  .headphone .headText a {
    font-size: 18px;
    display: block;
  }

  section.banner .banertxt p {
    width: auto;
    margin: 0px;
  }

  .p-btn span {
    font-size: 10px;
  }

  .banegrup {
    gap: 20px;
    margin-top: 30px;
  }

  section.banner .last_img_sc img.img-fluid {
    height: 600px;
  }

  section.banner .last_img_sc {
    background-size: cover;
    background-position: 110% 90%;
  }

  section.about .mission .msn-heading h2 {
    font-size: 40px;
    line-height: 50px;
  }

  section.services .card .card-text {
    padding: 40px 10px 10px;
  }

  section.services button.slick-next.slick-arrow {
    right: 220px;
  }

  section.services button.slick-prev.slick-arrow {
    left: 230px;
  }

  .wrokWarp .card h3 {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 10px;
  }

  .wrokWarp .card .card-header p {
    font-size: 13px;
    line-height: 24px;
  }

  .wrokWarp .last_img_sc img.img-fluid {
    height: 410px;
  }

  .wrokWarp {
    padding: 40px 40px;
  }

  section.work.wow.fadeInRight {
    padding-top: 50px;
  }

  section.miles .miles-bx .text {
    padding: 0px;
  }

  section.miles .miles-bx .text h5 {
    font-size: 18px;
  }

  section.miles .miles-bx .text p {
    font-size: 12px;
    line-height: 20px;
  }

  .happyShape {
    padding: 50px 0;
    border-radius: 40px;
  }

  section.happy .box p {
    font-size: 11px;
    line-height: 17px;
  }

  .faqsSec {
    width: auto;
  }

  .faqsSec .fqs-img img {
    height: 420px;
  }

  footer.footer .colright.paddsSec {
    padding-left: 90px;
  }

  footer.footer .paddsSec {
    padding: 30px 0 20px;
  }

  .footer.footer .Colcenter.paddsSec .ftLogo {
    gap: 10px;
  }

  footer.footer ul {
    gap: 5px;
  }

  footer .copyRght .colright.paddsSec ul.social {
    gap: 8px;
  }

  section.banner {
    overflow: hidden;
  }

  section.about .ab-text h2 {
    font-size: 35px;
    line-height: 44px;
  }

  section.about .ab-text p {
    font-size: 11px;
    line-height: 15px;
  }

  section.about .ab-img img {
    height: 460px;
  }

  section.about .mission .msn-heading h6 {
    font-size: 14px;
    font-weight: 400;
  }

  section.about .aboutWarp {
    padding: 50px 0;
    border-radius: 0px 0px 40px 40px;
  }

  section.services {
    padding: 60px 0;
  }

  section.services .card .card-img img {
    height: 230px;
    object-fit: cover;
  }

  section.services .card .card-text h4 {
    font-size: 20px;
    line-height: 25px;
    height: 42px;
    top: -19px;
  }

  section.services .card .card-text p {
    font-size: 11px;
    line-height: 18px;
  }

  .p-btn img {
    width: 30px;
  }

  .p-btn {
    height: 46px;
  }

  section.services .svsSlides {
    padding-bottom: 60px;
  }

  .slide_counter {
    bottom: 30px;
  }

  section.get-an .formWraper {
    width: auto;
    padding: 30px;
    border-radius: 20px;
  }
  section.innerPage {
    margin-top: -60px;
  }

  section.innerPage .innerTxt {
    padding: 110px 20px 30px 20px;
    text-align: center;
  }

  section.innerPage .innerTxt h1 {
    font-size: 60px;
    line-height: 60px;
    text-align: left;
    padding-left: 10px;
  }

  section.innerPage .innerTxt p {
    width: 90%;
    font-size: 13px;
    line-height: 24px;
  }
  .inner-service-img img {
    height: 400px;
  }

  .inner-service-text h4 {
    font-size: 35px;
    line-height: 40px;
  }

  .inner-service-text p {
    font-size: 13px;
    line-height: 25px;
  }

  section.innerPage.schedule .innerImg img.img-fluid.innerPg_img {
    height: 300px;
  }
}

@media (max-width: 840px) {
  .menuSec ul li a {
    padding: 4px 4px;
    font-size: 11px;
  }

  .menuSec ul {
    gap: 6px;
    margin-right: 0px;
  }

  .header-datebtn a.p-btn {
    gap: 6px;
    font-size: 12px;
    padding: 5px 6px 5px 12px;
  }

  .header-datebtn a.p-btn span {
    font-size: 12px;
  }

  .menuSec .container {
    max-width: 100%;
  }

  section.banner .banertxt {
    padding: 40px 10px;
    border-radius: 0px 50px 0px 0px;
    height: 100%;
    padding-left: 30px;
  }

  section.banner .banertxt h1 {
    font-size: 35px;
    line-height: 32px;
    margin-bottom: 14px;
  }

  section.banner .banertxt .banegrup {
    gap: 8px;
    margin-top: 10px;
  }

  section.banner .banertxt .banegrup .headphone .headText a {
    font-size: 17px;
  }

  section.banner .banertxt .banegrup .siteBtn a.p-btn {
    gap: 5px;
    font-size: 12px;
    padding: 5px 7px 5px 10px;
  }

  section.banner .banertxt .banegrup .siteBtn a.p-btn span {
    font-size: 12px;
  }
  .growth .box h4 {
    font-size: 20px;
    line-height: 18px;
  }

  section.banner .last_img_sc img.img-fluid {
    height: 700px;
  }

  section.about .ab-text {
    padding-left: 0;
    padding-right: 14px;
  }

  section.about .ab-text h2 {
    font-size: 28px;
    line-height: 29px;
  }

  section.about .mission .msn-heading h2 {
    font-size: 26px;
    line-height: 32px;
  }

  section.about .mission .msn-text {
    padding-right: 0px;
  }
  section.services button.slick-prev.slick-arrow {
    left: 130px;
    top: 101%;
  }

  section.services button.slick-next.slick-arrow {
    right: 140px;
  }
  section.services button.slick-prev.slick-arrow {
    left: 130px;
    top: 101%;
  }

  section.services button.slick-next.slick-arrow {
    right: 140px;
  }

  section.work .wrokWarp .card {
    padding: 30px 23px 30px;
    border-radius: 60px 20px 20px 20px;
  }

  section.work .wrokWarp .card h3 {
    font-size: 22px;
    line-height: 26px;
  }

  .wrokWarp .last_img_sc img.img-fluid {
    height: 350px;
    object-fit: cover;
  }

  .workWarpBg::after {
    right: 4%;
  }

  section.get-an p {
    width: 100%;
  }

  section.get-an .formWraper {
    margin-bottom: 0px;
  }

  section.miles .miles-bx {
    gap: 10px;
  }

  section.miles .miles-bx .shape {
    width: 200px;
    height: 70px;
  }

  section.miles .miles-bx .shape h3 {
    font-size: 20px;
    line-height: 35px;
  }

  section.miles .miles-bx .text {
    padding-right: 0;
  }

  section.miles .miles-bx .text h5 {
    font-size: 14px;
    line-height: 13px;
  }
  
  section.happy button.slick-prev.slick-arrow {
    /*left: -6%;*/
    display:none !important;
  }

  section.happy button.slick-next.slick-arrow {
    /*right: -3%;*/
  display:none !important;
  }
  .happyBgWrap .happyShape:after {
    right: 2%;
  }

  .faqsSec {
    width: 100%;
  }

  .faqsSec .fqs-img {
    padding-right: 0;
    margin-left: 0;
  }

  .faqsSec .fqs-txt h2 {
    font-size: 35px;
    line-height: 41px;
  }

  footer.footer .colright.paddsSec {
    padding-left: 60px;
  }
  .faqsSec .fqs-txt button.accordion-button {
    padding: 14px 24px;
    font-size: 13px;
  }
  section.innerPage {
    position: relative;
    margin-top: -40px;
  }

  section.innerPage .innerTxt {
    padding-left: 40px;
    padding-top: 80px;
    margin-right: 0px;
  }

  section.mistion .mistxt h2 {
    font-size: 40px;
    line-height: 50px;
  }

  section.mistion {
    padding: 30px 0;
  }
  .inner-service-text {
    margin-bottom: 30px;
    margin-top: 20px;
  }
  section.innerPage .innerTxt h1 {
    font-size: 55px;
  }
  .contcat-p .box {
    margin: 0 0;
    padding: 24px 0;
  }

  section.banner .last_img_sc {
    background: unset;
    padding: 0px;
    height: 100%;
  }

  section.banner .last_img_sc img.img-fluid {
    opacity: 1;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }

  section.banner .colright {
    margin: 0;
  }

  section.banner .banertxt p {
    font-size: 11px;
    line-height: 18px;
  }

  .growth {
    position: unset;
    padding: 24px 0;
    border-radius: 30px 0px 0px 0px;
  }

  section.about .ab-img img {
    height: 340px;
  }

  section.about .mission .msn-heading {
    padding: 40px 10px 40px 10px;
    border-radius: 0px 10px 20px 10px;
  }

  section.about .mission .msn-heading h6 {
    font-size: 11px;
    line-height: 21px;
  }

  .heading p {
    width: auto;
  }

  .wrokWarp .card .card-header p {
    font-size: 12px;
    line-height: 19px;
  }

  .wrokWarp .colright {
    padding-right: 12px;
  }

  .wrokWarp .last_img_sc {
    padding: 0;
  }

  .wrokWarp .last_img_sc img.img-fluid {
    height: 310px;
  }

  section.get-an {
    padding: 50px 0;
  }

  .faqsSec {
    padding-top: 0;
    margin-top: 50px;
  }

  .faqsSec .fqs-txt p {
    font-size: 12px;
    line-height: 20px;
  }

  .accordion-button:not(.collapsed)::after {
    width: 24px;
    height: 24px;
    font-size: 35px;
    border: 0px !important;
    line-height: 18px;
  }

  .accordion-button::after {
    width: 25px;
    height: 25px;
    font-size: 26px;
  }

  .faqsSec .fqs-txt button.accordion-button {
    line-height: 20px;
    padding: 10px 40px 10px 17px;
  }

  .faqsSec .fqs-txt p {
    margin: 0px;
  }

  .faqsSec .accordion-body {
    padding: 10px 10px 0;
  }

  .faqsSec .fqs-img img {
    height: 320px;
  }

  footer.footer .colLeft.paddsSec {
    padding-right: 50px;
  }

  section.innerPage .innerTxt:before {
    top: 40px;
    border-radius: 0px 50px 0px 0px;
    height: 271px;
  }

  section.mistion .mistxt {
    padding: 0px;
  }

  section.mistion .mistxt p {
    font-size: 13px;
    line-height: 22px;
  }

  section.mistion .mis-img img.img-fluid {
    height: 300px;
    object-fit: cover;
  }

  section.inner-service {
    overflow: hidden;
    text-align: center;
  }

  .inner-service-img {
    width: 73%;
    margin: 0px auto;
  }

  section.inner-service .row:before {
    width: 85%;
  }

  .inner-service-img img {
    height: 530px;
  }
  section.contcat-p {
    padding: 40px 0px 60px;
  }

  .box-img img {
    width: 40px;
  }

  .contcat-p .box h4 {
    font-size: 16px;
    line-height: 23px;
  }

  .contcat-p .box {
    height: 230px;
    border-radius: 20px;
  }

  .contact-h {
    margin-bottom: 20px;
  }

  section.banner .row {
    align-items: center;
  }

    section.about .colLeft:before {
    width: 10px;
    top: -30px;
    }

  section.about .col-lg-5.col-md-5 {
    padding-right: 12px;
  }

  h3 {
    font-size: 35px;
    line-height: 40px;
  }

  section.innerPage.servicebanner.aboutBaner {
    margin-top: -54px;
  }

  section.innerPage.servicebanner.aboutBaner .innerTxt {
    padding: 70px 20px 30px 20px;
    border-radius: 0px 30px 0px 0px;
  }

  section.innerPage.servicebanner.aboutBaner .innerTxt::before {
    top: 60px;
  }
  section.inner-service .insWrap.bottomSpace {
    margin-bottom: 40px;
}
section.inner-service .insWrap.leftInsWrap .row::before {
    top: 34%;
}

section.inner-service .insWrap.rightInsWrap1a .row.d-flex.right-img:before {
  top: 46%;
}



}

@media (max-width: 768px) {
  section.happy button.slick-prev.slick-arrow {
    display: none;
  }

  section.happy button.slick-next.slick-arrow {
    display: none;
  }

  section.innerPage.schedule .innerImg img.img-fluid.innerPg_img {
    height: 250px;
  }
}

@media (max-width: 480px) {
     section.about .colLeft:before {
    display: none;
  }
  .menuSec img {
    width: 45%;
    margin: 0 auto !important;
    display: block;
  }

  header .header-datebtn {
    justify-content: center;
    margin-top: 10px;
  }
  section.banner .banertxt {
    padding-top: 40px;
    height: 430px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  section.banner .banertxt h1 {
    font-size: 50px;
    line-height: 40px;
  }

  .banegrup {
    gap: 12px;
  }

  .headphone .headText a {
    font-size: 17px;
  }

  .banegrup .p-btn span {
    font-size: 11px;
  }

  .banegrup .siteBtn a.p-btn {
    font-size: 12px;
    line-height: 20px;
    padding: 5px 6px 5px 7px;
    gap: 5px;
  }

  section.banner .coleft {
    padding: 0px 15px;
  }
  section.banner .last_img_sc {
    background-size: cover;
    object-fit: cover;
  }
  section.banner .colright {
    margin-top: -90px;
  }
  .growth {
    position: unset;
    border-radius: 0;
    padding-top: 32px;
  }
  section.banner .last_img_sc img.img-fluid {
    height: 400px;
  }
  .headphone div img.img-fluid {
    height: 40px;
  }
  .growth .box {
    margin-bottom: 40px;
  }

  .growth .box:before {
    width: 250px;
    height: 1px;
    right: 0;
    left: 0;
    top: -33px;
    margin: 0px auto;
    display: table;
  }

  .growth .row > div:last-of-type .box::before {
    display: block;
  }

  section.about .ab-img img {
    height: auto;
  }

  section.about .col-lg-5.col-md-5 {
    padding-right: 12px;
  }

  section.about .ab-text {
    margin-top: 30px;
    text-align: center;
  }

  section.about .ab-text h2 {
    font-size: 34px;
    line-height: 40px;
  }

  section.about .mission .msn-text {
    margin-bottom: 20px;
    text-align: center;
    padding: 0px 20px;
  }

  section.about .mission .msn-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .services h2 {
    font-size: 40px;
  }

  .services .heading p {
    width: 100%;
  }

  .wrokWarp {
    padding: 40px 10px;
  }

  .wrokWarp .last_img_sc img.img-fluid {
    height: auto;
  }

  section.services button.slick-prev.slick-arrow {
    left: 70px;
    top: 90%;
  }

  section.services button.slick-next.slick-arrow {
    right: 100px;
    top: 90%;
  }
  .work .wrokWarp h3 {
    font-size: 35px;
  }

  .work .wrokWarp .card {
    padding: 55px 45px;
  }
  section.get-an h2 {
    font-size: 50px;
  }

  section.get-an p {
    font-size: 12px;
    line-height: 22px;
  }

  section.get-an .formWraper {
    width: 100%;
    padding: 50px 20px;
    margin-bottom: 40px;
  }
  section.happy .box {
    padding: 50px 27px 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  section.happy button.slick-prev.slick-arrow {
    left: 33%;
    top: unset;
    bottom: 59px;
  }

  section.happy button.slick-next.slick-arrow {
    right: 38%;
    top: unset;
    bottom: 60px;
  }

  .faqsSec {
    width: 100%;
    margin-top: 0;
  }

  .faqsSec .fqs-img {
    padding-right: 0;
    margin-left: 0;
  }

  .faqsSec .fqs-txt h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .faqsSec .fqs-txt {
    margin-top: 20px;
  }

  .faqsSec .fqs-txt button.accordion-button {
    font-size: 13px;
    padding: 14px 24px;
  }

  footer.footer .colLeft.paddsSec {
    padding-right: 0;
    padding-bottom: 0;
  }

  footer.footer .colLeft.paddsSec:before {
    display: none;
  }

  footer.footer .colright.paddsSec {
    padding-left: 0;
    text-align: center;
    padding-top: 0;
  }

  footer.footer .colright.paddsSec:before {
    display: none;
  }

  footer.footer .colright.paddsSec ul {
    justify-content: center;
    align-items: center;
  }

  footer .copyRght .colright.paddsSec ul.social {
    justify-content: center;
  }

  footer .copyRght .paddsSec {
    padding: 10px 0 10px;
  }

  .footer.footer .Colcenter.paddsSec .ftLogo {
    padding: 0 10px;
  }

  .workWarpBg::after {
    right: 6%;
    top: -10%;
  }
  .happyBgWrap .happyShape:after {
    top: -30px;
    right: 7%;
  }
  html,
  body {
    overflow-x: hidden;
  }

  section.mistion .mis-img img.img-fluid {
    object-fit: cover;
    height: 300px;
  }
  .happy .heading p {
    width: 100%;
  }
  .inner-service-img img {
    height: 500px;
  }

  .inner-service-text h4 {
    font-size: 32px;
  }

  .inner-service-text {
    margin-bottom: 30px;
  }
  section.innerPage .innerTxt h1 {
    font-size: 65px;
  }

  .contcat-p .box {
    margin-bottom: 20px;
  }

  .happyShape .hf-fields-wrap {
    padding: 0 20px;
  }

  .happyShape .contact-h {
    margin-bottom: 10px;
  }
  .contcat-p h2 {
    font-size: 45px;
  }

  .ctc-contactform h2 {
    font-size: 45px;
  }

  .banegrup .siteBtn a.p-btn {
    padding: 6px 11px 9px 40px;
    font-size: 13px;
    width: auto;
  }

  section.banner .banertxt .banegrup {
    gap: 30px;
    margin-top: 20px;
  }

  section.about .colLeft:hover:before {
    display: none;
  }

  section.about .col-lg-7.col-md-7 {
    padding-right: 12px;
  }

  section.about .mission .msn-heading {
    border-radius: 0px;
    padding: 32px 24px;
  }

  section.services button.slick-prev.slick-arrow {
    display: none !important;
  }

  section.services button.slick-next.slick-arrow {
    display: none !important;
  }

  .wrokWarp {
    border-radius: 30px;
    padding: 20px 20px;
  }

  section.work:before {
    border-radius: 30px;
  }

  section.work .wrokWarp .card {
    margin-bottom: 40px;
  }

  section.get-an h2 {
    font-size: 30px;
    line-height: 35px;
  }

  section.miles .miles-bx {
    margin: 16px 0px;
    gap: 20px;
  }

  section.miles .miles-bx .text h5 {
    font-size: 20px;
    line-height: 30px;
  }

  section.miles .miles-bx .text p {
    font-size: 14px;
    line-height: 25px;
  }

  section.miles .miles-bx .shape {
    width: 190px;
    height: 150px;
  }

  .happyBgWrap .happyShape:before {
    border-radius: 20px;
  }

  .happyShape {
    border-radius: 30px;
  }

  .clientsSlider {
    padding-bottom: 100px;
  }

  .faqsSec .fqs-img img {
    height: 400px;
  }

  section.innerPage {
    overflow: hidden;
    margin-top: 0px;
    background: #fbf6f0;
  }

  section.innerPage .innerTxt:before {
    height: 100%;
    top: 0;
    width: 100%;
    border: 0px;
  }

  section.about .ab-text p {
    padding: 0px;
  }

  section.about .mission .msn-text p {
    padding: 0px;
  }

  .inner-service-img {
    width: auto;
  }

  section.inner-service .row:before {
    display: none;
  }

  .inner-service-img {
    margin: 30px 0px;
  }

  section.innerPage .innerImg img {
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
  }

  section.scheduleInner.svs-shape .inner-sched-img img {
    height: 230px;
    width: auto;
    object-fit: cover;
    border-radius: 20px;
  }

  section.scheduleInner.svs-shape .inner-sched-img {
    padding: 10px;
  }

  .inner-service-text ul li img {
    margin: 0px;
  }

  .inner-service-text ul li {
    line-height: 24px;
    margin: 20px 0px;
  }

  .inner-service-text ul li:first-child {
    margin-top: 0px;
  }

  .inner-service-text ul li img {
    width: 18px;
  }
  /* =============== */

  section.innerPage.servicebanner.aboutBaner .innerTxt .innerImg img {
    object-fit: cover;
  }

  section.innerPage.servicebanner.aboutBaner {
    margin: 0px;
  }

  section.innerPage.servicebanner.aboutBaner .innerTxt::before {
    top: 0;
    height: 100%;
  }

  section.innerPage.servicebanner.aboutBaner .innerTxt {
    text-align: center;
    padding: 60px 0px 0;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  section.innerPage.servicebanner.aboutBaner {
    background: #fbf6f0;
  }

  section.innerPage .innerTxt {
    padding: 70px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  section.innerPage.schedule .innerImg img.img-fluid.innerPg_img {
    height: 270px;
    border-radius: 20px;
    object-position: left;
  }

  section.innerPage.schedule .innerImg {
    border-radius: 10px;
  }

  section.innerPage.schedule .innerTxt {
    padding: 60px 10px 50px;
  }
}


@media (max-width: 380px) {
  section.banner .banertxt h1 {
    font-size: 33px;
    line-height: 42px;
  }

  section.banner .banertxt p {
    font-size: 12px;
    line-height: 22px;
  }

  section.banner .banertxt {
    padding-top: 40px;
    padding-left: 20px;
  }

  section.banner .banertxt .banegrup {
    gap: 20px;
  }

  section.banner .banertxt .banegrup .siteBtn a.p-btn span {
    font-size: 10px;
  }

  section.banner .banertxt .banegrup .siteBtn a.p-btn {
    gap: 8px;
    font-size: 12px;
    padding: 2px 7px 2px 10px;
    height: 40px;
  }

  section.banner .banertxt .banegrup .headphone .headText a {
    font-size: 14px;
  }

  section.banner .last_img_sc img.img-fluid {
    height: 300px;
  }

  section.about .mission .msn-text {
    padding: 20px 0;
  }

  section.about .aboutWarp {
    border-radius: 0px 0px 20px 20px;
  }

  section.services {
    padding: 40px 0;
  }

  .heading {
    margin-bottom: 30px;
  }

  .services h2 {
    font-size: 30px;
  }

  .wrokWarp {
    border-radius: 20px;
    padding: 10px 10px;
  }

  section.work .wrokWarp .card {
    padding: 30px 43px 30px;
  }

  section.happy .box {
    padding: 30px 18px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 310px;
  }

  section.happy .item {
    padding: 10px 0;
  }

  .clientsSlider {
    padding-bottom: 50px;
  }

  .faqsSec .fqs-img img {
    height: auto;
  }

  .faqsSec .fqs-img {
    padding: 18px;
  }
}
