html {
  scroll-behavior: smooth;

}

* {
  font-family: "Outfit";
  text-decoration: none;
}
:root {
  --bs-yellow-off: #fdbe33;
  --bs-blue-dark: #030f27;
  --bs-yellow-light: #fee6b1;
  --bs-yellow-off: #fdbe33;
  --bs-gray-light: #eeeeee;
}

a {
  text-decoration: none;
}
.text-WH {
  color: #fff;
}
.text-dark-blue {
  color: var(--bs-blue-dark);
}
.text-yellow {
  color: var(--bs-yellow-off);
}
.text-hover-yellow:hover {
  color: var(--bs-yellow-off);
  transition: all 0.4s ease;
}

.popup-btn {
  border: 2px solid var(--bs-yellow-off);
}
.popup-btn:hover {
  background: var(--bs-yellow-off);
  color: var(--bs-blue-dark);
}
.popup-btn:hover i {
  color: var(--bs-blue-dark);
}

.bg-dark-blue {
  background: var(--bs-blue-dark);
}
.bg-yellow {
  background: var(--bs-yellow-off);
}
.bg-dark-blue {
  background: var(--bs-blue-dark);
}

.transition {
  transition: all 0.4s ease;
}
button:focus {
  box-shadow: none !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Desk-view-Header start */

/* header {border-bottom: 2px solid #ff006a;} */
.header {
  position: fixed;
  z-index: 100;
  /* background: #fff; */
}
.action-bar-section {
  background: var(--bs-blue-dark);
  padding: 10px 0;
}
.navigation.is-sticky .top-bar {
  display: none !important;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation.is-sticky {
  position: fixed;
  background: #fff;
  top: 0;
  animation: slideDown 0.4s ease;
  /* background:#000; */
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar {
  height: 80px;
  position: relative;
  top: 0px;
  background: #fff;
  padding: 0 10px;
}
.navbar a.web-nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-nav-links li {
  position: relative;
  padding: 0 10px;
}
.web-nav-links .nav-link {
  font-size: 16px;
  color: var(--bs-blue-dark);
  margin: 0 10px;
  font-weight: 400;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  padding: 5px 0 !important;
  text-transform: uppercase;
}
.web-nav-links .nav-link::after {
  position: absolute;
  content: "";
  width: 1%;
  height: 1px;
  background: var(--bs-yellow-off);
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
}
.web-nav-links .nav-link:hover::after {
  background: var(--bs-yellow-off);
  width: 100%;
  transition: all 0.4s ease;
}

.web-nav-links .nav-link:hover {
  color: var(--bs-yellow-off);
  transition: all 0.4s ease;
}
.web-nav-links .nav-link.active::after {
  background: var(--bs-yellow-off);
  width: 100%;
  transition: all 0.4s ease;
}
.web-nav-links .nav-link.active {
  color: var(--bs-yellow-off);
}

/* Desk-view-Header End */

/* Mobile-view-Header start */

.web-nav-toggle {
  display: none;
  background: #fff;
}
.toggleBtnClose:hover i {
  color: var(--bs-yellow-off) !important;
}
.mobile-nav-sidebar {
  display: none;
  position: fixed;
  z-index: 110;
  width: 100%;
  height: 100vh;
  /* background: #08080869; */
  /* padding: 10px; */
  right: -100%;
  top: 0;
  transition: all 0.4s ease;
}
.mobile-nav-sidebar a.nav-link.active {
  color: var(--bs-yellow-off) !important;
}
.mobile-menu-body {
  height: 90%;
  overflow-y: auto;
  overflow-x: hidden;
}
.cover-mobile-menu {
  width: 40%;
  background: #ffffff;
  height: 100%;
  padding: 20px;
  transition: all 0.4s ease;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 500;
}
.mobile-nav-sidebar.showMenu {
  right: 0;
  transition: all 0.4s ease;
}
.mobile-menu-body ul {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-top: 20px;
}

.mobile-nav-sidebar .action-bar a {
  font-size: 21px;
  margin: 10px 0;
}
.mobile-nav-sidebar .nav-media {
  margin-top: 30px;
}
.mobile-nav-sidebar .nav-media a {
  font-size: 30px;
}
.mobile-nav-sidebar a.nav-link {
  font-size: 22px;
  line-height: 25px;
  text-transform: uppercase;
}
.bg-shadow-cover.showSahdow {
  opacity: 1;
  z-index: 101;
  transition: all 0.2s ease;
}
.bg-shadow-cover {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: #00000073;
  z-index: -5;
  opacity: 0;
  transition: all 0.2s ease;
}
/* Mobile-view-Header End */

Footer {
  /* top: 110px; */
  position: relative;
  background: var(--bs-blue-dark);
  color: #fff;
  z-index: 0;
  padding: 100px 0 0px;
}
Footer li {
  display: flex;
}
Footer li::before {
  position: relative;
  content: "\F285";
  left: 0;
  top: 0;
  font-family: "bootstrap-icons";
  font-size: 12px;
  font-weight: bold;
}
Footer a {
  color: #fff;
  font-size: 14px;
  display: flex;
  margin-bottom: 10px;
}

Footer h5 {
  color: var(--bs-yellow-off);
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}
Footer h5::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 25%;
  background: var(--bs-yellow-off);
  left: 0;
  bottom: 0;
}
Footer .footer-address a {
  margin-bottom: 0;
}

.footer-address a {
  color: #ffffff;
}
.privacy-div {
  border-top: 1px solid #ffffff18;
  border-bottom: 1px solid #ffffff18;
  padding: 10px 0;
}

.appointment-model {
  max-width: 700px;
}
.appointment-model .modal-content {
  width: 100%;
}

main {
  overflow: hidden;
}
.heading h2 {
  font-size: 14px;
  display: inline-block;
  border-bottom: 2px solid var(--bs-yellow-off);
  padding: 5px 0;
}
.heading h3 {
  font-size: 45px;
  margin-bottom: 30px;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.hero-section {
  height: 100vh;
  max-width: 100%;
  background-image: url(../img/banner-top.jpg);
  position: relative;
  z-index: 0;
}
.hero-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #00000044;
  z-index: -1;
}
.hero-section a {
  margin-top: 100px;
  display: inline-block;
}

.google-review {
  position: relative;
  top: -50px;
}
.google-content {
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--bs-yellow-off);
  background: #fff;
  position: relative !important;
  justify-content:space-around;
}
.google-content:before {
    position: absolute;
    content: '';
    left: 50%;
	top:50%;
    right: 50%;
    width: 2px;
    height: 74%;
    background: var(--bs-yellow-off);
    transform: translate(-50%, -50%);
}
.img-box-section {
  padding: 50px 0 100px;
  row-gap: 50px;
}
.img-box-section .img-box {
  width: 100px;
  height: 100px;
  background: var(--bs-yellow-off);
  border: 2px solid var(--bs-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.img-box-section p {
  font-size: 14px;
  word-spacing: 2px;
  padding: 0 50px 0 0;
}

/* About Us Section Css Start  */
.about-us-section {
  padding: 0px 0 100px;
  background-image: url(../img/about-bg-04.jpg);
background-repeat:no-repeat;
}
.about-content {
  background: linear-gradient(180deg, #fdbe33, #fdbe33, #ffaf0000);
  padding: 50px 0;
  border-radius: 50px 50px 0 0;
  position: relative;
  top: -100px;
	background-repeat:no-repeat;
}
/* Services Section Css Start  */
.services-section {
  padding: 80px 0;
}
.services-section .img-box {
  background: var(--bs-yellow-light);
  border: none;
  box-shadow: 0px -3px 2px 0px var(--bs-yellow-off);
}
.services-section .img-box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.services-section p {
  padding: 0 20px;
  margin-bottom: auto;
}
.mobile-view {
  display: none;
}
.moving-area br {
  display: none;
}
a.services-view-more{
  position: relative;
  overflow: hidden;
  z-index: 0;
}
a.services-view-more:not(.collapsed){
 border: none;
  background: var(--bs-yellow-off);
}
a.services-view-more:not(.collapsed)::before{
  content: 'View Less';
  position: absolute;
  background: var(--bs-yellow-off);
  color: var(--bs-blue-dark);
  width: 100%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50px;
  border: 2px solid var(--bs-yellow-off);
}
/* Work Section Css Start  */
.bg-graidient {
  background: linear-gradient(90deg, #fdbd3300, #fdbe33, #fdbd3300);
  padding: 10px 0;
}
.work-section {
  padding: 80px 0 0;
}
.work-process-img {
  width: 100%;
  padding-top: 50px;
}
.work-process-img img {
  width: 100%;
}
.mobile-img {
  display: none;
}
/* CTA Section Css Start  */
.cta-section {
  padding: 30px 0;
  background: var(--bs-yellow-off);
}
.cta-section .popup-btn:hover {
  background: var(--bs-yellow-off);
  color: var(--bs-blue-dark);
  border-color: var(--bs-blue-dark);
}
/* Why Choose Section Css Start  */
.why-choose-section {
  padding: 80px 0;
}

/* Area-Sectioon Css Start  */
.map-section {
  padding: 80px 0;
  background: var(--bs-blue-dark);
}
.area-list {
  display: flex;
  flex-wrap: wrap;
}
.area-list li {
  width: calc(25% - 10px);
  color: #fff;
}
/* FAQ Section Css Start  */
.faq-section {
  padding: 80px 0;
}
.faq-tabs {
  margin-top: 50px;
}
.faq-tabs > div:first-child {
  border-right: 1px solid var(--bs-yellow-off);
}
.faq-tabs .accordion-item {
  margin-bottom: 5px;
}
button.accordion-button:before {
  position: absolute;
  content: "\F4FE";
  top: 12px;
  right: 15px;
  font-family: "bootstrap-icons";
  color: var(--bs-yellow-off);
  font-size: 22px;
}
.accordion-button::after {
  display: none;
}
.accordion-button:not(.collapsed) {
  background: var(--bs-yellow-off);
}
.accordion-button:not(.collapsed)::before {
  color: var(--bs-blue-dark);
}
.faq-tabs-0005 .accordion-body{
  color: #797979;
}
/* Contact Us Section Css Start  */
.contact-section {
  padding: 80px 0;
  background: var(--bs-yellow-off);
}
.form-controler {
  margin-top: 30px;
  padding: 30px;
  border-radius: 30px;
  background: var(--bs-gray-light);
}
.form-controler input,
.form-controler textarea,
.form-controler select {
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: 2px solid #d3d2d2;
  border-radius: 50px;
}
.form-controler textarea {
  height: 100px;
  border-radius: 20px;
}
.tablet-form {
  display: none;
}
.contact-section .cta-section {
  padding: 30px;
}
.privacy-div li::before {
  display: none;
}
.cta-section button,
.cta-section a {
  margin: 5px;
}
.cta-button-col {
  text-align: end;
}


.bbb-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.bbb-img {
    height: 80px;
}
@media (max-width: 1225px) {
  .web-nav-links {
    width: 100% !important;
  }
  .navigation.is-sticky {
    /* background: #152938; */
    /* border-bottom: #C9A970 1px solid; */
  }
  .navigation.is-sticky .web-nav-links {
    /* background: #152938; */
    border-bottom: none;
    border-top: none;
  }
}

@media (max-width: 1370px), (max-width: 1025px) {
  header .top-bar {
    display: none !important;
  }
  .web-nav-logo-tab {
    display: block !important;
  }
  header .navbar {
    padding: 0 1px !important;
    /* background: #1529386e; */
  }
  .navbar a.web-nav-logo {
    margin-left: 0 !important ;
  }
  .web-nav-toggle {
    display: block;
    margin-left: 10px;
  }
  .mobile-nav-sidebar {
    display: block;
  }
  .web-nav-links {
    display: none !important;
  }
}
@media (max-width: 945px) {
}

@media (max-width: 885px), (max-width: 1200px) {
  .hero-section {
    height: 800px;
    padding-top: 50px;
  }
}
@media (max-width: 885px) {
  .desktop-form {
    display: none;
  }
  .tablet-form {
    display: block;
  }
  .img-box-section div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .img-box-section p {
    padding: 0;
  }
  .hero-section a {
    display: inline-block;
    margin-top: 50px;
  }
  /* About Us Section Css Start  */
  .about-us-section {
    padding: 0;
  }
  .about-content {
    padding: 70px;
    text-align: center;
  }
  .about-content-img {
    height: 450px;
    margin-top: 50px;
  }
  .about-content-img img {
    object-fit: cover;
    height: 100%;
  }
  /* Work Section Css Start  */
  .work-process-img {
    width: 100%;
    padding-top: 50px;
  }
  .work-process-img img {
    width: 100%;
  }
  /* CTA Section Css Start  */
  .cta-section button {
    width: fit-content;
    margin: 2px;
  }

  .form-controler {
    padding: 10px 10px 20px;
  }
  .cta-section button,
  .cta-section a {
    margin: 5px;
    margin-left: auto;
  }
  .cta-button-col {
    text-align: end;
  }
  /* Map Section Css Start  */

  .map-pin-area {
    margin-bottom: 50px;
  }
  Footer {
    padding: 80px 0 0;
  }
  header .nav-media {
    display: none !important;
  }
  .faq-tabs > div:first-child {
    border-right: 0px solid var(--bs-yellow-off);
  }
  .tablet-form {
    margin-top: 20px;
  }
}

@media (max-width: 650px) {
  .mobile-view {
    display: block;
  }
  .desktop-view{
    display: none;
  }
  .hero-section {
    background-image:linear-gradient(#0000002e, #00000091), url(../img/hero-bg-mobile.jpg);
  }
  .hero-section a {
    display: inline-block;
    margin-top: 200px;
  }
  .hero-section h1.display-2 {
    font-size: 33px;
  }
  .area-list {
    justify-content: center;
  }
  .header {
    padding: 0 10px;
  }
  .work-section,
  .why-choose-section {
    padding: 50px 0 0;
  }
  .contact-section {
    padding: 30px 0;
  }
  .work-process-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .work-process-img {
    width: 100%;
    padding-top: 50px;
    height: 800px;
  }
  .desktop-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }
  .hero-section {
    text-align: center;
  }
  .web-nav-toggle {
    margin-left: auto;
  }
  .heading h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  Footer h5 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }

  .hero-section {
    height: 700px;
  }

  .form-controler input,
  .form-controler textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 6px;
  }

  .copyright {
    font-size: 10px;
  }
  .google-content {
    padding: 10px;
	justify-content: space-between;
  }
  .google-content:before{
	 display:none;
   }
  .img-box-section div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
  }
  .about-us-section {
    padding: 10px;
  }
  .about-content {
    padding: 20px 10px;
  }
  .why-choose-section .img-box-section div,
  .services-section .img-box-section div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .services-section p {
    padding: 10px;
  }
  .map-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  .area-list li {
    width: calc(45% - 10px);
    color: #fff;
    /* text-align: center; */
  }
  .area-list li:nth-child(9n + 9) {
    margin-bottom: 15px;
  }
  .cover-mobile-menu {
    width: 100%;
  }
  .google-review {
    position: relative;
    top: -38px;
  }
  .moving-area br {
    display: block;
  }
  .cta-section button,
  .cta-section a {
    margin: 5px;
    margin-left: unset;
  }
  .cta-button-col {
    text-align: center;
  }
  .moving-area span {
    font-weight: normal;
  }
  .hero-section::before {
    display: none;
  }
  .bbb-img {
    height: 65px;
  }
  .google-text strong {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .hero-section h1.display-2 {
    font-size: 30px;
  }
  .hero-section {
    height: 610px;
  }
  .hero-section a {
    display: inline-block;
    margin-top: 150px;
  }
  .about-content {
    padding: 30px 0px;
    border-radius: 20px;
    text-align: center;
  }
  Footer {
    padding: 40px 0 0;
  }
  .form-controler {
    border-radius: 15px;
  }
  .form-controler textarea {
    height: 75px;
    border-radius: 10px;
  }
  .form-controler input,
  .form-controler textarea {
    width: 100%;
    padding: 5px 15px;
    margin-bottom: 6px;
  }
}
@media (max-width: 320px) {
  .cover-mobile-menu {
    padding: 5px 10px;
  }
  .mobile-nav-sidebar .nav-media {
    margin-top: 14px;
  }
  .mobile-nav-sidebar a.nav-link {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 5px 0;
  }
  .faq-tabs .accordion-button {
    padding: 10px 34px 10px 10px !important;
    font-size: 14px;
  }
  .popup-btn {
    border: 2px solid var(--bs-yellow-off);
    padding: 5px 17px !important;
  }
  .hero-section {
    height: 610px;
  }
  .hero-section a {
    display: inline-block;
    margin-top: 100px;
  }
  .google-img img {
    height: 100%;
  }

  .google-img {
    height: 30px;
    width: 30px;
  }
  .google-text strong {
    font-size: 12px;
  }
  .google-text li i {
    font-size: 14px;
    display: flex;
    padding: 0 1px;
  }
}


#about-us{
  scroll-margin-top: 160px;
}