/**GENERAL START**/
:root {
  --root-font: "Raleway", sans-serif;
  --root-font-two: "Ubuntu", sans-serif;
  --root-gray: #858585;
  --root-gray-rgb: 133, 133, 133;
  --root-white: #ffffff;
  --root-white-rgb: 255, 255, 255;
  --root-base: #06d001;
  --root-dark-blue: #00224d;
  --root-yellow: #f3ff90;
  --root-base-rgb: 223, 40, 24;
  --root-black: #000000;
  --root-black-rgb: 0, 0, 0;
  --root-primary: #f6f6f6;
  --root-primary-rgb: 246, 246, 246;
  --root-border-color: #d9d9d9;
  --root-bdr-color-rgb: 217, 217, 217;
  --root-letter-spacing: -0.04em;
}

body {
  font-family: var(--root-font);
}
a {
  text-decoration: none !important;
}
.text-success {
  color: #06d001 !important;
}

.text-yellow {
  color: var(--root-yellow) !important;
}

.btn-success {
  background-color: #06d001 !important;
  border-radius: 2px !important;
}
.btn-light,
.button-secondary {
  border-radius: 2px !important;
}
button {
  position: relative;
  min-width: 240px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2em;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
}
button a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 1.25em 0.5em 1.35em 0.5em;
  text-decoration: none !important;
  color: var(--root-white);
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  position: relative;
  background-size: 200% 100%;
  padding: 1.5rem 2rem;
  color: white;
  border-radius: 100px;
  font-size: 1.3rem;
  transition: 0.3s;
}
button a:hover {
  color: var(--root-white);
}

#navbarToggler {
  width: 50px !important;
}

.button-secondary {
  background: linear-gradient(135deg, var(--root-yellow), #059212, #06d001);
  background-size: 200% auto;
  transition: 0.5s;
}
.button-secondary :hover {
  background-position: 100% 0;
}
/**NAVBAR**/
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #06d001 !important;
}

/**GENERAL END**/

/**BTN SUCCESS START**/

.btn-success {
  /* reset */
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  /* styles */
  position: relative;
  background: linear-gradient(45deg, #059212 10%, #06d001 90%);
  background-size: 200% 100%;
  padding: 1.5rem 2rem;
  color: white;
  border-radius: 100px;
  font-size: 1.3rem;
  transition: 0.3s;
}

.btn-success:hover {
  -webkit-animation: bruh 3s linear infinite;
  animation: bruh 3s linear infinite;
}

@-webkit-keyframes bruh {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@keyframes bruh {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.btn-success a {
  display: table;
  margin: 25px auto;
  text-decoration: none;
  color: #3c3c3c;
  transition: 0.3s;
}

.btn-success a:hover {
  color: white;
}
/**BTN SUCCESS END**/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: var(--root-font-two);
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: var(--bs-success);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-success);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    color: var(--bs-success);
    width: 100px !important;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-success);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: -1px;
    left: 50%;
    background: var(--bs-success);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    width: 2px;
    height: 12px;
  }
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--root-base);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 30px;
  margin-left: 90px;
}

.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-success);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding-top: 120px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .header-carousel .owl-nav .owl-prev {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}

.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    height: 100%;
    opacity: 0.9;
  }

  25% {
    height: 110%;
    opacity: 0.5;
  }

  50% {
    height: 115%;
    opacity: 1;
  }

  75% {
    height: 110%;
    opacity: 0.5;
  }

  100% {
    height: 100%;
    opacity: 0.9;
  }
}

/*** Carousel Hero Header End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--root-base);
  color: var(--root-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 30px;
  margin-left: 90px;
}

.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--root-base);
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding-top: 120px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .header-carousel .owl-nav .owl-prev {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}

.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    height: 100%;
    opacity: 0.9;
  }

  25% {
    height: 110%;
    opacity: 0.5;
  }

  50% {
    height: 115%;
    opacity: 1;
  }

  75% {
    height: 110%;
    opacity: 0.5;
  }

  100% {
    height: 100%;
    opacity: 0.9;
  }
}

/*** Carousel Hero Header End ***/

