:root {
  /**
    @font family declaration
    */
  --gorent-font: 'Roboto', sans-serif;
  --gorent-font-two: 'Inter Tight', sans-serif;
  --gorent-fontawesome: Font Awesome 6 Pro;
  /**
    @color declaration
    */
  --gorent-gray: #868689;
  --gorent-gray-rgb: 134, 134, 137;
  --gorent-base: #ffb51d;
  --gorent-base-rgb: 255, 181, 29;
  --gorent-black: #131222;
  --gorent-black-rgb: 19, 18, 34;
  --gorent-extra: #e3e3e3;
  --gorent-extra-rgb: 227, 227, 227;
  --gorent-white: #ffffff;
  --gorent-white-rgb: 255, 255, 255;
  --gorent-bdr-color: #d9d9d9;
  --gorent-bdr-color-rgb: 238, 239, 242;
  --gorent-bdr-radius: 20px;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 90px 0 0px;
  z-index: 1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-left: 210px;
  margin-right: -30px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.about-one__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-one__img:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.about-one__img-2 {
  position: absolute;
  left: -210px;
  bottom: -211px;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
}

.about-one__img-2 img {
  width: auto;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-one__img-2:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.about-one__experience {
  position: absolute;
  top: 35px;
  left: -75px;
  max-width: 150px;
  width: 100%;
  background-color: var(--gorent-base);
  border-radius: 10px;
  text-align: center;
  padding: 36px 30px 34px;
  border-bottom-left-radius: 0;
  z-index: 2;
}

.about-one__experience::before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  border-top: 35px solid var(--gorent-base);
  border-left: 75px solid transparent;
}

.about-one__experience-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__experience-count h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 35px !important;
  font-family: var(--gorent-font-two) !important;
  color: var(--gorent-black);
}

.about-one__experience-count span {
  font-size: 35px;
  font-weight: 600;
  line-height: 35px !important;
  font-family: var(--gorent-font-two) !important;
  color: var(--gorent-black);
}

.about-one__experience-text {
  color: var(--gorent-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 5px;
  margin-bottom: 0;
}

.about-one__shape-1 {
  position: absolute;
  top: 0;
  left: -180px;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__shape-2 {
  position: absolute;
  top: 133px;
  left: -190px;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__shape-3 {
  position: absolute;
  bottom: -197px;
  right: -11px;
  z-index: -1;
}

.about-one__shape-3 img {
  width: auto;
}

.about-one__shape-4 {
  position: absolute;
  bottom: -164px;
  right: 0px;
  z-index: -1;
}

.about-one__shape-4 img {
  width: auto;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 80px;
}

.about-one__right .section-title {
  margin-bottom: 23px;
}

.about-one__text-1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  font-family: var(--gorent-font-two);
  color: var(--gorent-base);
}

.about-one__text-2 {
  margin-top: 21px;
  margin-bottom: 20px;
}

.about-one__progress-box {
  position: relative;
  display: block;
}

.about-one__progress-box li {
  position: relative;
  display: block;
}

.about-one__progress-box li + li {
  margin-top: 18px;
}

.about-one__progress {
  position: relative;
  display: block;
}

.about-one__progress-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--gorent-black);
  margin-bottom: 7px;
}

.about-one__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--gorent-extra);
}

.about-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  background-color: var(--gorent-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.about-one__progress .count-text {
  position: absolute;
  right: 0;
  bottom: 17px;
  color: var(--gorent-black);
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  font-family: var(--gorent-font-two);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.about-one__progress .bar.marb-0 {
  margin-bottom: 0;
}

.about-one__btn-box-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.about-one__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-one__call-box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-box-icon:hover {
  background-color: var(--gorent-black);
}

.about-one__call-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-box-icon:hover span {
  color: var(--gorent-white);
}

.about-one__call-box-content {
  position: relative;
  display: block;
}

.about-one__call-box-content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 2px;
}

.about-one__call-box-content h4 a {
  color: var(--gorent-black);
}

.about-one__call-box-content h4 a:hover {
  color: var(--gorent-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 1;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.about-two__left .section-title {
  margin-bottom: 23px;
}

.about-two__text-1 {
  margin-bottom: 29px;
}

.about-two__points {
  position: relative;
  display: block;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-two__points li + li {
  margin-top: 7px;
}

.about-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--gorent-base);
}

.about-two__points li p {
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 0;
}

.about-two__progress-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 33px;
}

.about-two__progress-single {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.about-two__progress-single .graph-outer {
  position: relative;
  display: inline-block;
  text-align: center;
  top: 4px;
  z-index: 1;
}

.about-two__progress-single .graph-outer .count-box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.about-two__progress-single .graph-outer .count-text {
  position: relative;
  display: inline-block;
  color: var(--gorent-base);
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  font-family: var(--gorent-font);
}

.about-two__progress-single .graph-outer .count-Parsent {
  position: relative;
  display: inline-block;
  color: var(--gorent-base);
  font-size: 20px;
  font-weight: 500;
}

.about-two__progress-text-box {
  position: relative;
  display: block;
}

.about-two__progress-text-box h4 {
  color: var(--gorent-base);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-two__btn-box-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 46px;
}

.about-two__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-two__call-box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-two__call-box-icon:hover {
  background-color: var(--gorent-black);
}

.about-two__call-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-two__call-box-icon:hover span {
  color: var(--gorent-white);
}

.about-two__call-box-content {
  position: relative;
  display: block;
}

.about-two__call-box-content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 2px;
}

.about-two__call-box-content h4 a {
  color: var(--gorent-black);
}

.about-two__call-box-content h4 a:hover {
  color: var(--gorent-base);
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 180px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.about-two__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-two__img:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.about-two__img-two {
  position: absolute;
  bottom: -240px;
  left: -260px;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  z-index: 2;
}

.about-two__img-two img {
  width: auto;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-two__img-two:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.about-two__video-link {
  position: absolute;
  top: 86px;
  left: -150px;
  z-index: 3;
}

.active .about-two__video-link {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 500ms;
}

.about-two__video-icon {
  position: relative;
  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;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 22px;
  color: var(--gorent-black);
  background-color: rgba(var(--gorent-base-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-two__video-icon:hover {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-two__experience {
  position: absolute;
  bottom: -169px;
  left: 200px;
  max-width: 150px;
  width: 100%;
  background-color: var(--gorent-base);
  border-radius: 10px;
  text-align: center;
  padding: 36px 30px 34px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  z-index: 2;
}

.about-two__experience::before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  border-top: 35px solid var(--gorent-base);
  border-left: 75px solid transparent;
}

.about-two__experience-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__experience-count h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 35px !important;
  font-family: var(--gorent-font-two) !important;
  color: var(--gorent-black);
}

.about-two__experience-count span {
  font-size: 35px;
  font-weight: 600;
  line-height: 35px !important;
  font-family: var(--gorent-font-two) !important;
  color: var(--gorent-black);
}

.about-two__experience-text {
  color: var(--gorent-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 5px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.about-three__left .section-title {
  margin-bottom: 23px;
}

.about-three__text-1 {
  margin-bottom: 29px;
}

.about-three__points-box {
  position: relative;
  display: block;
}

.about-three__points {
  position: relative;
  display: block;
}

.about-three__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.about-three__points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.about-three__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  z-index: 1;
}

.about-three__points li .icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--gorent-base-rgb), 0.2);
  border-radius: 50%;
  z-index: -1;
}

.about-three__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--gorent-black);
  transition: all 500ms ease;
}

.about-three__points li:hover .icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.about-three__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.about-three__points li .content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 16px;
}

.about-three__points li .content p {
  margin-bottom: 0;
}

.about-three__btn-box-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.about-three__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-three__call-box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__call-box-icon:hover {
  background-color: var(--gorent-black);
}

.about-three__call-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__call-box-icon:hover span {
  color: var(--gorent-white);
}

.about-three__call-box-content {
  position: relative;
  display: block;
}

.about-three__call-box-content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 2px;
}

.about-three__call-box-content h4 a {
  color: var(--gorent-black);
}

.about-three__call-box-content h4 a:hover {
  color: var(--gorent-base);
}

.about-three__right {
  position: relative;
  display: block;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img-1 {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.about-three__img-1 img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-three__img-1:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.about-three__img-2 {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: 30px;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
}

.about-three__img-2 img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-three__img-2:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.about-three__satisfied-and-img {
  position: relative;
  display: block;
}

.about-three__satisfied-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--gorent-base);
  border-radius: 20px;
  max-width: 270px;
  width: 100%;
  gap: 20px;
  padding: 30px 30px 26px;
  margin-bottom: 30px;
}

.about-three__satisfied-box .icon {
  position: relative;
  display: inline-block;
}

.about-three__satisfied-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--gorent-black);
}

.about-three__count-box {
  position: relative;
  display: block;
}

.about-three__count {
  position: relative;
  display: block;
}

.about-three__count h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.about-three__count-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gorent-black);
  margin-top: 2px;
  margin-bottom: 0;
}

.about-three__img-3 {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.about-three__img-3 img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.about-three__img-3:hover img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page {
  padding: 120px 0 0px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: rgba(var(--gorent-extra-rgb), 0.3);
  clip-path: polygon(50% 0%, 100% 0, 100% 81%, 81% 94%, 16% 94%, 0 100%, 0 0);
  padding: 146px 0 177px;
  z-index: 1;
}

.banner-one__shape-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: difference;
  z-index: -1;
}

.banner-one__shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 360px;
  background-color: var(--gorent-base);
  z-index: 1;
}

.banner-one__shape-1-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.banner-one__shape-2 {
  position: absolute;
  top: -400px;
  bottom: -535px;
  left: -290px;
  width: 808px;
  background-color: var(--gorent-base);
  z-index: -1;
  transform: rotate(-45deg);
  opacity: 0.05;
}

.banner-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.banner-one__content {
  position: relative;
  display: block;
}

.banner-one__sub-title {
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 0;
}

.banner-one__title {
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 20px;
}

.banner-one__title span {
  color: var(--gorent-base);
}

.banner-one__text {
  color: rgba(var(--gorent-black-rgb), 0.7);
  margin-bottom: 0;
}

.banner-one__btn-box {
  position: relative;
  display: block;
  margin-top: 42px;
}

.banner-one__img-one {
  position: absolute;
  bottom: 0;
  right: -200px;
}

.banner-one__img-one img {
  width: auto;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-list__text {
  margin-bottom: 0;
}

.blog-one__shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 100px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.blog-one__shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  top: 448px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.blog-one__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.blog-one__shape-1 img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.05;
}

.blog-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.blog-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.blog-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.blog-one__single {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 20px 19px 22px;
  border-radius: var(--gorent-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__single:hover {
  background-color: var(--gorent-white);
  box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
  transform: translateY(-10px);
}

.blog-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-one__date {
  position: absolute;
  bottom: -40px;
  right: 0;
  text-align: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 2;
}

.blog-one__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 0;
}

.blog-one__date span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 60px;
  background-color: var(--gorent-extra);
  color: var(--gorent-black);
  font-weight: 600;
  font-size: 18px;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.blog-one__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--gorent-black-rgb), 0.6);
  border-radius: var(--gorent-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-one__single:hover .blog-one__img::before {
  opacity: 1;
}

.blog-one__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: 0.5s ease;
  transform: scale(1.05);
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1);
}

.blog-one__tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 5;
}

.blog-one__single:hover .blog-one__tags {
  opacity: 1;
  transform: translateY(0px);
}

.blog-one__tags span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gorent-white);
  font-weight: 500;
  line-height: 16px;
  font-family: var(--gorent-font-two);
  text-transform: capitalize;
  background-color: var(--gorent-base);
  border-radius: 18px;
  padding: 9px 17px 9px;
}

.blog-one__content {
  position: relative;
  display: block;
  margin-top: 24px;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-one__meta li {
  position: relative;
  display: block;
}

.blog-one__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--gorent-gray);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-one__meta li a {
    font-size: 14px;
  }
}

.blog-one__meta li a span {
  position: relative;
  font-size: 16px;
  color: var(--gorent-base);
}

.blog-one__meta li a:hover {
  color: var(--gorent-base);
}

.blog-one__title {
  font-size: 24px;
  line-height: 1.4em;
  margin-top: 15px;
  margin-bottom: 14px;
  font-weight: 700;
}

.blog-one__title a {
  color: var(--gorent-black);
}

.blog-one__title a:hover {
  color: var(--gorent-base);
}

.blog-one__text {
  margin-bottom: 13px;
}

.blog-one__read-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-black);
}

.blog-one__read-more span {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.blog-one__read-more:hover {
  color: var(--gorent-base);
}

.blog-one__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -110px;
  right: 0px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  z-index: 100;
}

.blog-one__carousel .owl-nav .owl-next,
.blog-one__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px !important;
  color: var(--gorent-white) !important;
  background-color: rgba(var(--gorent-base-rgb), 1) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.blog-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.blog-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
  transform: rotate(180deg);
}

.blog-one__carousel.owl-theme .owl-nav .owl-next span,
.blog-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-one__carousel.owl-theme .owl-nav .owl-next:hover,
.blog-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--gorent-black) !important;
  color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-two__carousel {
  position: relative;
  display: block;
}

.blog-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.blog-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.blog-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.blog-two__single {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 20px 19px 22px;
  border-radius: var(--gorent-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__single:hover {
  background-color: var(--gorent-white);
  box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
  transform: translateY(-10px);
}

.blog-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-two__date {
  position: absolute;
  bottom: -40px;
  right: 0;
  text-align: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 2;
}

.blog-two__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 0;
}

.blog-two__date span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 60px;
  background-color: var(--gorent-extra);
  color: var(--gorent-black);
  font-weight: 600;
  font-size: 18px;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.blog-two__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--gorent-black-rgb), 0.6);
  border-radius: var(--gorent-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-two__single:hover .blog-two__img::before {
  opacity: 1;
}

.blog-two__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: 0.5s ease;
  transform: scale(1.05);
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1);
}

.blog-two__tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 5;
}

.blog-two__single:hover .blog-two__tags {
  opacity: 1;
  transform: translateY(0px);
}

.blog-two__tags span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gorent-white);
  font-weight: 500;
  line-height: 16px;
  font-family: var(--gorent-font-two);
  text-transform: capitalize;
  background-color: var(--gorent-base);
  border-radius: 18px;
  padding: 9px 17px 9px;
}

.blog-two__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-two__user {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-two__user-img {
  position: relative;
  display: block;
  height: 56px;
  width: 56px;
  overflow: hidden;
  border-radius: 50%;
}

.blog-two__user-img img {
  width: 100%;
  border-radius: 50%;
}

.blog-two__user-content {
  position: relative;
  display: block;
  top: 3px;
}

.blog-two__user-name {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-two__user-name a {
  color: var(--gorent-black);
}

.blog-two__user-name a:hover {
  color: var(--gorent-base);
}

.blog-two__title {
  font-size: 24px;
  line-height: 1.4em;
  margin-top: 15px;
  margin-bottom: 14px;
  font-weight: 700;
}

.blog-two__title a {
  color: var(--gorent-black);
}

.blog-two__title a:hover {
  color: var(--gorent-base);
}

.blog-two__text {
  margin-bottom: 13px;
}

.blog-two__read-more {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-black);
}

.blog-two__read-more span {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.blog-two__read-more:hover {
  color: var(--gorent-base);
}

.blog-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -110px;
  right: 0px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  z-index: 100;
}

.blog-two__carousel .owl-nav .owl-next,
.blog-two__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px !important;
  color: var(--gorent-white) !important;
  background-color: rgba(var(--gorent-base-rgb), 1) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.blog-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.blog-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
  transform: rotate(180deg);
}

.blog-two__carousel.owl-theme .owl-nav .owl-next span,
.blog-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-two__carousel.owl-theme .owl-nav .owl-next:hover,
.blog-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--gorent-black) !important;
  color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .blog-details__img img {
    max-width: 100%;
    height: auto;
  }
}

.blog-details__date {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 5px solid var(--gorent-base);
  background-color: var(--gorent-white);
  border-radius: var(--gorent-bdr-radius);
  text-align: center;
}

.blog-details__date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
  margin-bottom: 0;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-details__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--gorent-base);
  border-radius: 16px;
}

.blog-details__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--gorent-font-two);
  color: var(--gorent-white);
  margin-bottom: 0;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gorent-gray);
}

.blog-details__meta li a:hover {
  color: var(--gorent-base);
}

.blog-details__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 19px;
  overflow-wrap: break-word;
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__author-box {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-base-rgb), 0.2);
  border-radius: var(--gorent-bdr-radius);
  padding: 40px 40px 37px;
}

.blog-details__author-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.72px;
  color: var(--gorent-black);
  margin-bottom: 30px;
}

.blog-details__author-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: right;
  color: var(--gorent-black);
  font-family: var(--gorent-font-two);
}

.blog-details__author-name span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--gorent-font);
}

.blog-details__title-2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  margin-top: 41px;
  margin-bottom: 19px;
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
  padding: 30px 30px 30px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__tag-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.blog-details__tag-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-details__tag-list li {
  position: relative;
  display: block;
}

.blog-details__tag-list li a {
  position: relative;
  background-color: var(--gorent-white);
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  color: var(--gorent-gray);
  padding: 10px 15px 10px;
  border-radius: 10px;
  display: block;
}

.blog-details__tag-list li a:hover {
  background-color: var(--gorent-base);
  border: 1px solid var(--gorent-base);
  color: var(--gorent-white);
}

.blog-details__share-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__share-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.blog-details__share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-details__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  color: var(--gorent-black);
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  border-radius: 50%;
}

.blog-details__share a:hover {
  background-color: var(--gorent-base);
  border: 1px solid var(--gorent-base);
  color: var(--gorent-white);
}

.comment-one {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
  padding: 40px 40px 40px;
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--gorent-white);
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-radius: var(--gorent-bdr-radius);
  padding: 29px 29px 30px;
}

.comment-one__single + .comment-one__single {
  margin-top: 30px;
}

.comment-one__image {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.comment-one__image img {
  width: 100%;
  border-radius: 50%;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--gorent-black);
  margin-bottom: 3px;
}

.comment-one__content p {
  margin-top: 14px;
}

.comment-one__btn-box {
  position: absolute;
  top: 28px;
  right: 0px;
}

.comment-one__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
}

.comment-one__btn span {
  font-size: 11px;
  color: var(--gorent-base);
}

.comment-one__btn:hover {
  color: var(--gorent-base);
}

.comment-respond {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 40px 40px 40px;
  border-radius: var(--gorent-bdr-radius);
  margin-top: 60px;
}

.comment-form__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.comment-form__text {
  margin-top: 23px;
  margin-bottom: 38px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-form__input-box input[type=text],
.comment-form__input-box input[type=email],
.comment-form__input-box input[type=url] {
  height: 60px;
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  background-color: var(--gorent-white);
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--gorent-gray);
  height: 140px;
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  background-color: var(--gorent-white);
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding: 20px 20px 30px;
  outline: none;
  font-weight: 400;
}

.comment-form__input-box.text-message-box {
  height: 140px;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box .thm-btn {
  border: none;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title,
.sidebar-right .wp-block-heading {
  position: relative;
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--gorent-base);
  content: "";
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type=search],
.wp-block-search__input {
  display: block;
  border: none;
  outline: none;
  background-color: var(--gorent-white);
  color: var(--gorent-gray);
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--gorent-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--gorent-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--gorent-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--gorent-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--gorent-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--gorent-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--gorent-gray);
}

.sidebar__search-form button[type=submit] {
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.wp-block-search__button {
  background-color: var(--gorent-base);
  border: none;
  color: var(--gorent-white);
  border-radius: 6px;
  transition: all 500ms ease;
}

.wp-block-search__button:hover {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.sidebar__search-form:hover button[type=submit] {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li + li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--gorent-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--gorent-base);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1);
}

.sidebar__category-list li a:hover {
  color: var(--gorent-white);
}

.sidebar__category-list li.active a {
  background-color: var(--gorent-base);
  color: var(--gorent-white);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--gorent-black);
  font-size: 15px;
  font-weight: 600;
  background-color: rgba(var(--gorent-black-rgb), 0.1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gorent-white);
}

.tv-unit-sidebar-widget {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single + .sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--gorent-black);
  overflow: hidden;
  border-radius: 10px;
}

.sidebar-post__img::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--gorent-base-rgb), 0.8);
  border-radius: 10px;
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.7;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle 0.95s;
  animation: circle 0.95s;
  opacity: 1;
}

.sidebar-post__img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0.1s opacity 0.2s ease-in;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.7;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.sidebar__post-content-box h3 a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--gorent-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
  padding: 41px 30px 40px;
  overflow: hidden;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--gorent-gray);
  font-size: 15px;
  font-weight: 400;
  background: var(--gorent-white);
  padding: 6px 24px;
  border-radius: 5px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--gorent-white);
  background: var(--gorent-base);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-list__left {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 56px;
}

.blog-list__img {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.blog-list__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-list__single:hover .blog-list__img:before {
  opacity: 0.2;
}

.blog-list__img img {
  width: 100%;
  border-radius: 20px;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-list__single:hover .blog-list__img img {
  transform: scale(1.06) rotate(0deg);
}

.blog-list__date {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 5px solid var(--gorent-base);
  background-color: var(--gorent-white);
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}

.blog-list__date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
  margin-bottom: 0;
}

.blog-list__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-list__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-list__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--gorent-base);
  border-radius: 16px;
}

.blog-list__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--gorent-font-two);
  color: var(--gorent-white);
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-list__meta li {
  position: relative;
  display: block;
}

.blog-list__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gorent-gray);
}

.blog-list__meta li a:hover {
  color: var(--gorent-base);
}

.blog-list__title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 19px;
  overflow-wrap: break-word;
}

.blog-list__title a {
  color: var(--gorent-black);
}

.blog-list__title a:hover {
  color: var(--gorent-base);
}

.blog-list__read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
  margin-top: 27px;
}

.blog-list__read-more:hover {
  color: var(--gorent-base);
}

.blog-list__read-more span {
  color: var(--gorent-base);
}

.blog-list__read-more::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #6e777d;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__read-more:hover::before {
  background-color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-page .blog-one__single {
  margin-bottom: 30px;
}

.blog-page .car-listing__pagination {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Blog Left Sidebar
--------------------------------------------------------------*/
.blog-left-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-left-sidebar .blog-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Blog Right Sidebar
--------------------------------------------------------------*/
.blog-right-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-right-sidebar .blog-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Booking One
--------------------------------------------------------------*/
.booking-one {
  position: relative;
  display: block;
  padding: 90px 0 0;
  z-index: 1;
}

.booking-one__wrap {
  position: relative;
  display: block;
  max-width: 1680px;
  width: 100%;
  background-color: var(--gorent-black);
  border-radius: 30px;
  margin: 0 auto;
  z-index: 1;
}

.booking-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  opacity: 0.08;
  z-index: -1;
}

.booking-one__left {
  position: relative;
  display: block;
  margin-left: 150px;
  margin-right: 180px;
  margin-top: 50px;
}

.booking-one__img {
  position: relative;
  display: block;
}

.booking-one__img img {
  width: 100%;
  animation: leftRight 4s ease-in-out infinite;
}

.booking-one__shape-1 {
  position: absolute;
  top: 30px;
  right: -239px;
}

.booking-one__shape-1 img {
  width: auto;
}

.booking-one__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.booking-one__content {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
  border-bottom: 5px solid var(--gorent-base);
}

.booking-one__title-box {
  position: relative;
  display: block;
  background-color: var(--gorent-base);
  text-align: center;
  padding: 17.5px 0;
  z-index: 1;
}

.booking-one__title-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.booking-one__title {
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
}

.booking-one__form {
  position: relative;
  display: block;
  padding: 55px 30px 60px;
}

.booking-one__form .row {
  --bs-gutter-x: 20px;
}

.booking-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.booking-one__input-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-black);
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.booking-one__input-title span {
  font-size: 18px;
}

.booking-one__input-box input[type=text],
.booking-one__input-box input[type=email] {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
}

.booking-one__input-box .select-box {
  width: 100%;
}

.booking-one__input-box .nice-select {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--gorent-bdr-color);
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  font-weight: 400;
  border-radius: 25px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  float: none;
}

.booking-one__input-box .nice-select:after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--gorent-bdr-color);
  border-right: 2px solid var(--gorent-bdr-color);
  margin-top: 0px;
  z-index: 10;
}

.booking-one__input-box .nice-select .option {
  color: var(--gorent-white);
}

.booking-one__input-box .nice-select .option.selected {
  font-weight: 500;
}

.booking-one__input-box .nice-select .list {
  background-color: var(--gorent-base);
  border-radius: var(--gorent-bdr-radius);
}

.booking-one__input-box .nice-select .option:hover,
.booking-one__input-box .nice-select .option.focus,
.booking-one__input-box .nice-select .option.selected.focus {
  color: var(--gorent-white);
}

.booking-one__btn-box {
  position: relative;
  display: block;
}

.booking-one__btn-box .thm-btn {
  border: none;
}

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--gorent-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--gorent-base) none repeat scroll 0 0;
  border: 2px solid var(--gorent-base);
  border-radius: 0;
  color: var(--gorent-white);
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: var(--gorent-black) !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--gorent-black) !important;
  background: var(--gorent-black) !important;
  color: var(--gorent-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: var(--gorent-white);
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: var(--gorent-black);
  color: var(--gorent-white);
  border-color: var(--gorent-black);
}

#ui-datepicker-div.ui-widget {
  font-family: var(--gorent-font);
}

/*--------------------------------------------------------------
# Booking Two
--------------------------------------------------------------*/
.booking-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.booking-two__left {
  position: relative;
  display: block;
  margin-top: 54px;
  z-index: 2;
}

