@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
.green {
  color: #4F8939;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.rv-btn {
  border: none;
  display: block;
  position: relative;
  padding: 7px 20px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #4F8939;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  border-radius: 3px;
}
.rv-btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 38px;
  background: transparent;
  z-index: -1;
  border: 1px solid #4F8939;
  border-radius: 3px;
}

.rv-btn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: var(--lightgray);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

.rv-btn:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #4F8939;
}

.rv-btn:hover {
  color: white;
}

.rv-btn:active span::before {
  background: #4F8939;
}

input:focus, select:focus {
  box-shadow: none !important;
  border-color: #4F8939 !important;
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #4F8939;
}

/* plus sign */
.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}

/* text */
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

/* hover effect on button width */
.play-btn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.play-btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 20px;
}

/* hover effect button's text */
.play-btn:hover .text {
  opacity: 1;
  width: 55%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

/* button click effect*/
.play-btn:active {
  transform: translate(2px, 2px);
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", serif;
  overflow-x: hidden;
}

.rv-nav {
  background-color: transparent;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link {
  font-weight: bold; /* Optional for emphasis */
}

.nav-link.active {
  color: green !important;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.rv-nav.scrolled {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rv-hero-header {
  background: url("/assets/images/hero-bg.png") top center no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.navbar-brand img {
  max-width: 60px;
}

.rv-header-inner {
  padding-top: 180px;
  padding-bottom: 30px;
}
.rv-header-inner h1 {
  font-size: 55px;
}

.rv-form input, .rv-form select {
  height: 58px;
}

.discount-btn {
  border: 2px solid #4F8939;
  color: #4F8939;
  font-weight: 600;
  border-radius: 4px !important;
  padding: 10px 20px;
}
.discount-btn:hover {
  background-color: #4F8939;
  color: white;
}

@keyframes up-down {
  0% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-6px);
  }
}
.rv-form-card {
  max-width: 550px;
  margin: auto;
  border: none;
  padding: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}

.inquiry-modal {
  padding: 15px;
  border: none;
  margin: auto;
}
.inquiry-modal .btn-close:focus {
  box-shadow: none;
}

.rv-title {
  text-align: center;
  margin-top: 70px;
}
.rv-title .rv-border {
  width: 100px;
  height: 5px;
  background-color: #4F8939;
  margin: auto;
  border-radius: 10px;
}
.rv-title h2 {
  color: #353535;
  font-size: 50px;
}

.filing-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.filing-card:hover {
  background-color: #4F8939;
  color: white;
  border-radius: 10px;
}

.rv-about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.rv-about-content h1 {
  font-size: 55px;
}
.rv-about-content p {
  font-size: 20px;
  text-align: justify;
  line-height: 40px;
}

.rv-feature-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #4F8939;
  transition: 0.3s ease-in-out;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rv-feature-card:hover {
  transform: translateY(-10px);
  background-color: #4F8939;
  color: white;
}
.rv-feature-card:hover i {
  color: white !important;
}

.accordion-button {
  font-size: 20px;
  border-bottom: none !important;
  padding: 30px 20px !important;
}

.accordion-button:not(.collapsed) {
  color: #4F8939;
  border-bottom: 1px solid #ececec !important;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
  background-color: transparent;
}

.accordion-button::after {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: #4F8939;
  background-image: none !important;
}

.accordion-button.collapsed::after {
  background-color: var(--bs-gray-300);
}

.client-reviews {
  position: relative;
}
.client-reviews img {
  max-width: 100%;
}

.rv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #4F8939;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.rv-play-btn i {
  font-size: 14px;
  color: white;
}

.glide__arrow {
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.glide__arrow i {
  color: black;
}

.rv-contact {
  background-image: url("/assets/images/contact-bg.jpg");
  background-size: cover;
  background-position: -15px -35px;
  min-height: 700px;
  background-color: rgba(0, 0, 0, 0.6588235294);
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
}

.rv-footer {
  background-color: #4F8939;
  color: white;
  padding: 50px 0;
}
.rv-footer img {
  max-width: 200px;
}
.rv-footer ul {
  margin-top: 20px;
  padding: 0;
}
.rv-footer ul > * {
  margin-block-end: 10px;
}
.rv-footer ul li {
  list-style-type: none;
}

.footer-contact {
  width: 100%;
  max-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background-color: #213F16;
}

.rv-contact-detail {
  margin-top: 20px;
}

.rv-bottom-footer {
  background-color: #262626;
  padding: 30px;
  color: white;
}

.hamburger {
  cursor: pointer;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 45px;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: #4F8939;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.rv-service {
  background-color: #f6f6f6;
}
.rv-service .glide__slide {
  transition: transform 0.5s ease-in-out;
  margin-top: 50px;
  margin-bottom: 50px;
  opacity: 0.4;
}
.rv-service .glide__slide.glide__slide--active {
  transform: scale(1.23);
  opacity: 1;
}

.rv-service-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  background-color: white;
  min-height: 355px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.rv-service-card i {
  font-size: 40px;
}

@media (max-width: 992px) {
  .rv-hero-header {
    min-height: 100%;
  }
  .rv-header-inner {
    position: static;
    transform: unset;
    padding-top: 0;
  }
  .rv-header-inner h1 {
    font-size: 40px;
    text-align: center;
    padding-top: 20px;
  }
  .rv-header-inner p {
    text-align: center;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  .rv-form-card {
    max-width: 100%;
    margin-top: 110px;
    animation: unset;
  }
  .rv-title h2 {
    font-size: 40px;
  }
  .navbar-collapse {
    background-color: white;
    padding: 25px;
  }
  .navbar-toggler {
    padding: 0;
  }
  .navbar-brand img {
    max-width: 48px;
  }
  .rv-about-content h1 {
    font-size: 40px;
  }
  .rv-contact .rv-form-card {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .rv-form-card h4 {
    text-align: center;
    margin-bottom: 20px !important;
    font-size: 18px;
  }
  .rv-header-inner h1 {
    font-size: 30px;
  }
  .rv-title h2 {
    font-size: 30px;
    padding-inline: 80px;
  }
  .rv-title {
    margin-top: 40px;
  }
  .rv-title .rv-border {
    margin-top: 10px;
  }
  .rv-footer {
    padding: 30px 20px;
  }
  .rv-about-content h1 {
    font-size: 30px;
  }
  .rv-about-content p {
    font-size: 16px;
  }
  .accordion-button {
    font-size: 16px;
    padding: 20px 20px !important;
  }
  .rv-service .glide__slide.glide__slide--active {
    transform: scale(1);
  }
}
@media (max-width: 576px) {
  .glide__arrow {
    width: 35px;
    height: 35px;
  }
  .glide__arrow i {
    font-size: 13px;
  }
  .glide__arrow--right {
    right: 0;
  }
  .glide__arrow--left {
    left: 0;
  }
  .rv-service .glide__slide {
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .rv-service .glide__slide.glide__slide--active {
    transform: scale(0.9);
  }
}
.text-lg {
  font-size: 20px;
}

.text-xl {
  font-size: 24px;
}

.mt-4 {
  margin-top: 20px;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

/*# sourceMappingURL=style.css.map */
