* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 10px;
}

body {
  font-size: 16px;
}

.container {
  max-width: 120rem;
  margin: 0rem auto;
  padding: 0 2rem;
}

.sec-gap {
  margin-top: 8rem;
}

h1 {
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 5.5rem;
}

h2 {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 600;
}

h3 {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 600;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

p {
  font-size: 1.5rem;
}

.f-parimary {
  color: #AC0004;
}

.f-secondary {
  color: #FCB018;
}

.subheading {
  display: flex;
  align-items: self-end;
  gap: 1rem;
  font-weight: 500;
}

.card-wrap {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.card-wrap .box {
  background: #8C8D8A;
  border-radius: 2rem;
  flex-basis: calc(25% - 2rem);
}

.sec-bg1 {
  background: #FFF3F3;
  padding: 3rem 0;
}

.sec-bg2 {
  background: #FFECDC;
  padding: 3rem 0;
}

.top-bar {
  background: #3D3D3B;
  color: #fff;
  padding: 0.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
}
.top-bar .left-info {
  display: flex;
  gap: 2rem;
}
.top-bar .left-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.top-bar .left-info .info-item i {
  font-size: 1.8rem;
  color: #fff;
}
.top-bar .right-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-bar .right-info .auth-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.top-bar .right-info .auth-links a {
  color: #FCB018;
  text-decoration: none;
  font-weight: 500;
}
.top-bar .right-info .auth-links a:hover {
  text-decoration: underline;
}
.top-bar .right-info .auth-links span {
  color: #fff;
}
.top-bar .social-icons {
  display: flex;
  gap: 1rem;
}
.top-bar .social-icons a {
  width: 2.8rem;
  height: 2.8rem;
  border: 0.1rem solid #8C8D8A;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.5s all ease;
}
.top-bar .social-icons a i {
  font-size: 1.3rem;
  color: #fff;
}
.top-bar .social-icons a:hover {
  background: #AC0004;
  border-color: #AC0004;
  transition: 0.5s all ease;
}

.sticky .main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: 0.5s ease;
  animation: headerAnimation 1s forwards;
}

.main-header {
  padding: 1.5rem 4rem;
  background: #fff;
  box-shadow: 0 0.1rem 1rem #8C8D8A;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desktop-nav .logo img {
  width: 14rem;
  height: auto;
}
.desktop-nav .navbar .menu {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}
.desktop-nav li {
  position: relative;
}
.desktop-nav li a {
  text-decoration: none;
  color: #3D3D3B;
  font-size: 1.6rem;
  font-weight: 500;
}
.desktop-nav li a.active_nav {
  color: #AC0004;
  font-weight: 600;
}
.desktop-nav li a:hover {
  color: #AC0004;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-right .icons {
  display: flex;
  gap: 2rem;
}
.header-right .icons i {
  font-size: 2.2rem;
  cursor: pointer;
  color: #000;
}
.header-right .icons i:hover {
  color: #AC0004;
}
.header-right .call-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-right .call-box .call-icon {
  background: #AC0004;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-right .call-box .call-icon i {
  color: #fff;
  font-size: 2rem;
}
.header-right .call-box .call-info span {
  font-size: 1.3rem;
  color: #FCB018;
}
.header-right .call-box .call-info strong {
  font-size: 1.5rem;
  color: #000;
}

/* COMMON DROPDOWN BASE */
.dropdown {
  position: relative;
  /* SHOW ON HOVER */
  /* RIGHT POSITION FOR NESTED MENU */
}
.dropdown a {
  font-size: 1rem;
}
.dropdown .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: -moz-max-content;
  min-width: max-content;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  transform: translateY(1rem);
  z-index: 10;
}
.dropdown .submenu li {
  margin-bottom: 1rem;
}
.dropdown .submenu li:last-child {
  margin-bottom: 0;
}
.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown .submenu .submenu {
  left: 100%;
  top: 0;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

body.menu-open .mobile-menu-overlay {
  pointer-events: auto;
  transform: translateX(0);
  transition: 0.7s all ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: 0.5s;
  transform: translateX(-100%);
  width: 80%;
  z-index: 1;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 70%;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.5s ease;
  z-index: 9999;
  overflow: hidden;
}

.menu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 2rem;
  transition: 0.4s;
}