.booking-two__left .booking-one__content {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--gorent-bdr-radius);
}

.booking-two__left .booking-one__title-box {
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
}

.booking-two__right {
  position: relative;
  display: block;
  margin-left: -120px;
}

.booking-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
}

.booking-two__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 80px 0 80px;
  border-bottom: 1px solid var(--gorent-bdr-color);
  z-index: 1;
}

.brand-one__carousel {
  position: relative;
  display: block;
}

.brand-one__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.brand-one__img {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-one__img > a > img {
  width: auto !important;
  position: relative;
  opacity: 0.5;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.brand-one__img > a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  border-top: 1px solid var(--gorent-bdr-color);
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding: 29px 0 29px;
  z-index: 1;
}

.brand-two__left {
  position: relative;
  display: block;
}

.brand-two__text {
  font-size: 22px;
  color: var(--gorent-black);
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 0;
}

.brand-two__text span {
  color: var(--gorent-base);
  font-weight: 700;
}

.brand-two__right {
  position: relative;
  display: block;
}

.brand-two__carousel {
  position: relative;
  display: block;
}

.brand-two__single {
  position: relative;
  display: block;
}

.brand-two__img {
  position: relative;
  display: block;
}

.brand-two__img img {
  width: auto !important;
  margin: 0 auto;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  filter: brightness(0.5);
}

.brand-two__img img:hover {
  filter: brightness(0.9);
  transform: scale(0.9);
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  padding: 50px 0 80px;
  border-bottom: 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Call One
--------------------------------------------------------------*/
.call-one {
  position: relative;
  display: block;
  z-index: 1;
}

.call-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.call-one__inner::before {
  position: absolute;
  top: 0;
  left: -180px;
  border-bottom: 180px solid var(--gorent-base);
  border-left: 180px solid transparent;
  border-right: 0px solid transparent;
  content: "";
  transition: all 500ms ease;
}

.call-one__inner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--gorent-base);
  padding: 59px 60px 59px;
  border-top-right-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.call-one__inner-content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  right: -5px;
  width: 55%;
  background-color: var(--gorent-black);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
  z-index: -1;
}

.call-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.call-one__left {
  position: relative;
  display: block;
}

.call-one__sub-title {
  font-size: 16px;
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 8px;
}

.call-one__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1em;
}

.call-one__details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.call-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(var(--gorent-white-rgb), 0.9);
  border-radius: 50%;
  z-index: 1;
}

.call-one__icon:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid rgba(var(--gorent-white-rgb), 0.3);
  border-radius: 50%;
}

.call-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--gorent-black);
}

.call-one__content {
  position: relative;
  display: block;
}

.call-one__content p {
  color: var(--gorent-base);
  font-weight: 500;
  margin-bottom: 0;
}

.call-one__content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  margin-top: 3px;
}

.call-one__content h4 a {
  color: var(--gorent-base);
}

.call-one__content h4 a:hover {
  color: var(--gorent-white);
}

.call-one__btn-box {
  position: relative;
  display: block;
}

.call-one__btn-box .thm-btn::after {
  background-color: var(--gorent-white);
}

.call-one__btn-box .thm-btn:hover {
  color: var(--gorent-black);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.contact-one__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.contact-one__img img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.contact-one__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.contact-one__left .section-title__title {
  color: var(--gorent-white);
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-one__input-box input[type=text],
.contact-one__input-box input[type=email] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--gorent-white-rgb), 0.7);
  display: block;
  border-radius: var(--gorent-bdr-radius);
}

.contact-one__input-box .select-box {
  width: 100%;
}

.contact-one__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: rgba(var(--gorent-white-rgb), 0.7);
  font-weight: 400;
  border-radius: var(--gorent-bdr-radius);
  line-height: 60px;
  display: block;
  float: none;
}

.contact-one__input-box .nice-select:after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgba(var(--gorent-white-rgb), 0.7);
  border-right: 2px solid rgba(var(--gorent-white-rgb), 0.7);
  margin-top: 0px;
  z-index: 10;
}

.contact-one__input-box .nice-select .option {
  color: var(--gorent-white);
}

.contact-one__input-box .nice-select .option.selected {
  font-weight: 500;
}

.contact-one__input-box .nice-select .list {
  background-color: var(--gorent-base);
}

.contact-one__input-box .nice-select .option:hover,
.contact-one__input-box .nice-select .option.focus,
.contact-one__input-box .nice-select .option.selected.focus {
  color: var(--gorent-white);
}

.contact-one__input-box textarea {
  height: 175px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding: 15px 20px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--gorent-white-rgb), 0.7);
  position: relative;
  display: block;
  border-radius: var(--gorent-bdr-radius);
}

.contact-one__input-box.text-message-box {
  height: 175px;
}

.contact-one__btn-box {
  position: relative;
  display: block;
}

.contact-one__btn-box .thm-btn {
  border: none;
}

.contact-one__btn-box .thm-btn::after {
  background-color: var(--gorent-white);
}

.contact-one__btn-box .thm-btn:hover {
  color: var(--gorent-black);
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.contact-info__single {
  position: relative;
  display: block;
  border-radius: var(--gorent-bdr-radius);
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  text-align: center;
  padding: 40px 40px 41px;
  margin-bottom: 0;
}

.contact-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.contact-info__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--gorent-black);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
  transform: scaleX(1);
}

.contact-info__icon span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: var(--gorent-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
  transform: scale(0.9);
  color: var(--gorent-white);
}

.contact-info__single p {
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-info__single h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--gorent-black);
}

.contact-info__single h3 a {
  color: var(--gorent-black);
}

.contact-info__single h3 a:hover {
  color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  border-radius: 20px;
  padding: 60px 0 60px;
}

.contact-page__left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 10px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 523px;
  width: 100%;
  border-radius: 20px;
}

.contact-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 40px;
}

.contact-page__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -1.44px;
  color: var(--gorent-white);
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__input-box input[type=text],
.contact-page__input-box input[type=email],
.contact-page__input-box input[type=number] {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--gorent-white-rgb), 0.05);
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
  border-radius: 10px;
}

.contact-page__input-box .select-box {
  width: 100%;
}

.contact-page__input-box .nice-select {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--gorent-white-rgb), 0.05);
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 400;
  border-radius: 20px;
  line-height: 57px;
  float: none;
}

.contact-page__input-box textarea {
  font-size: 16px;
  color: var(--gorent-gray);
  height: 175px;
  width: 100%;
  background-color: rgba(var(--gorent-white-rgb), 0.05);
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  padding: 15px 20px 30px;
  border-radius: 20px;
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.contact-page__input-box.text-message-box {
  height: 175px;
}

.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn-box .thm-btn {
  border: none;
}

.contact-page__btn-box .thm-btn:hover {
  color: var(--gorent-black);
}

.contact-page__btn-box .thm-btn::before,
.contact-page__btn-box .thm-btn::after {
  background-color: var(--gorent-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding: 90px 0 0;
  z-index: 1;
}

.counter-one__left {
  position: relative;
  display: block;
}

.counter-one__left .section-title {
  margin-bottom: 24px;
}

.counter-one__text {
  margin-bottom: 33px;
}

.counter-one__main-content {
  position: relative;
  display: block;
  margin-right: 70px;
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.counter-one__list li {
  position: relative;
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 10px;
}

.counter-one__single {
  position: relative;
  display: block;
  background-color: var(--gorent-base);
  border: 1px solid var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  padding: 15px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 1;
}

.counter-one__shape-1 {
  position: absolute;
  top: -10px;
  left: 0;
  height: 172px;
  width: 172px;
  background-color: rgba(var(--gorent-black-rgb), 0.03);
  clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: -1;
}

.counter-one__single:hover .counter-one__shape-1 {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.counter-one__shape-2 {
  position: absolute;
  bottom: -10px;
  right: 0;
  height: 172px;
  width: 172px;
  background-color: rgba(var(--gorent-black-rgb), 0.03);
  clip-path: polygon(50% 1%, 50% 1%, 100% 100%, 0 100%);
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: -1;
}

.counter-one__single:hover .counter-one__shape-2 {
  transform: rotateY(180deg);
  transition-delay: 0.5s;
}

.counter-one__single-inner {
  position: relative;
  display: block;
  border: 1px solid var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  padding: 42px 0 48px;
}

.counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--gorent-black);
  transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.counter-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 15px;
}

.counter-one__count-box h3 {
  font-size: 45px;
  font-weight: 600;
  color: var(--gorent-white);
  font-family: var(--gorent-font-two) !important;
  line-height: 1em !important;
}

.counter-one__count-box span {
  font-size: 45px;
  font-weight: 600;
  color: var(--gorent-white);
  font-family: var(--gorent-font-two);
  line-height: 1em;
}

.counter-one__count-box .odometer-formatting-mark {
  display: none;
}

.counter-one__count-text {
  color: var(--gorent-black);
}

.counter-one__list li:nth-child(2) .counter-one__single {
  background-color: var(--gorent-black);
  border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__single-inner {
  border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__icon span {
  color: var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__count-text {
  color: var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__single {
  background-color: var(--gorent-black);
  border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__single-inner {
  border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__icon span {
  color: var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__count-text {
  color: var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__shape-1 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-two__single.c2 .counter-two__shape-1 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-two__single.c2 .counter-two__shape-2 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-one__list li:nth-child(2) .counter-one__shape-2 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-one__list li:nth-child(3) .counter-one__shape-1 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-one__list li:nth-child(3) .counter-one__shape-2 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-one__right {
  position: relative;
  display: block;
  margin-left: -30px;
  margin-right: 90px;
}

.counter-one__img-box {
  position: relative;
  display: block;
}

.counter-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.counter-one__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
}

.counter-one__img-two {
  position: absolute;
  bottom: -222px;
  right: -205px;
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.counter-one__img-two img {
  width: auto;
  border-radius: var(--gorent-bdr-radius);
}

.counter-one__dot-1 {
  position: absolute;
  top: 0;
  right: -100px;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.counter-one__dot-1 img {
  width: auto;
}

.counter-one__dot-2 {
  position: absolute;
  bottom: -220px;
  left: 100px;
  z-index: -1;
}

.counter-one__dot-2 img {
  width: auto;
}

@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }
  33.3% {
    transform: translateX(-3px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
/*--------------------------------------------------------------
# Counter Two 
--------------------------------------------------------------*/
.counter-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.counter-two__inner {
  position: relative;
  display: block;
}

.counter-two__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.counter-two__list li {
  position: relative;
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  padding: 0 10px;
}

.counter-two__single {
  position: relative;
  display: block;
  background-color: var(--gorent-base);
  border: 1px solid var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  padding: 15px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
}

.counter-two__shape-1 {
  position: absolute;
  top: -10px;
  left: 0;
  height: 172px;
  width: 172px;
  background-color: rgba(var(--gorent-black-rgb), 0.03);
  clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: -1;
}

.counter-two__single:hover .counter-two__shape-1 {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.counter-two__shape-2 {
  position: absolute;
  bottom: -10px;
  right: 0;
  height: 172px;
  width: 172px;
  background-color: rgba(var(--gorent-black-rgb), 0.03);
  clip-path: polygon(50% 1%, 50% 1%, 100% 100%, 0 100%);
  transition-delay: 0.1s;
  transition: all 500ms ease;
  z-index: -1;
}

.counter-two__single:hover .counter-two__shape-2 {
  transform: rotateY(180deg);
  transition-delay: 0.5s;
}

.counter-two__single-inner {
  position: relative;
  display: block;
  border: 1px solid var(--gorent-black);
  border-radius: var(--gorent-bdr-radius);
  padding: 42px 0 48px;
}

.counter-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--gorent-black);
  transition: all 500ms ease;
}

.counter-two__single:hover .counter-two__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.counter-two__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 15px;
}

.counter-two__count-box h3 {
  font-size: 45px;
  font-weight: 600;
  color: var(--gorent-white);
  font-family: var(--gorent-font-two) !important;
  line-height: 1em !important;
}

.counter-two__count-box span {
  font-size: 45px;
  font-weight: 600;
  color: var(--gorent-white);
  font-family: var(--gorent-font-two);
  line-height: 1em;
}

.counter-two__count-box .odometer-formatting-mark {
  display: none;
}

.counter-two__count-text {
  color: var(--gorent-black);
}

.counter-two__list li:nth-child(2) .counter-two__single {
  background-color: var(--gorent-black);
  border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__single-inner {
  border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__icon span {
  color: var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__count-text {
  color: var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__single {
  background-color: var(--gorent-black);
  border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__single-inner {
  border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__icon span {
  color: var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__count-text {
  color: var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__shape-1 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-two__list li:nth-child(2) .counter-two__shape-2 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-two__list li:nth-child(4) .counter-two__shape-1 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

.counter-two__list li:nth-child(4) .counter-two__shape-2 {
  background-color: rgba(var(--gorent-white-rgb), 0.03);
}

/*==============================================
   Counter Three
===============================================*/
.counter-three {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  padding: 60px 0 30px;
  z-index: 1;
}

.counter-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-three ul li:nth-child(4) .counter-three__single::before {
  display: none;
}

.counter-three__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 21px;
}

.counter-three__single::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 1px;
  height: 146px;
  background-color: rgba(var(--gorent-white-rgb), 0.1);
  transform: translateY(-50%);
}

.counter-three__icon {
  position: relative;
  display: inline-block;
}

.counter-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--gorent-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-three__single:hover .counter-three__icon span {
  transform: scale(0.9);
}

.counter-three__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 13px 0 5px;
}

.counter-three__count-box h3 {
  font-size: 40px;
  color: var(--gorent-white);
  line-height: 40px !important;
  font-family: var(--gorent-font-two) !important;
  font-weight: 700;
}

.counter-three__count-box span {
  font-size: 40px;
  color: var(--gorent-white);
  line-height: 40px;
  font-family: var(--gorent-font-two);
  font-weight: 700;
  text-transform: uppercase;
}

.counter-three__count-text {
  color: rgba(var(--gorent-white-rgb), 0.5);
  margin-bottom: 0;
}

.counter-three__count-box .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Download App One 
--------------------------------------------------------------*/
.download-app-one {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  padding: 120px 0 120px;
  z-index: 1;
}

.download-app-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.download-app-one__inner {
  position: relative;
  display: block;
}

.download-app-one__inner .row {
  align-items: center;
}

.download-app-one__content {
  position: relative;
  display: block;
}

.download-app-one__sub-title {
  font-size: 20px;
  color: var(--gorent-base);
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.download-app-one__title {
  font-size: 50px;
  color: var(--gorent-base);
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 8px;
}

.download-app-one__text {
  font-size: 18px;
  color: var(--gorent-white);
  line-height: 28px;
  margin-bottom: 0;
}

.download-app-one__google-and-app-store {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.download-app-one__google-and-app-store a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-base);
  padding: 15px 30px 15px;
  border-radius: 10px;
}

.download-app-one__right {
  position: relative;
  display: block;
}

.download-app-one__img {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  margin-left: auto;
}

.download-app-one__img1 {
  position: relative;
  display: block;
}

.download-app-one__img1 img {
  width: 100%;
}

.download-app-one-car__img {
  position: absolute;
  bottom: -85px;
  right: 35px;
  z-index: -1;
}

.download-app-one-car__img img {
  width: auto;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/***
=============================================
Error Page
=============================================
***/
.error-page {
  position: relative;
  display: block;
  background: var(--gorent-white);
  padding: 120px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__img {
  position: relative;
  display: block;
}

.error-page__img img {
  width: auto;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.error-page__content h2 {
  color: var(--gorent-base);
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.error-page__content p {
  color: var(--gorent-black);
  margin: 0;
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 21px;
}

/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.elementor-element.faq-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--gorent-extra-rgb), 0.1);
  z-index: -1;
}

.elementor-element.faq-one__shape-1 {
  position: absolute;
  top: -100px;
  left: -70px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.elementor-element.faq-one__shape-2 {
  position: absolute;
  bottom: -255px;
  right: 100px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.faq-one__left {
  position: relative;
  display: block;
}

.faq-one__img-box {
  position: relative;
  display: block;
  margin-right: 252px;
}

.faq-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.faq-one__img img {
  width: 100%;
  border-radius: 10px;
}

.faq-one__experience-box {
  position: absolute;
  bottom: 30px;
  right: -70px;
  background: linear-gradient(270deg, #ffb51d 45%, #ffffff 100%);
  max-width: 180px;
  width: 100%;
  text-align: center;
  padding: 30px 0 30px;
  border-radius: 10px;
  z-index: 1;
}

.faq-one__experience-year {
  position: relative;
  display: block;
}

.faq-one__experience-year h2 {
  font-size: 50px;
  color: var(--gorent-black);
  font-weight: 700;
  line-height: 1.2em !important;
  font-family: var(--gorent-font-two) !important;
}

.faq-one__experience-text {
  color: var(--gorent-black);
  font-weight: 500;
}

.faq-one__right {
  position: relative;
  display: block;
}

.faq-one__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.15);
  background: var(--gorent-white);
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--gorent-black-rgb), 0.15);
  background: var(--gorent-white);
}

.faq-one__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 25px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--gorent-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 20px;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--gorent-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--gorent-base-rgb), 1);
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--gorent-white);
  background-color: var(--gorent-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
}

.faq-one__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Two
--------------------------------------------------------------*/
.faq-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.faq-two__shape-1 {
  position: absolute;
  top: -100px;
  left: -70px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.faq-two__shape-2 {
  position: absolute;
  bottom: -255px;
  right: 100px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.faq-two__inner-content .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.15);
  background: var(--gorent-white);
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__inner-content .faq-one-accrodion .accrodion.active {
  border: 1px solid rgba(var(--gorent-black-rgb), 0.15);
  background: var(--gorent-white);
}

.faq-two__inner-content .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 25px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-two__inner-content .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--gorent-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__inner-content .faq-one-accrodion .accrodion + .accrodion {
  margin-top: 20px;
}

.faq-two__inner-content .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--gorent-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--gorent-base-rgb), 1);
}

.faq-two__inner-content .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--gorent-white);
  background-color: var(--gorent-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-two__inner-content .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
}

.faq-two__inner-content .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
  padding: 120px 0 100px;
}

.faq-page__left {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.faq-page__right {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.feature-one__inner {
  position: relative;
  display: block;
}

.feature-one__inner-single {
  position: relative;
  display: block;
  padding: 38px 45px 50px;
  background-color: var(--gorent-base);
  border-radius: var(--gorent-bdr-radius);
  margin-bottom: 0;
  z-index: 1;
}

.feature-one__inner-single-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--gorent-bdr-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.feature-one__inner-single--two {
  background-color: var(--gorent-black);
}

.feature-one__inner-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3em;
  color: var(--gorent-black);
  text-transform: uppercase;
}

.feature-one__inner-single--two .feature-one__inner-title {
  color: var(--gorent-base);
}

.feature-one__inner-text {
  color: var(--gorent-white);
  margin-top: 12px;
  margin-bottom: 28px;
}

.feature-one__inner-single--two .feature-one__inner-text {
  opacity: 0.7;
}

.feature-one__inner-btn-box {
  position: relative;
  display: block;
}

.feature-one__inner-btn-box .thm-btn {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.feature-one__inner-btn-box .thm-btn::after {
  background-color: var(--gorent-white);
}

.feature-one__inner-btn-box .thm-btn:hover {
  color: var(--gorent-black);
}

.feature-one__inner-single--two .feature-one__inner-btn-box .thm-btn {
  background-color: var(--gorent-base);
  color: var(--gorent-black);
}

.feature-one__inner-single--two .feature-one__inner-btn-box .thm-btn::after {
  background-color: var(--gorent-white);
}

.feature-one__inner-single--two .feature-one__inner-btn-box .thm-btn:hover {
  color: var(--gorent-black);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  padding: 120px 0 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*==============================================
    Site Footer
===============================================*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
}

.site-footer__top-inner {
  position: relative;
  display: block;
  padding: 120px 0 113px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 50px;
}

.footer-widget__about-logo {
  position: relative;
  display: inline-block;
}

.footer-widget__about-text {
  margin: 0;
  color: rgba(var(--gorent-white-rgb), 0.7);
  padding-top: 24px;
  padding-bottom: 62px;
}

.footer-widget__form {
  position: relative;
  display: block;
}

.footer-widget__input {
  position: relative;
  display: block;
}

.footer-widget__input input[type=email] {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 2px solid rgba(var(--gorent-white-rgb), 0.1);
  border-radius: 40px;
  outline: none;
  font-size: 18px;
  color: var(--gorent-gray);
  font-weight: 400;
  padding-right: 90px;
  padding-left: 40px;
  margin: 0 auto;
}

.footer-widget__btn {
  position: absolute;
  top: 50%;
  right: 0px;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 20px;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__btn:hover {
  color: var(--gorent-base);
  background-color: var(--gorent-white);
}

.footer-widget__title {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--gorent-white);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.footer-widget__links {
  position: relative;
  display: block;
}

.tv-footer-widget .menu {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 0;
}

.tv-footer-widget .menu li + li {
  margin-top: 16px;
}

.tv-footer-widget .menu li a {
  color: rgba(var(--gorent-white-rgb), 0.7);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tv-footer-widget .menu li a:hover {
  color: var(--gorent-base);
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: -24px;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-widget__contact-list li + li {
  margin-top: 20px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.1);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .icon:hover {
  background-color: var(--gorent-base);
  border: 1px solid var(--gorent-base);
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li p {
  color: rgba(var(--gorent-white-rgb), 0.7);
  margin-bottom: 0;
}

.footer-widget__contact-list li p a {
  color: rgba(var(--gorent-white-rgb), 0.7);
}

.footer-widget__contact-list li p a:hover {
  color: var(--gorent-base);
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: 30px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--gorent-white-rgb), 0.2);
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 28px;
}

.site-footer__copyright {
  position: relative;
  display: block;
}

.site-footer__copyright-text {
  color: rgba(var(--gorent-white-rgb), 0.7);
  margin-bottom: 0;
}

.site-footer__copyright-text a {
  color: var(--gorent-base);
}

.site-footer__copyright-text a:hover {
  color: var(--gorent-white);
}

.site-footer__bottom-menu-box {
  position: relative;
  display: block;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li + li {
  margin-left: 25px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--gorent-white-rgb), 0.7);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--gorent-base);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*==============================================
    Gallery One
===============================================*/
.gallery-one {
  position: relative;
  display: block;
}

.gallery-one__carousel {
  position: relative;
  display: block;
}

.gallery-one__single {
  position: relative;
  display: block;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--gorent-black-rgb), 0.85);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.gallery-one__single:hover .gallery-one__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.gallery-one__img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.gallery-one__single:hover .gallery-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.gallery-one__img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gorent-white);
  opacity: 0;
  transform: translateY(100px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
}

.gallery-one__single:hover .gallery-one__img a {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.gallery-one__img a:hover {
  color: var(--gorent-base);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*==============================================
    Lets Talk Start
===============================================*/
.lets-talk {
  position: relative;
  display: block;
  background-color: var(--gorent-base);
  overflow: hidden;
  padding: 78px 0 81px;
  z-index: 1;
}

.lets-talk__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.lets-talk__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lets-talk__title {
  position: relative;
  display: block;
}

.lets-talk__title p {
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.lets-talk__title h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 17px;
}

.lets-talk__btn-boxes {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.lets-talk__btn-1 {
  position: relative;
  display: block;
}

.lets-talk__btn-1 .thm-btn {
  background-color: var(--gorent-white);
}

.lets-talk__btn-2 {
  position: relative;
  display: block;
}

.lets-talk__btn-2 .thm-btn {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.lets-talk__btn-2 .thm-btn::after {
  background-color: var(--gorent-white);
}

.lets-talk__btn-2 .thm-btn:hover {
  color: var(--gorent-black);
}

/*==============================================
    End
===============================================*/
/*--------------------------------------------------------------
# Listing One
--------------------------------------------------------------*/
.listing-one {
  position: relative;
  display: block;
  padding: 100px 0 120px;
  z-index: 1;
}

.listing-one__tab-box {
  position: relative;
  display: block;
}

.listing-one__tab-box .listing-one-tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background-color: var(--gorent-black);
  padding: 8px 16px 8px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gorent-base);
  background-position: center top;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn:hover::before {
  transform: scaleY(1);
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn.active-btn::before {
  transform: scaleY(1);
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn:hover span {
  color: var(--gorent-white);
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn.active-btn span {
  color: var(--gorent-white);
}

.listing-one__tab-box .p-tabs-content {
  position: relative;
  display: block;
}

.listing-one__tab-box .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.listing-one__tab-box .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 5;
}

.listing-one__inner {
  position: relative;
  display: block;
}

.listing-one__carousel {
  position: relative;
  display: block;
}

.listing-one__carousel .owl-stage-outer {
  overflow: visible;
}

.listing-one__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing-one__single:hover {
  transform: translateY(-10px);
}

.listing-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.listing-one__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--gorent-black-rgb), 0.6);
  border-radius: var(--gorent-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.listing-one__single:hover .listing-one__img::before {
  opacity: 1;
}

.listing-one__img img {
  width: 100%;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  transition: 0.5s ease;
  transform: scale(1.05);
}

.listing-one__single:hover .listing-one__img img {
  transform: scale(1);
}

.listing-one__brand-name {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--gorent-base);
  padding: 8px 25px;
  border-top-right-radius: 15px;
  z-index: 2;
}

.listing-one__brand-name p {
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-one__content {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 23px 25px 30px;
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
}

.listing-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.listing-one__title a {
  color: var(--gorent-black);
}

.listing-one__title a:hover {
  color: var(--gorent-base);
}

.listing-one__meta-box-info {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-top: 13px;
  margin-top: 18px;
}

.listing-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.listing-one__meta li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
}

.listing-one__meta li .text p {
  margin-bottom: 0;
}

.listing-one__meta--two {
  margin-top: 10px;
}

.listing-one__car-rent-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--gorent-extra-rgb), 0.4);
  padding: 10px 0;
  margin-top: 23px;
  margin-bottom: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.listing-one__car-rent {
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}

.listing-one__car-rent span {
  color: var(--gorent-base);
  font-weight: 700;
}

.listing-one__btn-box {
  position: relative;
  display: block;
}

.listing-one__btn-box .thm-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 30px 8px;
}

.listing-one__carousel.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  margin: 40px 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-one__carousel.owl-carousel .owl-dots .owl-dot + .owl-dot {
  margin-left: 16px;
}

.listing-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--gorent-black);
  margin: 0px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.listing-one__carousel.owl-carousel .owl-dot.active {
  background-color: var(--gorent-base);
  width: 145px;
}

.listing-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.listing-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Listing Two
--------------------------------------------------------------*/
.listing-two {
  position: relative;
  display: block;
  padding: 110px 0 120px;
  z-index: 1;
}

.listing-two__carousel {
  position: relative;
  display: block;
}

.listing-two__carousel .owl-stage-outer {
  overflow: visible;
}

.listing-two__single {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: var(--gorent-bdr-radius);
}

.listing-two__img-box {
  position: relative;
  display: block;
}

.listing-two__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.listing-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--gorent-black-rgb), 0.5);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.listing-two__single:hover .listing-two__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.listing-two__img img {
  width: 100%;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  transform: scale(1);
  transition: all 1500ms ease;
}

.listing-two__single:hover .listing-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.listing-two__content {
  position: relative;
  display: block;
  padding: 14px 20px 20px;
}

.listing-two__sub-title {
  font-weight: 500;
  color: var(--gorent-base);
  text-transform: capitalize;
  margin-bottom: 0;
}

.listing-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 5px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.listing-two__title a {
  color: var(--gorent-black);
}

.listing-two__title a:hover {
  color: var(--gorent-base);
}

.listing-two__price-and-btn {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(190, 190, 190, 0.3);
  padding-top: 12px;
}

.listing-two__price-box {
  position: relative;
  display: block;
}

.listing-two__price-box span {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.listing-two__price-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-two__btn-box {
  position: relative;
  display: block;
}

.listing-two__btn-box .thm-btn {
  padding: 3px 20px 3px;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Listing Three
--------------------------------------------------------------*/
.listing-three {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.listing-three__carousel {
  position: relative;
  display: block;
}

.listing-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.listing-three__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.listing-three__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.listing-three__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing-three__single:hover {
  transform: translateY(-10px);
}

.listing-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.listing-three__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--gorent-black-rgb), 0.6);
  border-radius: var(--gorent-bdr-radius);
  opacity: 0;
  z-index: 1;
  content: "";
}

.listing-three__single:hover .listing-three__img::before {
  opacity: 1;
}

.listing-three__img img {
  width: 100%;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  transition: 0.5s ease;
  transform: scale(1.05);
}

.listing-three__single:hover .listing-three__img img {
  transform: scale(1);
}

.listing-three__brand-name {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--gorent-base);
  padding: 8px 25px;
  border-top-right-radius: 15px;
  z-index: 2;
}

.listing-three__brand-name p {
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-three__content {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 23px 25px 30px;
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
}

.listing-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.listing-three__title a {
  color: var(--gorent-black);
}

.listing-three__title a:hover {
  color: var(--gorent-base);
}

.listing-three__meta-box-info {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-top: 13px;
  margin-top: 18px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.listing-three__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.listing-three__meta li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
}

.listing-three__meta li .text p {
  margin-bottom: 0;
}

.listing-three__carousel .owl-nav.disabled {
  display: block !important;
}

.listing-three__meta--two {
  margin-top: 10px;
}

.listing-three__car-rent-and-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-three__car-rent {
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}

.listing-three__car-rent span {
  color: var(--gorent-base);
  font-weight: 700;
}

.listing-three__btn-box {
  position: relative;
  display: block;
}

.listing-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: var(--gorent-black);
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.listing-three__btn span {
  position: relative;
  display: block;
  transform: rotate(-45deg);
}

.listing-three__btn:hover {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.listing-three__carousel .owl-nav {
  position: absolute;
  top: -120px;
  right: 0;
  margin: 0 !important;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border: none;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing-three__carousel.owl-theme .owl-nav .owl-prev {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border: none;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.listing-three__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next span,
.listing-three__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next:hover,
.listing-three__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: rgba(var(--gorent-black-rgb), 1);
  color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Cars Page
--------------------------------------------------------------*/
.cars-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.cars-page .listing-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Car Listing Page One
--------------------------------------------------------------*/
.car-listing-page-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .car-listing-page-one {
    padding: 80px 0 80px;
  }
}

.car-listing-page-one .listing-one__single {
  margin-bottom: 30px;
}

.car-listing-page-one .listing-one__content {
  padding: 23px 20px 30px;
}

.car-listing-page-one .listing-one__meta li {
  gap: 5px;
}

.car-listing-page-one .listing-one__meta li .text p {
  font-size: 14px;
}

.car-listing-page-one .listing-one__car-rent {
  font-size: 18px;
}

.car-listing-page-one .listing-one__title {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Car Listing Sidebar
--------------------------------------------------------------*/
.car-listing-page-one__right {
  position: relative;
  display: block;
}

.car-listing__pagination {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.car-listing__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.car-listing__pagination .pg-pagination li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  color: var(--gorent-black);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  font-family: var(--gorent-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.car-listing__pagination .pg-pagination li:hover a,
.car-listing__pagination .pg-pagination li.active a {
  border: 1px solid var(--gorent-base);
  color: var(--gorent-black);
  background-color: var(--gorent-base);
}

.car-listing__sidebar {
  position: relative;
  display: block;
}

.car-listing__sidebar-single + .car-listing__sidebar-single {
  margin-top: 30px;
}

.car-listing__sidebar-title {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.car-listing__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--gorent-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.car-listing__search {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 30px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
}

.car-listing__search form {
  position: relative;
}

.car-listing__search form input[type=search],
.car-listing__search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--gorent-gray);
  font-family: var(--gorent-font);
  border: none;
  outline: none;
  font-weight: 400;
  border-radius: 10px;
}

.car-listing__search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.car-listing__search form button[type=submit] {
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.car-listing__search form button:hover[type=submit] {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.car-listing__price-ranger {
  position: relative;
  padding: 27px 30px 30px;
  margin: 0;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
}

.car-listing__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.car-listing__price-ranger .price-ranger .ui-widget-content {
  background: var(--gorent-black);
  border: none;
  height: 5px;
}

.car-listing__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--gorent-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.car-listing__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--gorent-base);
}

.car-listing__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background: var(--gorent-black);
  float: right;
  text-align: center;
  border: none;
  color: var(--gorent-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--gorent-gray);
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--gorent-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}

.car-listing__category {
  position: relative;
  display: block;
  padding: 27px 30px 30px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
}

.car-listing__category ul {
  position: relative;
  display: block;
}

.car-listing__category ul li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--gorent-white);
  padding: 10px 15px 10px;
  border-radius: 10px;
}

.car-listing__category ul li + li {
  margin-top: 10px;
}

.car-listing__category ul li .checked-box {
  position: relative;
  display: block;
}

.car-listing__category ul li .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--gorent-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--gorent-font);
}

.car-listing__category ul li .checked-box input[type=checkbox] {
  display: none;
}

.car-listing__category ul li .checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  vertical-align: middle;
  background-color: transparent;
  background: var(--gorent-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.car-listing__category ul li .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--gorent-white);
  border-right: 2px solid var(--gorent-white);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.car-listing__category ul li.checked-box input[type=checkbox]:checked + label span {
  border-color: var(--gorent-white);
}

.car-listing__category ul li .checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}

.car-listing__category ul li .counts-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-bdr-color);
  color: var(--gorent-black);
  padding: 5px 8px 4px;
  border-radius: 10px;
}

.car-listing__category ul li .counts-box p {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
}

.car-listing__rating {
  position: relative;
  display: block;
  padding: 27px 30px 30px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
}

.car-listing__rating-box {
  position: relative;
  display: block;
}

.car-listing__rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.car-listing__rating-box ul li {
  position: relative;
  display: block;
}

.car-listing__rating-box ul li + li {
  margin-top: 30px;
}

.car-listing__rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.car-listing__rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.car-listing__rating-box ul li label span.gray {
  color: #dddbdb;
}

.car-listing__rating-box ul li input[type=radio] + label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--gorent-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.car-listing__rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--gorent-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.car-listing__rating-box ul li input[type=radio]:checked + label i {
  border-color: var(--gorent-base);
}

.car-listing__rating-box ul li input[type=radio]:checked + label i::before {
  transform: scale(1);
}

.car-listing__google-map {
  position: relative;
  display: block;
  padding: 27px 30px 30px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
}

.car-listing__google-map-box {
  position: relative;
  display: block;
  border: none;
  height: 200px;
  width: 100%;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Car Listing Page Two
--------------------------------------------------------------*/
.car-listing-page-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .car-listing-page-two {
    padding: 80px 0 80px;
  }
}

.car-listing-page-two .listing-two__single {
  margin-bottom: 30px;
}

.car-listing-page-two__right {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Car Listing Page Three
--------------------------------------------------------------*/
.car-listing-page-three {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .car-listing-page-three {
    padding: 80px 0 80px;
  }
}
.car-listing-page-three .car-listing__pagination {
  margin-top: 50px;
}

.car-listing-page-three .listing-three__single {
  margin-bottom: 30px;
}

.car-listing-page-three__right {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Listing Single
--------------------------------------------------------------*/
.listing-single {
  position: relative;
  display: block;
  padding: 111px 0 80px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .listing-single {
    padding-bottom: 120px;
  }
}

.listing-single__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.listing-single__top-left {
  position: relative;
  display: block;
}

.listing-single__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.listing-single__sub-title {
  font-weight: 600;
  color: var(--gorent-black);
}

.listing-single__car-details-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.listing-single__car-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.listing-single__car-details + .listing-single__car-details {
  margin-top: 15px;
}

.listing-single__car-details li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 22px 5px;
  background-color: rgba(var(--gorent-base-rgb), 0.15);
  border-radius: 6px;
}

.listing-single__car-details li span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--gorent-black);
}

.listing-single__car-details li p {
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 0;
}

.listing-single__top-right {
  position: relative;
  display: block;
  text-align: right;
}

.listing-single__tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.listing-single__tag a {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gorent-black);
  font-weight: 600;
}

