* {
  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: 108rem;
  margin: 0rem auto;
  padding: 0 2rem;
}

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

.mobil-nav-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobil-nav-arrow span {
  padding: 0 1rem;
}

h1 {
  font-size: 5.4rem;
}

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

h3 {
  font-size: 3rem;
}

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;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.card-wrap .box {
  background: #8C8D8A;
  border-radius: 20px;
  height: 270px;
  width: 270px;
  flex-basis: calc(25% - 2rem);
}

.list {
  margin: 1rem;
}
.list ul li {
  list-style: disc;
  margin-left: 3rem;
  font-size: 1.5rem;
}

@keyframes headerAnimation {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(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 .right-info .social-icons {
  display: flex;
  gap: 1rem;
}
.top-bar .right-info .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 .right-info .social-icons a i {
  font-size: 1.3rem;
  color: #fff;
}
.top-bar .right-info .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;
  }
}
 .mobile-bottom-sticky-footer{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-top: 2rem;
  color: #fff;
}

.enquiry{
  position: fixed;
  right: 0rem;
  bottom: 50%;
}
.enquiry button {
    writing-mode: sideways-lr;
    background: #ff5e39;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 2rem;
    animation: pulseGlow 2.5s infinite;
    border: none;
    cursor: pointer;
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 94, 57, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(255, 94, 57, 0.4);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 94, 57, 0.0);
    transform: scale(1);
  }
}
.mail-floting-btn{
  position: fixed;
  right: 5rem;
  bottom: 11rem;
}
.mail-floting-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ffe7;
  border: 0.1rem solid #ffaf36;
  border-radius: 5rem;
  height: 5rem;
  width: 5rem;
  font-size: 2.5rem;
  color: #ffaf36;
}

.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);
  }
}
.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 {
  max-width: 90%;
  padding: 2rem 0;
}
.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: 60%;
  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-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 h3 {
  line-height: 3.6rem;
}
.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-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 #8C8D8A;
  padding: 2rem;
  border-radius: 1.5rem;
}