/*** product Start ***/
.product .product-item {
  background: var(--root-white);
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--root-border-color);
  z-index: 1;
  height: 500px;
}

.product .product-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.product .product-item .product-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 2px;
  font-family: var(--root-font-two);
  text-decoration: none;
  color: var(--root-dark-blue);
}

.product .product-item .product-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.product .product-item .product-img img {
  transition: 0.5s;
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.product .product-item:hover .product-img img {
  transform: scale(1.2);
}

.product-item-price-title {
  font-weight: 500;
  line-height: 25px;
  font-size: 22px;
  color: #4444;
}

@media screen and (max-width: 375px) {
  .product .product-item .product-title {
    font-size: 18px;
  }
  .product .product-item .product-img img {
    width: 100%;
  }
}
/*** product End ***/

/**COM END**/
.ready {
  background: url("https://img.freepik.com/free-photo/luxury-plain-green-gradient-abstract-studio-background-empty-room-with-space-your-text-picture_1258-63589.jpg?t=st=1723639506~exp=1723643106~hmac=7c2d3c0d42c2c95b47e17c5497f7b4730fbcd4cf7652b1fa472e7b7434a155a4&w=1800")
    no-repeat 50% / cover;
}

.commonSection {
  padding: 120px 0;
  position: relative;
}
.ready .sec_title {
  margin: 0;
}

.white {
  color: #fff;
}
.opinion_form_title {
  font-size: 46px;
  line-height: 60px;
  color: #000;
  letter-spacing: 2px;
  margin: 0 0 25px;
  white-space: pre-line;
}
.opinion_form_title,
.opinion_form_sub_title {
  font-weight: 400;
  text-transform: uppercase;
}
.ready .common_btn {
  padding: 28px 42.5px;
}

.common_btn {
  border: none;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid var(--root-white);
  color: #000;
  height: 70px;
  text-transform: uppercase;
  text-align: center;
  padding: 28px 45.5px;
  display: inline-block;
  line-height: 0.8;
  letter-spacing: 1.6px;
  position: relative;
  outline: none;
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

/**COM END***/

/*** reference Start ***/
.reference .reference-item {
  position: relative;
  margin-bottom: 30px;
  padding: 0 25px 25px 25px;
}

.reference .reference-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-light);
  z-index: -1;
}

.reference .reference-item .reference-img {
  display: flex;
  justify-content: center;
}

.reference .reference-item .reference-img img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 5px solid var(--bs-light);
  border-style: double;
  background: var(--bs-white);
}

.reference .reference-item .reference-text {
  padding: 25px 0;
  text-align: center;
}

.reference .reference-item .reference-title {
  display: flex;
  justify-content: space-between;
}

.reference .reference-item .reference-quote-left {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 20px;
  left: 25px;
  border-radius: 60px;
  color: var(--bs-primary);
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference .reference-item .reference-quote-right {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -30px;
  right: 25px;
  margin-top: -5px;
  border-radius: 60px;
  color: var(--bs-primary);
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-carousel .owl-stage-outer {
  margin-top: 58px;
  margin-right: -1px;
}

.reference .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--root-base);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.reference .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.reference .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--root-base);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.reference .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.reference-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.reference-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--root-base);
  transition: 0.5s;
}

.reference-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.reference-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reference-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.reference-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}
.reference-carousel .reference-title {
  color: #595959;
  font-size: 16px;
  line-height: 34px;
}

/*** reference End ***/

/**FOOTER START**/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--root-black);
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 113px 0 111px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.footer-widget__title {
  font-size: 16px;
  color: var(--root-base);
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: 7px;
}

.footer-widget__logo {
  position: relative;
  display: block;
}

.footer-widget__Contact {
  position: relative;
  display: block;
}

.footer-widget__Contact-text {
  color: #fafafa;
  font-size: 16px;
  line-height: 34px;
}

.footer-widget__Contact-list {
  position: relative;
  display: block;
  margin-top: 28px;
}

.footer-widget__Contact-list li {
  position: relative;
  display: flex;
}