.listing-single__tag a:hover {
  color: var(--gorent-base);
}

.listing-single__tag a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: 50%;
  color: var(--gorent-black);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.listing-single__tag a:hover span {
  border: 1px solid var(--gorent-base);
  background-color: var(--gorent-base);
  color: var(--gorent-white);
}

.listing-single__price {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 29px;
  margin-bottom: 9px;
}

.listing-single__offer-price {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.listing-single__offer-price .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.listing-single__offer-price .icon span {
  color: var(--gorent-base);
  font-size: 18px;
}

.listing-single__offer-price .text {
  position: relative;
  display: block;
}

.listing-single__offer-price .text p {
  font-size: 18px;
  font-weight: 600;
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-single__inner {
  position: relative;
  display: block;
}

.listing-single__main-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.listing-single__main-content-inner {
  position: relative;
  display: block;
}

.listing-single__left {
  position: relative;
  display: block;
}

.listing-single__img {
  position: relative;
  display: block;
  border-radius: 10px;
}

.listing-single__img img {
  width: 100%;
  border-radius: 10px;
}

.listing-single__right {
  position: relative;
  display: block;
  margin-left: 225px;
}

.listing-single__title-two {
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
}

.listing-single__text {
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 18px;
}

.listing-single__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.listing-single__meta li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.listing-single__meta li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.listing-single__meta li .icon span {
  font-size: 18px;
  color: var(--gorent-base);
}

.listing-single__meta li .text {
  position: relative;
  display: block;
  flex: 1;
}

.listing-single__meta li .text p {
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-single__meta li .text p a {
  position: relative;
  display: inline-block;
  color: var(--gorent-black);
  font-weight: 700;
  text-decoration: underline;
}

.listing-single__meta li .text p a span {
  position: relative;
  display: block;
  padding-left: 7px;
}

.listing-single__btn-and-video-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 37px;
}

.listing-single__btn-box {
  position: relative;
  display: block;
}

.listing-single__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.listing-single__video-icon {
  position: relative;
  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;
  width: 60px;
  height: 60px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: var(--gorent-base);
  background-color: var(--gorent-black);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.listing-single__video-icon:hover {
  background-color: var(--gorent-base);
  color: var(--gorent-white);
}

.listing-single__video-link .ripple,
.listing-single__video-icon .ripple:before,
.listing-single__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.listing-single__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.listing-single__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.listing-single__video-title {
  font-size: 20px;
  color: var(--gorent-base);
  font-weight: 600;
  font-family: var(--gorent-font);
}

.listing-single__thumb-box {
  position: absolute;
  top: 0;
  left: 552px;
  width: 161px;
  height: 523px;
  overflow: hidden;
  z-index: 100;
}

#listing-single__thumb {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}

@media (max-width: 767px) {
  #listing-single__thumb {
    display: none;
  }
}
.listing-single__img-holder-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 161px;
  width: 161px;
  overflow: hidden;
  z-index: 1;
}

.listing-single__img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  border-radius: 10px;
  width: 161px;
  height: 161px;
  cursor: pointer;
  z-index: 1;
}

.listing-single__img-holder:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  background-color: rgba(var(--gorent-base-rgb), 0);
  border-radius: 10px;
  z-index: 1;
  transition: all 500ms ease;
}

.swiper-slide-active .listing-single__img-holder:before,
.swiper-slide-thumb-active .listing-single__img-holder:before {
  background-color: rgba(var(--gorent-black-rgb), 0.4);
}

.listing-single__img-holder > img {
  width: 100%;
  transition: all 0.5s ease-in-out 0.6s;
  border-radius: 10px;
}

.listing-single__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 100;
}

.listing-single__nav .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border: none;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.listing-single__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border: none;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.listing-single__nav .swiper-button-next:hover,
.listing-single__nav .swiper-button-prev:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-black);
}

.listing-single__nav .swiper-button-next {
  margin-right: 10px;
}

.listing-single__nav .swiper-button-next i,
.listing-single__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.listing-single__nav .swiper-button-next::after,
.listing-single__nav .swiper-button-prev::after {
  display: none;
}

.listing-single__bottom {
  position: relative;
  display: block;
  margin-top: 60px;
}

.listing-single__bottom-left {
  position: relative;
  display: block;
}

.listing-single__car-overview {
  position: relative;
  display: block;
}

.listing-single__car-overview-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.listing-single__car-overview-points-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.listing-single__car-overview-point {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
}

.listing-single__car-overview-point li {
  position: relative;
  display: flex;
  align-items: center;
}

.listing-single__car-overview-point li + li {
  margin-top: 22px;
}

.listing-single__car-overview-point-left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 145px;
  width: 100%;
}

.listing-single__car-overview-point-left i {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--gorent-black);
}

.listing-single__car-overview-point-left p {
  font-size: 18px;
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-single__car-overview-point-right {
  position: relative;
  display: block;
  margin-left: 100px;
}

.listing-single__car-overview-point-right p {
  font-size: 18px;
  color: var(--gorent-black);
  margin-bottom: 0;
}

.listing-single__description {
  position: relative;
  display: block;
  border-top: 1px solid var(--gorent-bdr-color);
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding-top: 45px;
  padding-bottom: 40px;
  margin-top: 45px;
  margin-bottom: 45px;
}

.listing-single__description-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 25px;
}

.listing-single__description-text-1 {
  margin-bottom: 18px;
}

.listing-single__feature {
  position: relative;
  display: block;
}

.listing-single__feature-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 34px;
}

.listing-single__feature-points-box {
  position: relative;
  display: flex;
  gap: 50px;
}

.listing-single__feature-point-single {
  position: relative;
  display: block;
}

.listing-single__feature-point-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.listing-single__feature-point {
  position: relative;
  display: block;
}

.listing-single__feature-point li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.listing-single__feature-point li + li {
  margin-top: 16px;
}

.listing-single__feature-point li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  font-size: 8px;
  border-radius: 5px;
}

.listing-single__feature-point li .text {
  position: relative;
  display: block;
}

.listing-single__feature-point li .text p {
  color: var(--gorent-black);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.listing-single__review-and-comment {
  position: relative;
  display: block;
  margin-top: 50px;
  border-top: 1px solid var(--gorent-bdr-color);
  padding-top: 50px;
}

.listing-single__review-and-comment .review-one__title h3 {
  text-transform: uppercase;
}

.listing-single__review-and-comment .review-form-one__title {
  text-transform: uppercase;
}

.listing-single__review-and-comment .comments-area .comment-box {
  border-bottom: 1px solid var(--gorent-bdr-color);
}

.listing-single__sidebar {
  position: relative;
  display: block;
  margin-top: 7px;
  margin-left: 60px;
}

.listing-single__single-box + .listing-single__single-box {
  margin-top: 30px;
}

.listing-single__rent-car-daily-price {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 35px 30px 26px;
  border-radius: var(--gorent-bdr-radius);
}

.listing-single__rent-car-daily-price p {
  font-size: 20px;
}

.listing-single__rent-car-daily-price h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 10px;
}

.listing-single__rent-car {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 27px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
}

.listing-single__rent-car-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 19px;
}

.listing-single__rent-car-content {
  position: relative;
  display: block;
}

.listing-single__rent-car-content-form {
  position: relative;
  display: block;
}

.listing-single__rent-car-date-box {
  position: relative;
  display: block;
}

.listing-single__rent-car-date-box + .listing-single__rent-car-date-box {
  margin-top: 15px;
}

.listing-single__rent-car-date-title {
  font-size: 18px;
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 10px;
}

.listing-single__rent-car-date-time-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.listing-single__rent-car-date-time-box input[type=text],
.listing-single__rent-car-date-time-box input[type=email] {
  height: 50px;
  width: 60%;
  background-color: transparent;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
}

.listing-single__rent-car-time-box {
  width: 36% !important;
}

.listing-single__rent-car-extra {
  position: relative;
  display: block;
  border-top: 1px solid var(--gorent-bdr-color);
  border-bottom: 1px solid var(--gorent-bdr-color);
  margin-top: 30px;
  padding-top: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.listing-single__rent-car-extra-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 15px;
}

.listing-single__rent-car-extra ul {
  position: relative;
  display: block;
}

.listing-single__rent-car-extra ul li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding-bottom: 8px;
}

.listing-single__rent-car-extra ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.listing-single__rent-car-extra ul li + li {
  margin-top: 10px;
}

.listing-single__rent-car-extra ul li .checked-box {
  position: relative;
  display: block;
}

.listing-single__rent-car-extra ul li .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--gorent-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--gorent-font);
}

.listing-single__rent-car-extra ul li .checked-box input[type=checkbox] {
  display: none;
}

.listing-single__rent-car-extra ul li .checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  vertical-align: middle;
  background-color: transparent;
  background: var(--gorent-extra);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.listing-single__rent-car-extra ul li .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--gorent-black);
  border-right: 2px solid var(--gorent-black);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.listing-single__rent-car-extra ul li.checked-box input[type=checkbox]:checked + label span {
  border-color: var(--gorent-white);
}

.listing-single__rent-car-extra ul li .checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}

.listing-single__rent-car-price-box {
  position: relative;
  display: block;
}

.listing-single__rent-car-price-box ul {
  position: relative;
  display: block;
}

.listing-single__rent-car-price-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.listing-single__rent-car-price-box ul li + li {
  margin-top: 8px;
}

.listing-single__rent-car-price-box ul li .title {
  position: relative;
  display: block;
}

.listing-single__rent-car-price-box ul li .title p {
  font-size: 18px;
  color: var(--gorent-black);
  font-weight: 400;
}

.listing-single__rent-car-price-box ul li:last-child .title p {
  font-weight: 700;
}

.listing-single__rent-car-price-box ul li .price {
  position: relative;
  display: block;
}

.listing-single__rent-car-price-box ul li .price p {
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 600;
}

.listing-single__btn-box-2 {
  position: relative;
  display: block;
  margin-top: 20px;
}

.listing-single__btn-box-2 .thm-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 30px 8px;
}

.listing-single__contact-info {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 30px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
}

.listing-single__contact-phone {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-extra-rgb), 0.5);
  padding: 25px 25px 18px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.listing-single__contact-phone-number {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 600;
}

.listing-single__contact-phone-number:hover {
  color: var(--gorent-base);
}

.listing-single__contact-phone-number span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--gorent-base);
  padding-right: 15px;
}

.listing-single__contact-phone-text {
  color: #636a80;
  font-size: 14px;
  margin-top: 13px;
  margin-bottom: 0;
}

.listing-single__contact-btn-box {
  position: relative;
  display: block;
}

.listing-single__contact-btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border-radius: 10px;
  padding: 13px 0 13px;
}

.listing-single__contact-btn-box a + a {
  margin-top: 15px;
}

.listing-single__contact-btn-box a i {
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 400;
  padding-right: 10px;
}

.listing-single__contact-btn-box a:nth-child(2) {
  background-color: var(--gorent-black);
}

.listing-single__contact-btn-box a:nth-child(3) {
  background-color: rgba(var(--gorent-extra-rgb), 0.5);
  color: var(--gorent-black);
}

.listing-single__contact-btn-box a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-black);
}

.listing-single__seller-info {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 30px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
}

.listing-single__seller-info-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
}

.listing-single__seller-info-img {
  position: relative;
  display: block;
  width: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.listing-single__seller-info-img img {
  width: 100%;
  border-radius: 50%;
}

.listing-single__seller-info-content {
  position: relative;
  display: block;
}

.listing-single__seller-info-content p {
  color: #767e94;
}

.listing-single__seller-info-content h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  font-family: var(--gorent-font);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.listing-single__seller-info-content h5 span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: #27c200;
  border-radius: 50%;
  font-size: 6px;
  color: var(--gorent-white);
}

.listing-single__seller-contact-info {
  position: relative;
  display: block;
}

.listing-single__seller-contact-info-list {
  position: relative;
  display: block;
}

.listing-single__seller-contact-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.listing-single__seller-contact-info-list li + li {
  margin-top: 11px;
}

.listing-single__seller-contact-info-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.listing-single__seller-contact-info-list li .icon i {
  color: var(--gorent-base);
  font-size: 17px;
}

.listing-single__seller-contact-info-list li .text {
  position: relative;
  display: block;
}

.listing-single__seller-contact-info-list li .text p {
  color: #636a80;
  margin-bottom: 0;
}

.listing-single__seller-contact-info-list li .text p a {
  color: #636a80;
}

.listing-single__seller-contact-info-list li .text p a:hover {
  color: var(--gorent-base);
}

.listing-single__seller-profile {
  position: relative;
  display: block;
  margin-top: 20px;
}

.listing-single__seller-profile .thm-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 30px 8px;
}

/* Add Css New */
.listing-single__rent-car-content-details-list {
  position: relative;
  display: block;
}

.listing-single__rent-car-content-details-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.listing-single__rent-car-content-details-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.listing-single__rent-car-content-details-icon-box span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: 10px;
  font-size: 24px;
}

.listing-single__rent-car-content-details-icon-box p {
  font-size: 17px;
  margin-bottom: 0;
}

.listing-single__rent-car-content-details-count-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex: 1;
  font-size: 17px;
  margin-bottom: 0;
}

#listing-single-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  visibility: hidden;
  opacity: 0;
  background: rgba(var(--gorent-black-rgb), 0.8);
  transform: translateY(-10px);
  transition: background-color 0.4s ease;
  transition: all 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#listing-single-popup.popup-visible {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.close-listing-single-popup {
  position: absolute;
  display: flex;
  right: 0px;
  top: 0;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: var(--gorent-white);
  background: var(--gorent-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  border-top-right-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.close-listing-single-popup:hover {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.listing-single__rent-car-content-form {
  position: relative;
  display: block;
  max-width: 800px;
  margin: 50px auto 0;
  padding: 40px 50px 50px;
  border-radius: var(--gorent-bdr-radius);
  background-color: var(--gorent-white);
}

.listing-single__rent-car-content-form-title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.listing-single__rent-car-content-form h2 {
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
}

.listing-single__rent-car-date-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.listing-single__rent-car-date-box + .listing-single__rent-car-date-box {
  margin-top: 15px;
}

.listing-single__rent-car-date-title {
  font-size: 18px;
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 10px;
}

.listing-single__rent-car-input-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.listing-single__rent-car-input-box input[type=text],
.listing-single__rent-car-input-box input[type=email],
.listing-single__rent-car-input-box textarea {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
}

.listing-single__rent-car-input-box.text-message-box {
  height: 120px;
}

.listing-single__rent-car-input-box textarea {
  height: 120px;
  padding: 20px 20px 15px;
}

.listing-single__rent-car-input-box .select-box {
  width: 100%;
}

.listing-single__rent-car-input-box .nice-select {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--gorent-bdr-color);
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  font-weight: 400;
  border-radius: 12px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  float: none;
}

.listing-single__rent-car-input-box .nice-select:after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--gorent-bdr-color);
  border-right: 2px solid var(--gorent-bdr-color);
  margin-top: 0px;
  z-index: 10;
}

.listing-single__rent-car-input-box .nice-select .option {
  color: var(--gorent-white);
}

.listing-single__rent-car-input-box .nice-select .option.selected {
  font-weight: 500;
}

.listing-single__rent-car-input-box .nice-select .list {
  background-color: var(--gorent-base);
  border-radius: 12px;
}