.menu-panel.active {
  left: 0;
}

.panel-header {
  display: flex;
  gap: 1rem;
  font-size: 1.8rem;
}

.back-btn {
  cursor: pointer;
}

.menu-panel ul li {
  padding: 1.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.6rem;
  cursor: pointer;
}
.menu-panel ul li a {
  color: #000;
}
.menu-panel ul li a.active_nav {
  color: #AC0004;
  font-weight: 600;
}

.mobile-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-logo .nav-btn span {
  background: #000;
  width: 3rem;
  height: 0.4rem;
  display: block;
  border-radius: 1rem;
  transform-origin: right;
  transition: 0.5s all ease;
}
.mobile-logo .nav-btn span:nth-child(2) {
  margin: 0.6rem 0;
  width: 2.5rem;
  text-align: right;
}

.menu-open {
  overflow: hidden;
}
.menu-open .nav-btn span:nth-child(1) {
  transform: rotate(-45deg);
}
.menu-open .nav-btn span:nth-child(2) {
  opacity: 0;
  margin: 0.66rem 0 !important;
}
.menu-open .nav-btn span:nth-child(3) {
  transform: rotate(45deg);
}

.mobile-nav-sec {
  display: none;
}

@media (max-width: 786px) {
  .mobile-nav-sec {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .top-bar {
    display: block;
    padding: 1rem 2rem;
  }
  .top-bar .left-info {
    display: none;
  }
  .top-bar .right-info {
    justify-content: space-between;
  }
  .menuopen {
    overflow: hidden;
  }
  .menuopen .main-header .navbar {
    transform: translateX(0);
    transition: 0.5s all ease;
  }
  .menuopen .main-header .backdrop {
    transform: translateX(0);
    transition: 0.3s all ease;
  }
  .main-header {
    padding: 1rem 2rem;
  }
  .main-header .logo img {
    width: 14rem;
  }
  .main-header .backdrop {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4196078431);
    width: 70%;
    height: 100vh;
    z-index: 9;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    transform: translateX(-100%);
    transition: 0.8s all ease;
  }
  .main-header .header-right .call-box {
    display: none;
  }
}
.footer {
  background: #3D3D3B;
  width: 100%;
  padding: 4rem 0 2rem;
}
.footer .footer-wrap .newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.1rem solid #fff;
  padding-bottom: 2rem;
}
.footer .footer-wrap .newsletter .newstext {
  color: #fff;
}
.footer .footer-wrap .newsletter .newsfeild {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
.footer .footer-wrap .newsletter .newsfeild input {
  height: 6rem;
  width: 100%;
  border-radius: 2rem 0 0 2rem;
  border: none;
  padding: 1rem 2rem;
}
.footer .footer-wrap .newsletter .newsfeild .btn input {
  border-radius: 0 2rem 2rem 0;
  background-color: #AC0004;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}
.footer .footer-wrap .footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: self-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0;
  color: #fff;
}
.footer .footer-wrap .footer-nav .footer-nav-block {
  flex-basis: calc(25% - 2rem);
}
.footer .footer-wrap .footer-nav .footer-nav-block .footer-logo {
  width: 60%;
  margin-bottom: 1rem;
}
.footer .footer-wrap .footer-nav .footer-nav-block .footer-logo img {
  width: 100%;
  height: 100%;
}
.footer .footer-wrap .footer-nav .footer-nav-block .socail-icon {
  margin-top: 2rem;
}
.footer .footer-wrap .footer-nav .footer-nav-block h4 {
  margin-bottom: 1rem;
}
.footer .footer-wrap .footer-nav .footer-nav-block ul li a {
  color: #fff;
}
.footer .footer-wrap .footer-nav .block1 p {
  font-size: 1.4rem;
  font-weight: 200;
}
.footer .footer-wrap .footer-nav .block4 .address {
  display: flex;
  margin-bottom: 1rem;
}
.footer .footer-wrap .copy-right {
  text-align: center;
  border-top: 0.1rem solid #fff;
  padding: 1rem 0 5rem;
  color: #fff;
}

.whats-floting-btn {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
}
.whats-floting-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ffe7;
  border: 0.1rem solid #44B000;
  border-radius: 5rem;
  height: 5rem;
  width: 5rem;
  font-size: 2.5rem;
  color: #44B000;
}