.form-body {
  background: #FFF3F3;
  width: 100%;
  position: relative;
}
.form-body::before {
  content: "";
  display: block;
  background: #AC0004;
  height: 100%;
  width: 30%;
  position: absolute;
}
.form-body .form-wrap {
  position: relative;
  padding: 4rem 0;
}
.form-body .form-wrap .form-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.form-body .form-wrap .form-container .form-img {
  width: 50%;
}
.form-body .form-wrap .form-container .form-img img {
  width: 80%;
}
.form-body .form-wrap .form-container .form-feild {
  width: 50%;
}
.form-body .form-wrap .form-container .form-feild .form-box {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body {
  width: 100%;
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body label {
  font-size: 1.6rem;
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body input, .form-body .form-wrap .form-container .form-feild .form-box .input-body select {
  height: 4rem;
  border-radius: 1rem;
  padding: 1rem 2rem;
  border: 0.1rem solid #8C8D8A;
  background: rgba(255, 243, 243, 0.4196078431);
  width: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body input::-moz-placeholder, .form-body .form-wrap .form-container .form-feild .form-box .input-body select::-moz-placeholder {
  color: #000;
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body input::placeholder, .form-body .form-wrap .form-container .form-feild .form-box .input-body select::placeholder {
  color: #000;
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body textarea {
  height: 10rem;
  border-radius: 1rem;
  padding: 1rem 2rem;
  border: 0.1rem solid #8C8D8A;
  background: rgba(255, 243, 243, 0.4196078431);
  width: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body textarea::-moz-placeholder {
  color: #000;
}
.form-body .form-wrap .form-container .form-feild .form-box .input-body textarea::placeholder {
  color: #000;
}
.form-body .form-wrap .form-container .form-btn .btn {
  background: #FCB018;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
  border: 0.1rem solid #FCB018;
  margin-top: 3rem;
  padding: 1rem 4rem;
  font-size: 1.5rem;
  width: calc(50% - 1rem);
}

.form-style-box {
  width: 80%;
  margin: -10rem auto 0;
  border-radius: 2rem;
}
.form-style-box .form-body {
  border-radius: 2rem;
  overflow: hidden;
}


.popup-form{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
}
.popup-form .sec-gap{margin-top: 0;}
.popup-form .form-img {
    display: none;
}
.popup-form .form-body::before{display: none}
.popup-form .form-feild{width: 100% !important;}
.popup-form .form-body{border-radius: 2rem}
.popup-form .form-wrap{padding: 2rem 0;}
.popup-wrap .backdrop {
    background: #000000bd;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1  ;
}
#popup_show{
  display: none;
}


.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box {
  background: #AC0004;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box:hover {
  transform: rotate(10deg);
  transition: 0.5s all ease;
  cursor: pointer;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .box-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 60%;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .box-img img {
  width: 100%;
  min-height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .box-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .box-content h3 {
  color: #fff;
  line-height: 3.5rem;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .btn {
  position: absolute;
  bottom: 30px;
  left: 20px;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .btn a {
  background: #FCB018;
  padding: 0.8rem 2rem;
  border-radius: 5rem;
  transition: 0.5s all ease;
  color: #000;
  font-weight: 500;
}
.top-location .top-location-wrap .top-location-box .card-container .card-wrap .box .btn a:hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

.ck-editor h2 {
  font-size: 2.6rem;
  line-height: 3.2rem;
  margin-bottom: 1rem;
}
.ck-editor h3 {
  font-size: 2rem;
}
.ck-editor p {
  margin: 1rem 0;
}

.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-wrap .blog-container .blog-card-wrap .blog-card, .blog .blog-wrap .blog-container .blog_slide .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-wrap .blog-container .blog-card-wrap .blog-card:hover, .blog .blog-wrap .blog-container .blog_slide .blog-card:hover {
  box-shadow: 0 0 15px #8C8D8A;
  transition: 0.5s all ease;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-img, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-img {
  width: 100%;
  height: 20rem;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-img img, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-content, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-content {
  padding: 1rem 2rem 3rem;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-content .blog-date, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-content .blog-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-content h4, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-content h4 {
  margin-top: 0.5rem;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-content .blog-btn, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-content .blog-btn {
  margin-top: 2rem;
}
.blog .blog-wrap .blog-container .blog-card-wrap .blog-card .blog-content .blog-btn a, .blog .blog-wrap .blog-container .blog_slide .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-wrap .blog-container .blog-card-wrap .blog-card .blog-content .blog-btn a:hover, .blog .blog-wrap .blog-container .blog_slide .blog-card .blog-content .blog-btn a:hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

.blog-deatil-container {
  display: flex;
  gap: 2rem;
}
.blog-view-side-bar{
  max-width: 30%;
}
.latest-blog-section {
    background: #ffeadd;
    padding: 1rem;
    height: max-content;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.latest-blog-info h5 {
    line-height: 1.8rem;
    font-size: 1.4rem;
}
.latest-blog-info h5 a{
      color: #000;
}
.blog-main-content {
    max-width: 70%;
}
.blog-main-content .blog-img {
    width: 100%;
    height: 30rem;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 3rem;
}
.blog-main-content .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-main-content h1 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    line-height: 5rem;
}

.blog-main-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.blog-main-content h3{
  font-size: 2rem;
  margin-bottom: 1rem;
}
.blog-main-content .blog-date img {
    width: 2rem;
    vertical-align: text-top;
    margin-right: 1rem;
}
.blog-date {
    margin: 1rem 0;
}
.blog-head {
    padding: 0 6rem;
    margin: 2rem 0;
    line-height: 5rem;
}
.blog-main-content p {
    margin-bottom: 1rem;
}
.latest-blog-info .read-more-btn{
  font-size: 1.2rem; color: #000;
}

.latest-blog-section .latest-blog-card {
  border: 1px solid #8C8D8A;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.latest-blog-section .latest-blog-card .latest-blog-img {
  width: 100%;
}
.latest-blog-section .latest-blog-card .latest-blog-img img {
  width: 100%;
  height: 100%;
}
.latest-blog-section .latest-blog-card .latest-blog-info{
  display: flex; flex-direction: column;
}

.comment input, textarea{
    width: 100%;
    height: 40px;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: 1px solid #d4d4d4;
    margin-bottom: 0.5rem
}
.comment textarea{
    height: 10rem
}

.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%;
}
.c-hero-sec .c-hero-sec-wrap .c-hero-content {
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.c-hero-sec .c-hero-sec-wrap .c-hero-content .breadcurm {
  margin-top: 1rem;
}
.c-hero-sec .c-hero-sec-wrap .c-hero-content .breadcurm a {
  color: #FCB018;
}
.c-hero-sec .c-hero-sec-wrap .c-hero-content .btn {
  margin-top: 4rem;
}
.c-hero-sec .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 .c-hero-sec-wrap .c-hero-content .btn a:hover {
  background: #AC0004;
  color: #fff;
  transition: 0.5s all ease;
}

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

.tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  background: #e9e9e9;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.tab-btn.active {
  background: #ffc800;
  color: #000;
}

.tab-box {
  display: none;
}

.tab-box.active {
  display: block;
  animation: fade 0.4s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fleet-tab-wrap {
  padding: 3rem;
  background: #FFF3F3;
}

.who-v-r .who-v-r-heading {
  margin-bottom: 1.5rem;
}
.who-v-r .home-about-left {
  width: 35% !important;
}
.who-v-r .home-about-right {
  width: 65% !important;
}

.our-mission {
  background: url(/img/form-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}
.our-mission .our-mission-wrap p {
  font-size: 1.8rem;
  margin-top: 1rem;
}

.content {
  margin-top: 5rem;
}/*# sourceMappingURL=main.css.map */