.listing-single__rent-car-input-box .nice-select .option:hover,
.listing-single__rent-car-input-box .nice-select .option.focus,
.listing-single__rent-car-input-box .nice-select .option.selected.focus {
  color: var(--gorent-white);
}

.listing-single__rent-car-btn-box {
  position: relative;
  display: block;
}

.listing-single__rent-car-btn-box .thm-btn {
  border: none;
}

.listing-single__btn-box-2 {
  position: relative;
  display: block;
  margin-top: 20px;
}

.listing-single__btn-box-2 .thm-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 30px 8px;
}

.listing-single__contact-info {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 30px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
}

.listing-single__contact-phone {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-extra-rgb), 0.5);
  padding: 25px 25px 18px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.listing-single__contact-phone-number {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--gorent-black);
  font-weight: 600;
}

.listing-single__contact-phone-number:hover {
  color: var(--gorent-base);
}

.listing-single__contact-phone-number span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--gorent-base);
  padding-right: 15px;
}

.listing-single__contact-phone-text {
  color: #636a80;
  font-size: 14px;
  margin-top: 13px;
}

.listing-single__contact-btn-box {
  position: relative;
  display: block;
}

.listing-single__contact-btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border-radius: 10px;
  padding: 13px 0 13px;
}

.listing-single__contact-btn-box a + a {
  margin-top: 15px;
}

.listing-single__contact-btn-box a i {
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 400;
  padding-right: 10px;
}

.listing-single__contact-btn-box a:nth-child(2) {
  background-color: var(--gorent-black);
}

.listing-single__contact-btn-box a:nth-child(3) {
  background-color: rgba(var(--gorent-extra-rgb), 0.5);
  color: var(--gorent-black);
}

.listing-single__contact-btn-box a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-black);
}

.listing-single__seller-info {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--gorent-bdr-color);
  padding: 30px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
}

.listing-single__seller-info-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 24px;
}

.listing-single__seller-info-img {
  position: relative;
  display: block;
  width: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.listing-single__seller-info-img img {
  width: 100%;
  border-radius: 50%;
}

.listing-single__seller-info-content {
  position: relative;
  display: block;
}

.listing-single__seller-info-content p {
  color: #767e94;
  margin-bottom: 0;
}

.listing-single__seller-info-content h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  font-family: var(--gorent-font);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.listing-single__seller-info-content h5 span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  background-color: #27c200;
  border-radius: 50%;
  font-size: 6px;
  color: var(--gorent-white);
}

.listing-single__seller-contact-info {
  position: relative;
  display: block;
}

.listing-single__seller-contact-info-list {
  position: relative;
  display: block;
}

.listing-single__seller-contact-info-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.listing-single__seller-contact-info-list li + li {
  margin-top: 11px;
}

.listing-single__seller-contact-info-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.listing-single__seller-contact-info-list li .icon i {
  color: var(--gorent-base);
  font-size: 17px;
}

.listing-single__seller-contact-info-list li .text {
  position: relative;
  display: block;
}

.listing-single__seller-contact-info-list li .text p {
  color: #636a80;
}

.listing-single__seller-contact-info-list li .text p a {
  color: #636a80;
}

.listing-single__seller-contact-info-list li .text p a:hover {
  color: var(--gorent-base);
}

.listing-single__seller-profile {
  position: relative;
  display: block;
  margin-top: 20px;
}

.listing-single__seller-profile .thm-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 30px 8px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--gorent-black);
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  height: 87px;
  z-index: -1;
  animation: slide 50s linear infinite;
  -webkit-animation: slide 50s linear infinite;
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 158px 0 167px;
  z-index: 15;
}

.page-header__inner h3 {
  font-size: 60px;
  color: var(--gorent-white);
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  overflow-wrap: break-word;
}

.thm-breadcrumb__inner {
  position: relative;
  display: block;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gorent-white);
  text-transform: uppercase;
  font-family: var(--gorent-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li + li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: var(--gorent-white);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--gorent-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 12px;
  color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Popular Car One
--------------------------------------------------------------*/
.popular-car-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  background-color: var(--gorent-black);
  z-index: 1;
}

.popular-car-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.01;
  z-index: -1;
}

.popular-car-one .section-title__title {
  color: var(--gorent-white);
}

.popular-car-one__carousel {
  position: relative;
  display: block;
}

.popular-car-one__single {
  position: relative;
  display: block;
  z-index: 1;
}

.popular-car-one__single-inner {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-white-rgb), 0.05);
  text-align: center;
  z-index: 1;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='234' height='180' viewBox='0 0 234 180'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='234' height='180'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='234' height='180' viewBox='0 0 234 180'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='234' height='180'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  border-radius: 20px;
}

.popular-car-one__icon {
  position: absolute;
  top: 12px;
  right: 10px;
}

.popular-car-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--gorent-base);
}

.popular-car-one__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.popular-car-one__title a {
  color: var(--gorent-white);
}

.popular-car-one__title a:hover {
  color: var(--gorent-base);
}

.popular-car-one__count {
  position: absolute;
  bottom: 20px;
  left: 5px;
  font-size: 18px;
  color: var(--gorent-white);
  font-weight: 400;
  margin-bottom: 0;
}

.popular-car-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.popular-car-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.popular-car-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Popular Car Two
--------------------------------------------------------------*/
.popular-car-two {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.popular-car-two__carousel {
  position: relative;
  display: block;
}

.popular-car-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.popular-car-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.popular-car-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.popular-car-two__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.popular-car-two__single:hover {
  transform: translateY(-10px);
}

.popular-car-two__icon {
  position: relative;
  height: 110px;
  width: 110px;
  margin: 0 auto -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  z-index: 2;
}

.popular-car-two__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--gorent-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.popular-car-two__single:hover .popular-car-two__icon::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.popular-car-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 80px;
  color: var(--gorent-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.popular-car-two__single:hover .popular-car-two__icon span {
  transform: scale(0.9);
  color: var(--gorent-base);
}

.popular-car-two__single-inner {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--gorent-bdr-radius);
  text-align: center;
  overflow: hidden;
  padding: 99px 0 44px;
  z-index: 1;
}

.popular-car-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 12px;
}

.popular-car-two__title a {
  color: var(--gorent-black);
}

.popular-car-two__title a:hover {
  color: var(--gorent-base);
}

.popular-car-two__count {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 100px 0 90px;
  z-index: 1;
}

.pricing-one__shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 160px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.pricing-one__shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  top: 448px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.pricing-one__single {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 36px 40px 37px;
  border-radius: 20px;
  margin-bottom: 0;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.pricing-one__single:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--gorent-base);
}

.pricing-one__title-box {
  position: relative;
  display: block;
}

.pricing-one__title {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 18px;
}

.pricing-one__text {
  font-size: 14px;
  line-height: 20px;
  color: var(--gorent-black);
  margin-bottom: 0;
}

.pricing-one__price-and-icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 29px;
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding-bottom: 16px;
}

.pricing-one__price-box {
  position: relative;
  display: block;
}

.pricing-one__price {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
}

.pricing-one__price span {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--gorent-gray);
  font-family: var(--gorent-font);
}

.pricing-one__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.pricing-one__icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--gorent-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.pricing-one__single:hover .pricing-one__icon-box::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.pricing-one__icon-box span {
  font-size: 30px;
  color: var(--gorent-black);
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.pricing-one__single:hover .pricing-one__icon-box span {
  transform: scale(0.9);
  color: var(--gorent-white);
}

.list-unstyled.pricing-one__points {
  position: relative;
  display: block;
}

.list-unstyled.pricing-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.list-unstyled.pricing-one__points li + li {
  margin-top: 16px;
}

.list-unstyled.pricing-one__points li .price {
  position: relative;
  display: flex;
  align-items: center;
}

.list-unstyled.pricing-one__points li .price p {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--gorent-black);
  font-weight: 500;
}

.list-unstyled.pricing-one__points li .text {
  position: relative;
  display: block;
}

.pricing-one__btn-box {
  position: relative;
  display: block;
  margin-top: 38px;
}

/*--------------------------------------------------------------
# Pricing Two
--------------------------------------------------------------*/
.pricing-two {
  position: relative;
  display: block;
  padding: 100px 0 90px;
  z-index: 1;
}

.pricing-two__list {
  position: relative;
  display: block;
}

.pricing-two__list > li {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--gorent-bdr-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.pricing-two__list > li:last-child {
  border-bottom: 0px;
  padding-bottom: 0;
}

.pricing-two__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.pricing-two__left-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.pricing-two__img {
  position: relative;
  display: block;
  width: 280px;
  overflow: hidden;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: var(--gorent-bdr-radius);
}

.pricing-two__img img {
  width: 100%;
}

.pricing-two__img-content {
  position: relative;
  display: block;
  flex: 1;
}

.pricing-two__title {
  font-size: 40px;
  color: var(--gorent-base);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 40px;
  font-family: var(--gorent-font);
  margin-bottom: 15px;
}

.pricing-two__price-box {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: var(--gorent-black);
}

.pricing-two__price-box span {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: var(--gorent-base);
}

.pricing-two__right-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 150px;
}

.pricing-two__points {
  position: relative;
  display: block;
}

.pricing-two__points > li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-two__points > li + li {
  margin-top: 10px;
}

.pricing-two__points > li .icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--gorent-base);
}

.pricing-two__points > li .text {
  position: relative;
  display: block;
  flex: 1;
}

.pricing-two__points > li .text p {
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 0;
}

.pricing-two__btn-box {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Pricing Page One
--------------------------------------------------------------*/
.pricing-page-one {
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Pricing Page Two
--------------------------------------------------------------*/
.pricing-page-two {
  padding: 0px 0 90px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  padding: 120px 0 0;
  counter-reset: count;
  z-index: 1;
}

.process-one__single {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  border-radius: 20px;
  padding: 45px 25px 33px;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.process-one__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.process-one__icon-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1;
}

.process-one__icon-shape {
  position: absolute;
  top: 50%;
  left: 25px;
  right: 80px;
  height: 5px;
  background-color: var(--gorent-white);
  transform: translateY(-50%);
  opacity: 0.2;
  transition: all 500ms ease;
  z-index: -1;
}

.process-one__icon-shape:before {
  content: "";
  position: absolute;
  top: -8px;
  right: -10px;
  height: 20px;
  width: 20px;
  background-color: var(--gorent-white);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__icon-shape,
.process-one__single:hover .process-one__icon-shape:before {
  background-color: var(--gorent-base);
  opacity: 1;
}

.process-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: rgba(var(--gorent-base-rgb), 1);
  border-radius: 50%;
  z-index: 1;
}

.process-one__icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--gorent-base-rgb), 0.2);
  border-radius: 50%;
  z-index: -1;
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--gorent-black);
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.process-one__count {
  position: relative;
  display: block;
}

.process-one__count::before {
  position: relative;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--gorent-white-rgb), 0.7);
  font-family: var(--gorent-font-two);
  content: var(--service-number);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__count::before {
  -webkit-text-stroke: 1px rgba(var(--gorent-base-rgb), 1);
}

.process-one__title {
  color: var(--gorent-base);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 33px;
  margin-bottom: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.process-one__text {
  color: rgba(var(--gorent-white-rgb), 0.7);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Process Three
--------------------------------------------------------------*/
.process-three {
  padding: 0px 0px 90px;
}

/*--------------------------------------------------------------
# Services Page Process 
--------------------------------------------------------------*/
.services-page-process {
  padding: 90px 0 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Search Car
--------------------------------------------------------------*/
.search-car {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
  z-index: 1;
}

.search-car__shape-1 {
  position: absolute;
  top: 150px;
  left: -300px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.search-car__shape-2 {
  position: absolute;
  top: -255px;
  right: -300px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.search-car__inner {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-base-rgb), 0.1);
  padding: 50px 60px 40px;
  border-radius: var(--gorent-bdr-radius);
  margin-right: 50px;
}

.search-car__tab-box {
  position: relative;
  display: block;
}

.search-car__tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.search-car__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: flex;
  align-items: center;
}

.search-car__tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-left: 0;
}

.search-car__tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: var(--gorent-white);
  background-color: var(--gorent-black);
  padding: 17px 30px 17px;
  text-transform: capitalize;
  cursor: pointer;
  border-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  overflow: hidden;
  z-index: 1;
}

.search-car__tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--gorent-black);
}

.search-car__tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--gorent-base);
  border-radius: 10px;
  background-position: top bottom;
  opacity: 0;
  transform: translateY(10px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: -1;
}

.search-car__tab-box .tab-buttons .tab-btn.active-btn span:before {
  opacity: 1;
  transform: translateY(0%);
}

.search-car__tab-box .tabs-content {
  position: relative;
  display: block;
}

.search-car__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.search-car__tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.search-car__tab-box .tabs-content__inner {
  position: relative;
  display: block;
  padding-top: 35px;
}

.search-car__form {
  position: relative;
  display: block;
}

.search-car__form .row {
  --bs-gutter-x: 20px;
}

.search-car__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.search-car__input-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-black);
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.search-car__input-title span {
  font-size: 18px;
}

.search-car__input-box input[type=text],
.search-car__input-box input[type=email] {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
}

.search-car__input-box .select-box {
  width: 100%;
}

.search-car__input-box .nice-select {
  height: 50px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  font-weight: 400;
  border-radius: 25px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  float: none;
}

.search-car__input-box .nice-select:after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--gorent-gray);
  border-right: 2px solid var(--gorent-gray);
  margin-top: 0px;
  z-index: 10;
}

.search-car__input-box .nice-select .option {
  color: var(--gorent-white);
}

.search-car__input-box .nice-select .option.selected {
  font-weight: 500;
}

.search-car__input-box .nice-select .list {
  background-color: var(--gorent-base);
  border-radius: var(--gorent-bdr-radius);
}

.search-car__input-box .nice-select .option:hover,
.search-car__input-box .nice-select .option.focus,
.search-car__input-box .nice-select .option.selected.focus {
  color: var(--gorent-white);
}

.search-car__btn-box {
  position: relative;
  display: block;
}

.search-car__btn-box .thm-btn {
  border: none;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 120px 0 0;
  z-index: 1;
}

.elementor-element.services-one__shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 50px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.elementor-element.services-one__shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  bottom: -100px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  border-radius: 20px;
  padding: 30px 25px 37px;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.services-one__single-shape-1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  border-left: 105px solid transparent;
  border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
  border-right: 105px solid transparent;
  transform: translateX(-50%);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-one__single:hover .services-one__single-shape-1 {
  border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single-shape-2 {
  position: absolute;
  top: -97px;
  right: -60px;
  border-left: 105px solid transparent;
  border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
  border-right: 105px solid transparent;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-one__single:hover .services-one__single-shape-2 {
  border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single-shape-3 {
  position: absolute;
  bottom: -57px;
  right: -123px;
  border-left: 105px solid transparent;
  border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
  border-right: 105px solid transparent;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-one__single:hover .services-one__single-shape-3 {
  border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 10px;
  background-color: var(--gorent-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-one__single:hover::after {
  background-color: var(--gorent-black);
}

.services-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gorent-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-one__single:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-one__icon {
  position: relative;
  display: inline-block;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--gorent-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
  color: var(--gorent-black);
}

.services-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 49px;
  margin-bottom: 6px;
}

.services-one__title a {
  color: var(--gorent-base);
}

.services-one__single:hover .services-one__title a {
  color: var(--gorent-black);
}

.services-one__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: rgba(var(--gorent-white-rgb), 0.7);
  margin-bottom: 0;
}

.services-one__single:hover .services-one__text {
  color: var(--gorent-black);
}

.services-one__count {
  position: absolute;
  top: 45%;
  right: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-white);
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  transform: translateY(-50%);
  z-index: 1;
}

.services-one__count::before {
  position: relative;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: var(--gorent-black);
  font-family: var(--gorent-font-two);
  counter-increment: count;
  content: var(--service-number);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__count::before {
  color: var(--gorent-base);
}

.services-one__count:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  background-color: var(--gorent-black);
  opacity: 0;
  transform: translateX(55px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: -1;
}

.services-one__single:hover .services-one__count:after {
  opacity: 1;
  transform: translateX(0px);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-two__shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 50px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.services-two__shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  bottom: -100px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.services-two__single {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  border-radius: 20px;
  padding: 30px 25px 37px;
  overflow: hidden;
  z-index: 1;
}

.services-two__single-shape-1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  border-left: 105px solid transparent;
  border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
  border-right: 105px solid transparent;
  transform: translateX(-50%);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-two__single:hover .services-two__single-shape-1 {
  border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single-shape-2 {
  position: absolute;
  top: -104px;
  right: -60px;
  border-left: 105px solid transparent;
  border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
  border-right: 105px solid transparent;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-two__single:hover .services-two__single-shape-2 {
  border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single-shape-3 {
  position: absolute;
  bottom: -57px;
  right: -123px;
  border-left: 105px solid transparent;
  border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
  border-right: 105px solid transparent;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-two__single:hover .services-two__single-shape-3 {
  border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 10px;
  background-color: var(--gorent-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.services-two__single:hover::after {
  background-color: var(--gorent-black);
}

.services-two__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gorent-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-two__single:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: rgba(var(--gorent-white-rgb), 0.08);
  border-radius: 50%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-top: -30px;
  margin-left: -25px;
  z-index: 1;
}

.services-two__icon:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid rgba(var(--gorent-white-rgb), 0.15);
  border-radius: 50%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: -1;
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--gorent-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
  transform: scale(0.9);
  color: var(--gorent-black);
}

.services-two__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 49px;
  margin-bottom: 6px;
}

.services-two__title a {
  color: var(--gorent-base);
}

.services-two__single:hover .services-two__title a {
  color: var(--gorent-black);
}

.services-two__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: rgba(var(--gorent-white-rgb), 0.7);
  margin-bottom: 0;
}

.services-two__single:hover .services-two__text {
  color: var(--gorent-black);
}

.services-two__count {
  position: absolute;
  top: 45%;
  right: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-white);
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  transform: translateY(-50%);
  z-index: 1;
}

.services-two__count::before {
  position: relative;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: var(--gorent-black);
  font-family: var(--gorent-font-two);
  counter-increment: count;
  content: var(--service-number);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__count::before {
  color: var(--gorent-base);
}

.services-two__count:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  background-color: var(--gorent-black);
  opacity: 0;
  transform: translateX(55px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: -1;
}

.services-two__single:hover .services-two__count:after {
  opacity: 1;
  transform: translateX(0px);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  padding: 120px 0 19px;
  counter-reset: count;
  z-index: 1;
}

.services-three .section-title {
  margin-bottom: 83px;
}

.services-three__single {
  position: relative;
  display: block;
  text-align: center;
  padding: 90px 25px 45px;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--gorent-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 0;
  z-index: 1;
}

.services-three__single:hover {
  transform: translateY(-10px);
}

.services-three__icon {
  position: relative;
  height: 90px;
  width: 90px;
  margin: -135px auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
  z-index: 2;
}

.services-three__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--gorent-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-three__single:hover .services-three__icon::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.services-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--gorent-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
  transform: scale(0.9);
  color: var(--gorent-base);
}

.services-three__content {
  position: relative;
  display: block;
  margin-top: 23px;
  margin-bottom: 24px;
}

.services-three__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-three__text {
  margin-bottom: 0;
}

.services-three__title a {
  color: var(--gorent-black);
}

.services-three__title a:hover {
  color: var(--gorent-base);
}

.services-three__count {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto -71px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  z-index: 1;
}

.services-three__count::before {
  position: relative;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: var(--gorent-black);
  font-family: var(--gorent-font-two);
  counter-increment: count;
  content: var(--service-number);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__count::before {
  color: var(--gorent-base);
}

.services-three__count:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--gorent-black);
  transform: scaleY(0.7) rotateY(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.services-three__single:hover .services-three__count:after {
  transform: scaleY(1) rotateY(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
  padding: 90px 0 45px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/***
=============================================
Product
=============================================
***/
.gorent-product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .gorent-product {
    padding: 70px 0 80px;
  }
}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single + .product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--gorent-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 0;
  border-radius: var(--gorent-bdr-radius);
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--gorent-gray);
  font-family: var(--gorent-font);
  border: none;
  border-radius: 10px;
  outline: none;
  font-weight: 400;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type=submit] {
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type=submit] {
  background-color: var(--gorent-black);
  color: var(--gorent-white);
}

.product__price-ranger {
  position: relative;
  margin: 0;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: var(--gorent-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--gorent-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background-color: var(--gorent-base) !important;
  border: 0;
  height: 14px !important;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--gorent-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background: var(--gorent-black);
  float: right;
  text-align: center;
  border: none;
  color: var(--gorent-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--gorent-gray);
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--gorent-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}

.shop-category {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 0;
  border-radius: var(--gorent-bdr-radius);
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--gorent-gray);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--gorent-gray);
  font-weight: 400;
  border-radius: 10px;
  background-color: var(--gorent-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--gorent-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--gorent-base);
  font-family: "icomoon" !important;
  content: "\e940";
  opacity: 1;
  font-size: 12px;
  color: var(--gorent-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-product-tags {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 25px 30px 30px;
  border-radius: var(--gorent-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.shop-product__tags-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--gorent-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--gorent-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
  color: var(--gorent-white);
  background: var(--gorent-base);
}

.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li + li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio] + label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--gorent-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--gorent-base);
  border-radius: 0%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked + label i {
  border-color: var(--gorent-base);
}

.sidebar-rating-box ul li input[type=radio]:checked + label i::before {
  transform: scale(1);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  border-radius: var(--gorent-bdr-radius);
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  background: rgba(var(--gorent-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
  height: 70px;
  width: 70px;
  object-fit: cover;
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--gorent-base);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--gorent-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--gorent-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--gorent-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i + i {
  margin-left: 5px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 150px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  color: var(--gorent-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

.product__all-tab {
  position: relative;
  display: block;
}

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 15px 15px 15px;
  border-radius: var(--gorent-bdr-radius);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--gorent-base);
}

.product__all-tab-button ul li + li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--gorent-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--gorent-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
  opacity: 1;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding: 0 0 30px;
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li + li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  color: var(--gorent-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li + li {
  margin-left: 8px;
}

.single-product-style1 .single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  color: var(--gorent-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}

.single-product-style1__info li a.added_to_cart.wc-forward {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  padding-top: 0;
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 15px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--gorent-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--gorent-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 3.5px 5px 3.5px;
  top: 8px;
}

.single-product-style1__review i {
  color: var(--gorent-base);
  font-size: 12px;
  margin-right: 5px;
}

.single-product-style1__review p {
  color: var(--gorent-black);
  font-weight: 500;
  margin-bottom: 0;
}

.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  border-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  border-right: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i,
.single-product-style2 .star-rating::before,
.single-product-style2 .star-rating span::before {
  color: var(--gorent-base);
  font-size: 16px;
}

.single-product-style2__review i + i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--gorent-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gorent-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--gorent-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-left: 0;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li + li {
  margin-left: 8px;
}

.single-product-style2 .single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2);
  color: var(--gorent-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}

.single-product-style2 .single-product-style2__img img {
  height: 230px;
  width: 225px;
  object-fit: cover;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a,
.styled-pagination li.active span.current {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: rgba(var(--gorent-gray-rgb), 0.5);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--gorent-gray-rgb), 0.5);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--gorent-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a,
.styled-pagination li.active span.current {
  color: var(--gorent-white);
  background: var(--gorent-base);
  border-color: var(--gorent-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--gorent-gray-rgb), 0.5);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--gorent-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--gorent-gray-rgb), 0.5);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--gorent-white);
}

/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.product-details__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
  overflow: hidden;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gorent-base);
  opacity: 0;
  transition: all 500ms ease;
}

#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-radius: 15px;
}

.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--gorent-black);
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}

.product-details__right {
  position: relative;
  display: block;
  margin-top: -9px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--gorent-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--gorent-base);
}

.product-details__reveiw i + i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--gorent-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked + label {
  color: var(--gorent-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio] + label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--gorent-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--gorent-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked + label i {
  border-color: var(--gorent-base);
}

.product-details__select-size ul li input[type=radio]:checked + label i::before {
  transform: scale(1);
  opacity: 1;
}

.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--gorent-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--gorent-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--gorent-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--gorent-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--gorent-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-white);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--gorent-black);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a + a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 110px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span,
.product-details__main-tab-box .tab-buttons.tabs .tab-btn a {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--gorent-black);
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--gorent-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--gorent-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--gorent-black);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--gorent-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3,
.woocommerce-Reviews h2.woocommerce-Reviews-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.review-one__content-top .info h2 span {
  color: var(--gorent-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--gorent-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--gorent-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--gorent-base);
}

.review-form-one__rate i + i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--gorent-gray);
  height: 160px;
  width: 100%;
  background-color: var(--gorent-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--gorent-bdr-radius);
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type=text],
.review-form-one__input-box input[type=email] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--gorent-bdr-radius);
}

.review-form-one__form .thm-btn {
  border: none;
}

/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.related-products__title {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.related-products__title h3 {
  font-size: 40px;
  line-height: 1em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.related-products__title p {
  margin: 0;
}

.single-product-style1.instyle--2 {
  margin-bottom: 0px;
}

/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--gorent-white);
  padding: 112px 0px 112px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}
.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--gorent-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  padding: 0;
  border: none;
  padding-bottom: 22px;
  font-family: var(--gorent-font-two);
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--gorent-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--gorent-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-table h3 a {
  color: var(--gorent-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--gorent-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--gorent-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--gorent-gray);
  font-weight: 700;
}