.footer-widget__Contact-list li + li {
  margin-top: 8px;
}

.footer-widget__Contact-list li > p {
  font-size: 16px;
  font-weight: 600;
  color: var(--root-white);
  line-height: 26px;
}

.footer-widget__Contact-list li > p > a {
  position: relative;
  display: inline-block;
  color: var(--root-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__Contact-list li:first-child > p > a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--root-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__Contact-list li > p > a:hover::before {
  background-color: var(--root-base);
}

.footer-widget__Contact-list li > p > a:hover {
  color: var(--root-base);
  transition: all 500ms ease;
}

.footer-widget__link {
  position: relative;
  display: block;
}

.footer-widget__link .footer-widget__title-box {
  margin-bottom: 21px;
}

.footer-widget__link-list {
  position: relative;
  display: block;
}

.footer-widget__link-list li + li {
  margin-top: 5px;
}

.footer-widget__link-list li a {
  position: relative;
  display: inline-block;
  color: #fafafa;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none !important;
}

.footer-widget__link-list li:hover a {
  color: var(--root-white);
}

.footer-widget__newsletter {
  position: relative;
  display: block;
}

.footer-widget__newsletter .footer-widget__title-box {
  margin-bottom: 21px;
}

.footer-widget__newsletter-text a {
  font-size: 16px;
  color: var(--root-yellow);
  margin-bottom: 10px;
  text-decoration: none !important;
}

.footer-widget__email-box {
  position: relative;
  display: block;
}

.footer-widget__email-input-box {
  position: relative;
  display: block;
}

.footer-widget__email-input-box input[type="email"] {
  width: 100%;
  height: 53px;
  border: none;
  border-bottom: 2px solid rgba(var(--root-white-rgb), 0.2);
  outline: none;
  background-color: transparent;
  font-size: 14px;
  color: var(--root-white);
  padding-right: 38px;
  font-weight: 500;
}

.footer-widget__btn {
  position: absolute;
  right: -6px;
  bottom: 11px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  color: var(--root-yellow);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__btn:hover {
  color: var(--root-white);
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.site-footer__social a {
  position: relative;
  height: 42px;
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--root-white);
  background-color: #101010;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--root-base);
  background-color: var(--root-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--root-white);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a + a {
  margin-left: 10px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 31px 0 35px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-text {
  color: #dddd;
  font-size: 16px;
}

.site-footer__bottom-text span {
  color: #dddd;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--root-base);
}

/**FOOTER END**/

/**CONTACT START**/

/**CONTACT END**/

/**PRELOADER START**/

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  font-family: "New Amsterdam", sans-serif;
  animation: preloaderAnimation 2s ease-in-out;
  letter-spacing: 10px;
}
@media screen and (max-width: 992px) {
  .preloader h1 {
    font-size: 1rem;
    font-weight: 500;
  }
}

/* Preloader Animation */
@keyframes preloaderAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
  }
}

/**PRELOADER END**/

/***PRODUCT DETAIL PAGE START***/

.product-detail-page .vertab-menu .list-group {
  width: 460px !important;
}

.product-detail-page .vertab-menu {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  display: block;
  background: #fff !important;
}

.product-detail-page .nav-pills .nav-link.active,
.product-detail-page .nav-pills .show > .nav-link {
  color: #818181 !important;
  background-image: none;
  background-color: #f6f6f6 !important;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #cacaca;
  padding: 15px 10px;
  font-size: 20px;
}

.product-detail-page .nav-pills .nav-link.active {
  position: relative;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 5px solid #f3ff90 !important;
  padding-left: 5px;
  background-image: none;
  background-color: #f6f6f6;
  color: #333 !important;
  font-size: 20px;
  font-weight: 700;
}

.product-detail-page .nav-link {
  color: #333 !important;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px !important;
}

.product-detail-page .product-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 4px;
}
.product-detail-page .product-category {
  line-height: 16px;
  font-size: 16px;
  font-weight: 500;
}

.product-detail-page .product-description {
  line-height: 24px;
  font-size: 15px;
  font-weight: 500;
}

/***PRODUCT DETAIL PAGE END***/
