:root {
  --primary-color: #2c2c2c;
  --secondary-color: #f9f9f9;
  --text-color: #707070;
  --accent-color: #f56e1f;
  --white-color: #ffffff;
  --divider-color: #eeeeee;
  --dark-divider-color: #ffffff33;
  --error-color: rgb(230, 87, 87);
  --default-font: "Montserrat", sans-serif;
  --accent-font: "Jost", sans-serif;
}

.cm-bg-dark {
  background-color: #000;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--accent-color) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.gshop-navbar {
  margin-top: 0px;
}

.gshop-hero-single {
  position: relative;
  height: 100vh;
  background-position: right;
  background-size: cover;
  padding: 100px 0;
}

/* .gshop-hero-single::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
} */
.hero-left-content {
  margin-top: 150px;
  margin-left: 200px;
}
.gshop-header-contact h6 {
  color: #ffff;
}
.gshop-hero-single h1 {
  color: #ffff;
  text-transform: uppercase;
}

.gshop-hero {
  margin-top: -130px;
}
.gshop-navmenu ul li a {
  display: inline-block;
  padding: 24px 15px;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
}
.sticky-on .gshop-navmenu ul li a {
  display: inline-block;
  padding: 24px 15px;
  font-weight: 500;
  color: #5d6374;
  font-size: 15px;
}

.gheader {
  padding: 25px 0;
  border-bottom: 1px solid #ffffff33;
}
.gshop-header-search svg,
.gshop-header-cart svg,
.gshop-header-user svg {
  fill: #fff;
  stroke: #fff;
}
.sticky-on .gshop-header-search svg,
.sticky-on .gshop-header-cart svg,
.sticky-on .gshop-header-user svg {
  fill: #5d6374;
  stroke: #5d6374;
}