.cart-table .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--gorent-black);
  font-size: 16px;
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 28px 20px 30px;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--gorent-bdr-radius);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  line-height: 22px !important;
  margin-bottom: 20px !important;
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  color: var(--gorent-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
  width: 100%;
  height: 50px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--gorent-gray);
  font-family: var(--gorent-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__btn-box {
  position: relative;
  display: block;
}

.cart-page__btn-box .thm-btn {
  width: 100%;
  padding: 8px 25px 8px;
  border: none;
  justify-content: center;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
}

.cart-page__coupon-code-text {
  margin-bottom: 16px;
}

.cart-page__coupon-code-form {
  position: relative;
  display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
  width: 100%;
  height: 50px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--gorent-gray);
  font-family: var(--gorent-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  width: 100%;
  padding: 8px 30px 8px;
  border: none;
  justify-content: center;
  margin-top: 20px;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--gorent-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li + li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--gorent-black);
  font-size: 18px;
  margin-right: 60px;
  font-weight: 700;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--gorent-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
}

.cart-page__buttons-1 .thm-btn {
  padding: 8px 30px 8px;
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
}

.cart-page__buttons-2 .thm-btn {
  padding: 8px 30px 8px;
}

/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-area .billing_details {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding: 53px 50px 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .checkout-area .billing_details {
    padding: 53px 15px 60px;
  }
  .checkout-area .billing_details .form-row-first,
  .checkout-area .billing_details .form-row-last {
    width: 100% !important;
    float: none !important;
  }
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title a {
  color: var(--gorent-base);
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type=text],
.billing_input_box input[type=email],
.billing_input_box input[type=tel] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--gorent-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.billing_input_box textarea:focus {
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--gorent-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--gorent-font);
}

.billing_details .checked-box input[type=checkbox] {
  display: none;
}

.billing_details .checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--gorent-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--gorent-white);
  border-right: 2px solid var(--gorent-white);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type=checkbox]:checked + label span {
  border-color: var(--gorent-white);
}

.billing_details .checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  border-radius: 10px;
  color: var(--gorent-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.billing_details_form-btn-1 {
  position: relative;
  display: block;
}

.billing_details_form-btn-1 .thm-btn {
  border: none;
}

.billing_details_form-btn-2 {
  position: relative;
  display: block;
}

.billing_details_form-btn-2 .thm-btn {
  border: none;
}

.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding: 37px 30px 45px;
  z-index: 1;
}

.sidebar-order-summary .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--gorent-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--gorent-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.sidebar-order-summary__list {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list > li:last-child {
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.sidebar-order-summary__list > li > .left-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .left-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list > li > .right-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .right-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list > li > .right-text > ul {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .right-text > ul > li {
  position: relative;
  display: block;
}

.sidebar-order-summary__list > li > .right-text > ul > li + li {
  margin-top: 5px;
}

.sidebar-order-summary__list > li > .right-text > ul > li input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.sidebar-order-summary__list > li > .right-text > ul > li label {
  position: relative;
  display: block;
  padding-right: 24px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list > li > .right-text > ul > li input[type=radio] + label i {
  position: absolute;
  top: 6px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--gorent-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list > li > .right-text > ul > li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--gorent-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list > li > .right-text > ul > li input[type=radio]:checked + label i {
  border-color: var(--gorent-base);
}

.sidebar-order-summary__list > li > .right-text > ul > li input[type=radio]:checked + label i::before {
  transform: scale(1);
}

.sidebar-order-summary__Payment {
  position: relative;
  display: block;
  margin-top: 37px;
}

.checkout__payment {
  position: relative;
  margin-bottom: 30px;
}

.checkout__payment__item + .checkout__payment__item {
  margin-top: 23px;
}

.checkout__payment__title {
  display: flex;
  color: var(--gorent-black);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--gorent-white);
  border: 2px solid rgba(var(--gorent-black-rgb), 0.1);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 10px;
  color: var(--gorent-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--gorent-base);
  border-color: var(--gorent-base);
  content: "\f00c";
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--gorent-gray);
  font-weight: 400;
  margin-top: 15px;
}

.sidebar-order-summary__bottom {
  position: relative;
  display: block;
}

.sidebar-order-summary__bottom .text1 {
  margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
  color: var(--gorent-base);
  text-decoration: underline;
}

.sidebar-order-summary__checked {
  position: relative;
  display: block;
  margin-top: 20px;
}

.sidebar-order-summary__checked label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--gorent-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--gorent-font);
}

.sidebar-order-summary__checked label a {
  color: var(--gorent-base);
}

.sidebar-order-summary__checked input[type=checkbox] {
  display: none;
}

.sidebar-order-summary__checked input[type=checkbox] + label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--gorent-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.sidebar-order-summary__checked label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--gorent-white);
  border-right: 2px solid var(--gorent-white);
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.sidebar-order-summary__checked input[type=checkbox]:checked + label span {
  border-color: var(--gorent-white);
}

.sidebar-order-summary__checked input[type=checkbox]:checked + label span:before {
  opacity: 1;
}

.sidebar-order-summary__btn {
  position: relative;
  display: block;
  margin-top: 27px;
  line-height: 0px;
}

/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  display: block;
  background: var(--gorent-white);
  padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
  .wishlist-table {
    min-width: 1170px;
  }
}
.wishlist-table {
  margin-bottom: 0px;
}

.wishlist-table thead th {
  color: var(--gorent-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-top: 22px;
  padding-bottom: 22px;
  font-family: var(--gorent-font-two);
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--gorent-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.wishlist-table .product-box {
  display: flex;
  align-items: center;
}

.wishlist-table .cross-icon {
  position: relative;
  display: block;
}

.wishlist-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--gorent-black);
  font-size: 16px;
}

.wishlist-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--gorent-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--gorent-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--gorent-base);
}

.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
  border-radius: var(--gorent-bdr-radius);
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type=text],
.sign-up-one__form form input[type=email] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  width: 100%;
  height: 60px;
  color: var(--gorent-black);
  font-size: 16px;
  font-family: var(--gorent-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type=text]:focus,
.sign-up-one__form form input[type=email]:focus {
  border-color: var(--gorent-base);
  background-color: var(--gorent-white);
}

.sign-up-one__form form input[type=text]::-webkit-input-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=text]:-moz-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=text]::-moz-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=text]:-ms-input-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=email]::-webkit-input-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=email]:-moz-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=email]::-moz-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form input[type=email]:-ms-input-placeholder {
  color: var(--gorent-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gorent-gray);
  background-color: var(--gorent-white);
  color: var(--gorent-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--gorent-font);
  font-weight: 500;
  padding: 10px 15px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--gorent-base);
  background-color: var(--gorent-white);
}

.sign-up-one__form form .google-facebook a + a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
  border-radius: var(--gorent-bdr-radius);
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type=text],
.login-one__form form input[type=email] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  width: 100%;
  height: 60px;
  color: var(--gorent-black);
  font-size: 16px;
  font-family: var(--gorent-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type=text]:focus,
.login-one__form form input[type=email]:focus {
  border-color: var(--gorent-base);
  background-color: var(--gorent-white);
}

.login-one__form form input[type=text]::-webkit-input-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=text]:-moz-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=text]::-moz-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=text]:-ms-input-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=email]::-webkit-input-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=email]:-moz-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=email]::-moz-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form input[type=email]:-ms-input-placeholder {
  color: var(--gorent-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type=checkbox] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--gorent-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--gorent-font);
}

.login-one__form form .checked-box1 input[type=checkbox] + label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gorent-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type=checkbox]:checked + label span {
  border-color: var(--gorent-base);
}

.login-one__form form .checked-box1 input[type=checkbox]:checked + label span:before {
  transform: scale(1);
}

.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--gorent-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--gorent-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--gorent-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--gorent-black);
}

.login-one__form form .create-account p a {
  color: var(--gorent-base);
  font-weight: 500;
}

/***
=============================================
End
=============================================
***/
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  background-color: var(--gorent-black);
  z-index: 10;
}

.main-slider .item {
  position: relative;
  padding-top: 199px;
  padding-bottom: 256px;
  background-color: var(--gorent-black);
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
  opacity: 0.3;
  z-index: -1;
}

.active .main-slider__bg {
  transform: scale(1.1);
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider__sub-title-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(200px);
  transform: perspective(400px) rotateY(0deg) translateX(200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider__sub-title-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider__sub-title {
  font-size: 50px;
  line-height: 1em;
  color: var(--gorent-white);
  font-family: var(--gorent-font-two);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}

.main-slider__title {
  position: relative;
  display: block;
  font-size: 110px;
  color: var(--gorent-white);
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 9px;
  margin-bottom: 4px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider__title span {
  color: var(--gorent-base);
}

.active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider__sub-title-two {
  position: relative;
  display: block;
  font-size: 65px;
  line-height: 1.2em;
  color: var(--gorent-white);
  font-family: var(--gorent-font-two);
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(200px);
  transform: perspective(400px) rotateY(0deg) translateX(200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  margin-bottom: 0;
}

.active .main-slider__sub-title-two {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider__btn-and-video-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 34px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(-200px);
  transform: perspective(400px) rotateY(0deg) translateX(-200px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider__btn-and-video-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
}

.main-slider__btn-box .thm-btn::after {
  background-color: var(--gorent-white);
}

.main-slider__btn-box .thm-btn:hover {
  color: var(--gorent-black);
}

.main-slider__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-slider__video-icon {
  position: relative;
  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;
  width: 60px;
  height: 60px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: var(--gorent-base);
  background-color: var(--gorent-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider__video-icon:after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
}

.main-slider__video-icon:hover {
  background-color: var(--gorent-base);
  color: var(--gorent-white);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider__video-title {
  font-size: 20px;
  color: var(--gorent-base);
  font-weight: 600;
  font-family: var(--gorent-font);
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1320px;
  width: 100%;
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 60px;
}

.main-slider .owl-theme .owl-dots .owl-dot {
  position: relative;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(var(--gorent-base-rgb), 0.3);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot span:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 26px;
  width: 50px;
  height: 1px;
  background-color: rgba(var(--gorent-white-rgb), 0.3);
}

.main-slider .owl-theme .owl-dots .owl-dot:last-child span:before {
  display: none;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--gorent-white-rgb), 0.3);
}

.main-slider .owl-theme .owl-dots .owl-dot span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span::after,
.main-slider .owl-theme .owl-dots .owl-dot.active span::after {
  background-color: rgba(var(--gorent-white-rgb), 1);
}

.main-slider .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0px 50px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider .owl-theme .owl-nav [class*=owl-] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--gorent-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  padding: 19px 0 !important;
  text-align: center;
  border-radius: 50%;
  background-color: transparent !important;
  border: 2px solid rgba(var(--gorent-white-rgb), 0.3) !important;
  transition: all 500ms ease;
}

.main-slider .owl-theme .owl-nav [class*=owl-]:hover {
  color: rgba(var(--gorent-white-rgb), 1) !important;
  border: 2px solid rgba(var(--gorent-white-rgb), 1) !important;
}

.main-slider .owl-theme .owl-nav [class*=owl-] + [class*=owl-] {
  margin-left: 0px;
}

.main-slider .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  background-color: var(--gorent-black);
  z-index: 10;
}

.main-slider-two .item {
  position: relative;
  padding-top: 335px;
  padding-bottom: 200px;
  background-color: var(--gorent-black);
  z-index: 10;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
  opacity: 0.3;
  z-index: -1;
}

.active .main-slider-two__bg {
  transform: scale(1.1);
}

.main-slider-two__img {
  position: absolute;
  bottom: -40px;
  right: 130px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(400px);
  transform: perspective(400px) rotateY(0deg) translateX(400px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two__img img {
  width: auto !important;
}

.active .main-slider-two__img {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.main-slider-two__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  margin-bottom: 0;
}

.active .main-slider-two__sub-title-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__sub-title {
  font-size: 18px;
  line-height: 26px;
  color: var(--gorent-base);
  text-transform: capitalize;
  font-weight: 400;
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 75px;
  color: var(--gorent-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider-two__title span {
  color: var(--gorent-base);
}

.active .main-slider-two__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider-two__text {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: rgba(var(--gorent-white-rgb), 0.7);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  margin-bottom: 0;
}

.active .main-slider-two__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.active .main-slider-two__btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two__btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  padding: 10px 25px 11px;
  border-radius: 5px;
}

.main-slider-two__btn-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider-two__btn-icon i {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--gorent-white);
}

.main-slider-two__btn-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-slider-two__btn-content p {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 12px;
  margin-bottom: 0px;
}

.main-slider-two__btn-content h3 {
  color: var(--gorent-white);
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  margin-top: 5px;
}

.main-slider-two .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1320px;
  width: 100%;
  position: absolute;
  bottom: 85px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider-two .owl-theme .owl-dots .owl-dot + .owl-dot {
  margin-left: 60px;
}

.main-slider-two .owl-theme .owl-dots .owl-dot {
  position: relative;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background-color: rgba(var(--gorent-white-rgb), 0.3);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 15px;
  width: 50px;
  height: 1px;
  background-color: rgba(var(--gorent-white-rgb), 0.3);
}

.main-slider-two .owl-theme .owl-dots .owl-dot:last-child span:before {
  display: none;
}

.main-slider-two .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-two .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--gorent-base-rgb), 1);
}

.main-slider-two .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  max-width: 100%;
  width: 100%;
  padding: 0px 50px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider-two .owl-theme .owl-nav [class*=owl-] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  font-size: 20px !important;
  color: rgba(var(--gorent-white-rgb), 0.3) !important;
  opacity: 1;
  margin: 0;
  padding: 19px 0 !important;
  text-align: center;
  border-radius: 50%;
  background-color: transparent !important;
  border: 2px solid rgba(var(--gorent-white-rgb), 0.3) !important;
  transition: all 500ms ease;
}

.main-slider-two .owl-theme .owl-nav [class*=owl-]:hover {
  color: rgba(var(--gorent-white-rgb), 1) !important;
  border: 2px solid rgba(var(--gorent-white-rgb), 1) !important;
}

.main-slider-two .owl-theme .owl-nav [class*=owl-] + [class*=owl-] {
  margin-left: 0px;
}

.main-slider-two .owl-theme .owl-nav .owl-prev {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.sliding-text-one {
  position: relative;
  display: block;
  background-color: var(--gorent-base);
  padding: 23px 0 22px;
  z-index: 1;
}

.sliding-text-one__wrap {
  position: relative;
  display: block;
}

.sliding-text__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text__list li {
  position: relative;
  display: block;
  float: left;
  margin-right: 35px;
}

.sliding-text__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--gorent-black);
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: var(--gorent-font-two);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sliding-text__title span {
  position: relative;
  font-size: 45px;
}

.sliding-text__title:before {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--gorent-white);
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover .sliding-text__title:before {
  width: 100%;
  color: var(--gorent-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #eff4fb 46.5%, #ffffff 100%);
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.team-one__shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 160px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.team-one__shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  top: 448px;
  background: rgba(255, 181, 29, 0.38);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.team-one__inner {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-base-rgb), 0.1);
  border-radius: var(--gorent-bdr-radius);
  padding: 50px 50px 40px;
}

.team-one__main-tab-box {
  position: relative;
  display: block;
}

.team-one__tab-buttons-box-one {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.team-one__tab-buttons-box-two {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-bottom: 30px;
}

.team-one__main-tab-box .tab-buttons {
  position: relative;
  display: block;
}

.team-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: block;
}

.team-one__main-tab-box .tab-buttons .tab-btn + .tab-btn {
  margin-top: 10px;
}

.team-one__buttons {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  border-radius: var(--gorent-bdr-radius);
  border: 1px solid var(--gorent-bdr-color);
  padding: 22px 25px 21px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons {
  border: 1px solid var(--gorent-base);
}

.team-one__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--gorent-bdr-radius);
  background-color: var(--gorent-base);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons:before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.team-one__buttons-experience-years {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(270deg, rgba(19, 18, 34, 0.12) 0%, rgba(19, 18, 34, 0) 100%);
  padding: 4px 22px 4px 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-experience-years {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 231, 0) 100%);
}

.team-one__buttons-experience-years-count {
  position: relative;
  display: block;
}

.team-one__buttons-experience-years-count h3 {
  font-size: 32px;
  color: var(--gorent-base);
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.04em;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-experience-years-count h3 {
  color: var(--gorent-white);
}

.team-one__buttons-experience-years-text {
  font-size: 14px;
  color: var(--gorent-black);
  font-weight: 500;
  font-family: var(--gorent-font-two);
  line-height: 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-experience-years-text {
  color: var(--gorent-white);
}

.team-one__buttons-content-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.team-one__buttons-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border: 1px solid var(--gorent-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-img-box {
  border: 1px solid var(--gorent-white);
}

.team-one__buttons-img {
  position: relative;
  display: block;
  height: 58px;
  width: 58px;
  border-radius: 50%;
  overflow: hidden;
}

.team-one__buttons-img img {
  width: 100%;
  border-radius: 50%;
}

.team-one__buttons-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.team-one__buttons-title-box {
  position: relative;
  display: block;
}

.team-one__buttons-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}

.team-one__buttons-title a {
  color: var(--gorent-black);
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-title a {
  color: var(--gorent-white);
}

.team-one__buttons-sub-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 0;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-sub-title {
  color: var(--gorent-white);
}

.team-one__buttons-arrow {
  position: relative;
  display: block;
}

.team-one__buttons-arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--gorent-base);
  border-radius: 12px;
  color: var(--gorent-base);
  font-size: 17px;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-arrow a {
  color: var(--gorent-black);
  border: 1px solid var(--gorent-extra);
  background-color: var(--gorent-extra);
}

.team-one__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.team-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.team-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.team-one__tabs-content-outer {
  position: relative;
  display: block;
  margin-left: 21.66px;
}

.team-one__tabs-content-box {
  position: relative;
  display: block;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}

.team-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 37.4%, rgba(19, 18, 34, 0.69) 85.4%);
  border-radius: 12px;
}

.team-one__img img {
  width: 100%;
  border-radius: 12px;
}

.team-one__social {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.team-one__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #626f82;
  border-radius: 50%;
  font-size: 17px;
  color: var(--gorent-white);
  overflow: hidden;
  z-index: 1;
}

.team-one__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.team-one__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--gorent-base);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-one__social a:hover:before {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.team-two__shape-1 {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.team-two__shape-2 {
  position: absolute;
  bottom: -255px;
  right: 0px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.team-two__img-box {
  position: relative;
  display: block;
  border: 1px dashed var(--gorent-base);
  border-radius: var(--gorent-bdr-radius);
  padding: 10px 10px 10px;
}

.team-two__img {
  position: relative;
  display: block;
  border-radius: var(--gorent-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.team-two__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(19, 18, 34, 0.6);
  border-radius: var(--gorent-bdr-radius);
  opacity: 0;
  transform: translateY(-50%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.team-two__single:hover .team-two__img::after {
  opacity: 1;
  transform: translateY(0%);
}

.team-two__img img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-two__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(var(--gorent-base-rgb), 0.1);
  border-radius: var(--gorent-bdr-radius);
  margin-top: 10px;
  padding: 21px 30px 22px;
  z-index: 3;
}

.team-two__title-box {
  position: relative;
  display: block;
}

.team-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.team-two__title a {
  color: var(--gorent-black);
}

.team-two__title a:hover {
  color: var(--gorent-base);
}

.team-two__sub-title {
  font-weight: 500;
  margin-top: 5px;
}

.team-two__share-and-social {
  position: relative;
  display: block;
  padding-top: 20px;
  margin-top: -20px;
}

.team-two__share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  cursor: pointer;
}

.team-two__share span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--gorent-white);
}

.team-two__social {
  position: absolute;
  top: -190px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transform: scaleY(0) translateX(-50%);
  transform-origin: bottom;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
}

.team-two__share-and-social:hover .team-two__social {
  transform: scaleY(1) translateX(-50%);
  transform-origin: bottom center;
  transition-delay: 300ms;
}

.team-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  font-size: 16px;
  color: var(--gorent-white);
}

.team-two__social a:hover {
  background-color: var(--gorent-black);
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-three:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background-color: rgba(var(--gorent-base-rgb), 0.03);
  z-index: -1;
}

.team-three__single {
  position: relative;
  display: block;
  margin-bottom: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__single:hover {
  transform: translateY(-10px);
}

.team-three__img-box {
  position: relative;
  display: block;
}

.team-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.team-three__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 34, 34, 0.85);
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  opacity: 0;
  transform: translateY(-50%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.team-three__single:hover .team-three__img::after {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.team-three__img:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1%;
  border: 3px solid var(--gorent-base);
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  background-color: transparent;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 1;
}

.team-three__single:hover .team-three__img:before {
  opacity: 1;
  height: 100%;
}

.team-three__img img {
  width: 100%;
  border-top-left-radius: var(--gorent-bdr-radius);
  border-top-right-radius: var(--gorent-bdr-radius);
  transition: all 500ms ease;
}

.team-three__single:hover .team-three__img img {
  transform: scaleX(1.05);
  transition-delay: 700ms;
}

.team-three__social {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
}

.team-three__single:hover .team-three__social {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 700ms;
}

.team-three__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--gorent-white);
  border-radius: var(--gorent-bdr-radius);
  font-size: 15px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.5);
  z-index: 1;
}

.team-three__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.team-three__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--gorent-base);
  border-radius: 0%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-three__social a:hover:before {
  transform: scaleX(1);
}

.team-three__social a + a {
  margin-left: 15px;
}

.team-three__content {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  text-align: center;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 33px 20px 33px;
  border-radius: var(--gorent-bdr-radius);
  border-bottom: 5px solid var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__single:hover .team-three__content {
  border-bottom: 5px solid var(--gorent-black);
}

.team-three__name {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 2px;
}

.team-three__name a {
  color: var(--gorent-black);
}

.team-three__name a:hover {
  color: var(--gorent-base);
}

.team-three__sub-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 108px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  margin-bottom: 37px;
}

.team-details__top-left {
  position: relative;
  display: block;
}

.team-details__img-1 {
  position: relative;
  display: block;
}

.team-details__img-1 img {
  width: 100%;
  border-radius: 20px;
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -12px;
}

.team-details__client-box {
  position: relative;
  display: block;
}

.team-details__client-name {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  text-transform: capitalize;
}

.team-details__client-sub-title {
  position: relative;
  display: block;
  margin-top: 3px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 30px;
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--gorent-base);
  font-size: 16px;
  border-radius: var(--gorent-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--gorent-base);
  z-index: 1;
}

.team-details__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.team-details__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--gorent-base);
  border-radius: 0%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-details__social a:hover:before {
  transform: scaleX(1);
}

.team-details__social a + a {
  margin-left: 10px;
}

.team-details__client-address {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  margin-top: 19px;
  padding-top: 20px;
}

.team-details__client-address li {
  position: relative;
  display: block;
}

.team-details__client-address li + li {
  margin-top: 21px;
}

.team-details__client-address li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gorent-black);
}

.team-details__client-address li p span {
  color: var(--gorent-black);
}

.team-details__client-address li h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 10px;
  font-family: var(--gorent-font);
}

.team-details__client-address li h5 a {
  color: var(--gorent-black);
}

.team-details__client-address li h5 a:hover {
  color: var(--gorent-base);
}

.team-details__bottom {
  position: relative;
  display: block;
}

.team-details__bottom-left {
  position: relative;
  display: block;
}

.team-details__bottom-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 13px;
}

.team-details__practice-area {
  position: relative;
  display: block;
  margin-top: 15px;
}

.team-details__practice-area-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team-details__practice-area-list-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.team-details__practice-area-list {
  position: relative;
  display: block;
}

.team-details__practice-area-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-details__practice-area-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6px;
  width: 6px;
  background-color: var(--gorent-base);
}

.team-details__practice-area-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.team-details__practice-area-list li .text p {
  font-weight: 500;
  color: var(--gorent-base);
  margin-bottom: 0;
}

.team-details__bottom-right {
  position: relative;
  display: block;
}

.team-details__progress-title-1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 23px;
}

.team-details__progress-list {
  position: relative;
  display: block;
}

.team-details__progress-list li {
  position: relative;
  display: block;
}

.team-details__progress-list li + li {
  margin-top: 20px;
}

.team-details__progress {
  position: relative;
  display: block;
}

.team-details__progress-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--gorent-black);
  margin-bottom: 11px;
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.9);
  border-radius: 6px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--gorent-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress .count-text {
  position: absolute;
  right: -18px;
  bottom: 22px;
  color: var(--gorent-black);
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: var(--gorent-font);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.team-details-contact {
  position: relative;
  display: block;
  padding: 0px 0 120px;
  z-index: 1;
}

.team-details-contact .container {
  max-width: 830px;
}

.team-details-contact__inner {
  position: relative;
  display: block;
  text-align: center;
}

.team-details-contact__form {
  position: relative;
  display: block;
}

.team-details-contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-details-contact__input-box input[type=text],
.team-details-contact__input-box input[type=email] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  display: block;
  border-radius: var(--gorent-bdr-radius);
}

.team-details-contact__input-box .select-box {
  width: 100%;
}

.team-details-contact__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  font-weight: 400;
  border-radius: var(--gorent-bdr-radius);
  line-height: 60px;
  display: block;
  float: none;
}

.team-details-contact__input-box .nice-select:after {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--gorent-gray);
  border-right: 2px solid var(--gorent-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--gorent-gray);
  position: relative;
  display: block;
  border-radius: var(--gorent-bdr-radius);
}

.team-details-contact__input-box.text-message-box {
  height: 200px;
}

.team-details-contact__btn-box {
  position: relative;
  display: block;
}

.team-details-contact__btn-box .thm-btn {
  border: none;
}