@media (max-width: 786px) {
  .footer .footer-wrap .newsletter {
    flex-direction: column;
  }
  .footer .footer-wrap .newsletter .newsfeild {
    width: 100%;
    margin-top: 1rem;
  }
  .footer .footer-wrap .footer-nav {
    flex-direction: column;
  }
  .footer .footer-wrap .footer-nav .footer-nav-block {
    flex-basis: calc(100% - 2rem);
  }
}
.ck-editor img {
  width: 100%;
}
.ck-editor h2 {
  font-size: 3rem;
  font-weight: 500;
}
.ck-editor h5 {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.ck-editor p {
  margin-bottom: 1rem;
  text-align: justify;
}
.ck-editor .data-left img {
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.ck-editor .ck-list li {
  list-style-image: url(../img/icon/editor-list.png);
  font-size: 1.5rem;
  margin-left: 3rem;
}

.home-hero .home-hero-bg {
  background: var(--home-hero-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-hero .home-hero-wrap .home-hero-content {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-hero .home-hero-wrap .home-hero-content .hero-left {
  width: 65%;
}
.home-hero .home-hero-wrap .home-hero-content .hero-right {
  width: 30%;
  position: relative;
  top: 82px;
}
.home-hero .home-hero-wrap .home-hero-content h1 {
  margin-top: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 6rem;
}
.home-hero .home-hero-wrap .home-hero-content p {
  width: 80%;
  margin: 4rem 0;
  color: #fff;
}
.home-hero .home-hero-wrap .home-hero-content .btn {
  margin: 6rem 0;
}
.home-hero .home-hero-wrap .home-hero-content .btn a {
  background: #FCB018;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
  color: #000;
  font-size: 1.8rem;
  padding: 1rem 3rem;
}
.home-hero .home-hero-wrap .home-hero-content .btn :hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

.home-about .home-about-wrap .home-about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.home-about .home-about-wrap .home-about-content .home-about-left {
  width: 50%;
}
.home-about .home-about-wrap .home-about-content .home-about-left img {
  width: 100%;
}
.home-about .home-about-wrap .home-about-content .home-about-left .card-wrap .card-box {
  flex-basis: calc(51.5% - 2rem);
  background: #fff;
  box-shadow: 0 0 10px #c1bfbf;
  padding: 1.5rem;
  border-radius: 2rem;
}
.home-about .home-about-wrap .home-about-content .home-about-left .card-wrap .card-box img {
  width: 100%;
  border-radius: 1.5rem;
}
.home-about .home-about-wrap .home-about-content .home-about-right {
  width: 50%;
}
.home-about .home-about-wrap .home-about-content .home-about-right h5 {
  margin: 1rem 0;
}
.home-about .home-about-wrap .home-about-content .home-about-right .btn {
  margin-top: 4rem;
}
.home-about .home-about-wrap .home-about-content .home-about-right .btn a {
  background: #FCB018;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
  font-size: 1.6rem;
}
.home-about .home-about-wrap .home-about-content .home-about-right .btn :hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}
.home-about .home-about-wrap .home-about-content .home-about-right .home-about-sec-conten {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.home-about .home-about-wrap .home-about-content .home-about-right .home-about-sec-conten > p {
  display: flex;
  align-items: center;
}

.home-brand {
  background: #FFF3F3;
  padding: 4rem 0;
}
.home-brand .home-brand-wrap .brand-heading {
  margin-bottom: 3rem;
}
.home-brand .home-brand-wrap .home-brand-slide .swiper {
  width: 100%;
  height: auto;
}
.home-brand .home-brand-wrap .home-brand-slide .swiper .swiper-slide .slider-box {
  text-align: center;
  border: 1px solid #cfcfcf;
  border-radius: 1.5rem;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}
.home-brand .home-brand-wrap .home-brand-slide .swiper .swiper-slide .slider-box:hover .slider-img img {
  transform: scale(1.2);
  transition: 0.5s;
}
.home-brand .home-brand-wrap .home-brand-slide .swiper .swiper-slide .slider-box .slider-img img {
  width: 100%;
  transition: 0.5s;
}
.home-brand .home-brand-wrap .home-brand-slide .swiper .swiper-slide .slider-box .brand-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.form-body {
  background: #fff;
  border-radius: 2rem;
  padding: 1rem;
  box-shadow: 0 0 10px #636363;
}
.form-body .form-heading {
  margin-bottom: 1rem;
}
.form-body .form-box .input-body {
  margin-bottom: 1rem;
}
.form-body .form-box .input-body input,
.form-body .form-box .input-body select {
  width: 100%;
  height: 4rem;
  border: 1px solid #000;
  border-radius: 1rem;
  padding: 1rem 2rem;
}
.form-body .form-box .input-body textarea {
  width: 100%;
  height: 10rem;
  border: 1px solid #000;
  border-radius: 1rem;
  padding: 1rem 2rem;
}
.form-body .form-btn .btn {
  width: 100%;
  border: 1px solid #000;
  border-radius: 1rem;
  padding: 1rem 2rem;
  margin: 0 0 2rem !important;
  background: #FCB018;
}

.card-container .card-wrap .box {
  background: #fff;
  box-shadow: 0 0 15px #b8b8b8;
  overflow: hidden;
  padding: 1.5rem;
}
.card-container .card-wrap .box a {
  color: #000;
}
.card-container .card-wrap .box:hover {
  box-shadow: 0 0 20px rgba(245, 0, 0, 0.2039215686);
}
.card-container .card-wrap .box:hover .box-img img {
  transform: scale(1.1);
  transition: 0.5s;
}
.card-container .card-wrap .box .box-img {
  height: 15rem;
  overflow: hidden;
  border-radius: 1.5rem;
}
.card-container .card-wrap .box .box-img img {
  width: 100%;
  border-radius: 1.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.card-container .card-wrap .box .box-content > h4 {
  margin: 1.5rem 0 0.5rem;
  color: #AC0004;
}

.blog-bg {
  background-color: #FFECDC;
  padding: 4rem 0;
}

.blog .blog-wrap .blog-container .blog-card-wrap, .blog .blog-wrap .blog-container .blog_slide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
.blog .blog-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  transition: 0.5s all ease;
  border: 0.1rem solid rgba(0, 0, 0, 0.1843137255);
  flex-basis: calc(33.3% - 2rem);
}
.blog .blog-card:hover {
  box-shadow: 0 0 15px #8C8D8A;
  transition: 0.5s all ease;
}
.blog .blog-card .blog-img {
  width: 100%;
  height: 20rem;
}
.blog .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog-card .blog-content {
  padding: 1rem 2rem 3rem;
}
.blog .blog-card .blog-content .blog-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
}
.blog .blog-card .blog-content h4 {
  margin-top: 0.5rem;
  color: #000;
  transition: 0.5s ease;
}
.blog .blog-card .blog-content h4:hover {
  color: #AC0004;
  transition: 0.5s ease;
}
.blog .blog-card .blog-content .blog-btn {
  margin-top: 2rem;
}
.blog .blog-card .blog-content .blog-btn a {
  background: #FCB018;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
}
.blog .blog-card .blog-content .blog-btn a:hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

.blog-head {
  margin: 2rem 0;
}
.blog-head h1 {
  line-height: 5.5rem;
  margin-bottom: 2rem;
}

.blog .comment {
  margin-top: 2rem;
  background: #fff;
}
.blog .comment .form-body {
  background: none;
  box-shadow: none;
  padding: 0;
}
.blog .comment .form-body .form-box input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #e7e7e7;
  height: 3rem;
}
.blog .comment .form-body .form-box textarea {
  width: 100%;
  height: 10rem;
  border-radius: 0.5rem;
  border: 1px solid #e7e7e7;
  height: 15rem;
}

.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide {
  margin-top: 4rem;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card {
  border: 0.1rem solid #8C8D8A;
  padding: 2rem;
  border-radius: 2rem;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-name-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-name-wrap .testi-img {
  width: 5rem;
  overflow: hidden;
  border-radius: 5rem;
  height: 5rem;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-name-wrap .testi-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-pra {
  margin-top: 1.5rem;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-star {
  margin-top: 1rem;
}
.testimonial .testimonial-wrap .testimonial-slider-wrap .testi_slide .testi-card-wrap .testi-card .testi-star i {
  color: #FCB018;
}

.c-hero-sec {
  background: var(--hero-bg) no-repeat center/cover;
  width: 100%;
  padding: 15rem 0;
}

.c-hero-sec-wrap .c-hero-content {
  color: #000;
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 3rem;
}
.c-hero-sec-wrap .c-hero-content .breadcurm a {
  color: #FCB018;
}
.c-hero-sec-wrap .c-hero-content .btn {
  margin-top: 4rem;
}
.c-hero-sec-wrap .c-hero-content .btn a {
  background: #FCB018;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
}
.c-hero-sec-wrap .c-hero-content .btn a:hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

.why-choose-card {
  margin-top: 4rem;
}
.why-choose-card .why-choose-card-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 0 10px #a7a7a7;
  border-radius: 2rem;
  flex-basis: calc(25% - 2rem);
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box .icon {
  width: 8rem;
  margin: 0 auto 1rem;
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box .icon img {
  width: 100%;
}
.why-choose-card .why-choose-card-wrap .why-choose-card-box h5 {
  margin-bottom: 1rem;
}

.contact-map {
  margin-bottom: -9rem;
}

.service-detail-data {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.service-detail-data .data-left {
  max-width: 70%;
}
.service-detail-data .data-right {
  max-width: 30%;
  position: sticky;
  top: 10rem;
  height: -moz-fit-content;
  height: fit-content;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu ul li {
  padding: 1rem 2rem;
  background-color: #ffd0d0;
  margin-bottom: 0.5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.5s all ease;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu ul li:hover {
  background-color: #ffa8a8;
  transition: 0.5s all ease;
}
.service-detail-data .data-right .service-side-bar .side-bar-menu ul li a {
  color: #000;
}
.service-detail-data .data-right .service-side-img {
  margin-top: 1.5rem;
}
.service-detail-data .data-right .service-side-img img {
  border-radius: 2rem;
}

.faq .brand-heading {
  margin-bottom: 2rem;
}
.faq .faq-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.faq .faq-container .faq-box {
  flex-basis: calc(50% - 2rem);
  border: 1px solid #ff8c8c;
  border-radius: 2rem;
  overflow: hidden;
}
.faq .faq-container .faq-box .question {
  position: relative;
  background: #ffc6c6;
  padding: 1rem;
  font-weight: 500;
}
.faq .faq-container .faq-box .answer {
  padding: 1rem;
}

.fleets .fleets-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.fleets .fleets-wrap .fleets-box {
  flex-basis: calc(33.33% - 2rem);
  border: 1px solid #a7a7a7;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.fleets .fleets-wrap .fleets-box:hover .fleet-img img {
  transform: scale(1.1);
  transition: 0.5s ease;
}
.fleets .fleets-wrap .fleets-box .fleet-img img {
  width: 100%;
  transition: 0.5s ease;
}
.fleets .fleets-wrap .fleets-box .fleets-text {
  padding: 2rem;
}
.fleets .fleets-wrap .fleets-box .fleets-text .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.fleets .fleets-wrap .fleets-box .fleets-text .feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.fleets .fleets-wrap .fleets-box .fleets-text .fleet-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.contact-container .contact-detail {
  width: 50%;
}
.contact-container .contact-form {
  width: 50%;
}

.form-pop {
  overflow: hidden;
}
.form-pop .popupform {
  display: block;
}

.popupform {
  display: none;
}
.popupform .popform {
  position: fixed;
  display: block;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}
.popupform .popform .close-btn {
  color: #ff0000;
  text-align: right;
  font-size: 2rem;
  cursor: pointer;
}
.popupform .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7607843137);
}

.form-pop-btn {
  position: fixed;
  top: 40%;
  right: 0;
}
.form-pop-btn button {
  writing-mode: sideways-lr;
  background: #FCB018;
  border: none;
  padding: 2rem 0.8rem;
  border-radius: 1rem 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}

.mobile-form-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.mobile-form-btn a {
  background: #44B000;
  width: 50%;
  text-align: center;
  padding: 1rem 0;
  color: #ffffff;
  font-weight: 500;
}
.mobile-form-btn a:nth-child(2) {
  background: #ff4800;
}/*# sourceMappingURL=main.css.map */