.gshop-hero .btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.gshop-header-cart .btn-primary {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.client-slider {
  position: relative;
  background: #fff;
  z-index: 1;
}

.client-slider-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.client-slider-box {
  width: calc(40% - 20px);
}

.client-logo {
  width: 100px;
}

.client-slider-box .client-logo img {
  width: 100%;
  max-height: 100%;
}

.scroll-down-circle-box {
  width: calc(20% - 20px);
  background: url("../../../img/scroll-down-img-shape.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  margin-top: -58px;
}

.scroll-circle-text {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.scroll-circle-text figure img {
  width: 100%;
  max-width: 165px;
  animation: textrotate 25s infinite linear;
}

.footer-header {
  padding: 50px 20px !important;
}

@keyframes textrotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.scroll-down-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll-down-arrow a {
  width: 90px;
  height: 90px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.scroll-down-arrow a:hover {
  background-color: var(--primary-color);
}

.scroll-down-arrow i {
  font-size: 20px;
  color: var(--white-color);
  border: 3px solid var(--white-color);
  border-radius: 40px;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.scroll-down-arrow a:hover i {
  transform: translateY(3px);
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services {
  background-color: var(--secondary-color);
  padding: 100px 0 150px;
}

.service-item {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.service-item-header {
  position: relative;
  padding: 30px;
}

.service-item-header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item:hover .service-item-header::before {
  top: 0;
}

.service-item-header .icon-box {
  margin-bottom: 20px;
}

.service-item-header .icon-box img {
  position: relative;
  max-width: 40px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.service-item:hover .service-item-header .icon-box img {
  filter: brightness(0) invert(1);
}

.service-item-content {
  position: relative;
  z-index: 1;
}

.service-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.service-item-content h3 a {
  color: inherit;
}

.service-item-content p {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item:hover .service-item-content p {
  color: var(--white-color);
}

.service-image a {
  display: block;
  cursor: pointer;
}

.service-image figure {
  display: block;
}

.service-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.55;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-footer {
  margin-top: 20px;
  text-align: center;
}

.service-footer p {
  margin-bottom: 0;
}

.service-footer p a {
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.service-footer p a:hover {
  color: var(--primary-color);
}

.section-row {
  position: relative;
  margin-bottom: 80px;
  z-index: 1;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-title-content p {
  margin: 0;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../../../img/favicon.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.section-title h1 {
  font-size: 80px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  cursor: pointer;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  cursor: pointer;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.section-title.dark-section h3,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section p,
.section-title-content.dark-section p {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}
/************************************/
/***     07. How It Work css      ***/
/************************************/

.how-it-work {
  padding: 100px 0 150px;
  background-color: var(--white-color);
}

.trusted-client-content {
  display: flex;
  justify-content: flex-end;
}

.trusted-client-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
}

.trusted-client-images {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 15px;
  border-right: 1px solid var(--divider-color);
}

.client-image {
  position: relative;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  margin-left: -20px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  z-index: 1;
}

.client-image:first-child {
  margin: 0;
}

.client-image figure {
  display: block;
}

.client-image img {
  width: 100%;
  border-radius: 50%;
}

.client-image.add-more {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.client-image.add-more h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
}

.trusted-client-title {
  padding: 18px 15px;
  width: 100%;
  max-width: 180px;
}

.trusted-client-title h3 {
  font-size: 20px;
}

.how-work-image {
  display: flex;
  align-items: center;
}

.how-work-image-title {
  position: relative;
  bottom: 100px;
}

.how-work-image-title h2 {
  font-size: 100px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--divider-color);
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.how-work-image:hover .how-work-image-title h2 {
  color: var(--accent-color);
  opacity: 60%;
}

.how-work-image figure {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.how-work-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.37;
  border-radius: 20px;
}

.how-work-steps {
  margin-left: 30px;
}

.how-work-step-item {
  display: flex;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.how-work-step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.how-work-step-item .icon-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  margin-right: 20px;
}

.how-work-step-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 10px;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.how-work-step-item:hover .icon-box::before {
  transform: scale(1);
}

.how-work-step-item .icon-box img {
  position: relative;
  max-width: 50px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.how-work-step-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.how-work-step-content {
  width: calc(100% - 100px);
}

.how-work-step-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.how-work-step-content h3 span {
  color: var(--accent-color);
}

.how-work-step-content p {
  margin-bottom: 0;
}
.cm-form {
  align-items: center;
  background: #e7f4ff;
  padding: 30px 50px;
  border-radius: 50px;
  margin: 50px 0;
}

.section-title-2 h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-title-2 h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../../../img/green-logo.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 30px;
  height: 30px;
}
.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-family: var(--accent-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  border: none;
  padding: 18px 54px 18px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
/************************************/
/***      08. Quick Fact css      ***/
/************************************/

.quick-facts {
  background: url(../../../img/quick-facts-bg.jpg),
    var(--primary-color) no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 0;
}

.fact-counter-item {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.fact-counter-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fact-counter-item h3 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: uppercase;
  padding-left: 30px;
  margin-bottom: 20px;
}

.fact-counter-item h3:before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  top: 1px;
  left: 0;
}

.fact-counter-item h2 {
  font-size: 80px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.fact-counter-item p {
  color: var(--white-color);
  opacity: 80%;
  text-transform: capitalize;
  margin-bottom: 0;
}

.quick-fact-image {
  max-width: 500px;
  margin: 0 auto;
}

.quick-fact-image img {
  width: 100%;
  aspect-ratio: 1 / 1.579;
  object-fit: contain;
}

/************************************/
/***      09. What We Do css      ***/
/************************************/

.best-services {
  background-color: var(--white-color);
  padding: 100px 0 150px;
}

.best-services-box-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.best-services-content {
  position: relative;
  width: calc(50% - 15px);
}

.best-services-image {
  width: calc(50% - 15px);
}

.best-services-body {
  display: flex;
}

.contact-now-circle {
  padding: 55px 0;
}

.contact-now-circle img {
  width: 100%;
  max-width: 140px;
  animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.best-services-box {
  position: absolute;
  left: 180px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  z-index: 1;
}

.best-services-item {
  position: relative;
  width: calc(50% - 15px);
  border: 1px solid var(--divider-color);
  background-color: var(--white-color);
  box-shadow: 0px 0px 57.2px 4px #0000000d;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.best-services-item:hover {
  border-color: var(--accent-color);
}

.best-services-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.best-services-item:hover:before {
  top: 0;
  height: 100%;
}

.best-services-item .icon-box {
  position: relative;
  margin-bottom: 15px;
  z-index: 1;
}

.best-services-item .icon-box img {
  max-width: 40px;
  transition: all 0.4s ease-in-out;
}

.best-services-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.best-services-item-content {
  position: relative;
  z-index: 1;
}

.best-services-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.best-services-item-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.best-services-item:hover .best-services-item-content p,
.best-services-item:hover .best-services-item-content h3 {
  color: var(--white-color);
}

.best-services-image figure {
  display: block;
  border-radius: 20px;
}

.best-services-image img {
  width: 100%;
  aspect-ratio: 1 / 1.088;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***    11. Our Testimonial css   ***/
/************************************/

.our-testimonial {
  padding-top: 170px;
}

.our-testimonial-box {
  background: url("../images/testimonial-bg.png"), var(--accent-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 150px;
}

.our-testimonial-image {
  margin-right: 30px;
  margin-top: -170px;
}

.our-testimonial-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.our-testimonial-image img {
  width: 100%;
  aspect-ratio: 1 / 0.915;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-slider .swiper-wrapper {
  cursor: pointer;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.testimonial-author {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
}

.testimonial-author .author-image {
  margin-right: 20px;
}

.testimonial-author .author-image figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author .author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-author .author-content {
  width: calc(100% - 100px);
}

.testimonial-author .author-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.testimonial-author .author-content p {
  text-transform: capitalize;
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.testimonial-quotes {
  margin-left: 20px;
}

.testimonial-quotes img {
  max-width: 60px;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-item .testimonial-rating i {
  font-size: 16px;
  color: var(--white-color);
}

.testimonial-content p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.testimonial-slider .testimonial-pagination {
  text-align: right;
  margin-top: 15px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  height: 12px;
  width: 12px;
  background: var(--white-color);
  opacity: 1;
  margin: 0 8px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white-color);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider
  .testimonial-pagination
  .swiper-pagination-bullet-active:before {
  height: 24px;
  width: 24px;
}

.testimonial-company-slider {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 80px;
  margin-top: 80px;
}

.testimonial-company-slider .company-logo {
  text-align: center;
}

.testimonial-company-slider .company-logo img {
  width: 100%;
  max-height: 40px;
}

/************************************/
/***     	15. Footer css 	  	  ***/
/************************************/

.main-footer {
  background-image: url(../../../img/quick-facts-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0 0 0;
}

.footer-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background-color: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 80px;
  padding: 50px;
}

.footer-logo {
  width: calc(20% - 10px);
}

.footer-logo img {
  width: 100%;
  max-width: 170px;
}

.footer-contact-box {
  width: calc(80% - 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 30px 80px;
}

.footer-contact-item {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-contact-item::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  background-color: var(--dark-divider-color);
  height: 100%;
  width: 1px;
}

.footer-contact-item:last-child::before {
  display: none;
}

.footer-contact-item .icon-box {
  margin-right: 20px;
}

.footer-contact-item .icon-box img {
  max-width: 50px;
}

.footer-contact-content {
  width: calc(100% - 70px);
}

.footer-contact-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}

.footer-contact-content p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.about-footer {
  width: 100%;
  max-width: 420px;
}

.footer-links h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 30px;
}

.footer-links p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 0;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  text-transform: capitalize;
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid var(--dark-divider-color);
  padding: 60px 0;
  margin-top: 60px;
}

.footer-copyright-text p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}
.footer-contact-item .icon-box {
  background-color: #2c2c2c;
}

.gshop-navbar {
  box-shadow: none;
}

.mt--50 {
  margin-top: -125px;
}

.gstore-breadcrumb {
  padding: 150px 0 50px;
  background-color: rgb(0 0 0);
  background-position: right;
}

.breadcrumb-content h2 {
  color: #fff;
}
.cart-box-wrapper {
  min-width: 500px;
}
.cart-table tr th {
  text-align: center;
  background-color: #000000;
  padding: 18px 10px;
  color: #ffffff;
  border-right: 1px solid #ffffff69;
}

.text-danger {
  color: rgb(145 143 143) !important;
}

h6 {
  font-weight: 500;
}

.cart-table tr th {
  text-align: center;
  background-color: #000000;
  padding: 10px 10px;
  color: #ffffff;
  border-right: 1px solid #ffffff69;
}

.voucher-box {
  background-color: #000;
}

.breadcrumb .breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb li {
  color: #fff;
}

.breadcrumb-item.active {
  color: #f56e1f;
}
.voucher-box h4 {
  color: #fff;
}
.tt-address-content .alert {
  border: 1px dashed #000;
}
a {
  color: #000;
}

.gstore-breadcrumb {
  position: relative;
}

.gstore-breadcrumb::before {
  top: 0;
  position: absolute;
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: -1;
}

.vertical-product-card .thumbnail {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.vertical-product-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .thumbnail {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-content .thumbnail {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog-details-content .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-product-slider {
  width: 100%;
  height: 350px;
}
.quickview-product-slider img {
  width: 100%;
  height: 100%;
}
.rounded-btn {
  color: #fff;
  background-color: #000;
}
.rounded-btn:hover {
  border: 1px solid #f68123 !important;
  background-color: #f68123;
  color: #fff;
}
.apt_cart_box ul li .thumb-wrapper {
  width: 200px;
}
.footer-contact-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 25%;
}

.gshop-subtitle {
  font-family: sans-serif;
  color: #f68123;
}

/************************************/
/***    11. Our Testimonial css   ***/
/************************************/

.our-testimonial {
  padding-top: 170px;
}

.our-testimonial-box {
  background: url("../../../img/testimonial-bg.png"), var(--accent-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 150px;
}

.our-testimonial-image {
  margin-right: 30px;
  margin-top: -170px;
}

.our-testimonial-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.our-testimonial-image img {
  width: 100%;
  aspect-ratio: 1 / 0.915;
  object-fit: cover;
  border-radius: 20px;
}

.testimonial-slider .swiper-wrapper {
  cursor: pointer;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.testimonial-author {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
}

.testimonial-author .author-image {
  margin-right: 20px;
}

.testimonial-author .author-image figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author .author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-author .author-content {
  width: calc(100% - 100px);
}

.testimonial-author .author-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.testimonial-author .author-content p {
  text-transform: capitalize;
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.testimonial-quotes {
  margin-left: 20px;
}

.testimonial-quotes img {
  max-width: 60px;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-item .testimonial-rating i {
  font-size: 16px;
  color: var(--white-color);
}

.testimonial-content p {
  color: var(--white-color);
  opacity: 80%;
  margin: 0;
}

.testimonial-slider .testimonial-pagination {
  text-align: right;
  margin-top: 15px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  height: 12px;
  width: 12px;
  background: var(--white-color);
  opacity: 1;
  margin: 0 8px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--white-color);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider
  .testimonial-pagination
  .swiper-pagination-bullet-active:before {
  height: 24px;
  width: 24px;
}

.testimonial-company-slider {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 80px;
  margin-top: 80px;
}

.testimonial-company-slider .company-logo {
  text-align: center;
}

.testimonial-company-slider .company-logo img {
  width: 100%;
  max-height: 40px;
}

.bg-radius-section {
  border-radius: 30px 30px 0 0;
}

.our-testimonial-box h3 {
  font-size: 20px;
}
.image-box.image-box-border .icon::before {
  background-image: none;
}
.gshop-navmenu ul li a:hover {
  color: #f56e1f;
}

.account-nav-menu li a.active {
  color: #ffffff;
  background: #000;
  padding: 15px 10px;
  border-radius: 30px;
}

.cm-how-work-image {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.cm-how-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-work-image-title h2 {
  font-size: 50px;
  font-weight: 700;
  transform: rotate(270deg);
  writing-mode: vertical-rl;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.bg-radius-section-1 {
  border-radius: 30px 30px 30px 30px;
}

.gshop-navmenu > ul > .has-submenu > ul {
  min-width: 260px;
}
.gshop-header-user .user-menu-wrapper {
  left: auto;
  right: -15px;
}

.cm-bg-2 {
  background-color: #f5f6fa;
}

.load-calculator .nav-pills {
  background-color: #fff;
}
.load-calculator .nav-link {
  text-align: left;
  padding: 20px 15px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
}
.load-calculator .nav-pills .active {
  background-color: #fff;
  border-left: 3px solid #f68123;
  color: #f68123;
  font-weight: 700;
}

.load-calculator .nav-pills img {
  width: 30px;
  height: 30px;
}

.load-calculator .tab-pane {
  margin-right: 10px;
}

.load-input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}

.load-input-title h4 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.load-from .form-select,
.load-from .form-control {
  border: 1px solid #e5e5e5;
}

.sticky-buttons-vertical {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  flex-direction: row;
  gap: 10px; /* Space between buttons */
  z-index: 450; /* Ensure it stays above other elements */
}

.sticky-button {
  padding: 10px 15px;
  background: #f68123; /* Example button color */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
  transform: translateY(160px);
}
.sticky-button:hover {
  padding: 10px 15px;
  background: #000; /* Example button color */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
  transform: translateY(130px);
}

/* Hide the entire Google Translate top bar */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Optional: Prevent page jump when bar loads */
body {
  top: 0 !important;
}
#google_translate_element {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.translate i {
  color: #fff;
  font-size: 24px;
}

.translate {
  position: fixed;
  top: 29px;
  right: 50px;
  width: 50px;
  height: 50px;
  background-color: rgba(223, 158, 83, 0.29);
  overflow: hidden;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 8%);
  box-shadow: 0 0 12px rgb(0 0 0 / 8%);
  z-index: 1000;
}
.goog-te-combo {
  padding: 13px 0 !important;
}
.img_w {
  width: 30px !important;
}

.close-btn {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  color: #000 !important;
  font-size: 20px !important;
}

.cart-table tr td {
  text-align: center;
  padding: 6px 15px;
}

@media only screen and (max-width: 2600px) {
  .hero-left-content {
    margin-top: 450px;
    margin-left: 200px;
  }
}

@media only screen and (max-width: 2000px) {
  .hero-left-content {
    margin-top: 150px;
    margin-left: 200px;
  }
}
@media only screen and (max-width: 1600px) {
  .gshop-hero-single h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1400px) {
  .gshop-hero-single h1 {
    font-size: 30px;
  }
  .hero-left-content {
    margin-top: 70px;
    margin-left: 200px;
  }
  .scroll-down-circle-box {
    margin-top: -45px;
  }
  .footer-contact-item .icon-box img {
    max-width: 30px;
  }
  .section-title h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero-left-content {
    margin-top: 220px;
    margin-left: 200px;
  }
  .translate {
    top: 35px;
    right: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  .cm-tab-none {
    display: none;
  }
  .hero-left-content {
    margin-top: 220px;
    margin-left: 200px;
  }
  .translate {
    top: 30px;
    right: 15px;
  }
  .hero-left-content {
    margin-top: 100px;
    margin-left: 60px;
  }
  .hero-left-content {
    margin-top: 100px;
    margin-left: 60px;
  }
  .footer-header {
    flex-direction: column;
  }
  .footer-contact-box {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }
  .scroll-down-circle-box {
    margin-top: -40px;
  }
  .btn-md {
    padding: 12px 5px;
    font-size: 15px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .cm-form {
    align-items: center;
    background: #e7f4ff;
    padding: 20px 10px;
    border-radius: 50px;
    margin: 50px 0;
  }
  .btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    border-radius: 10px;
    font-family: var(--accent-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 18px 10px 18px 10px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
  }
  .how-it-work .form-select {
    font-size: 12px;
  }
}
@media screen and (max-width: 900px) {
  .listing-top {
    display: none !important;
  }
  .gheader {
    background-color: transparent;
  }

  .hero-btns {
    display: none !important;
  }

  .gshop-hero-single {
    height: 35vh;
    background-position: 90%;
  }
  .hero-left-content {
    margin-top: 50px;
    margin-left: 50px;
  }
  .best-services-item-content h3 {
    font-size: 18px;
  }
  .footer-contact-item {
    width: 100%;
  }
  .footer-logo img {
    display: none;
  }
  .scroll-down-circle-box {
    margin-top: -30px;
  }
  .footer-contact-box {
    flex-direction: column;
  }
  .footer-contact-item::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: 0;
    background-color: transparent;
    height: 100%;
    width: 1px;
  }
  .about-footer {
    margin-bottom: 50px;
  }
  .sticky-buttons-vertical {
    top: 20%;
  }

  .best-services-box {
    left: auto !important;
    position: relative;
    flex-direction: column;
  }

  .best-services-content,
  .best-services-item {
    width: 100%;
  }
  .contact-now-circle img {
    display: none;
  }
  .best-services-box-content {
    flex-direction: column;
  }
  .account-info .profile-pic {
    width: 70px;
  }
  .order-history-table tr th,
  .order-history-table tr td {
    padding: 8px 0px;
    font-size: 8px;
  }
}

@media screen and (max-width: 600px) {
  .sticky-button {
    padding: 3px 5px;
    background: #f68123;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s all;
    transform: translateY(81px);
    font-size: 10px;
  }
  .sticky-button:hover {
    padding: 3px 5px;
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s all;
    transform: translateY(81px);
    font-size: 10px;
  }
  .img_w {
    width: 20px !important;
  }
  .translate {
    top: 35px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .gshop-hero-single h1 {
    font-size: 12px;
  }
  .btn {
    font-weight: 600;
    font-size: 12px;
  }
  .gshop-hero-single::after {
    position: absolute;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
  }
  .scroll-down-arrow a {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
  }
  .scroll-down-arrow a img {
    width: 100%;
    height: 100%;
  }
  .scroll-down-circle-box {
    margin-top: -14px;
  }
  .client-logo {
    width: 50px;
  }
  .client-slider-boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
  }
  .client-slider-box {
    width: calc(45% - 20px);
  }
  .how-it-work,
  .best-services,
  .our-testimonial-box,
  .our-services {
    padding: 30px 0;
  }
  .our-testimonial {
    padding-top: 0;
  }

  .hero-left-content span {
    font-size: 12px !important;
  }
  .hero-left-content span,
  .hero-left-content p {
    font-size: 10px !important;
  }
}
@media screen and (max-width: 400px) {
  .scroll-down-circle-box {
    margin-top: -10px;
  }
}