.team-details-contact__btn-box .thm-btn:hover {
  border: none;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__single {
  position: relative;
  display: block;
  border: 1px solid var(--gorent-bdr-color);
  border-radius: var(--gorent-bdr-radius);
  padding: 25px 30px 25px;
  z-index: 1;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 80px;
  border-radius: 50%;
  z-index: 1;
}

.testimonial-one__img img {
  border-radius: 50%;
}

.testimonial-one__content {
  position: relative;
  display: block;
  flex: 1;
}

.testimonial-one__client-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
}

.testimonial-one__client-name a {
  color: var(--gorent-black);
}

.testimonial-one__client-name a:hover {
  color: var(--gorent-base);
}

.testimonial-one__sub-title, .testimonial-one__text {
  margin-bottom: 0;
}

.testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.testimonial-one__rating span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--gorent-base);
}

.testimonial-one__quote {
  position: absolute;
  top: -1px;
  right: -1px;
  height: 60px;
  width: 60px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  border-top-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote {
  background-color: var(--gorent-black);
}

.testimonial-one__quote span {
  font-size: 22px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote span {
  color: var(--gorent-white);
}

.testimonial-one__carousel .owl-nav {
  position: absolute;
  top: -160px;
  right: 0;
  margin: 0 !important;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border: none;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border: none;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: rgba(var(--gorent-black-rgb), 1);
  color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--gorent-extra-rgb), 0.3);
  z-index: -1;
}

.testimonial-two__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.09;
  z-index: -1;
}

.testimonial-two__shape-1 img {
  width: auto;
}

.testimonial-two__shape-2 {
  position: absolute;
  bottom: 0;
  right: -40px;
  opacity: 0.2;
  z-index: -1;
}

.testimonial-two__shape-2 img {
  width: auto;
}

.testimonial-two .section-title {
  margin-bottom: 90px;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-two__single {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 59px 30px 22px;
  border-radius: var(--gorent-bdr-radius);
  border-top: 10px solid var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.testimonial-two__single:hover {
  transform: translateY(-10px);
  border-top: 10px solid var(--gorent-black);
}

.testimonial-two__img {
  position: absolute;
  top: -50px;
  right: 49px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.testimonial-two__img:before {
  background-color: var(--gorent-base);
  border-radius: 120px 120px 0 0;
  content: "";
  height: 50%;
  left: -10px;
  right: -10px;
  position: absolute;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__img:before {
  background-color: var(--gorent-black);
}

.elementor-widget-container .testimonial-two__img img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid var(--gorent-white);
}

.testimonial-two__client-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
}

.testimonial-two__client-content {
  position: relative;
  display: block;
}

.testimonial-two__client-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.testimonial-two__client-name a {
  color: var(--gorent-black);
}

.testimonial-two__client-name a:hover {
  color: var(--gorent-base);
}

.testimonial-two__rating {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.testimonial-two__rating span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--gorent-base);
}

.testimonial-two__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  color: var(--gorent-gray);
  margin-bottom: 0;
}

.testimonial-two__client-sub-title {
  margin-bottom: 0;
}

.testimonial-two__quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--gorent-base);
  margin-top: -66px;
  margin-bottom: 20px;
  margin-left: -30px;
  border-bottom-right-radius: var(--gorent-bdr-radius);
  border-top-left-radius: var(--gorent-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__quote {
  background-color: var(--gorent-black);
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 22px;
  color: var(--gorent-white);
  top: -3px;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  transform: translateY(-50%);
  height: 0;
  line-height: 0;
  z-index: 100;
}

.testimonial-two__carousel .owl-nav .owl-next,
.testimonial-two__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px !important;
  color: var(--gorent-white) !important;
  background-color: rgba(var(--gorent-base-rgb), 1) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
  transform: rotate(180deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--gorent-black) !important;
  color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 165px 0 120px;
  z-index: 1;
}

.testimonial-three__left {
  position: relative;
  display: block;
}

.testimonial-three__right {
  position: relative;
  display: block;
  margin-right: -375px;
}

.testimonial-three__carousel {
  position: relative;
  display: block;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-three__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-three__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-three__single {
  position: relative;
  display: block;
  background-color: var(--gorent-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 49px 49px 41px;
  border-radius: var(--gorent-bdr-radius);
  border-top: 5px solid var(--gorent-base);
  transition: all 500ms ease;
  z-index: 1;
}

.testimonial-three__img {
  position: absolute;
  top: -45px;
  right: 50px;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.testimonial-three__img:before {
  background-color: var(--gorent-base);
  border-radius: 101px 101px 0 0;
  content: "";
  height: 50%;
  left: -2px;
  right: -2px;
  top: -5px;
  position: absolute;
  z-index: -1;
}

.elementor-widget-container .testimonial-three__img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-three__client-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 22px;
}

.testimonial-three__client-content {
  position: relative;
  display: block;
}

.testimonial-three__client-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 8px;
}

.testimonial-three__client-sub-title, .testimonial-three__text {
  margin-bottom: 0;
}

.testimonial-three__client-name a {
  color: var(--gorent-black);
}

.testimonial-three__client-name a:hover {
  color: var(--gorent-base);
}

.testimonial-three__rating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}

.testimonial-three__rating span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--gorent-base);
}

.testimonial-three__quote {
  position: absolute;
  bottom: 50px;
  left: 170px;
  z-index: 1;
}

.testimonial-three__quote span {
  position: relative;
  display: inline-block;
  font-size: 120px;
  line-height: 120px;
  color: var(--gorent-gray);
  opacity: 0.05;
  font-weight: 900;
}

.testimonial-three__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 40px;
  left: -550px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  z-index: 100;
}

.testimonial-three__carousel .owl-nav .owl-next,
.testimonial-three__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px !important;
  color: var(--gorent-white) !important;
  background-color: rgba(var(--gorent-base-rgb), 1) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
  transform: rotate(180deg);
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--gorent-black) !important;
  color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.testimonials-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*==============================================
    Video One
===============================================*/
.video-one {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  padding: 205px 0 230px;
  clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.video-one__title {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--gorent-white);
  margin-bottom: 69px;
}

.video-one__video-link {
  position: relative;
  display: block;
}

.video-one__video-icon {
  position: relative;
  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;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 33px;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.video-one__video-icon:hover {
  background-color: var(--gorent-white);
  color: var(--gorent-base);
}

.video-one__video-icon:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 15px solid rgba(var(--gorent-white-rgb), 0.2);
  border-radius: 50%;
  z-index: -1;
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*==============================================
    Video Two
===============================================*/
.video-two {
  position: relative;
  display: block;
}

.video-two__inner {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--gorent-black);
  padding: 165px 0 139px;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  z-index: 1;
}

.video-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.video-two__video-link {
  position: relative;
  display: block;
}

.video-two__video-icon {
  position: relative;
  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;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 33px;
  color: var(--gorent-white);
  background-color: var(--gorent-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.video-two__video-icon:hover {
  background-color: var(--gorent-white);
  color: var(--gorent-base);
}

.video-two__video-icon:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 15px solid rgba(var(--gorent-white-rgb), 0.2);
  border-radius: 50%;
  z-index: -1;
}

.video-two__video-link .ripple,
.video-two__video-icon .ripple:before,
.video-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-two__title {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--gorent-white);
  margin-top: 59px;
}

/*==============================================
   End
===============================================*/
/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 1;
}

.elementor-element.why-choose-one__shape-1 {
  position: absolute;
  top: -100px;
  left: -70px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.elementor-element.why-choose-one__shape-2 {
  position: absolute;
  bottom: -255px;
  right: 100px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.4;
  filter: blur(120px);
  z-index: -1;
}

.why-choose-one__single {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.why-choose-one__icon {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background-color: rgba(var(--gorent-base-rgb), 1);
  border-radius: 50%;
  z-index: 1;
}

.why-choose-one__icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--gorent-base-rgb), 0.5);
  border-radius: 50%;
  z-index: -1;
}

.why-choose-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 45px;
  color: var(--gorent-black);
  transition: all 500ms ease;
}

.why-choose-one__single:hover .why-choose-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.why-choose-one__btn-box {
  position: absolute;
  bottom: 10px;
  left: 25px;
  z-index: 2;
}

.why-choose-one__single-inner {
  position: relative;
  display: block;
  background-color: var(--gorent-black);
  padding: 92px 30px 113px;
  text-align: center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='410' height='350' viewBox='0 0 410 350'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='410' height='350'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='410' height='350' viewBox='0 0 410 350'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='410' height='350'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  border-radius: var(--gorent-bdr-radius);
}

.why-choose-one__title {
  font-size: 22px;
  color: var(--gorent-white);
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 17px;
}

.why-choose-one__text {
  color: var(--gorent-white);
  opacity: 0.7;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  position: relative;
  display: block;
  font-family: var(--gorent-font);
  color: var(--gorent-gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  z-index: 1;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--gorent-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--gorent-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--gorent-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/* Section Title Css */
.section-title {
  position: relative;
  display: block;
  margin-bottom: 49px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: var(--gorent-base);
  font-weight: 400;
  text-transform: uppercase;
}

.section-title__tagline-shape {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.section-title__tagline-shape img {
  width: auto;
}

.section-title__title {
  color: var(--gorent-black);
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  margin: 7px 0 0;
  text-transform: uppercase;
}

/* Thm Btn Css */
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  color: var(--gorent-black);
  background-color: var(--gorent-base);
  padding: 13px 30px 13px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}

.thm-btn::after {
  content: "";
  background-color: var(--gorent-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn:hover {
  color: var(--gorent-white);
}

.thm-btn span {
  position: relative;
  top: -1px;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--gorent-base-rgb), 1);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--gorent-base-rgb), 0.7);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--gorent-base-rgb), 0.4);
  animation-delay: 0.4s;
}

@keyframes bouncing {
  0%, 100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }
  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }
  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }
  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}
/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--gorent-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--gorent-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gorent-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--gorent-base);
  border-color: var(--gorent-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--gorent-white-rgb), 0.5);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--gorent-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type=text],
.xs-sidebar-group .content-inner .form-inner .form-group input[type=email],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: var(--gorent-gray);
  border: none;
  border-radius: var(--gorent-bdr-radius);
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .thm-btn:hover {
  color: var(--gorent-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group .thm-btn span:before {
  background-color: var(--gorent-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
  background-color: var(--gorent-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button::after {
  background-color: var(--gorent-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--gorent-white);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--gorent-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--gorent-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--gorent-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--gorent-white-rgb), 0.1);
  border-radius: 50%;
  color: var(--gorent-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--gorent-base);
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--gorent-white);
}

/*=============== scrollbar-Css =============*/
.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 120px 8px;
  background-color: var(--gorent-black);
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li + li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--gorent-white-rgb), 0.2);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 16px;
  color: var(--gorent-base);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  color: var(--gorent-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 0;
}

.main-menu__contact-list li .text p a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--gorent-base);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-login-reg-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-menu__top-login-reg-box a {
  color: var(--gorent-white);
  font-weight: 500;
  position: relative;
  display: block;
}

.main-menu__top-login-reg-box a:hover {
  color: var(--gorent-base);
}

.main-menu__top-login-reg-box p {
  color: var(--gorent-base);
  margin-bottom: 0;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.2);
  border-radius: 5px;
  font-size: 14px;
  color: var(--gorent-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--gorent-base);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.main-menu__social a + a {
  margin-left: 5px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 120px 0;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 20px 0;
}

.main-menu__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--gorent-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--gorent-base);
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-menu__call-content {
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 7px;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--gorent-font);
}

.main-menu__call-number a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--gorent-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 30px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--gorent-base);
  margin-top: 6px;
  margin-bottom: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 25px;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 30px;
}

.stricky-header.main-menu {
  background-color: var(--gorent-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 40px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--gorent-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
}

.main-menu .main-menu__list > li.current-menu-item > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current-menu-item > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--gorent-base);
}

.main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--gorent-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list > li.current-menu-item > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current-menu-item > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li.has-dropdown > a {
  padding-right: 15px;
}

.main-menu .main-menu__list > li.has-dropdown > a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--gorent-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current-menu-item > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current-menu-item > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  color: var(--gorent-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul,
.main-menu .main-menu__list > li > .the-submenu,
.main-menu .main-menu__list > li > ul > li > .the-submenu,
.stricky-header .main-menu__list > li > .the-submenu,
.stricky-header .main-menu__list > li > ul > li > .the-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--gorent-white);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul,
.main-menu .main-menu__list > li:hover > .the-submenu,
.main-menu .main-menu__list > li > ul > li:hover > .the-submenu,
.stricky-header .main-menu__list > li:hover > .the-submenu,
.stricky-header .main-menu__list > li > ul > li:hover > .the-submenu {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.the-submenu > .elementor {
  width: 100%;
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  margin-top: 0px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--gorent-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--gorent-font-two);
  text-transform: capitalize;
  padding: 16px 0px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  color: rgba(var(--gorent-base-rgb), 1);
  padding-left: 5px;
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--gorent-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu,
.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu > .the-submenu,
.main-menu-three__main-menu-box .main-menu__list > .megamenu > .the-submenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > .the-submenu,
.main-menu__wrapper .main-menu__list > .megamenu > .the-submenu {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}
.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}
.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--gorent-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--gorent-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--gorent-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--gorent-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--gorent-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--gorent-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--gorent-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
  color: var(--gorent-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--gorent-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--gorent-base);
  border: none;
  outline: none;
  color: #fff;
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--gorent-base);
}

/* no menu after 2rd level has-dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--gorent-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--gorent-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--gorent-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--gorent-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--gorent-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--gorent-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -25px;
  margin-bottom: -25px;
}

.home-showcase__inner {
  padding: 40px 42px 34px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 4px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--gorent-white);
}

.home-showcase__image > img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover > img {
  filter: blur(2px);
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 800ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0.7;
  z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -ms-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: -moz-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: -o-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #131222), color-stop(100, #131222));
  background-image: -webkit-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: linear-gradient(to right, #131222 0%, #131222 100%);
  opacity: 1;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
  opacity: 0.9;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
  padding: 7px 20px 9px;
  width: 160px;
  text-align: center;
  justify-content: center;
}

.home-showcase__buttons__item::after {
  background-color: var(--gorent-white);
}

.home-showcase__buttons__item:hover {
  color: var(--gorent-black);
}

.home-showcase__buttons__item + .home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--gorent-black);
  margin-top: 18px;
  text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--gorent-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__top {
  position: relative;
  display: block;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 80px 8px;
  z-index: 1;
}

.main-menu-two__top-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--gorent-white-rgb), 0.1);
  z-index: -1;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li + li {
  margin-left: 46px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--gorent-white-rgb), 0.2);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 16px;
  color: var(--gorent-base);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  color: var(--gorent-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 0;
}

.main-menu-two__contact-list li .text p a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--gorent-base);
}

.main-menu-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-login-reg-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-menu-two__top-login-reg-box a {
  color: var(--gorent-white);
  font-weight: 500;
  position: relative;
  display: block;
}

.main-menu-two__top-login-reg-box a:hover {
  color: var(--gorent-base);
}

.main-menu-two__top-login-reg-box p {
  color: var(--gorent-base);
  margin-bottom: 0;
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--gorent-white-rgb), 0.2);
  border-radius: 5px;
  font-size: 14px;
  color: var(--gorent-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--gorent-base);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.main-menu-two__social a + a {
  margin-left: 5px;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--gorent-white-rgb), 0.1);
  z-index: -1;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px 0;
}

.main-menu-two__left {
  display: block;
}

.main-menu-two__logo {
  display: block;
  padding: 20px 0;
}

.main-menu-two__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--gorent-white);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--gorent-base);
  color: var(--gorent-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--gorent-white);
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-menu-two__call-content {
  margin-left: 10px;
}

.main-menu-two__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 3px;
}

.main-menu-two__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--gorent-font);
}

.main-menu-two__call-number a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--gorent-base);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 30px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 25px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 30px;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--gorent-white);
}

.main-menu-two .main-menu__list > li.has-dropdown > a:after {
  color: var(--gorent-white);
}

.main-menu-two .main-menu__list > li.current-menu-item > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current-menu-item > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
  color: var(--gorent-base);
}

.main-menu-two .main-menu__list > li.current-menu-item > a::after,
.main-menu-two .main-menu__list > li:hover > a::after,
.stricky-header.main-menu-two .main-menu__list > li.current-menu-item > a::after,
.stricky-header.main-menu-two .main-menu__list > li:hover > a::after {
  color: var(--gorent-base);
}

.stricky-header.main-menu-two {
  background-color: var(--gorent-black);
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 120px 0;
}

.main-menu-three__left {
  display: block;
}

.main-menu-three__logo {
  display: block;
  padding: 20px 0;
}

.main-menu-three__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--gorent-base);
}

.main-menu-three__cart-box {
  position: relative;
  display: block;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart:hover {
  color: var(--gorent-base);
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu-three__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-menu-three__call-content {
  margin-left: 10px;
}

.main-menu-three__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 3px;
}

.main-menu-three__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--gorent-font);
}

.main-menu-three__call-number a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__call-number a:hover {
  color: var(--gorent-base);
}

.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 30px;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 25px;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 30px;
}

.stricky-header.main-menu-three {
  background-color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-four:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--gorent-black-rgb), 0.9);
  z-index: -1;
}

.main-menu-four__wrapper {
  position: relative;
  display: block;
}

.main-menu-four__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-four__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}

.main-menu-four__logo {
  display: block;
  padding: 30px 0;
}

.main-menu-four__main-menu-box {
  display: block;
}

.main-menu-four__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu-four__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__search-box {
  position: relative;
  display: block;
}

.main-menu-four__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__search:hover {
  color: var(--gorent-base);
}

.main-menu-four__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  color: var(--gorent-white);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__call-icon:hover {
  background-color: var(--gorent-white);
  color: var(--gorent-base);
}

.main-menu-four__call-content {
  margin-left: 10px;
}

.main-menu-four__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--gorent-white-rgb), 0.9);
  line-height: 14px;
  font-family: var(--gorent-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu-four__call-number {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
  font-family: var(--gorent-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu-four__call-number a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__call-number a:hover {
  color: var(--gorent-base);
}

.stricky-header.main-menu-four {
  background-color: var(--gorent-black);
}

.main-menu-four .main-menu__list > li + li,
.stricky-header.main-menu-four .main-menu__list > li + li {
  margin-left: 30px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gorent-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type=search],
.search-popup__content form input[type=text] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--gorent-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  background-color: var(--gorent-black);
  border-radius: 0;
}

.search-popup__content .thm-btn::before {
  background-color: var(--gorent-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--gorent-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/
.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gorent-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--gorent-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .services-one__single {
    padding: 30px 20px 37px;
  }
  .services-one__count {
    top: 38%;
  }
  .about-one__right {
    margin-left: 40px;
  }
  .booking-one__right {
    margin-left: 0;
  }
  .booking-one__left {
    margin-left: 100px;
    margin-right: 140px;
  }
  .booking-one__shape-1 {
    right: -180px;
  }
  .counter-one__text br {
    display: none;
  }
  .counter-one__right {
    margin-left: 0;
    margin-right: 0;
  }
  .counter-one__img-two {
    bottom: -300px;
    right: -180px;
  }
  .about-two__left {
    margin-right: 0;
  }
  .about-two__img-two {
    bottom: -300px;
    left: -190px;
  }
  .services-two__single {
    padding: 30px 20px 37px;
  }
  .services-two__count {
    top: 35%;
  }
  .listing-two__content {
    padding: 14px 10px 20px;
  }
  .contact-one__img {
    right: -300px;
  }
  .contact-one__img img {
    width: 70%;
  }
  .team-two__content {
    padding: 21px 20px 22px;
  }
  .brand-two__text br {
    display: none;
  }
  .about-three__left {
    margin-right: 0;
  }
  .services-three__single {
    padding: 90px 15px 45px;
  }
  .pricing-two__right-content {
    gap: 70px;
  }
  .testimonial-three__carousel.owl-theme .owl-nav {
    left: -480px;
  }
  .car-listing-page-one .listing-one__content {
    padding: 23px 15px 30px;
  }
  .car-listing-page-one .listing-one__meta li .text p {
    font-size: 12px;
  }
  .car-listing-page-one .listing-one__title {
    font-size: 20px;
  }
  .car-listing__category {
    padding: 27px 15px 30px;
  }
  .car-listing__search {
    padding: 30px 15px 30px;
  }
  .car-listing__price-ranger {
    padding: 27px 15px 30px;
  }
  .car-listing__rating {
    padding: 27px 15px 30px;
  }
  .car-listing__google-map {
    padding: 27px 15px 30px;
  }
  .listing-single__thumb-box {
    left: 475px;
  }
  .listing-single__right {
    margin-left: 200px;
  }
  .listing-single__title-two {
    font-size: 30px;
  }
  .listing-single__nav {
    bottom: 80px;
  }
  .listing-single__car-overview-point {
    max-width: 300px;
  }
  .listing-single__car-overview-point-right {
    margin-left: 60px;
  }
  .listing-single__feature-points-box {
    gap: 40px;
  }
  .listing-single__rent-car {
    padding: 27px 15px 30px;
  }
  .listing-single__contact-info {
    padding: 30px 15px 30px;
  }
  .cart-total li span:first-child {
    margin-right: 40px;
  }
}
/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-one__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .about-one__img-2,
  .about-one__shape-1,
  .about-one__shape-4,
  .about-one__shape-3 {
    display: none;
  }
  .booking-one__left {
    margin-left: 70px;
    margin-right: 0;
  }
  .booking-one__shape-1 {
    display: none;
  }
  .booking-one__right {
    margin-left: 0;
  }
  .why-choose-one__btn-box {
    bottom: 0;
  }
  .counter-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .counter-one__right {
    max-width: 600px;
    margin: 40px auto 0;
  }
  .counter-one__img-two {
    display: none;
  }
  .counter-one__dot-2 {
    display: none;
  }
  .listing-one__content {
    padding: 23px 15px 30px;
  }
  .listing-one__meta li {
    gap: 5px;
  }
  .listing-one__meta li .text p {
    font-size: 14px;
  }
  .listing-one__title {
    font-size: 22px;
  }
  .pricing-one .row {
    justify-content: center;
  }
  .faq-one__img-box {
    margin-right: 0;
  }
  .faq-one__left .section-title__title {
    font-size: 35px;
    line-height: 45px;
  }
  .faq-one__experience-box {
    right: 0;
  }
  .team-one__inner {
    padding: 20px 15px 10px;
  }
  .team-one__buttons {
    padding: 22px 15px 21px;
  }
  .team-one__buttons-content-box {
    gap: 10px;
  }
  .team-one__buttons-experience-years {
    right: -10px;
  }
  .download-app-one__title {
    font-size: 45px;
  }
  .blog-one__title {
    font-size: 20px;
  }
  .footer-widget__about {
    margin-right: 0;
  }
  .footer-widget__services {
    margin-left: 0;
    margin-top: 36px;
  }
  .footer-widget__contact {
    margin-left: 0;
    margin-top: 36px;
  }
  .booking-two__left {
    margin-top: 25px;
  }
  .about-two__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-two__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .about-two__img-two {
    display: none;
  }
  .about-two__video-link {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .about-two__experience {
    bottom: 0;
    left: 0;
  }
  .counter-two__list li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .contact-one__img {
    display: none;
  }
  .contact-one__left {
    margin-right: 0;
  }
  .testimonial-two__single {
    padding: 59px 15px 22px;
  }
  .testimonial-two__client-name {
    font-size: 18px;
  }
  .testimonial-two__quote {
    margin-left: -15px;
  }
  .testimonial-two__rating span {
    font-size: 14px;
  }
  .testimonial-two__carousel.owl-theme .owl-nav {
    left: -35px;
    right: -35px;
  }
  .blog-two__title {
    font-size: 20px;
  }
  .search-car__inner {
    margin-right: 0;
  }
  .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-three__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .counter-three ul li:nth-child(2) .counter-three__single::before {
    display: none;
  }
  .listing-three__content {
    padding: 23px 15px 30px;
  }
  .listing-three__meta li {
    gap: 5px;
  }
  .listing-three__meta li .text p {
    font-size: 14px;
  }
  .pricing-two__single {
    flex-direction: column;
    gap: 50px;
  }
  .pricing-two__right-content {
    gap: 50px;
  }
  .testimonial-three .section-title__title {
    font-size: 35px;
  }
  .testimonial-three__carousel.owl-theme .owl-nav {
    left: -400px;
  }
  .car-listing__sidebar {
    max-width: 500px;
    margin: 60px auto 0;
  }
  .listing-single__thumb-box {
    left: 385px;
  }
  .listing-single__right {
    margin-left: 160px;
  }
  .listing-single__title-two {
    font-size: 25px;
  }
  .listing-single__btn-and-video-box {
    flex-direction: column;
    align-items: baseline;
    gap: 30px;
  }
  #listing-single__carousel {
    padding-bottom: 60px;
  }
  .listing-single__car-overview-points-box {
    flex-direction: column;
    align-items: baseline;
    gap: 22px;
  }
  .listing-single__feature-points-box {
    gap: 25px;
    flex-direction: column;
  }
  .listing-single__rent-car {
    padding: 27px 15px 30px;
  }
  .listing-single__contact-info {
    padding: 30px 15px 30px;
  }
  .contact-info__single {
    padding: 40px 20px 41px;
  }
  .contact-info__single h3 {
    font-size: 19px;
    line-height: 29px;
  }
  .contact-page__left {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-page__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
  }
  .contact-page__inner {
    padding: 60px 50px 60px;
  }
  .sidebar--two {
    max-width: 550px;
    margin: 0 auto 50px;
  }
  .sidebar--three {
    max-width: 550px;
    margin: 20px auto 30px;
  }
  .blog-details__tag-and-share {
    flex-direction: column;
  }
  .blog-details__share-box {
    margin-top: 10px;
  }
  .product__sidebar {
    max-width: 500px;
    width: 100%;
    margin: 60px auto 0px;
  }
  .product-details__left {
    margin-right: 0;
  }
  .product-details__inner {
    flex-direction: column;
    align-items: baseline;
  }
}
/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title__title br {
    display: none;
  }
  .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-one__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .about-one__img-2,
  .about-one__shape-1,
  .about-one__shape-4,
  .about-one__shape-3 {
    display: none;
  }
  .booking-one__shape-1 {
    display: none;
  }
  .booking-one__left {
    max-width: 360px;
    margin: 0 auto 0;
  }
  .booking-one__right {
    margin-left: 0;
  }
  .booking-one__content {
    border-radius: var(--gorent-bdr-radius);
  }
  .booking-one__title-box {
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
  }
  .booking-one__wrap {
    padding: 80px 0 80px;
  }
  .why-choose-one__btn-box {
    left: 0;
  }
  .counter-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .counter-one__right {
    max-width: 600px;
    margin: 40px auto 0;
  }
  .counter-one__img-two {
    display: none;
  }
  .counter-one__dot-2 {
    display: none;
  }
  .listing-one__content {
    padding: 23px 15px 30px;
  }
  .video-one__title {
    font-size: 45px;
  }
  .pricing-one .row {
    justify-content: center;
  }
  .pricing-one__single {
    padding: 36px 20px 37px;
  }
  .call-one__inner-content {
    padding: 59px 20px 59px;
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .call-one__inner-content:before {
    display: none;
  }
  .call-one__content {
    text-align: left;
  }
  .call-one__content p {
    color: var(--gorent-black);
  }
  .call-one__content h4 a {
    color: var(--gorent-black);
  }
  .call-one__btn-box .thm-btn {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
  }
  .testimonial-one .section-title {
    max-width: 500px;
  }
  .faq-one__right {
    margin-top: 60px;
  }
  .lets-talk__inner {
    flex-direction: column;
    text-align: center;
  }
  .lets-talk__title {
    margin-bottom: 25px;
  }
  .team-one__tabs-content-outer {
    margin-left: 0;
    margin-top: 10px;
  }
  .download-app-one__right {
    margin-top: 20px;
  }
  .download-app-one__img {
    margin-left: 0;
  }
  .footer-widget__about {
    margin-right: 0;
  }
  .footer-widget__services {
    margin-left: 0;
    margin-top: 36px;
  }
  .footer-widget__contact {
    margin-left: 0;
    margin-top: 36px;
  }
  .booking-two__left {
    margin-top: 0;
  }
  .booking-two__right {
    margin-left: 0;
    margin-top: 60px;
  }
  .about-two__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-two__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .about-two__img-two {
    display: none;
  }
  .about-two__video-link {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .about-two__experience {
    bottom: 0;
    left: 0;
  }
  .counter-two__list li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .video-two__title {
    font-size: 40px;
  }
  .contact-one__img {
    display: none;
  }
  .contact-one__left {
    margin-right: 0;
  }
  .search-car__inner {
    padding: 30px 20px 30px;
    margin-right: 0;
  }
  .about-three__left {
    max-width: 600px;
    margin: 0 auto 0;
  }
  .about-three__right {
    max-width: 600px;
    margin: 60px auto 0;
  }
  .counter-three ul li:nth-child(2) .counter-three__single::before {
    display: none;
  }
  .listing-three__content {
    padding: 23px 15px 30px;
  }
  .listing-three__carousel .owl-nav {
    position: relative;
    top: 0;
    padding-top: 30px;
  }
  .pricing-two__single {
    flex-direction: column;
    gap: 50px;
  }
  .pricing-two__right-content {
    gap: 50px;
  }
  .testimonial-three__carousel.owl-theme .owl-nav {
    position: relative;
    bottom: 0;
    left: 0;
    padding-top: 30px;
  }
  .car-listing__sidebar {
    max-width: 500px;
    margin: 60px auto 0;
  }
  .listing-single__top {
    flex-direction: column;
    align-items: baseline;
  }
  .listing-single__top-right {
    margin-top: 40px;
  }
  .listing-single__thumb-box {
    left: auto;
    right: 0;
  }
  .listing-single__right {
    margin-left: 0;
    margin-top: 40px;
  }
  .listing-single__title-two {
    font-size: 35px;
  }
  #listing-single__carousel {
    padding-bottom: 60px;
  }
  .listing-single__car-overview-points-box {
    flex-direction: column;
    align-items: baseline;
    gap: 22px;
  }
  .listing-single__feature-points-box {
    gap: 25px;
    flex-direction: column;
  }
  .listing-single__sidebar {
    max-width: 500px;
    margin: 60px auto 0;
  }
  .contact-page__left {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-page__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
  }
  .contact-page__inner {
    padding: 60px 50px 60px;
  }
  .team-details__top-right {
    margin-left: 0;
    margin-top: 38px;
  }
  .team-details__bottom-left {
    margin-bottom: 30px;
  }
  .sidebar {
    max-width: 550px;
    margin: 50px auto 0;
  }
  .sidebar--two {
    margin: 0 auto 50px;
  }
  .sidebar--three {
    margin: 20px auto 30px;
  }
  .product__showing-sort {
    max-width: 300px;
  }
  .product__sidebar {
    max-width: 500px;
    width: 100%;
    margin: 60px auto 0px;
  }
  .product-details__left {
    margin-right: 0;
  }
  .product-details__right {
    margin-top: 51px;
  }
  .cart-page__right {
    margin-left: 0;
    margin-top: 60px;
  }
  .sidebar-order-summary {
    margin-top: 60px;
  }
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .section-title__title {
    font-size: 25px;
    line-height: 35px;
  }
  .section-title__title br {
    display: none;
  }
  .services-one {
    padding: 80px 0 0;
  }
  .services-one__count {
    top: 40%;
  }
  .about-one__left {
    margin-left: 0;
    margin-right: 0;
  }
  .about-one__experience {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
  }
  .about-one__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .about-one__text-1 br {
    display: none;
  }
  .about-one__btn-box-and-call-box {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
  .about-one__img-2,
  .about-one__shape-1,
  .about-one__shape-4,
  .about-one__shape-3 {
    display: none;
  }
  .about-one {
    padding: 50px 0 0px;
  }
  .process-one {
    padding: 70px 0 0;
  }
  .booking-one__shape-1 {
    display: none;
  }
  .booking-one__left {
    max-width: 360px;
    margin: 0 auto 0;
  }
  .booking-one__right {
    margin-left: 0;
  }
  .booking-one__content {
    border-radius: var(--gorent-bdr-radius);
  }
  .booking-one__title-box {
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
  }
  .booking-one__title {
    font-size: 30px;
  }
  .booking-one__form {
    padding: 55px 25px 60px;
  }
  .booking-one__wrap {
    padding: 80px 0 80px;
  }
  .booking-one {
    padding: 80px 0 0;
  }
  .why-choose-one {
    padding: 80px 0 0;
  }
  .counter-one__text br {
    display: none;
  }
  .counter-one__main-content {
    margin-right: 0;
  }
  .counter-one__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 40px;
  }
  .counter-one__img-two {
    display: none;
  }
  .counter-one__dot-2 {
    display: none;
  }
  .counter-one {
    padding: 50px 0 0;
  }
  .listing-one__content {
    padding: 23px 15px 30px;
  }
  .listing-one__meta li {
    gap: 5px;
  }
  .listing-one__meta li .text p {
    font-size: 14px;
  }
  .listing-one__title {
    font-size: 22px;
  }
  .video-one__title {
    font-size: 25px;
  }
  .video-one__title br {
    display: none;
  }
  .video-one {
    padding: 100px 0 123px;
  }
  .pricing-one__single {
    padding: 36px 20px 37px;
  }
  .pricing-one {
    padding: 80px 0 50px;
  }
  .call-one__inner-content {
    padding: 59px 20px 59px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .call-one__inner-content:before {
    display: none;
  }
  .call-one__content {
    text-align: left;
  }
  .call-one__title {
    font-size: 20px;
  }
  .call-one__content p {
    color: var(--gorent-black);
  }
  .call-one__content h4 a {
    color: var(--gorent-black);
  }
  .call-one__btn-box .thm-btn {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
  }
  .popular-car-one {
    padding: 80px 0 80px;
  }
  .testimonial-one__carousel .owl-nav {
    position: relative;
    top: 0;
    padding-top: 30px;
  }
  .testimonial-one {
    padding: 80px 0 80px;
  }
  .faq-one__img-box {
    margin-right: 0;
  }
  .faq-one__experience-box {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }
  .faq-one .faq-one-accrodion .accrodion-title {
    padding: 23px 15px 23px;
    padding-right: 50px;
  }
  .faq-one .faq-one-accrodion .accrodion-title h4::before {
    right: -35px;
  }
  .faq-one__left {
    margin-bottom: 60px;
  }
  .faq-one {
    padding: 80px 0 80px;
  }
  .lets-talk__inner {
    flex-direction: column;
    text-align: center;
  }
  .lets-talk__title {
    margin-bottom: 25px;
  }
  .team-one__tabs-content-outer {
    margin-left: 0;
    margin-top: 10px;
  }
  .team-one {
    padding: 80px 0 80px;
  }
  .download-app-one__title {
    font-size: 25px;
  }
  .download-app-one__google-and-app-store {
    flex-direction: column;
    align-items: baseline;
  }
  .download-app-one__right {
    margin-top: 20px;
  }
  .download-app-one__img {
    margin-left: 0;
  }
  .download-app-one {
    padding: 70px 0 120px;
  }
  .blog-one__title {
    font-size: 20px;
  }
  .blog-one__carousel.owl-theme .owl-nav {
    position: relative;
    top: 0;
    justify-content: center;
    padding-top: 30px;
  }
  .blog-one {
    padding: 80px 0 80px;
  }
  .footer-widget__about {
    margin-right: 0;
  }
  .footer-widget__links {
    margin-top: 36px;
  }
  .footer-widget__services {
    margin-left: 0;
    margin-top: 36px;
  }
  .footer-widget__contact {
    margin-left: 0;
    margin-top: 36px;
  }
  .site-footer__top-inner {
    padding: 80px 0 73px;
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__copyright {
    margin-bottom: 10px;
  }
  .booking-two__left {
    margin-top: 0;
  }
  .booking-two__right {
    margin-left: 0;
    margin-top: 60px;
  }
  .booking-two {
    padding: 80px 0 0px;
  }
  .about-two__left {
    margin-right: 0;
  }
  .about-two__progress-box {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
  .about-two__btn-box-and-call-box {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
  .about-two__right {
    margin-left: 0;
    margin-top: 50px;
  }
  .about-two__img-two {
    display: none;
  }
  .about-two__video-link {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .about-two__experience {
    display: none;
  }
  .services-two {
    padding: 80px 0 50px;
  }
  .process-two {
    padding: 80px 0 50px;
  }
  .counter-two__list li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .counter-two {
    padding: 80px 0 0px;
  }
  .listing-two {
    padding: 70px 0 80px;
  }
  .video-two__inner {
    padding: 85px 15px 70px;
  }
  .video-two__title {
    font-size: 25px;
  }
  .video-two__title br {
    display: none;
  }
  .faq-two .faq-one-accrodion .accrodion-title {
    padding: 23px 15px 23px;
    padding-right: 50px;
  }
  .faq-two .faq-one-accrodion .accrodion-title h4::before {
    right: -35px;
  }
  .faq-two {
    padding: 80px 0 80px;
  }
  .contact-one__img {
    display: none;
  }
  .contact-one__left {
    margin-right: 0;
  }
  .contact-one {
    padding: 80px 0 80px;
  }
  .team-two {
    padding: 80px 0 50px;
  }
  .testimonial-two__single {
    padding: 59px 15px 22px;
  }
  .testimonial-two__client-name {
    font-size: 18px;
  }
  .testimonial-two__quote {
    margin-left: -15px;
  }
  .testimonial-two__rating span {
    font-size: 14px;
  }
  .testimonial-two__carousel.owl-theme .owl-nav {
    display: none;
  }
  .testimonial-two {
    padding: 80px 0 80px;
  }
  .feature-one {
    padding: 80px 0 50px;
  }
  .popular-car-two {
    padding: 0 0 80px;
  }
  .brand-two__left {
    text-align: center;
  }
  .blog-two__title {
    font-size: 20px;
  }
  .blog-two__carousel.owl-theme .owl-nav {
    position: relative;
    top: 0;
    justify-content: center;
    padding-top: 30px;
  }
  .blog-two {
    padding: 80px 0 80px;
  }
  .search-car__inner {
    padding: 20px 15px 20px;
    margin-right: 0;
  }
  .about-three__left {
    margin-right: 0;
  }
  .about-three__btn-box-and-call-box {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
  .about-three__right {
    margin-top: 50px;
  }
  .about-three__satisfied-box {
    margin-top: 30px;
  }
  .about-three {
    padding: 80px 0 0;
  }
  .services-three {
    padding: 80px 0 0px;
  }
  .process-three {
    padding: 0px 0px 50px;
  }
  .counter-three__single::before {
    display: none;
  }
  .listing-three__meta li {
    gap: 5px;
  }
  .listing-three__meta li .text p {
    font-size: 14px;
  }
  .listing-three__content {
    padding: 23px 15px 30px;
  }
  .listing-three__carousel .owl-nav {
    position: relative;
    top: 0;
    padding-top: 30px;
  }
  .listing-three {
    padding: 80px 0 80px;
  }
  .pricing-two__single {
    flex-direction: column;
    gap: 30px;
  }
  .pricing-two__left-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .pricing-two__right-content {
    gap: 20px;
    flex-direction: column;
  }
  .pricing-two {
    padding: 60px 0 50px;
  }
  .testimonial-three__right {
    margin-right: 0;
  }
  .testimonial-three__single {
    padding: 49px 15px 41px;
  }
  .testimonial-three__carousel.owl-theme .owl-nav {
    position: relative;
    bottom: 0;
    left: 0;
    padding-top: 30px;
  }
  .testimonial-three {
    padding: 80px 0 80px;
  }
  .team-three {
    padding: 80px 0 50px;
  }
  .feature-two {
    padding: 80px 0 0;
  }
  .error-page__img img {
    width: 100%;
  }
  .error-page__content {
    margin-top: 20px;
  }
  .error-page__content h2 {
    font-size: 30px;
  }
  .error-page {
    padding: 80px 0px 80px;
  }
  .car-listing__pagination .pg-pagination li {
    margin-right: 5px;
  }
  .cars-page {
    padding: 80px 0 80px;
  }
  .car-listing__sidebar {
    max-width: 500px;
    margin: 60px auto 0;
  }
  .car-listing-page-one .listing-one__content {
    padding: 23px 15px 30px;
  }
  .listing-single__top {
    flex-direction: column;
    align-items: baseline;
  }
  .listing-single__title {
    font-size: 25px;
  }
  .listing-single__tag {
    gap: 8px;
  }
  .listing-single__top-right {
    margin-top: 40px;
  }
  .listing-single__right {
    margin-left: 0;
    margin-top: 40px;
  }
  .listing-single__title-two {
    font-size: 25px;
  }
  .listing-single__btn-and-video-box {
    gap: 30px;
    flex-direction: column;
    align-items: baseline;
  }
  .listing-single__video-link {
    left: 15px;
  }
  #listing-single__carousel {
    padding-bottom: 60px;
  }
  .listing-single__car-overview-points-box {
    flex-direction: column;
    align-items: baseline;
    gap: 22px;
  }
  .listing-single__feature-points-box {
    gap: 25px;
    flex-direction: column;
  }
  .listing-single__car-overview-point-right {
    margin-left: 20px;
  }
  .listing-single__sidebar {
    max-width: 500px;
    margin: 60px auto 0;
  }
  .listing-single__rent-car {
    padding: 27px 15px 30px;
  }
  .listing-single__contact-info {
    padding: 30px 15px 30px;
  }
  .listing-single {
    padding: 70px 0 80px;
  }
  .pricing-page-two {
    padding: 0px 0 50px;
  }
  .contact-info__single {
    padding: 40px 15px 41px;
  }
  .contact-info__single h3 {
    font-size: 19px;
    line-height: 29px;
  }
  .contact-info {
    padding: 80px 0 50px;
  }
  .contact-page__left {
    margin-left: 0;
    margin-right: 0;
  }
  .contact-page__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
  }
  .contact-page__inner {
    padding: 30px 15px 30px;
  }
  .contact-page__form-title {
    font-size: 35px;
  }
  .faq-page {
    padding: 80px 0 60px;
  }
  .services-page-process {
    padding: 50px 0 0;
  }
  .services-four {
    padding: 50px 0 0px;
  }
  .testimonials-page {
    padding: 80px 0 50px;
  }
  .team-details__top-right {
    margin-left: 0;
    margin-top: 38px;
  }
  .team-details__bottom-left {
    margin-bottom: 30px;
  }
  .team-details__practice-area-list-box {
    gap: 0;
    flex-direction: column;
    align-items: baseline;
  }
  .team-details {
    padding: 80px 0 80px;
  }
  .team-details-contact {
    padding: 0px 0 80px;
  }
  .page-header__inner {
    padding: 90px 0 90px;
  }
  .page-header__inner h3 {
    font-size: 25px;
    margin-bottom: 14px;
  }
  .about-page {
    padding: 80px 0 0px;
  }
  .listing-one {
    padding: 80px 0 80px;
  }
  .blog-page {
    padding: 80px 0 80px;
  }
  .blog-list__date {
    top: 10px;
    right: 10px;
  }
  .blog-list__user-and-meta {
    gap: 15px;
    flex-direction: column;
  }
  .blog-list__title {
    font-size: 35px;
    line-height: 45px;
  }
  .sidebar {
    max-width: 550px;
    margin: 50px auto 0;
  }
  .sidebar--two {
    margin: 0 auto 50px;
  }
  .sidebar--three {
    margin: 20px auto 0;
  }
  .sidebar__search {
    padding: 50px 20px 50px;
  }
  .sidebar__category {
    padding: 42px 20px 50px;
  }
  .sidebar__post {
    padding: 42px 20px 42px;
  }
  .sidebar__tags {
    padding: 41px 20px 40px;
  }
  .blog-left-sidebar {
    padding: 80px 0 50px;
  }
  .blog-right-sidebar {
    padding: 80px 0 80px;
  }
  .blog-details__date {
    top: 10px;
    right: 10px;
  }
  .blog-details__user-and-meta {
    gap: 20px;
    flex-direction: column;
  }
  .blog-details__title {
    font-size: 25px;
  }
  .blog-details__author-box {
    padding: 40px 20px 37px;
  }
  .blog-details__tag-and-share {
    padding: 30px 15px 30px;
    flex-direction: column;
  }
  .blog-details__tag {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .comment-one {
    padding: 40px 15px 40px;
  }
  .comment-one__single {
    padding: 29px 15px 30px;
    flex-direction: column;
    align-items: baseline;
  }
  .comment-one__btn-box {
    position: relative;
    top: 0;
    margin-top: 10px;
  }
  .comment-form {
    padding: 40px 15px 40px;
  }
  .blog-details__title-2 {
    font-size: 30px;
    line-height: 40px;
  }
  .blog-details {
    padding: 80px 0 80px;
  }
  .product {
    padding: 70px 0 80px;
  }
  .product__sidebar {
    max-width: 500px;
    width: 100%;
    margin: 60px auto 0px;
  }
  .product__showing-result {
    display: block;
    text-align: center;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .product__showing-text-box {
    margin-bottom: 20px;
  }
  .product__showing-sort {
    margin: 0 auto;
  }
  .product__all-tab-button {
    position: relative;
    top: 0;
    width: 120px;
    margin: 0px auto 30px;
  }
  .product__all-tab-single {
    max-width: 350px;
    margin: 0 auto;
  }
  .single-product-style2__content {
    padding: 30px 30px 30px;
    text-align: center;
  }
  .shop-category ul li a:after {
    width: 35px;
  }
  .single-product-style2__review {
    justify-content: center;
  }
  .single-product-style2__info {
    justify-content: center;
  }
  .product-details__left {
    margin-right: 0;
  }
  .product-details__inner {
    flex-direction: column;
    align-items: baseline;
  }
  .product-details__buttons-boxes {
    flex-direction: column;
    align-items: baseline;
  }
  .product-details__right {
    margin-top: 51px;
  }
  .product-details {
    padding: 0px;
    padding-bottom: 80px;
  }
  .product-description {
    padding: 0px;
  }
  .related-products {
    padding: 0px 0px 80px;
  }
  .related-products__title h3 {
    font-size: 30px;
  }
  .product-details__tab-content-inner {
    padding: 20px 20px 20px;
  }
  .comments-area .comment {
    flex-direction: column;
    align-items: baseline;
  }
  .review-one__content {
    padding-left: 0;
    margin-top: 25px;
  }
  .review-one__content-top {
    flex-direction: column;
    align-items: baseline;
  }
  .review-form-one__rate-box {
    flex-direction: column;
    align-items: baseline;
  }
  .review-form-one__rate {
    margin-left: 0;
    margin-top: 10px;
  }
  .cart-page__right {
    margin-left: 0;
    margin-top: 60px;
  }
  .cart-page {
    padding: 72px 0px 80px;
  }
  .cart-total li {
    font-size: 16px;
  }
  .cart-total li span:first-child {
    font-size: 16px;
    margin-right: 30px;
    width: 115px;
  }
  .cart-page__sidebar {
    padding: 28px 15px 30px;
  }
  .cart-page__buttons {
    flex-direction: column;
    align-items: flex-end;
  }
  .sidebar-order-summary {
    margin-top: 60px;
    padding: 37px 20px 45px;
  }
  .checkout-page {
    padding: 80px 0 80px;
  }
  .wishlist-page {
    padding: 80px 0px 80px;
  }
  .login-one {
    padding: 70px 0px 80px;
  }
  .sign-up-one {
    padding: 70px 0px 80px;
  }
}
@media only screen and (max-width: 400px) {
  .testimonial-one__single {
    padding: 25px 15px 25px;
  }
}
@media only screen and (max-width: 500px) {
  .counter-one__list li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .lets-talk__title h2 {
    font-size: 30px;
  }
  .lets-talk__btn-boxes {
    flex-direction: column;
  }
  .team-one__inner {
    padding: 20px 15px 10px;
  }
  .team-one__buttons {
    padding: 22px 15px 21px;
  }
  .team-one__buttons-content-box {
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
  }
  .services-two__single {
    padding: 30px 20px 37px;
  }
  .counter-two__list li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .feature-one__inner-single {
    padding: 28px 15px 40px;
  }
  .feature-one__inner-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1800px) {
  .contact-one__img {
    right: -135px;
  }
  .contact-one__img img {
    width: 95%;
  }
}
@media only screen and (min-width: 1320px) and (max-width: 1499px) {
  .contact-one__img {
    right: -250px;
  }
  .contact-one__img img {
    width: 80%;
  }
}
@media only screen and (max-width: 500px) {
  .checkout-page .billing_details {
    padding: 53px 15px 60px;
  }
}
@media only screen and (max-width: 610px) {
  .login-one__form .inner-title {
    padding-bottom: 35px;
  }
  .login-one__form .inner-title h2 {
    font-size: 40px;
  }
  .login-one__form form {
    padding: 60px 15px 52px;
  }
  .login-one__form form .forget a {
    font-size: 14px;
  }
  .sign-up-one__form form {
    padding: 60px 20px 52px;
  }
  .sign-up-one__form form .google-facebook {
    flex-direction: column;
  }
  .sign-up-one__form form .google-facebook a + a {
    margin-left: 0;
    margin-top: 10px;
  }
  .sign-up-one__form .inner-title {
    padding-bottom: 30px;
  }
  .sign-up-one__form .inner-title h2 {
    font-size: 40px;
  }
}
/*--------------------------------------------------------------
# Slider All Responsive Css
--------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .main-slider .owl-theme .owl-dots {
    max-width: 1140px;
  }
  .main-slider-two__img {
    right: -50px;
  }
  .main-slider-two__img img {
    width: 85% !important;
  }
  .main-slider-two .owl-theme .owl-dots {
    max-width: 1140px;
  }
  .banner-one__img-one {
    right: -100px;
  }
  .banner-one__img-one img {
    width: 85%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-slider .owl-theme .owl-dots {
    max-width: 960px;
  }
  .main-slider .owl-theme .owl-nav {
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    top: 56%;
  }
  .main-slider-two__img {
    display: none;
  }
  .main-slider-two .owl-theme .owl-nav {
    align-items: flex-end;
  }
  .main-slider-two .owl-theme .owl-dots {
    max-width: 960px;
  }
  .banner-one__img-one {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-slider .owl-theme .owl-dots {
    max-width: 720px;
  }
  .main-slider .owl-theme .owl-nav {
    display: none;
  }
  .main-slider__title {
    font-size: 90px;
  }
  .main-slider-two__img {
    display: none;
  }
  .main-slider-two .owl-theme .owl-nav {
    align-items: flex-end;
    padding: 0px 20px;
  }
  .main-slider-two__title {
    font-size: 60px;
  }
  .main-slider-two .owl-theme .owl-dots {
    max-width: 720px;
  }
  .banner-one__img-one {
    display: none;
  }
  .banner-one__shape-1 {
    display: none;
  }
  .banner-one__title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .main-slider .owl-theme .owl-dots {
    max-width: 540px;
    bottom: 85px;
  }
  .main-slider .owl-theme .owl-nav {
    display: none;
  }
  .main-slider__sub-title {
    font-size: 25px;
  }
  .main-slider__title {
    font-size: 38px;
  }
  .main-slider__sub-title-two {
    font-size: 32px;
  }
  .main-slider__btn-and-video-box {
    gap: 40px;
    flex-direction: column;
    align-items: baseline;
    margin-top: 25px;
  }
  .main-slider__video-link {
    left: 20px;
  }
  .main-slider .item {
    padding-top: 97px;
    padding-bottom: 150px;
  }
  .main-slider-two__img {
    display: none;
  }
  .main-slider-two .owl-theme .owl-nav {
    display: none;
  }
  .main-slider-two__title {
    font-size: 25px;
    line-height: 1.3em;
  }
  .main-slider-two .owl-theme .owl-dots {
    max-width: 540px;
  }
  .main-slider-two .item {
    padding-top: 164px;
    padding-bottom: 150px;
  }
  .banner-one__img-one {
    display: none;
  }
  .banner-one__shape-1 {
    display: none;
  }
  .banner-one__title {
    font-size: 24px;
    line-height: 1.3em;
  }
  .banner-one__text br {
    display: none;
  }
  .banner-one {
    padding: 95px 0 144px;
  }
}
@media only screen and (max-width: 500px) {
  .main-slider-two__text br {
    display: none;
  }
  .main-slider-two__btn-box {
    flex-direction: column;
    align-items: baseline;
    gap: 15px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1700px) {
  .banner-one__img-one {
    right: -100px;
  }
}
@media only screen and (min-width: 1320px) and (max-width: 1499px) {
  .banner-one__img-one {
    right: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .main-slider .owl-theme .owl-nav {
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    top: 56%;
  }
  .main-slider-two .owl-theme .owl-nav {
    align-items: flex-end;
  }
}
/*--------------------------------------------------------------
# Main Menu All Responsive Css
--------------------------------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu__top-inner {
    padding: 7px 15px 8px;
  }
  .main-menu__contact-list li:last-child {
    display: none;
  }
  .main-menu__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu-two__top-inner {
    padding: 7px 15px 8px;
  }
  .main-menu-two__contact-list li:last-child {
    display: none;
  }
  .main-menu-two__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu-two .mobile-nav__toggler:hover {
    color: var(--gorent-white);
  }
  .main-menu-three__wrapper-inner {
    padding: 0 15px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu__top {
    display: none;
  }
  .main-menu__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu-two__top {
    display: none;
  }
  .main-menu-two__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu-two .mobile-nav__toggler:hover {
    color: var(--gorent-white);
  }
  .main-menu-three__wrapper-inner {
    padding: 0 15px 0;
  }
}
@media (max-width: 767px) {
  .main-menu__top {
    display: none;
  }
  .main-menu__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu__right {
    display: none;
  }
  .main-menu__search-cart-box {
    display: none;
  }
  .main-menu-two__top {
    display: none;
  }
  .main-menu-two__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu-two__right {
    display: none;
  }
  .main-menu-two__search-cart-box {
    display: none;
  }
  .main-menu-two .mobile-nav__toggler:hover {
    color: var(--gorent-white);
  }
  .main-menu-three__wrapper-inner {
    padding: 0 15px 0;
  }
  .main-menu-three__right {
    display: none;
  }
  .main-menu-three__search-cart-box {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .main-menu__top-inner {
    padding: 7px 30px 8px;
  }
  .main-menu__wrapper-inner {
    padding: 0 30px 0;
  }
  .main-menu__call {
    display: none;
  }
  .main-menu-three__wrapper-inner {
    padding: 0 30px 0;
  }
  .main-menu-three__call {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .main-menu-two__top-inner {
    padding: 7px 30px 8px;
  }
  .main-menu-two__wrapper-inner {
    padding: 0 30px 0;
  }
  .main-menu-two__call {
    display: none;
  }
}
/* The End */
.dark-header.stricky-header .main-menu__list > li > a {
  color: var(--gorent-white);
}
.dark-header.stricky-header .main-menu__list > li > a:hover {
  color: var(--gorent-base);
}

.dark-header .main-menu__wrapper-inner {
  background-color: #1b1a28;
}
.dark-header .main-menu .main-menu__list > li:hover > a {
  color: var(--gorent-base);
}
.dark-header .main-menu .main-menu__list > li > a,
.dark-header .main-menu__search,
.dark-header .main-menu__cart,
.dark-header .main-menu__call-number a {
  color: var(--gorent-white);
}
.dark-header .main-menu .main-menu__list > li > a:hover,
.dark-header .main-menu__search:hover,
.dark-header .main-menu__cart:hover,
.dark-header .main-menu__call-number a:hover {
  color: var(--gorent-base);
}
.dark-header .main-menu .main-menu__list > li.has-dropdown > a:after {
  color: var(--gorent-white);
}
.dark-header .main-menu .main-menu__list > li.has-dropdown > a:hover:after {
  color: var(--gorent-base);
}
.dark-header .main-menu .main-menu__list > li.current-menu-item > a {
  color: var(--gorent-base);
}
.dark-header .main-menu .main-menu__list > li.current-menu-item > a::after {
  color: var(--gorent-base);
}
.dark-header .main-menu__list > li.has-dropdown > a:after {
  color: var(--gorent-white);
}
.dark-header .main-menu__list > li.has-dropdown:hover > a:after {
  color: var(--gorent-base);
}

.elementor-element.dark-shape-1 {
  position: absolute;
  width: 481px;
  height: 448px;
  left: -221px;
  top: 50px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.elementor-element.dark-shape-2 {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -125px;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.elementor-element.dark-shape-3 {
  position: absolute;
  top: -100px;
  left: -70px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.1;
  filter: blur(120px);
  z-index: -1;
}

.elementor-element.dark-shape-4 {
  position: absolute;
  bottom: -255px;
  right: 100px;
  width: 730px;
  height: 765px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
  opacity: 0.1;
  filter: blur(120px);
  z-index: -1;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-80 {
  padding-bottom: 120px;
}

.pt-80 {
  padding-top: 80px;
}

.tv-footer-widget.tv-footer-col-3 {
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (max-width: 575px) {
  .tv-footer-widget.tv-footer-col-3 {
    margin-left: 0;
  }
}

a#cancel-comment-reply-link {
  margin-left: 8px;
}

.elementor-widget-container .about-one__call-box-content p {
  margin-bottom: 0;
}

h3.postbox-comment-title,
.comment-reply-title {
  margin-bottom: 15px;
}

.blog-list__user p {
  margin-bottom: 0;
}

.car-listing__pagination .pg-pagination li .current {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  color: var(--gorent-black);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  font-family: var(--gorent-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.car-listing__pagination .pg-pagination li .current {
  border: 1px solid var(--gorent-base);
  color: var(--gorent-black);
  background-color: var(--gorent-base);
}

ul.single-product-style1__info a.add_to_cart_button.added {
  display: none !important;
}

.woocommerce nav.woocommerce-pagination {
  text-align: center;
  display: none;
}

.product__showing-result .woocommerce-ordering {
  float: none;
  margin: 0;
}

.product__showing-result .woocommerce-ordering .nice-select .list {
  width: 100%;
}

.woocommerce .loader::before {
  display: none !important;
}

.woocommerce-Reviews .commentlist {
  padding-left: 0;
}

.product-details__description-content .woocommerce-Reviews .commentlist .review {
  position: relative;
  display: block;
  margin-bottom: 40px !important;
  padding-bottom: 40px !important;
  border-bottom: 1px solid rgba(var(--gorent-black-rgb), 0.1) !important;
}

.commentlist .review .comment_container {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .commentlist .review .comment_container {
    flex-wrap: wrap;
  }
}
.commentlist .review .comment_container img {
  float: none !important;
  position: relative !important;
  height: 165px !important;
  width: 165px !important;
  border-radius: 50%;
  object-fit: cover;
}
.commentlist .review .comment_container .comment-text {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.commentlist .review .comment_container .comment-text .meta .woocommerce-review__author {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}
.commentlist .review .comment_container .comment-text .meta .woocommerce-review__published-date {
  color: var(--gorent-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--gorent-font);
}
.commentlist .review .comment_container .comment-text .meta .woocommerce-review__dash {
  display: none;
}
.commentlist .review .comment_container .comment-text .star-rating span::before {
  color: var(--gorent-base);
}

.woocommerce-Reviews .comment-respond {
  padding-top: 16px;
}
.woocommerce-Reviews .comment-respond .comment-reply-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: #131222;
}
.woocommerce-Reviews .comment-respond .comment-form-rating {
  display: flex;
  gap: 20px;
  margin-top: 17px;
  margin-bottom: 37px;
}
.woocommerce-Reviews .comment-respond .nice-select {
  display: none;
}
.woocommerce-Reviews .comment-respond .comment-form-comment textarea {
  font-size: 14px;
  color: var(--gorent-gray);
  height: 160px;
  width: 100%;
  background-color: var(--gorent-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--gorent-bdr-radius);
  height: auto !important;
}
.woocommerce-Reviews .comment-respond .form-submit input.submit {
  position: relative !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 34px !important;
  color: var(--gorent-black) !important;
  background-color: var(--gorent-base) !important;
  padding: 13px 30px 13px !important;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}
.woocommerce-Reviews .comment-respond .form-submit input.submit:after {
  content: "";
  background-color: var(--gorent-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.woocommerce-Reviews .comment-respond .form-submit input.submit:hover {
  color: var(--gorent-white);
}
.woocommerce-Reviews .comment-respond .form-submit input.submit:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.woocommerce-Reviews .comment-respond .comment-form-author input,
.woocommerce-Reviews .comment-respond .comment-form-email input {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--gorent-bdr-radius);
}

.product-details .nice-select.hidden-select {
  display: none;
}
.product-details button.thm-btn.single_add_to_cart_button {
  border: none;
}
.product-details .woocommerce-variation-availability p.stock {
  color: #868689;
}
.product-details .woocommerce-variation-add-to-cart.variations_button {
  display: none;
}
.product-details .woocommerce-variation-price .price {
  position: relative;
  display: inline-block;
  color: var(--gorent-base) !important;
  font-size: 20px !important;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0;
}
.product-details .product-details__top span.gorent-p {
  margin-left: 25px;
}
.product-details .product-details__top span {
  margin-left: 0;
}
.product-details .product-details__reveiw .woocommerce-product-rating {
  margin-bottom: 0 !important;
}
.product-details .product-details__reveiw .woocommerce-product-rating .woocommerce-review-link {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--gorent-gray);
}
.product-details .product-details__reveiw .woocommerce-product-rating .woocommerce-review-link span {
  margin-left: 0;
}
.product-details .product-details__reveiw .woocommerce-product-rating .star-rating span {
  color: var(--gorent-base);
}
.product-details .product-details__reveiw .woocommerce-product-rating .star-rating:before {
  color: var(--gorent-base);
}

.page-area .cart-page {
  padding: 32px 0;
}

.cart-page .coupon .input-text {
  width: auto !important;
  padding: 12px 10px !important;
  border-radius: 10px;
}
.cart-page .thm-btn.cart-btn {
  padding: 8px 30px 8px;
  border: none;
  justify-content: center;
  border: none;
}
.cart-page .thm-btn.cart-btn.w-100 {
  width: 100%;
}

body,
html {
  overflow-x: hidden;
}

.tagcloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tagcloud a {
  position: relative;
  display: block;
  color: var(--gorent-gray);
  font-size: 15px !important;
  font-weight: 400;
  background: var(--gorent-white);
  padding: 6px 24px;
  border-radius: 5px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tagcloud a:hover {
  color: var(--gorent-white);
  background: var(--gorent-base);
}

.post.sticky {
  border-top: 2px solid var(--gorent-base);
}

figure {
  max-width: 100%;
}

.wp-block-quote {
  position: relative;
  display: block;
  background-color: rgba(var(--gorent-base-rgb), 0.2);
  border-radius: var(--gorent-bdr-radius);
  padding: 40px 40px 37px;
}

.wp-block-quote p {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.72px;
  color: var(--gorent-black);
  margin-bottom: 30px;
}

.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_archive ul {
  list-style: none;
  padding-left: 0;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_archive ul li {
  position: relative;
  display: flex;
  color: var(--gorent-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 15px;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_archive .nice-select {
  border: 1px solid #ddd;
  border-radius: 10px;
  height: auto;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_archive .nice-select .list {
  width: 100%;
  padding: 10px;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_calendar .wp-calendar-table {
  width: 100%;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_categories > ul {
  list-style: none;
  padding-left: 0;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_categories > ul li {
  position: relative;
  display: block;
  color: var(--gorent-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 15px;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_categories > ul li ul.children li {
  padding-left: 0;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_categories .nice-select {
  height: auto;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_categories .nice-select .list {
  width: 100%;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_pages > ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_meta > ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_entries > ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_nav_menu > ul {
  padding-left: 0;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_pages ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_meta ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_entries ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_nav_menu ul {
  list-style: none;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_pages ul li a, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_meta ul li a, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_entries ul li a, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_nav_menu ul li a {
  position: relative;
  display: block;
  color: var(--gorent-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: 0.3s all;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_pages ul li a:hover, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_meta ul li a:hover, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_entries ul li a:hover, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_nav_menu ul li a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_nav_menu ul {
  padding-left: 0;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_nav_menu ul ul.sub-menu {
  padding-left: 10px;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_comments ul, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_rss ul {
  padding-left: 0;
  list-style: none;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_comments ul li, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_rss ul li {
  position: relative;
  display: block;
  color: var(--gorent-black);
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 15px;
  transition: 0.3s all;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_recent_comments ul li a, .the-unit-sidebar-class .tv-unit-sidebar-widget.widget_rss ul li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_text img {
  max-width: 100%;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_text .nice-select {
  border: 1px solid #ddd;
  border-radius: 10px;
  height: auto;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_text .nice-select .list {
  max-width: 100%;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_block .wp-block-latest-posts {
  list-style: none;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_block .wp-block-latest-posts li a {
  position: relative;
  display: block;
  color: var(--gorent-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: 0.3s all;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_block .wp-block-latest-posts li a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_block .wp-block-latest-comments {
  padding-left: 0;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_block .wp-block-latest-comments li {
  position: relative;
  display: block;
  color: var(--gorent-black);
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 15px;
  transition: 0.3s all;
}
.the-unit-sidebar-class .tv-unit-sidebar-widget.widget_block .wp-block-latest-comments li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.tv-unit-widget {
  margin-bottom: 15px;
}
@media lg, only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tv-unit-widget {
    margin-bottom: 0px;
  }
}
.tv-unit-widget.widget_archive ul, .tv-unit-widget.widget_categories ul, .tv-unit-widget.widget_pages ul, .tv-unit-widget.widget_meta ul, .tv-unit-widget.widget_recent_comments ul, .tv-unit-widget.widget_recent_entries ul, .tv-unit-widget.widget_rss ul, .tv-unit-widget.widget_nav_menu ul {
  list-style: none;
  padding-left: 0;
}
.tv-unit-widget.widget_archive ul li, .tv-unit-widget.widget_categories ul li, .tv-unit-widget.widget_pages ul li, .tv-unit-widget.widget_meta ul li, .tv-unit-widget.widget_recent_comments ul li, .tv-unit-widget.widget_recent_entries ul li, .tv-unit-widget.widget_rss ul li, .tv-unit-widget.widget_nav_menu ul li {
  color: rgba(var(--gorent-white-rgb), 0.7);
  transition: all 500ms ease;
  margin-bottom: 16px;
}
.tv-unit-widget.widget_archive ul li:hover, .tv-unit-widget.widget_categories ul li:hover, .tv-unit-widget.widget_pages ul li:hover, .tv-unit-widget.widget_meta ul li:hover, .tv-unit-widget.widget_recent_comments ul li:hover, .tv-unit-widget.widget_recent_entries ul li:hover, .tv-unit-widget.widget_rss ul li:hover, .tv-unit-widget.widget_nav_menu ul li:hover {
  color: var(--gorent-base);
}
.tv-unit-widget.widget_archive ul li a, .tv-unit-widget.widget_categories ul li a, .tv-unit-widget.widget_pages ul li a, .tv-unit-widget.widget_meta ul li a, .tv-unit-widget.widget_recent_comments ul li a, .tv-unit-widget.widget_recent_entries ul li a, .tv-unit-widget.widget_rss ul li a, .tv-unit-widget.widget_nav_menu ul li a {
  color: rgba(var(--gorent-white-rgb), 0.7);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tv-unit-widget.widget_archive ul li a:hover, .tv-unit-widget.widget_categories ul li a:hover, .tv-unit-widget.widget_pages ul li a:hover, .tv-unit-widget.widget_meta ul li a:hover, .tv-unit-widget.widget_recent_comments ul li a:hover, .tv-unit-widget.widget_recent_entries ul li a:hover, .tv-unit-widget.widget_rss ul li a:hover, .tv-unit-widget.widget_nav_menu ul li a:hover {
  color: var(--gorent-base);
}
.tv-unit-widget.widget_archive .nice-select, .tv-unit-widget.widget_categories .nice-select, .tv-unit-widget.widget_pages .nice-select, .tv-unit-widget.widget_meta .nice-select, .tv-unit-widget.widget_recent_comments .nice-select, .tv-unit-widget.widget_recent_entries .nice-select, .tv-unit-widget.widget_rss .nice-select, .tv-unit-widget.widget_nav_menu .nice-select {
  height: auto;
}
.tv-unit-widget.widget_archive .nice-select .list, .tv-unit-widget.widget_categories .nice-select .list, .tv-unit-widget.widget_pages .nice-select .list, .tv-unit-widget.widget_meta .nice-select .list, .tv-unit-widget.widget_recent_comments .nice-select .list, .tv-unit-widget.widget_recent_entries .nice-select .list, .tv-unit-widget.widget_rss .nice-select .list, .tv-unit-widget.widget_nav_menu .nice-select .list {
  width: 100%;
}
.tv-unit-widget.widget_categories ul ul.children {
  padding-left: 10px;
}
.tv-unit-widget.widget_pages ul ul.children {
  padding-left: 10px;
}
.tv-unit-widget.widget_nav_menu ul ul.sub-menu {
  padding-left: 10px;
}
.tv-unit-widget.widget_calendar .wp-calendar-table {
  width: 100%;
  color: rgba(var(--gorent-white-rgb), 0.7);
}
.tv-unit-widget.widget_calendar .wp-calendar-table caption {
  color: rgba(var(--gorent-white-rgb), 0.7);
}
.tv-unit-widget.widget_text img {
  max-width: 100%;
}
.tv-unit-widget.widget_text .nice-select {
  height: auto;
}
.tv-unit-widget.widget_text .nice-select .list {
  width: 100%;
}

.gorent-page-content .woocommerce-info {
  border-top-color: var(--gorent-base) !important;
}
.gorent-page-content .woocommerce-info:before {
  color: var(--gorent-base) !important;
}

.button.wc-backward,
.button.wc-forward,
.button {
  position: relative;
  color: var(--gorent-black) !important;
  background-color: var(--gorent-base) !important;
  z-index: 1;
}
.button.wc-backward:after,
.button.wc-forward:after,
.button:after {
  content: "";
  background-color: var(--gorent-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.button.wc-backward:hover,
.button.wc-forward:hover,
.button:hover {
  color: var(--gorent-white) !important;
}
.button.wc-backward:hover:after,
.button.wc-forward:hover:after,
.button:hover:after {
  clip-path: circle(100% at 50% 50%);
}

#place_order {
  padding: 13px 30px 13px !important;
  float: none !important;
  line-height: 34px;
}

.billing_details_form .country_to_state.country_select,
.billing_details_form .state_select,
.woocommerce-form-login-toggle .country_to_state.country_select,
.woocommerce-form-login-toggle .state_select {
  display: block !important;
}
.billing_details_form .nice-select.country_to_state.country_select,
.billing_details_form .nice-select.state_select,
.woocommerce-form-login-toggle .nice-select.country_to_state.country_select,
.woocommerce-form-login-toggle .nice-select.state_select {
  display: none !important;
}
.billing_details_form .form-row input[type=text],
.billing_details_form .form-row input[type=email],
.billing_details_form .form-row input[type=tel],
.billing_details_form span.select2-selection.select2-selection--single,
.woocommerce-form-login-toggle .form-row input[type=text],
.woocommerce-form-login-toggle .form-row input[type=email],
.woocommerce-form-login-toggle .form-row input[type=tel],
.woocommerce-form-login-toggle span.select2-selection.select2-selection--single {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 400;
}
.billing_details_form .select2-selection__rendered,
.woocommerce-form-login-toggle .select2-selection__rendered {
  padding: 20px 0 !important;
}
.billing_details_form .woocommerce-additional-fields,
.woocommerce-form-login-toggle .woocommerce-additional-fields {
  margin-top: 30px;
}

.woocommerce-form-login .form-row input[type=text],
.woocommerce-form-login .form-row input[type=email],
.woocommerce-form-login .form-row input[type=tel],
.woocommerce-form-login .form-row input[type=password],
.checkout_coupon .form-row input[type=text],
.checkout_coupon .form-row input[type=email],
.checkout_coupon .form-row input[type=tel],
.checkout_coupon .form-row input[type=password] {
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 400;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding-left: 0;
}
.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 15px;
}
.woocommerce-MyAccount-navigation ul li a {
  position: relative;
  display: block;
  color: var(--gorent-black);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--gorent-font-two);
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
  z-index: 1;
}
.woocommerce-MyAccount-navigation ul li a.is-active, .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--gorent-white);
  background-color: var(--gorent-base);
}

.woocommerce-MyAccount-content {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.woocommerce-MyAccount-content .form-row input[type=text],
.woocommerce-MyAccount-content .form-row input[type=email],
.woocommerce-MyAccount-content .form-row input[type=tel],
.woocommerce-MyAccount-content .form-row input[type=password],
.woocommerce-MyAccount-content span.select2-selection.select2-selection--single {
  width: 100%;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: var(--gorent-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--gorent-gray);
  display: block;
  font-weight: 400;
}
.woocommerce-MyAccount-content .country_to_state {
  display: block !important;
}
.woocommerce-MyAccount-content .nice-select {
  display: none !important;
}

form.woocommerce-form.woocommerce-form-login.login .form-row input[type=text],
form.woocommerce-form.woocommerce-form-login.login .form-row input[type=email],
form.woocommerce-form.woocommerce-form-login.login .form-row input[type=password],
.woocommerce-form-register .form-row input[type=text],
.woocommerce-form-register .form-row input[type=email],
.woocommerce-form-register .form-row input[type=password] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--gorent-black-rgb), 0.1);
  background-color: rgba(var(--gorent-bdr-color-rgb), 0.7);
  width: 100%;
  height: 60px;
  color: var(--gorent-black);
  font-size: 16px;
  font-family: var(--gorent-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}
form.woocommerce-form.woocommerce-form-login.login .form-row input[type=text]:focus,
form.woocommerce-form.woocommerce-form-login.login .form-row input[type=email]:focus,
form.woocommerce-form.woocommerce-form-login.login .form-row input[type=password]:focus,
.woocommerce-form-register .form-row input[type=text]:focus,
.woocommerce-form-register .form-row input[type=email]:focus,
.woocommerce-form-register .form-row input[type=password]:focus {
  border-color: var(--gorent-base);
  background-color: var(--gorent-white);
}
form.woocommerce-form.woocommerce-form-login.login .button.woocommerce-button.button.woocommerce-form-login__submit,
form.woocommerce-form.woocommerce-form-login.login .woocommerce-form-login__rememberme,
form.woocommerce-form.woocommerce-form-login.login .woocommerce-form-register__submit.woocommerce-Button,
.woocommerce-form-register .button.woocommerce-button.button.woocommerce-form-login__submit,
.woocommerce-form-register .woocommerce-form-login__rememberme,
.woocommerce-form-register .woocommerce-form-register__submit.woocommerce-Button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  color: var(--gorent-black);
  background-color: var(--gorent-base);
  padding: 13px 30px 13px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}

#customer_login h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.gorent-page-content .woocommerce h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.process-one__text,
.counter-two__count-text,
.list-unstyled.pricing-one__points li p {
  margin-bottom: 0px;
}

.single-product-style1 .single-product-style1__info li a.add_to_cart_button,
.single-product-style2 .single-product-style2__info li a.add_to_cart_button {
  color: var(--gorent-base) !important;
  background-color: var(--gorent-white) !important;
  border-radius: 50%;
}
.single-product-style1 .single-product-style1__info li a.add_to_cart_button:hover,
.single-product-style2 .single-product-style2__info li a.add_to_cart_button:hover {
  color: var(--gorent-white) !important;
  background-color: var(--gorent-base) !important;
}
.single-product-style1 .single-product-style1__info li a.add_to_cart_button:after,
.single-product-style2 .single-product-style2__info li a.add_to_cart_button:after {
  clip-path: circle(0% at 50% 50%) !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .elementor.blog-left-sidebar .blog-sidebar {
    max-width: 550px;
    margin: 0 auto 50px;
  }
  .elementor.blog-right-sidebar .blog-sidebar {
    max-width: 550px;
    margin: 50px auto 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .sidebar-right {
    margin-top: 50px;
  }
  .blog-left-sidebar .sidebar-right {
    margin-top: 0px !important;
    margin-bottom: 50px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .blog-sidebar {
    max-width: 550px;
    margin: 50px auto 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px), only screen and (max-width: 575px) {
  .product__showing-text-box {
    display: flex;
    justify-content: center;
  }
  .product__showing-text-box .woocommerce-result-count {
    margin-bottom: 0 !important;
  }
  .elementor.blog-left-sidebar {
    padding-bottom: 80px !important;
  }
}
.gy-30 {
  row-gap: 30px !important;
}

.gy-36 {
  row-gap: 20px !important;
}

.elementor-widget-about-image-box3 .container {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}

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