
:root {
  --gotur-font: "Plus Jakarta Sans", sans-serif;
  --gotur-heading-font: "Plus Jakarta Sans", sans-serif;
  --gotur-font2: "Just Another Hand", serif;
  --gotur-text: #595959;
  --gotur-text-rgb: 89, 89, 89;
  --gotur-base: #63AB45;
  --gotur-base-rgb: 99, 171, 69;
  --gotur-primary: #F7921E;
  --gotur-primary-rgb: 247, 146, 30;
  --gotur-black: #1D231F;
  --gotur-black-rgb: 29, 35, 31;
  --gotur-border-color: #E6E5E5;
  --gotur-border-color-rgb: 230, 229, 229;
  --gotur-white: #fff;
  --gotur-white-rgb: 255, 255, 255;
  --gotur-black2: #1A1948;
  --gotur-black2-rgb: 26, 25, 72;
  --gotur-black3: #000000;
  --gotur-black3-rgb: 0, 0, 0;
  --gotur-border-color:#E5E5E5;
  --gotur-border-color-rgb: 229, 229, 229;
  --gotur-gray: #F3F8F6;
  --gotur-gray-rgb: 243, 248, 246;
  --gotur-letter-space: -1.2px;
  --gotur-letter-space-lg: -1.6px;
  --gotur-letter-space-xl: -3.6px;
  --section-space: 120px;
  --section-space2: 118px;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

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

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/* button */
.gotur-btn {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  line-height: normal;
  padding: 17.5px 58px 17.5px 20px;
  border-radius: 100px;
  transition: 500ms;
  text-transform: capitalize;
  z-index: 1;
}
.gotur-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gotur-btn::before, .gotur-btn::after {
  content: "";
  background-color: var(--gotur-primary, #F7921E);
  height: 50%;
  width: 0;
  position: absolute;
  z-index: -1;
  transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.gotur-btn .icon {
  transition: all 0.4s ease-in-out;
  max-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 50%;
  height: 40px;
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  overflow: hidden;
}
.gotur-btn::before {
  top: 0;
  left: 0;
  right: auto;
}
.gotur-btn::after {
  bottom: 0;
  right: 0;
  left: auto;
}
.gotur-btn:hover {
  color: var(--gotur-white, #fff);
}
.gotur-btn:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.gotur-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.gotur-btn:hover .icon i {
  animation: iconTranslateX 0.4s forwards;
}
.gotur-btn--primary {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-primary, #F7921E);
}
.gotur-btn--primary::before, .gotur-btn--primary::after {
  background-color: var(--gotur-base, #63AB45);
}
.gotur-btn--primary:hover {
  color: var(--gotur-white, #fff);
}
.gotur-btn--primary .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
}
.gotur-btn--white {
  color: var(--gotur-black, #1D231F);
  background-color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.gotur-btn--white .icon {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.gotur-btn--white::before, .gotur-btn--white::after {
  background-color: var(--gotur-primary, #F7921E);
}
.gotur-btn--white:hover {
  color: var(--gotur-white, #fff);
}
.gotur-btn--white:hover .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
}
.gotur-btn--white:hover .icon i {
  animation: iconTranslateX 0.4s forwards;
}

/*video button*/
.video-btn {
  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: 66.93px;
  height: 66.93px;
  background-color: var(--gotur-white, #fff);
  font-size: 15px;
  color: var(--gotur-primary, #F7921E);
  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;
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-btn:hover {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #63AB45);
}
.video-btn__ripple::before, .video-btn__ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--gotur-white-rgb, 255, 255, 255), 0.2);
  -webkit-animation: producVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}
.video-btn__ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-btn__ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
@keyframes popupVideo {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

/* section title */
.sec-title {
  position: relative;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .sec-title {
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .sec-title {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .sec-title {
    padding-bottom: 35px;
  }
}
.sec-title__tagline {
  color: var(--gotur-primary, #F7921E);
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 117%;
  padding: 5px 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 8px;
}
.sec-title__tagline::after {
  content: "";
  width: 100%;
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.1);
  position: absolute;
  top: 0;
  border-radius: 8px;
  bottom: 8px;
  right: 0;
  left: 0;
}
@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 24px;
  }
}
.sec-title__title {
  margin: 0;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  font-size: 50px;
  text-shadow: 0 0 0.1px currentColor;
}
.sec-title__title span {
  font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-base, #63AB45);
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 991px) {
  .sec-title__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .sec-title__title {
    font-size: 40px;
  }
}
@media (max-width: 430px) {
  .sec-title__title {
    font-size: 37px;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-text, #595959);
  font-size: 16px;
  line-height: 1.75;
  background-color: var(--gotur-white, #fff);
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-black, #1D231F);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.section-space {
  padding: 0;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .section-space {
    padding: 100px 0;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding: 80px 0;
  }
}

.section-space-top {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.gutter-x-10 {
  --bs-gutter-x: 10px;
}

.gutter-x-15 {
  --bs-gutter-x: 15px;
}

.gutter-x-20 {
  --bs-gutter-x: 20px;
}

.gutter-x-30 {
  --bs-gutter-x: 30px;
}

.gutter-x-40 {
  --bs-gutter-x: 40px;
}

.gutter-x-50 {
  --bs-gutter-x: 50px;
}

.gutter-x-60 {
  --bs-gutter-x: 60px;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* client */
.client-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.client-info__image img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--gotur-white, #fff);
}
.client-info__image img + img {
  margin-left: -14px;
}
.client-info .gotur-ratings {
  margin-bottom: 7px;
  gap: 6px;
}
.client-info .gotur-ratings__icon {
  color: var(--gotur-black, #1D231F);
}
.client-info__text {
  margin: 0;
  font-size: 14px;
  color: var(--gotur-white, #fff);
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: capitalize;
}

/* progress bar */
.progress-box__title {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 17px;
}
@media (max-width: 575px) {
  .progress-box__title {
    font-size: 14px;
  }
}
.progress-box__bar {
  width: 100%;
  height: 6px;
  background-color: var(--gotur-white, #fff);
  position: relative;
}
.progress-box__bar__inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--gotur-base, #63AB45);
  transition: all 800ms linear;
  width: 0px;
}
.progress-box__number {
  position: absolute;
  bottom: calc(100% + 17px);
  right: 0;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-size: 16px;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .progress-box__number {
    font-size: 14px;
  }
}

/* social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(var(--gotur-border-color-rgb, 229, 229, 229), 0.25);
  font-size: 14px;
  color: var(--gotur-text, #595959);
}
.social-links a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover {
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-primary, #F7921E);
}

/* ratings */
.gotur-ratings {
  display: flex;
  align-items: center;
  gap: 9px;
}
.gotur-ratings__icon {
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
  color: var(--gotur-base, #63AB45);
  transition: all 500ms ease;
}
.gotur-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--gotur-base, #63AB45);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gotur-text, #595959);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--gotur-text, #595959);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--gotur-black, #1D231F);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gotur-black, #1D231F);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 60px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--gotur-base, #63AB45);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--gotur-black, #1D231F);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* post paginations */
.post-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.post-pagination .previous,
.post-pagination .next {
  width: auto;
  height: auto;
  padding: 11px 16px;
  border-color: var(--gotur-border-color, #E5E5E5);
}
.post-pagination .previous:hover,
.post-pagination .next:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.post-pagination a {
  display: inline-block;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 400ms ease;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
}
.post-pagination a .post-pagination__icon {
  font-size: 14.77px;
  color: var(--gotur-text, #595959);
  transition: all 400ms ease;
}
.post-pagination a .post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination a:hover {
  border-color: var(--gotur-base, #63AB45);
  color: var(--gotur-base, #63AB45);
  background-color: var(--gotur-gray, #F3F8F6);
}
.post-pagination a:hover .post-pagination__icon {
  color: var(--gotur-base, #63AB45);
}
.post-pagination li.active a {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.post-pagination li.active a .post-pagination__icon {
  color: var(--gotur-white, #fff);
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--gotur-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 50px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.gotur-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.gotur-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.gotur-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--gotur-base, #63AB45);
  border-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .gotur-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}
.gotur-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.gotur-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* ui datepicker */
.ui-datepicker.ui-widget-content {
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-primary, #F7921E);
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  width: 307px;
  padding: 5px 8px 3px;
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 360px) {
  .ui-datepicker.ui-widget-content {
    width: 270px;
  }
}

.ui-datepicker .ui-datepicker-header {
  padding: 6px 0;
  border-radius: 6px;
  background-image: none;
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-base, #63AB45);
}
.ui-datepicker-calendar td {
  background-color: var(--gotur-white, #fff);
  background-image: none;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-white, #fff);
}
.ui-datepicker-calendar td a {
  border-color: var(--gotur-base, #63AB45);
  background-color: var(--gotur-gray, #F3F8F6);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: transparent;
  background-color: var(--gotur-white, #fff);
  background-image: none;
  color: var(--gotur-black, #1D231F);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #63AB45);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #63AB45);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-black, #1D231F);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
}

.ui-datepicker .ui-datepicker-prev {
  cursor: pointer;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.ui-datepicker .ui-datepicker-prev:hover {
  left: 6px;
}

.ui-datepicker .ui-datepicker-next {
  cursor: pointer;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.ui-datepicker .ui-datepicker-next:hover {
  right: 6px;
}

/****UI Slider Two***********/
.price-ranger-two {
  position: relative;
  padding-top: 47px;
}
.price-ranger-two #slider-range-two {
  height: 10px;
  background: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.2);
  border-radius: 30px;
  border: none;
}
.price-ranger-two .ui-slider .ui-slider-handle:nth-child(2) .value-two {
  display: none !important;
}
.price-ranger-two .ui-slider .ui-slider-handle:last-child .value {
  display: none !important;
}
.price-ranger-two .ui-slider-range {
  background: var(--gotur-primary, #F7921E);
  border-radius: 30px;
}
.price-ranger-two .ui-state-default,
.price-ranger-two .ui-widget-content .ui-state-default,
.price-ranger-two .ui-widget-header .ui-state-default,
.price-ranger-two .ui-state-hover,
.price-ranger-two .ui-state-focus {
  background-image: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--gotur-primary, #F7921E);
  border: 2px solid var(--gotur-white, #fff);
  margin-bottom: -1px;
}
.price-ranger-two .value,
.price-ranger-two .value-two {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
  border-radius: 4px;
  padding: 4px 5px;
}
.price-ranger-two .value::after,
.price-ranger-two .value-two::after {
  width: 9px;
  height: 4px;
  background-color: var(--gotur-primary, #F7921E);
  position: absolute;
  bottom: -3.5px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  content: "";
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--gotur-black, #1D231F);
  padding: 100px 0;
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gotur-black, #1D231F);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}
.video-one .container {
  position: relative;
  text-align: center;
}
.video-one__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.video-one__btn .video-popup {
  font-size: 24px;
  color: var(--gotur-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-one__btn .video-popup:hover {
  color: var(--gotur-base, #63AB45);
}
.video-one__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-one__btn .curved-circle--item {
  width: 145px;
}
.video-one__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gotur-white, #fff);
  letter-spacing: 0.4em;
}
.video-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--gotur-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .video-one__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-one__title {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}
.video-one__link::before {
  background-color: var(--gotur-base, #63AB45);
}

.video-two {
  position: relative;
  background-color: var(--gotur-black, #1D231F);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gotur-black, #1D231F);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--gotur-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: var(--gotur-base, #63AB45);
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gotur-white, #fff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--gotur-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: var(--gotur-base, #63AB45);
}

.therapist-card {
  position: relative;
  transition: all 500ms ease;
  overflow: hidden;
}
.therapist-card__image {
  position: relative;
}
.therapist-card__image__link {
  display: block;
}
.therapist-card__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.5);
  transition: all 500ms ease;
}
.therapist-card__image img {
  position: relative;
  display: block;
  width: 100%;
}
.therapist-card:hover .therapist-card__image::after {
  opacity: 1;
}
.therapist-card .social-links {
  position: absolute;
  top: 30px;
  right: 30px;
  transform: scale(0, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: all 500ms ease;
  transform-origin: top right;
  z-index: 11;
}
@media (max-width: 1199px) {
  .therapist-card .social-links {
    top: 25px;
    right: 25px;
  }
}
.therapist-card .social-links a {
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-white, #fff);
}
.therapist-card .social-links a:hover {
  border-color: var(--gotur-primary, #F7921E);
}
.therapist-card:hover .social-links {
  opacity: 1;
  transform: scale(1, 1);
}
.therapist-card__identity {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .therapist-card__identity {
    margin-right: 25px;
  }
}
.therapist-card__identity__inner {
  position: relative;
  position: absolute;
  left: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-250px);
  padding: 8px 20px 5px 15px;
  background-color: var(--gotur-primary, #F7921E);
  z-index: 11;
  transition: opacity 600ms ease, visibility 600ms ease, transform 600ms ease;
}
@media (max-width: 1199px) {
  .therapist-card__identity__inner {
    left: 25px;
    bottom: 25px;
  }
}
.therapist-card__identity__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 5px;
  height: calc(100% - 26px);
  background-color: var(--gotur-white, #fff);
}
.therapist-card:hover .therapist-card__identity__inner {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.therapist-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gotur-white, #fff);
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: -2px;
}
.therapist-card__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.therapist-card__name a:hover {
  background-size: 100% 1px;
}
.therapist-card__designation {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  line-height: normal;
}

.therapist-one {
  position: relative;
  padding: 171px 0;
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 991px) {
  .therapist-one {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .therapist-one {
    padding: 100px 0;
  }
}
@media (max-width: 575px) {
  .therapist-one {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .therapist-one__carousel {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(50% - 45px);
  }
}
.therapist-one__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  right: -162px;
  bottom: 54px;
}
@media (max-width: 1440px) {
  .therapist-one__carousel.owl-carousel .owl-nav {
    bottom: 56px;
  }
}
@media (max-width: 1399px) {
  .therapist-one__carousel.owl-carousel .owl-nav {
    bottom: 53px;
  }
}
@media (max-width: 1024px) {
  .therapist-one__carousel.owl-carousel .owl-nav {
    bottom: 52px;
  }
}
@media (max-width: 991px) {
  .therapist-one__carousel.owl-carousel .owl-nav {
    margin-top: 60px;
    position: static;
  }
}
.therapist-one__carousel.owl-carousel .owl-nav button:first-child > * {
  transform: rotate(180deg);
}
.therapist-one__carousel.owl-carousel .owl-nav button:last-child > * {
  transform: rotate(-180deg);
}
.therapist-one .therapist-card {
  direction: ltr;
}
.therapist-one .sec-title {
  margin-bottom: 27px;
}
.therapist-one__text {
  margin-bottom: 42px;
}
.therapist-one__button {
  position: relative;
  margin-left: 157px;
}
@media (max-width: 991px) {
  .therapist-one__button {
    margin-left: 0;
  }
}
.therapist-one__button::before {
  content: "";
  width: 1px;
  height: calc(100% - 14px);
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  background-color: var(--gotur-gray, #F3F8F6);
}
@media (max-width: 991px) {
  .therapist-one__button::before {
    display: none;
  }
}

.therapist-two {
  position: relative;
  background-color: var(--gotur-white, #fff);
}
.therapist-two__top {
  padding-bottom: 55px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.therapist-two__top__text {
  margin: 0;
}
@media (min-width: 768px) {
  .therapist-two__top .therapist-two__item__image {
    display: none;
  }
}
.therapist-two .social-links {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: scale(0, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: all 500ms ease;
  transform-origin: top right;
  z-index: 11;
}
.therapist-two .social-links a {
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-white, #fff);
}
.therapist-two .social-links a:hover {
  border-color: var(--gotur-primary, #F7921E);
}
.therapist-two__item + .therapist-two__item {
  margin-top: 17px;
}
@media (max-width: 991px) {
  .therapist-two__item + .therapist-two__item {
    margin-top: 50px;
  }
}
.therapist-two__item {
  padding-bottom: 37px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
@media (max-width: 991px) {
  .therapist-two__item {
    padding: 0;
    border: 0;
    text-align: center;
  }
}
.therapist-two__item__image {
  position: relative;
}
@media (min-width: 992px) {
  .therapist-two__item__image {
    display: none;
  }
}
@media (max-width: 991px) {
  .therapist-two__item__image {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 18px;
  }
}
.therapist-two__item__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.5);
  transition: all 500ms ease;
}
.therapist-two__item__image:hover::after {
  opacity: 1;
}
.therapist-two__item__image img {
  width: 100%;
  display: block;
}
.therapist-two__item__image:hover .social-links {
  opacity: 1;
  transform: scale(1, 1);
}
.therapist-two__item__name {
  margin-bottom: 5px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .therapist-two__item__name {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .therapist-two__item__name {
    font-size: 30px;
  }
}
@media (max-width: 390px) {
  .therapist-two__item__name {
    font-size: 25px;
  }
}
.therapist-two__item__name:hover {
  color: var(--gotur-base, #63AB45);
}
.therapist-two__item__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.therapist-two__item__name a:hover {
  background-size: 100% 1px;
}
.therapist-two__item:hover .therapist-two__item__name {
  color: var(--gotur-base, #63AB45);
}
.therapist-two__item__designation {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.142;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.therapist-two__item:hover .therapist-two__item__designation {
  color: var(--gotur-primary, #F7921E);
}
@media (max-width: 991px) {
  .therapist-two__images-col {
    display: none;
  }
}
.therapist-two__images {
  position: relative;
  top: 11px;
  width: 100%;
  min-height: 398px;
}
@media (max-width: 1399px) {
  .therapist-two__images {
    top: 0;
  }
}
.therapist-two__image {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}
.therapist-two__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.5);
  transition: all 500ms ease;
}
.therapist-two__image:hover::after {
  opacity: 1;
}
.therapist-two__image.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.therapist-two__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.therapist-two__image .social-links {
  opacity: 1;
  transform: scale(1, 1);
}

.therapist-three {
  background-color: var(--gotur-white, #fff);
}
@media (min-width: 992px) {
  .therapist-three .sec-title {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  .therapist-three__carousel.owl-carousel .owl-nav {
    margin: 0;
    width: 100%;
    position: absolute;
    top: -106px;
    justify-content: space-between;
  }
}

/****Blog Card One*****/
.blog-card {
  position: relative;
  background-color: var(--gotur-white, #fff);
}
.blog-card__image {
  position: relative;
  overflow: hidden;
}
.blog-card__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--gotur-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1);
}
.blog-card__content__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-card__date {
  max-width: 59px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
}
.blog-card__date__day {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  color: var(--gotur-white, #fff);
}
.blog-card__date__month {
  margin-top: -1px;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--gotur-white, #fff);
  line-height: 183%;
  text-transform: capitalize;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 0;
}
.blog-card__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
}
.blog-card__meta a i {
  margin-right: 8px;
  color: var(--gotur-base, #63AB45);
  font-size: 20px;
}
.blog-card__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card__content {
  background-color: var(--gotur-white, #fff);
  padding: 30px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}
.blog-card__title {
  margin: 0;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 145%;
  margin-bottom: 15px;
  color: var(--gotur-black, #1D231F);
}
.blog-card__title:hover {
  color: var(--gotur-base, #63AB45);
}
@media (max-width: 1199px) {
  .blog-card__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .blog-card__title {
    font-size: 18px;
  }
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}
.blog-card__btn i {
  font-size: 16px;
  font-weight: 600;
}
.blog-card__btn:hover {
  color: var(--gotur-base, #63AB45);
}

/****Blog Card Two*****/
.blog-card-two {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
}
.blog-card-two__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-card-two__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.blog-card-two__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-two__image__link::before, .blog-card-two__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--gotur-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-two__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-two:hover .blog-card-two__image > a {
  border-radius: 8px;
  opacity: 1;
  transform: translateY(0);
}
.blog-card-two__date {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  max-width: 59px;
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
}
.blog-card-two__date__day {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  display: block;
  color: var(--gotur-white, #fff);
}
.blog-card-two__date__month {
  margin-top: -1px;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--gotur-white, #fff);
  line-height: 157%;
  text-transform: capitalize;
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 0;
}
.blog-card-two__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.blog-card-two__meta a i {
  margin-right: 8px;
  color: var(--gotur-base, #63AB45);
  font-size: 20px;
}
.blog-card-two__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.blog-card-two__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
}
.blog-card-two__meta a i {
  margin-right: 8px;
  color: var(--gotur-base, #63AB45);
  font-size: 18px;
}
.blog-card-two__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card-two__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 107%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two__title a:hover {
  color: var(--gotur-primary, #F7921E);
}
.blog-card-two__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  margin-bottom: 22px;
}
.blog-card-two__btn {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  background-color: var(--gotur-base, #63AB45);
  padding: 14px 25px;
  border-radius: 6px;
}
.blog-card-two__btn i {
  margin-left: 8px;
  line-height: 200%;
}
.blog-card-two--one {
  padding: 16px;
  border-radius: 0px;
  border: 0px solid transparent;
  background-color: var(--gotur-gray, #F3F8F6);
}
.blog-card-two--one .blog-card-two__image {
  margin-bottom: 24px;
}
.blog-card-two--one .blog-card-two__image img {
  border-radius: 0px;
}
.blog-card-two--one .blog-card-two__meta a {
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.blog-card-two--one .blog-card-two__content {
  padding: 0px 15px 12px;
}
.blog-card-two--one .blog-card-two__title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 145%;
}
.blog-card-two--one .blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two--one .blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two--one .blog-card-two__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card-two--one .blog-card-two__content__btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.blog-card-two--one .blog-card-two__content__btn i {
  margin-left: 10px;
}
.blog-card-two--one .blog-card-two__content__btn:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card-two--one .blog-card-two__date {
  left: 16px;
  top: 16px;
  border-radius: 0px;
}
.blog-card-two--two {
  background-color: var(--gotur-white, #fff);
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 0px;
  border: 0px solid transparent;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}
.blog-card-two--two .blog-card-two__top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-card-two--two .blog-card-two__meta {
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-card-two--two .blog-card-two__date {
  position: relative;
  border-radius: 0;
  left: auto;
  top: auto;
}
.blog-card-two--two .blog-card-two__content {
  padding: 0px 30px 26px;
}
.blog-card-two--two .blog-card-two__image img {
  border-radius: 0px;
}
.blog-card-two--two .blog-card-two__title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 145%;
  margin-bottom: 10px;
  padding-bottom: 0;
  text-transform: capitalize;
}
.blog-card-two--two .blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two--two .blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two--two .blog-card-two__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card-two--two .blog-card-two__content__btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-two--two .blog-card-two__content__btn:hover {
  color: var(--gotur-base, #63AB45);
}

/****Blog Two*****/
.blog-two {
  position: relative;
  z-index: 1;
}
.blog-two__top {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .blog-two__top {
    padding-bottom: 55px;
  }
}
.blog-two__top .sec-title {
  padding-bottom: 0;
}
.blog-two__top__btn {
  text-align: start;
}
@media (min-width: 992px) {
  .blog-two__top__btn {
    text-align: end;
  }
}
.blog-two__top__btn .gotur-btn {
  border: 1px solid var(--gotur-base, #63AB45);
  background-color: transparent;
  color: var(--gotur-black, #1D231F);
}
.blog-two__top__btn .gotur-btn .icon {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.blog-two__top__btn .gotur-btn:hover {
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.blog-two__element {
  position: absolute;
  right: 0;
  top: 30%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.blog-two__element::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .blog-two__element {
    display: block;
  }
}

.blog-two-card {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.blog-two-card__image {
  position: relative;
  overflow: hidden;
}
.blog-two-card__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.blog-two-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-two-card__image__link::before, .blog-two-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--gotur-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-two-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-two-card:hover .blog-two-card__image img {
  transform: scale(1.1);
}
.blog-two-card:hover .blog-two-card__image > a {
  border-radius: 8px;
  opacity: 1;
  transform: translateY(0);
}
.blog-two-card__date {
  z-index: 1;
  text-align: center;
  width: 59px;
  height: 61px;
  border-radius: 6px;
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 183%;
  color: var(--gotur-white, #fff);
  margin-bottom: 0;
}
.blog-two-card__date span {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  display: block;
  text-align: center;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .blog-two-card__date {
    top: 10px;
    left: 10px;
  }
}
.blog-two-card__content {
  padding: 30px;
  position: relative;
}
.blog-two-card__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 17px;
}
.blog-two-card__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.blog-two-card__meta a i {
  margin-right: 8px;
  color: var(--gotur-base, #63AB45);
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.blog-two-card__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-two-card__title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  color: var(--gotur-black, #1D231F);
  line-height: 145%;
  text-transform: capitalize;
  margin-bottom: 17px;
  padding-bottom: 0;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .blog-two-card__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.blog-two-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-two-card__title a:hover {
  background-size: 100% 1px;
}
.blog-two-card__title a:hover {
  color: var(--gotur-primary, #F7921E);
}
.blog-two-card__link a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: var(--gotur-base, #63AB45);
  margin-bottom: -8px;
  transition: all 0.4s ease-in-out;
}
.blog-two-card__link a i {
  margin-left: 10px;
}
.blog-two-card__link a:hover {
  color: var(--gotur-primary, #F7921E);
}
.blog-two-card::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--gotur-base, #63AB45);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.blog-two-card:hover::after {
  height: 100%;
}
.blog-two-card:hover .blog-two-card__title,
.blog-two-card:hover .blog-two-card__meta li a,
.blog-two-card:hover .blog-two-card__meta li a i,
.blog-two-card:hover .blog-two-card__btn {
  color: var(--gotur-white, #fff);
}
.blog-two-card__list .blog-two-card {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .blog-two-card__list .blog-two-card {
    display: block;
  }
}
.blog-two-card__list .blog-two-card + .blog-two-card {
  margin-top: 30px;
}
.blog-two-card__list .blog-two-card__image {
  flex: 60%;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .blog-two-card__list .blog-two-card__image {
    flex: 82%;
  }
}
.blog-two-card__list .blog-two-card__content {
  padding: 25px 30px 25px 25px;
}

/****Blog Card Three*****/
.blog-card-three {
  border-radius: 8px;
  background: var(--gotur-white, #fff);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
}
.blog-card-three__image {
  position: relative;
  overflow: hidden;
}
.blog-card-three__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.blog-card-three__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-three__image__link::before, .blog-card-three__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--gotur-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-three__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-three:hover .blog-card-three__image > a {
  border-radius: 8px;
  opacity: 1;
  transform: translateY(0);
}
.blog-card-three__content {
  padding: 30px;
  position: relative;
}
.blog-card-three__meta {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 22px;
}
.blog-card-three__cetagory span {
  padding: 10px 15px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  color: var(--gotur-base, #63AB45);
  text-transform: capitalize;
  border-radius: 50px;
}
.blog-card-three__date {
  margin-bottom: 0;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  counter-reset: var(--gotur-text, #595959);
}
.blog-card-three__title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 145%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  padding-bottom: 17px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  margin-bottom: 23px;
}
.blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__title a:hover {
  background-size: 100% 1px;
}
.blog-card-three__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-card-three__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card-three__bottom a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-gray, #F3F8F6);
  font-size: 16px;
  color: var(--gotur-base, #63AB45);
  padding: 0;
  border-radius: 4px;
}
.blog-card-three__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.blog-card-three__author__thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-card-three__author__thumb img {
  object-fit: cover;
  width: 100%;
}
.blog-card-three__author__name {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.blog-card-three__author__dec {
  margin-top: -5px;
  margin-bottom: -3px;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
}

/****Blog Five*****/
.blog-five {
  position: relative;
  z-index: 1;
}
.blog-five .container {
  max-width: 1590px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.top-one {
  background-color: var(--gotur-black, #1D231F);
}
@media (max-width: 991px) {
  .top-one {
    display: none;
  }
}
.top-one__inner {
  max-width: 1775px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}
.top-one__info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
  padding-left: 0;
}
.top-one__info__item {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-white, #fff);
}
.top-one__info__item i {
  color: var(--gotur-primary, #F7921E);
  margin-right: 10px;
  font-size: 14px;
}
.top-one__info__item a {
  color: inherit;
}
.top-one__info__item a:hover {
  color: var(--gotur-primary, #F7921E);
}
.top-one__right {
  display: flex;
  align-items: center;
}
.top-one__social {
  line-height: 1;
}
.top-one__social a {
  font-size: 16px;
  color: var(--gotur-white, #fff);
  line-height: 1;
}
.top-one__social a:hover {
  color: var(--gotur-primary, #F7921E);
}
.top-one__social a + a {
  margin-left: 28px;
}
.top-one__language-sort + .top-one__social {
  padding-left: 20px;
  border-left: 1px solid var(--gotur-border-color, #E5E5E5);
  margin-left: 20px;
}
.top-one__language-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 90px;
}
.top-one__language-sort .bootstrap-select > .dropdown-toggle {
  background: transparent;
  border: none;
  border-color: transparent;
  padding: 0px 0px;
  outline: none;
}
.top-one__language-sort .bootstrap-select > .dropdown-toggle:focus {
  outline: none;
}
.top-one__language-sort .btn-check:checked + .btn:focus-visible,
.top-one__language-sort .btn.active:focus-visible,
.top-one__language-sort .btn.show:focus-visible,
.top-one__language-sort .btn:first-child:active:focus-visible,
.top-one__language-sort :not(.btn-check) + .btn:active:focus-visible {
  box-shadow: none;
  outline: none;
}
.top-one__language-sort .bootstrap-select .dropdown-toggle:focus,
.top-one__language-sort .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: 0 dotted transparent !important;
  outline: 0px auto transparent !important;
  outline-offset: -2px;
}
.top-one__language-sort .filter-option-inner-inner {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--gotur-white, #fff);
}
.top-one__language-sort .dropdown-toggle::after {
  display: inline-block;
  margin-left: auto;
  vertical-align: auto;
  content: "\e920";
  font-family: "icomoon" !important;
  font-size: 12px;
  line-height: 1;
  color: var(--gotur-white, #fff);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.top-one--two {
  background-color: var(--gotur-gray, #F3F8F6);
}
@media (max-width: 991px) {
  .top-one--two {
    display: none;
  }
}
.top-one--two .container-fluid {
  max-width: 1830px;
  margin-left: auto;
  margin-right: auto;
}
.top-one--two .top-one__inner {
  background-color: var(--gotur-black, #1D231F);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0px 0px 30px 30px;
  max-width: 100%;
}
.top-one--two .top-one__info__item + .top-one__social {
  margin-left: 60px;
}
.top-one--two .top-one__info__item i {
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  z-index: 99;
}
.main-header .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1830px;
}
.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--gotur-white, #fff);
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 15px 30px;
  }
}
@media (max-width: 575px) {
  .main-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-header__nav {
  margin-left: 90px;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .main-header__nav {
    margin-left: 50px;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header__info a {
  font-size: 16px;
  color: var(--gotur-white, #fff);
}
.main-header__info a + a {
  margin-left: 24px;
}
.main-header__info + .main-header__btn {
  margin-left: 36px;
}
.main-header__btn {
  border: 100px;
  padding: 13.5px 25px;
  font-size: 16px;
  color: var(--gotur-white, #fff);
  font-weight: 700;
  background-color: var(--gotur-primary, #F7921E);
}
.main-header__btn::after, .main-header__btn::before {
  background-color: var(--gotur-white, #fff);
}
.main-header__btn:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header__btn + .main-header__call {
  margin-left: 40px;
}
.main-header__call {
  position: relative;
}
.main-header__call__icon {
  max-width: 44px;
  width: 100%;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.main-header__call__icon::after {
  content: "";
  background-color: transparent;
  border-radius: 1000px;
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid var(--gotur-base, #63AB45);
  z-index: -1;
}
.main-header__call__content {
  padding-left: 60px;
}
.main-header__call__subtitle {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: var(--gotur-text, #595959);
  margin-bottom: 2px;
}
.main-header__call a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-text, #595959);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__call a:hover {
  background-size: 100% 1px;
}
.main-header__call a:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header__btn-popup {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--gotur-base-rgb, 99, 171, 69), 0.1);
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-header__btn-popup {
    display: none;
  }
}
.main-header__btn-popup::after {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--gotur-base, #63AB45);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.main-header__btn-popup:hover {
  color: var(--gotur-white, #fff);
}
.main-header__btn-popup:hover::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main-header--one {
  background-color: transparent;
  margin-bottom: -101px;
}
.main-header--one .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1770px;
}
.main-header--one .main-header__inner {
  background-color: transparent;
}
.main-header--one .main-menu__list > li.current > a,
.main-header--one .main-menu__list > li:hover > a {
  color: var(--gotur-base, #63AB45) !important;
}
.main-header--one .main-menu .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-header--one .main-menu .main-menu__list > li + li {
  margin-left: 42px;
}
.main-header--one .main-header__info a {
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.main-header--one .main-header__info a:hover {
  color: var(--gotur-base, #63AB45);
}
.main-header--one .main-header__info a,
.main-header--one .main-menu .main-menu__list > li > a {
  color: var(--gotur-black, #1D231F);
}
.main-header--one .main-header__right {
  gap: 60px;
}
@media (max-width: 1470px) {
  .main-header--one .main-header__right {
    gap: 40px;
  }
}
@media (max-width: 400px) {
  .main-header--one .main-header__right {
    gap: 10px;
  }
}
@media (max-width: 1316px) {
  .main-header--one .main-header__btn {
    display: none;
  }
}
.main-header--one .main-header__btn::after, .main-header--one .main-header__btn::before {
  background-color: var(--gotur-base, #63AB45);
}
.main-header--one .main-header__btn:hover {
  color: var(--gotur-white, #fff);
}
.main-header--one .main-header__nav {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .main-header--one .main-header__nav {
    margin-left: 60px;
  }
}
@media (max-width: 1350px) {
  .main-header--one .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
.main-header--two {
  width: 100%;
  background-color: transparent;
}
@media (max-width: 1370px) {
  .main-header--two {
    background-color: var(--gotur-base, #63AB45);
  }
  .main-header--two .main-header__logo::before {
    content: "";
    background: var(--gotur-white, #fff);
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 99%;
  }
}
.main-header--two .container-fluid {
  max-width: 1780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1660px) {
  .main-header--two .main-header__nav {
    margin-left: 100px;
  }
  .main-header--two .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
@media (max-width: 1570px) {
  .main-header--two .main-header__btn {
    display: none;
  }
}
@media (max-width: 1370px) {
  .main-header--two .main-header__call {
    display: none;
  }
}
.main-header--two .main-header__inner {
  background-color: var(--gotur-base, #63AB45);
  position: relative;
  z-index: 2;
  margin-bottom: -90px;
  transition: margin-bottom 500ms ease, margin-bottom 500ms ease;
}
@media (max-width: 1270px) {
  .main-header--two .main-header__inner {
    margin-bottom: 0px;
  }
}
.main-header--two .main-header__logo {
  padding: 22.5px 37px;
  background-color: var(--gotur-white, #fff);
  border-radius: 0 1000px 1000px 0;
  position: relative;
  z-index: 1;
}
.main-header--two .main-header__logo::after {
  content: "";
  background-color: var(--gotur-white, #fff);
  border-radius: 0 1000px 1000px 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 767px) {
  .main-header--two .main-header__logo {
    padding: 17px 20px 17px 0px;
  }
}
.main-header--two .main-header__call {
  padding: 24px 23px;
  background-color: var(--gotur-white, #fff);
  border-radius: 1000px 0 0 1000px;
  position: relative;
  z-index: 1;
}
.main-header--two .main-header__call::after {
  content: "";
  background-color: var(--gotur-white, #fff);
  border-radius: 1000px 0 0 1000px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -10px;
  opacity: 0.5;
  z-index: -1;
}
.main-header--two .main-header__inner {
  padding: 0px;
}
.main-header--two .mobile-nav__btn {
  margin-left: 40px;
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 767px) {
  .main-header--two .main-header__nav {
    margin-left: 0;
  }
}
.main-header--four {
  border-bottom: 1px solid rgba(var(--gotur-white-rgb, 255, 255, 255), 0.5);
  background-color: transparent;
  margin-bottom: -107px;
}
@media (min-width: 1550px) {
  .main-header--four .container-fluid {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-header--four .main-header__inner {
  background-color: transparent;
}
.main-header--four .main-header__nav {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .main-header--four .main-header__nav {
    margin-right: 60px;
  }
}
.main-header--four .main-header__info a:hover {
  color: var(--gotur-primary, #F7921E);
}
.main-header--four .main-header__info a + a {
  margin-left: 25px;
}
@media (min-width: 576px) {
  .main-header--four .main-header__info a + a {
    margin-left: 40px;
  }
}
.main-header--four .main-header__info + .main-header__element__btn {
  margin-left: 60px;
}
.main-header--four .mobile-nav__btn {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .main-header--four .mobile-nav__btn {
    margin-left: 40px;
  }
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--gotur-white, #fff);
}
.main-header--four .main-header__element__btn {
  background-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.1);
  color: var(--gotur-white, #fff);
  font-size: 22px;
}
.main-header--four .main-menu .main-menu__list > li {
  padding-top: 42.5px;
  padding-bottom: 42.5px;
}
.main-header--four .main-menu .main-menu__list > li.current > a,
.main-header--four .main-menu .main-menu__list > li:hover > a {
  color: var(--gotur-primary, #F7921E);
}
@media (max-width: 1199px) {
  .main-header--four .main-header__inner {
    padding: 15px 0px;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--gotur-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--gotur-black-rgb, 29, 35, 31), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned.main-header--one {
  background-color: var(--gotur-gray, #F3F8F6);
}
.sticky-header--cloned.main-header--one .topbar-one {
  display: none;
}
.sticky-header--cloned.main-header--two {
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 1280px) {
  .sticky-header--cloned.main-header--two {
    background-color: var(--gotur-base, #63AB45);
  }
}
.sticky-header--cloned.main-header--two .topbar-one {
  display: none;
}
.sticky-header--cloned.main-header--two .main-header__inner {
  margin-bottom: 0;
}
.sticky-header--cloned.main-header--four {
  background-color: var(--gotur-black, #1D231F);
  border-bottom: 0px solid transparent;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--gotur-black, #1D231F);
  transition: all 500ms ease;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.mobile-nav__btn:hover span {
  background-color: var(--gotur-primary, #F7921E);
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 33.5px;
  padding-bottom: 33.5px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 40px;
}
.main-menu .main-menu__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--gotur-white, #fff);
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.1px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 16px;
  line-height: 26px;
  color: var(--gotur-black, #1D231F);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 7px 15px 7px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 14px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--gotur-white, #fff);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--gotur-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--gotur-black, #1D231F);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--gotur-base, #63AB45);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--gotur-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--gotur-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  font-size: 14px;
  padding: 12px 29px;
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--gotur-black3-rgb, 0, 0, 0), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--gotur-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gotur-black3, #000000);
  opacity: 0.6;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--gotur-black, #1D231F);
  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;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}
.mobile-nav__content .main-header__logo--mobile {
  display: none;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 20px;
  line-height: 1;
  color: var(--gotur-white, #fff);
  cursor: pointer;
  transition: all 500ms ease;
}
.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__close:hover {
  color: var(--gotur-base, #63AB45);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list--two li:first-child {
  border-top: 1px solid RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list > li.current > a,
.mobile-nav__content .main-menu__list > li:hover > a {
  color: var(--gotur-base, #63AB45);
  text-shadow: 0 0 0.5px currentColor;
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--gotur-white, #fff);
  font-size: 16px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  text-transform: capitalize;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li ul li a {
  font-size: 14px;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--gotur-base, #63AB45);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--gotur-base, #63AB45);
  border: none;
  outline: none;
  color: var(--gotur-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}
.mobile-nav__content .main-menu__list li a button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-black, #1D231F);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--gotur-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--gotur-base, #63AB45);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mobile-nav__contact li {
  color: var(--gotur-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--gotur-base, #63AB45);
}
.mobile-nav__contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gotur-base, #63AB45);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--gotur-white, #fff);
}
.mobile-nav__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  padding: 220px 0px 130.3px;
}
@media (max-width: 991px) {
  .page-header {
    padding: 200px 0px 100px;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding: 150px 0px 100px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gotur-black2, #1A1948);
  opacity: 0.7;
  z-index: -1;
}
.page-header__content {
  position: relative;
  text-align: center;
}
.page-header__title {
  margin-top: -5px;
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: normal;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .page-header__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}

/******* Breadcrumb *********/
.gotur-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
.gotur-breadcrumb li {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  color: var(--gotur-white, #fff);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
}
.gotur-breadcrumb li:not(:last-of-type)::after {
  content: "\e917";
  position: relative;
  font-family: "icomoon" !important;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  margin-top: 3px;
  top: 0px;
  margin-left: 10px;
  margin-right: 10px;
}
.gotur-breadcrumb li a {
  color: inherit;
}
.gotur-breadcrumb li span {
  color: inherit;
  display: inline-flex;
  line-height: 1em;
  font-weight: 400;
  color: var(--gotur-primary, #F7921E);
}
.gotur-breadcrumb li a:hover {
  color: var(--gotur-primary, #F7921E);
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .form-one__group--grid {
    grid-template-columns: 1fr;
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.form-one .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--gotur-white, #fff) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-text, #595959) !important;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 60px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.form-one .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--gotur-text, #595959);
}
.form-one .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.form-one .bootstrap-select .dropdown-menu {
  border: none;
}
.form-one .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-black, #1D231F);
  background-color: var(--gotur-white, #fff);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-one .bootstrap-select .dropdown-menu > li:hover > a,
.form-one .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-base, #63AB45);
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-text, #595959);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  border: 1px solid #D4DCED;
  outline: none;
  border-radius: 8px;
  padding: 0 20px;
  height: 55px;
  transition: all 400ms ease;
}
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one input[type=tel]:focus,
.form-one textarea:focus {
  color: var(--gotur-black, #1D231F);
  border-color: var(--gotur-base, #63AB45);
}
.form-one textarea {
  height: 143px;
  padding: 20px 20px 0;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--gotur-white, #fff);
  font-size: 15px;
  color: var(--gotur-text, #595959);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  transition: all 400ms ease;
}
.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--gotur-black, #1D231F);
}
.search-popup__form .gotur-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup__form .gotur-btn i {
  margin: 0;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.8;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 558px;
  width: 100%;
}
.google-map__contact {
  overflow: hidden;
}

.contact-map {
  position: relative;
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.client-carousel--two {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .client-carousel--two {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.client-carousel__title {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 127%;
  margin-bottom: 50px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  position: relative;
  text-align: center;
  z-index: 1;
}
.client-carousel__title::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--gotur-border-color, #E5E5E5);
  z-index: -1;
}
.client-carousel__title::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 230px;
  content: "";
  height: 1px;
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 767px) {
  .client-carousel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .client-carousel {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.client-carousel__one .owl-stage {
  display: flex;
  align-items: center;
}
.client-carousel__one {
  position: relative;
}
.client-carousel__one .owl-stage-outer {
  padding-top: 20px;
}
.client-carousel__one__item {
  position: relative;
  text-align: center;
}
.client-carousel__one__item img {
  max-width: 100%;
  width: auto !important;
}
.client-carousel__one__image {
  margin: auto;
}
.client-carousel__one__hover-image {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}
.client-carousel__one__item:hover .client-carousel__one__hover-image {
  opacity: 1;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(7px);
  }
  50% {
    transform: translateX(15px);
  }
}
@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes topToBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes topToBottomTwo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes topToBottomThree {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zumpTop {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: -100px 0;
  }
  40% {
    background-position: -200px 0;
  }
  60% {
    background-position: -150px 0;
  }
  80% {
    background-position: -100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
@keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--gotur-base, #63AB45);
  -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(--gotur-base, #63AB45);
  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(--gotur-base, #63AB45);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.main-slider-one__item {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  width: 100%;
  height: 950px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-slider-one__item {
    height: auto;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__item {
    padding-bottom: 100px;
  }
}
.main-slider-one__item::before {
  content: "";
  width: 308px;
  height: 308px;
  border-radius: 50%;
  background: var(--gotur-base, #63AB45);
  opacity: 0.6;
  filter: blur(150px);
  position: absolute;
  top: 35%;
  left: 30%;
  z-index: -1;
}
.main-slider-one__item::after {
  content: "";
  width: 308px;
  height: 308px;
  border-radius: 50%;
  background-color: var(--gotur-primary, #F7921E);
  opacity: 0.4;
  filter: blur(150px);
  position: absolute;
  top: 100px;
  right: 30%;
  z-index: -2;
}
@media (min-width: 1600px) {
  .main-slider-one .container {
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-slider-one__content {
  padding-top: 315px;
  position: relative;
  display: inline-block;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-slider-one__content {
    padding-top: 150px;
    padding-bottom: 270px;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__content {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.main-slider-one__sub-title {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 56%;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  color: var(--gotur-primary, #F7921E);
}
.main-slider-one__title {
  font-style: normal;
  font-weight: 800;
  font-size: 100px;
  line-height: 110%;
  margin-bottom: 17px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}
@media (max-width: 1199px) {
  .main-slider-one__title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .main-slider-one__title {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  .main-slider-one__title {
    font-size: 45px;
  }
}
.main-slider-one__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  max-width: 625px;
  width: 100%;
  color: var(--gotur-black, #1D231F);
}
.main-slider-one__destinations {
  max-width: 1161px;
  width: 100%;
  margin-right: -250px;
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: -1;
}
@media (max-width: 1500px) {
  .main-slider-one__destinations {
    max-width: 900px;
    width: 100%;
    margin-right: -150px;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__destinations {
    display: none;
  }
}
.main-slider-one__destinations .destinations-card-two__thumb {
  border-radius: 100px;
}
.main-slider-one__destinations .destinations-card-two__hover img {
  object-fit: cover;
  width: auto;
}
.main-slider-one__destinations__hover {
  position: absolute;
  left: -150px;
  top: -40px;
  z-index: 1;
}
@media (max-width: 1500px) {
  .main-slider-one__destinations__hover {
    position: absolute;
    left: -70px;
    top: -11px;
    z-index: 1;
    width: 100%;
    max-width: 470px;
  }
  .main-slider-one__destinations__hover img {
    object-fit: cover;
    width: 100%;
  }
}
.main-slider-one__form {
  position: absolute;
  bottom: 131px;
  z-index: 3;
  margin-left: -15px;
  margin-right: auto;
  padding: 0 0 0;
  max-width: 1024px;
}
@media (max-width: 1199px) {
  .main-slider-one__form {
    position: relative;
    bottom: auto;
    margin-left: 0px;
  }
}
.main-slider-one__element {
  position: absolute;
  top: 20%;
  right: 26.5%;
  animation: messageMove 4s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .main-slider-one__element {
    top: 10%;
    right: 15%;
  }
}
@media (max-width: 992px) {
  .main-slider-one__element {
    display: none;
  }
}
.main-slider-one__element-one {
  position: absolute;
  top: 25%;
  left: 37%;
  animation: topToBottomTwo 3s ease-in-out infinite;
  z-index: -1;
}
@media (max-width: 1199px) {
  .main-slider-one__element-one {
    display: none;
  }
}
.main-slider-one__element-two {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: -2;
  animation: leftToRight 3s ease-in-out infinite;
}
.main-slider-one__element-three {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: -1;
  animation: leftToRight 3s ease-in-out infinite;
}
.main-slider-one__element-four {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  animation: topToBottom 4.5s ease-in-out infinite;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.07;
  position: absolute;
  width: 539.29px;
  border-radius: 50%;
  height: 539.29px;
  left: -153.57px;
  bottom: -90px;
}
.main-slider-one__element-five {
  position: absolute;
  top: 20%;
  left: 26%;
  animation: topToBottomTwo 3s ease-in-out infinite;
  z-index: -1;
}
@media (max-width: 1199px) {
  .main-slider-one__element-five {
    display: none;
  }
}
.main-slider-one__bottom__nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  gap: 6px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: 2;
  left: 40px;
}
@media (max-width: 1199px) {
  .main-slider-one__bottom__nav {
    display: none;
  }
}
.main-slider-one__bottom__nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  transform: rotate(90deg);
  color: var(--gotur-base, #63AB45);
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}
.main-slider-one__bottom__nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-slider-one__bottom__nav button:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.main-slider-one__bottom__nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.main-slider-one__bottom__nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  content: "";
  height: 510px;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.15);
  z-index: -1;
}
.main-slider-one__bottom__nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 1px;
  content: "";
  height: 114px;
  background-color: var(--gotur-gray, #F3F8F6);
}

/*******Slider Two********/
.main-slider-two {
  position: relative;
  overflow: hidden;
}
.main-slider-two__carousel {
  position: relative;
  width: 100%;
}
.main-slider-two__carousel::after {
  position: absolute;
  content: "";
  width: 304px;
  height: 304px;
  border-radius: 50%;
  background-color: var(--gotur-white, #fff);
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .main-slider-two__carousel::after {
    display: none;
  }
}
.main-slider-two__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  flex-direction: column;
  transform: translateY(-50%);
}
.main-slider-two__carousel.owl-carousel .owl-nav button {
  transform: rotate(90deg);
  width: 36.6px;
  height: 36.6px;
  font-size: 12px;
}
.main-slider-two__carousel.owl-carousel .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  content: "";
  height: 234px;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.15);
  z-index: -1;
}
.main-slider-two__carousel.owl-carousel .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 1px;
  content: "";
  height: 110px;
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 767px) {
  .main-slider-two__carousel.owl-carousel .owl-nav {
    display: none;
  }
}
@media (min-width: 1600px) {
  .main-slider-two .container {
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-slider-two__item {
  background-color: var(--gotur-white, #fff);
  position: relative;
  z-index: 1;
  height: 950px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-slider-two__item {
    height: auto;
  }
}
.main-slider-two__item::before {
  content: "";
  width: 998px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/shapes/hero-1-4.png);
  background-repeat: no-repeat;
  background-position: left top;
}
.main-slider-two__bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1);
  transition: transform 10000ms ease;
}
.main-slider-two__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  content: "";
  z-index: 1;
}
.main-slider-two__content {
  position: relative;
  padding: 40px 0;
  padding-top: 316px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-slider-two__content {
    padding-top: 200px;
    padding-bottom: 360px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.main-slider-two__sub-title {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 56%;
  margin-bottom: 10px;
  position: relative;
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  color: var(--gotur-primary, #F7921E);
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-120px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__sub-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__sub-title {
    font-size: 20px;
  }
}
.main-slider-two__title {
  margin-bottom: 0px;
  display: inline-block;
  overflow: hidden;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 138%;
  color: var(--gotur-black, #1D231F);
  opacity: 0;
  transform: translateX(200px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 60px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 50px;
    line-height: 130%;
    color: var(--gotur-white, #fff);
  }
}
@media (max-width: 575px) {
  .main-slider-two__title {
    font-size: 40px;
    line-height: 130%;
    color: var(--gotur-white, #fff);
  }
}
.main-slider-two__title__overlay-group {
  display: block;
}
.main-slider-two__title__overlay {
  background-color: var(--gotur-base, #63AB45);
  width: 16.66%;
  height: calc(100% - 10px);
  display: block;
  position: absolute;
  transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2200ms;
  z-index: 1;
}
.main-slider-two__title__overlay:nth-child(2), .main-slider-two__title__overlay:nth-child(4), .main-slider-two__title__overlay:nth-child(6) {
  top: 5px;
}
.main-slider-two__title__overlay:nth-child(2) {
  left: 16.66%;
}
.main-slider-two__title__overlay:nth-child(4) {
  left: 49.98%;
}
.main-slider-two__title__overlay:nth-child(6) {
  left: 83.3%;
}
.main-slider-two__title__overlay:nth-child(1), .main-slider-two__title__overlay:nth-child(3), .main-slider-two__title__overlay:nth-child(5) {
  bottom: 5px;
}
.main-slider-two__title__overlay:nth-child(1) {
  left: 0;
}
.main-slider-two__title__overlay:nth-child(3) {
  left: 33.32%;
}
.main-slider-two__title__overlay:nth-child(5) {
  left: 66.64%;
}
.main-slider-two__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  max-width: 685px;
  width: 100%;
  opacity: 0;
  transform: translateX(200px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__text {
    font-size: 16px;
    color: var(--gotur-white, #fff);
  }
}
.main-slider-two__element {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__element {
    display: none;
  }
}
.main-slider-two__element-one {
  position: absolute;
  top: 140px;
  left: 0;
  opacity: 0;
  transform: translateY(300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__element-one img {
  animation: leftToRight 4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-slider-two__element-one {
    display: none;
  }
}
.main-slider-two__element-two {
  position: absolute;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transform: translateX(300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__element-two {
    display: none;
  }
}
.main-slider-two__element-three {
  position: absolute;
  top: 140px;
  left: 25%;
  opacity: 0;
  transform: translateX(300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__element-three img {
  animation: topToBottom 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-slider-two__element-three {
    display: none;
  }
}
.main-slider-two__element-four {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-300px);
  transition-delay: 1500ms;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__element-four img {
  animation: leftToRight 4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-slider-two__element-four {
    display: none;
  }
}
.main-slider-two__form {
  position: absolute;
  bottom: 136px;
  z-index: 3;
  margin-left: 0;
  margin-right: auto;
  padding: 0 0 0;
  max-width: 1024px;
}
@media (max-width: 1199px) {
  .main-slider-two__form {
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__form {
    left: 0;
  }
}
@media (max-width: 767px) {
  .main-slider-two__form {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    bottom: auto;
  }
}
.main-slider-two .active .main-slider-two__bg {
  transform: scale(1.2);
}
.main-slider-two .active .main-slider-two__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1700ms;
}
.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-two .active .main-slider-two__title__overlay:nth-child(2), .main-slider-two .active .main-slider-two__title__overlay:nth-child(4), .main-slider-two .active .main-slider-two__title__overlay:nth-child(6) {
  top: 105%;
}
.main-slider-two .active .main-slider-two__title__overlay:nth-child(1), .main-slider-two .active .main-slider-two__title__overlay:nth-child(3), .main-slider-two .active .main-slider-two__title__overlay:nth-child(5) {
  bottom: 105%;
}
.main-slider-two .active .main-slider-two__text {
  transform: translateX(0);
  transition-delay: 1500ms;
  opacity: 1;
}
.main-slider-two .active .main-slider-two__element {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__element-one {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__element-two,
.main-slider-two .active .main-slider-two__element-three {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__element-four {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}

.main-slider-three {
  position: relative;
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
  overflow: hidden;
}
.main-slider-three .container {
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}
.main-slider-three__content {
  position: relative;
  padding-top: 264px;
  z-index: 1;
  height: 1018px;
}
@media (max-width: 991px) {
  .main-slider-three__content {
    height: auto;
    padding-top: 120px;
    padding-bottom: 350px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__content {
    height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .main-slider-three__content {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.main-slider-three__sub-title {
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 56%;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  color: var(--gotur-primary, #F7921E);
}
@media (max-width: 767px) {
  .main-slider-three__sub-title {
    font-size: 30px;
  }
}
.main-slider-three__title {
  font-style: normal;
  font-weight: 800;
  font-size: 100px;
  line-height: 110%;
  margin-bottom: 33px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}
@media (max-width: 991px) {
  .main-slider-three__title {
    font-size: 80px;
    line-height: 110%;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 70px;
    line-height: 110%;
  }
}
@media (max-width: 575px) {
  .main-slider-three__title {
    margin-bottom: 20px;
  }
}
.main-slider-three__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--gotur-text, #595959);
  margin-bottom: 45px;
  padding-bottom: 0;
  max-width: 623px;
  width: 100%;
}
.main-slider-three__button {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 28px;
}
.main-slider-three__button .gotur-btn {
  padding: 13.5px 20px;
}
.main-slider-three__button .gotur-btn i {
  margin-left: 10px;
}
.main-slider-three__item-video {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-slider-three__item-video .video-popup {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gotur-base, #63AB45);
  position: relative;
  z-index: 1;
}
.main-slider-three__item-video .video-popup::after {
  content: "";
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/shapes/sercle-12.png);
  animation-duration: 1500ms;
  animation: rotated 5s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}
.main-slider-three__item-video span {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.main-slider-three__thumb {
  position: absolute;
  bottom: 115px;
  right: -80px;
}
@media (max-width: 991px) {
  .main-slider-three__thumb {
    display: none;
  }
}
.main-slider-three__element__item {
  position: absolute;
  top: 28%;
  animation: leftToRight 4s ease-in-out infinite;
  right: 80px;
  z-index: -1;
}
.main-slider-three__element__item-one {
  position: absolute;
  top: 15%;
  animation: leftToRight 4s ease-in-out infinite;
  left: 0;
  z-index: -1;
}
.main-slider-three__element__item-two {
  position: absolute;
  bottom: 40px;
  animation: leftToRight 3.6s ease-in-out infinite;
  right: 80px;
  z-index: -1;
}
.main-slider-three__element__item-three {
  position: absolute;
  top: 19%;
  left: 28%;
  animation: topToBottom 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .main-slider-three__element__item-three {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-slider-three__element {
    display: none;
  }
}
.main-slider-three__element-two {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  animation: topToBottom 4.5s ease-in-out infinite;
}
.main-slider-three__element-two::after {
  content: "";
  background: var(--gotur-primary, #F7921E);
  opacity: 0.07;
  position: absolute;
  width: 539.29px;
  border-radius: 50%;
  height: 539.29px;
  left: -153.57px;
  bottom: -90px;
}
.main-slider-three__element-three-item {
  bottom: 180px;
  right: 0;
  z-index: -1;
  position: absolute;
  width: 652px;
  height: 733px;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.1;
  border-radius: 324px 0px 0px 324px;
}
.main-slider-three__element-three-item:nth-child(2) {
  right: -60px;
  opacity: 0.17;
}
.main-slider-three__element-three-item:nth-child(3) {
  right: -120px;
}
.main-slider-three::after {
  content: "";
  width: 186px;
  height: 186px;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.6;
  filter: blur(150px);
  position: absolute;
  top: 100px;
  left: 30%;
  z-index: -1;
}
.main-slider-three::before {
  content: "";
  width: 308px;
  height: 308px;
  border-radius: 50%;
  background: var(--gotur-base, #63AB45);
  opacity: 0.6;
  filter: blur(150px);
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: -1;
}
.main-slider-three .container {
  position: relative;
}
.main-slider-three__form {
  position: absolute;
  bottom: 135px;
  z-index: 1;
  margin-left: -15px;
  margin-right: auto;
  padding: 0 0 0;
  max-width: 1024px;
}
@media (max-width: 1199px) {
  .main-slider-three__form {
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__form {
    left: 0;
  }
}
@media (max-width: 767px) {
  .main-slider-three__form {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    bottom: auto;
  }
}

/*******Slider Four********/
.main-slider-four {
  position: relative;
}
.main-slider-four__carousel .owl-nav {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.main-slider-four__carousel .owl-nav .owl-prev,
.main-slider-four__carousel .owl-nav .owl-next {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-white, #fff) !important;
  border: 1px solid var(--gotur-white, #fff) !important;
  transition: all 400ms ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main-slider-four__carousel .owl-nav .owl-prev svg,
.main-slider-four__carousel .owl-nav .owl-next svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-slider-four__carousel .owl-nav .owl-prev:hover,
.main-slider-four__carousel .owl-nav .owl-next:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent !important;
}
.main-slider-four__carousel .owl-nav .owl-prev span,
.main-slider-four__carousel .owl-nav .owl-next span {
  border: none;
  outline: none;
  color: inherit;
}
@media (min-width: 992px) {
  .main-slider-four__carousel .owl-nav .owl-prev {
    left: 60px;
  }
}
@media (max-width: 991px) {
  .main-slider-four__carousel .owl-nav .owl-prev {
    left: 20px;
  }
}
@media (min-width: 992px) {
  .main-slider-four__carousel .owl-nav .owl-next {
    right: 60px;
  }
}
@media (max-width: 991px) {
  .main-slider-four__carousel .owl-nav .owl-next {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__carousel .owl-nav {
    display: none;
  }
}
.main-slider-four__item {
  position: relative;
  height: 895px;
  width: 100%;
}
@media (max-width: 767px) {
  .main-slider-four__item {
    height: auto;
  }
}
.main-slider-four__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}
.main-slider-four__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--gotur-black-rgb, 29, 35, 31), 0.7);
}
.main-slider-four__content {
  text-align: center;
  padding-top: 320px;
}
@media (max-width: 767px) {
  .main-slider-four__content {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
.main-slider-four__subtitle {
  margin: 0 0 13px;
  position: relative;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-120px);
  transition: transform 1500ms ease, opacity 1500ms ease;
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  color: var(--gotur-white, #fff);
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 56%;
}
@media (max-width: 767px) {
  .main-slider-four__subtitle {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .main-slider-four__subtitle {
    font-size: 30px;
  }
}
.main-slider-four__title {
  margin-bottom: 0px;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 138%;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-four__title span {
  position: relative;
}
.main-slider-four__title span img {
  position: absolute;
  left: 0;
  bottom: -10px;
}
@media (max-width: 1850px) {
  .main-slider-four__title {
    font-size: 100px;
  }
}
@media (max-width: 1399px) {
  .main-slider-four__title {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .main-slider-four__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .main-slider-four__title {
    font-size: 45px;
  }
}
.main-slider-four .active .main-slider-four__bg {
  transform: scale(1.2);
}
.main-slider-four .active .main-slider-four__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1700ms;
}
.main-slider-four .active .main-slider-four__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-four__form {
  position: absolute;
  bottom: 220px;
  z-index: 1;
  margin: 0 auto;
  padding: 0 0 0;
  max-width: 1024px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .main-slider-four__form {
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .main-slider-four__form {
    left: 0;
    transform: translateX(0%);
  }
}
@media (max-width: 767px) {
  .main-slider-four__form {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    bottom: auto;
  }
}

/*--------------------------------------------------------------
# Banner Form
--------------------------------------------------------------*/
.banner-form__wrapper {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 32px 30px;
}
@media (max-width: 767px) {
  .banner-form__wrapper {
    border-radius: 20px;
  }
}
.banner-form .container {
  max-width: 1024px;
}
.banner-form .row {
  --bs-gutter-x: 0;
}
.banner-form .row > * {
  padding-left: 0;
  padding-right: 0;
}
.banner-form .banner-form__col--1 {
  width: 20%;
}
@media (max-width: 1199px) {
  .banner-form .banner-form__col--1 {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .banner-form .banner-form__col--1 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .banner-form .banner-form__col--1 {
    width: 100%;
  }
}
.banner-form .banner-form__col--2 {
  width: 24.5%;
}
@media (max-width: 1199px) {
  .banner-form .banner-form__col--2 {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .banner-form .banner-form__col--2 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .banner-form .banner-form__col--2 {
    width: 100%;
  }
}
.banner-form .banner-form__col--3 {
  width: 23.5%;
}
@media (max-width: 1199px) {
  .banner-form .banner-form__col--3 {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .banner-form .banner-form__col--3 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .banner-form .banner-form__col--3 {
    width: 100%;
  }
}
.banner-form .banner-form__col--4 {
  width: 19%;
}
@media (max-width: 1199px) {
  .banner-form .banner-form__col--4 {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .banner-form .banner-form__col--4 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .banner-form .banner-form__col--4 {
    width: 100%;
  }
}
.banner-form .banner-form__col--5 {
  align-self: flex-end;
  width: 13%;
  padding-left: 24px;
}
@media (max-width: 1199px) {
  .banner-form .banner-form__col--5 {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .banner-form .banner-form__col--5 {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .banner-form .banner-form__col--5 {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .banner-form {
    display: flex;
    gap: 20px 0px;
  }
}
.banner-form .banner-form__control label {
  display: block;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 200%;
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.1px currentColor;
}
.banner-form .banner-form__icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner-form .banner-form__icon span {
  font-size: 21.5px;
  color: var(--gotur-base, #63AB45);
}
.banner-form .banner-form__control {
  padding-left: 45px;
  position: relative;
}
.banner-form .banner-form__control label {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: -3px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.banner-form .banner-form__control .filter-option-inner-inner {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
}
.banner-form .banner-form__control .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: var(--gotur-base, #63AB45);
  font-size: 24px;
  transition: all 0.4s ease-in-out;
}
.banner-form .banner-form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.banner-form .banner-form__control .bootstrap-select:not(.input-group-btn), .banner-form .banner-form__control .bootstrap-select[class*=col-] {
  margin-bottom: -4px;
}
.banner-form .banner-form__control .bootstrap-select > .dropdown-toggle,
.banner-form .banner-form__control input[type=text],
.banner-form .banner-form__control input[type=number],
.banner-form .banner-form__control input[type=email] {
  width: 100%;
  background-color: transparent;
  padding: 2px 0px 2px 0px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  border: 1px solid transparent !important;
  z-index: 2;
  cursor: pointer;
}
.banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:active, .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:focus,
.banner-form .banner-form__control input[type=text]:active,
.banner-form .banner-form__control input[type=text]:focus,
.banner-form .banner-form__control input[type=number]:active,
.banner-form .banner-form__control input[type=number]:focus,
.banner-form .banner-form__control input[type=email]:active,
.banner-form .banner-form__control input[type=email]:focus {
  outline: none !important;
  border: 1px solid transparent !important;
}
.banner-form .banner-form__control .dropdown-toggle::after {
  display: inline-block;
  position: relative;
  top: -6px;
  margin-left: 0 !important;
  vertical-align: 0 !important;
  content: "\e920";
  font-family: "icomoon" !important;
  border-top: 0 !important;
  border-right: 0 !important;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  border-bottom: 0 !important;
  border-left: 0 !important;
}
.banner-form .banner-form__control .banner-form__qty-minus,
.banner-form .banner-form__control .banner-form__qty-plus {
  position: absolute;
  right: 34px;
  color: var(--gotur-black, #1D231F);
  bottom: 12%;
  background-color: transparent;
  border: none;
  font-size: 14px;
  line-height: normal;
  border: 1px solid transparent !important;
  z-index: 1;
}
.banner-form .banner-form__control .banner-form__qty-minus i,
.banner-form .banner-form__control .banner-form__qty-plus i {
  font-weight: 600;
}
.banner-form .banner-form__control .banner-form__qty-minus {
  top: 12%;
  bottom: auto;
  transform: rotate(180deg);
}
.banner-form .banner-form__button {
  padding-left: 0;
}
.banner-form .banner-form__button .gotur-btn {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  padding-top: 19.5px;
  padding-bottom: 19.5px;
}
.banner-form .banner-form__control {
  padding-right: 43px;
}
.banner-form .banner-form__control:last-child {
  padding-right: 0;
}
.banner-form .banner-form__control:hover .icon {
  color: var(--gotur-primary, #F7921E);
}
.banner-form .banner-form__control--date::after {
  content: "\e920";
  font-family: "icomoon" !important;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  position: absolute;
  font-size: 14px;
  top: 36.5%;
  right: 43px;
  transform: translateY(-18%);
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: var(--gotur-base, #63AB45) !important;
  color: var(--gotur-white, #fff) !important;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  font-size: 14px !important;
}

.daterangepicker .drp-buttons .btn {
  font-size: 14px;
  padding: 6px 14px;
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-primary, #F7921E);
  border-color: transparent;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
  background-color: var(--gotur-black, #1D231F);
  color: var(--gotur-white, #fff);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/************ About One***********/
.about-one {
  position: relative;
}
.about-one__thumb {
  padding-left: 45px;
  padding-right: 100px;
  position: relative;
}
.about-one__thumb::after {
  content: "";
  width: 19px;
  height: 209px;
  border-radius: 8px;
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  left: 0;
  bottom: 0;
  animation: topToBottomTwo 3s ease-in-out infinite;
}
.about-one__thumb__item {
  position: relative;
}
.about-one__thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.about-one__thumb__item-small {
  position: absolute;
  bottom: 50px;
  right: 0;
}
.about-one__thumb__item-small img {
  border: 8px solid var(--gotur-white, #fff);
  border-radius: 10px;
}
.about-one__thumb__item-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  animation: scale 3s ease-in-out infinite;
  animation-delay: 500ms;
}
.about-one__thumb__funfact {
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: absolute;
  left: 0;
  top: 5%;
  border-left: 3px solid var(--gotur-base, #63AB45);
  z-index: 1;
  max-width: 222px;
  width: 100%;
  background-color: var(--gotur-white, #fff);
  padding: 20px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: start;
  margin-right: auto;
  gap: 15px;
}
.about-one__thumb__funfact__icon {
  color: var(--gotur-base, #63AB45);
  font-size: 43px;
  line-height: 0;
}
.about-one__thumb__funfact__count {
  margin-bottom: 7px;
  padding-bottom: 0;
  display: flex;
  align-self: center;
  justify-content: start;
}
.about-one__thumb__funfact__count span {
  margin-top: -12px;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 179%;
  color: var(--gotur-black, #1D231F);
  margin-bottom: -15px;
}
.about-one__thumb__funfact__count span:last-child {
  line-height: 48px;
}
.about-one__thumb__funfact__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  margin-bottom: -4px;
  padding: 0;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
}
.about-one__right .sec-title {
  padding-bottom: 22px;
  margin-right: -10px;
}
@media (min-width: 1200px) {
  .about-one__right {
    margin-left: 25px;
  }
}
.about-one__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  padding-bottom: 0;
  margin-bottom: 30px;
}
.about-one__feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-one__feature-list li {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.about-one__feature-list li i {
  color: var(--gotur-base, #63AB45);
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}
.about-one__feature-list li:hover i {
  color: var(--gotur-black, #1D231F);
}
.about-one__feature-list li + li {
  margin-top: 10px;
}
.about-one__feature {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.about-one__feature-vestion {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-one__feature-vestion:hover .about-one__feature_icon {
  background-color: var(--gotur-primary, #F7921E);
}
.about-one__feature_icon {
  max-width: 80px;
  width: 100%;
  border-radius: 50%;
  background-color: var(--gotur-base, #63AB45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gotur-white, #fff);
  font-size: 44px;
  height: 80px;
  transition: all 0.4s ease-in-out;
}
.about-one__feature-title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 2px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}
.about-one__feature-text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-text, #595959);
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-one__button {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
@media (min-width: 576px) {
  .about-one__button {
    flex-direction: row;
    align-items: center;
  }
}
.about-one__button__call {
  position: relative;
}
.about-one__button__call__icon {
  position: absolute;
  left: 0;
  top: 5%;
  border-radius: 50%;
  max-width: 48px;
  width: 100%;
  height: 48px;
  background-color: var(--gotur-base, #63AB45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.about-one__button__call__icon::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  background-color: transparent;
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 0.4s ease-in-out;
}
.about-one__button__call__content {
  padding-left: 58px;
}
.about-one__button__call span {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 186%;
  text-transform: capitalize;
  color: var(--gotur-base, #63AB45);
  display: block;
}
.about-one__button__call a {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-one__button__call a:hover {
  background-size: 100% 1px;
}
.about-one__button__call a:hover {
  color: var(--gotur-base, #63AB45);
}
.about-one__button__call:hover .about-one__button__call__icon {
  background-color: var(--gotur-primary, #F7921E);
}
.about-one__button__call:hover .about-one__button__call__icon::after {
  border-color: var(--gotur-primary, #F7921E);
}
.about-one__element-one {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .about-one__element-one {
    display: block;
  }
}
.about-one__element-two {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-one__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .about-one__element-two {
    display: block;
  }
}
.about-one--one {
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
}
.about-one--two {
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
}
@media (min-width: 1200px) {
  .about-one--two .about-one__right {
    margin-left: 0px;
  }
  .about-one--two .about-one__right .sec-title {
    margin-right: -10px;
    padding-bottom: 25px;
  }
  .about-one--two .about-one__right .sec-title__title {
    font-size: 40px;
  }
}
.about-one--two .about-one__thumb {
  padding-left: 48px;
  padding-right: 87px;
}
@media (min-width: 1200px) {
  .about-one--two .about-one__thumb {
    margin-right: 0px;
  }
}
.about-one--two .about-one__feature {
  max-width: 525px;
  width: 100%;
  padding-bottom: 35px;
  margin-bottom: 40px;
}
.about-one--two .about-one__feature ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 40px;
}
@media (max-width: 575px) {
  .about-one--two .about-one__feature ul {
    grid-template-columns: auto;
    gap: 10px;
  }
}
.about-one--two .about-one__feature ul li {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
}
.about-one--two .about-one__feature ul li + li {
  margin-top: 0px;
}
.about-one--two .gotur-btn .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}
.about-one--two .about-one__element-two {
  top: auto;
  bottom: 10%;
}
.about-one--two .about-one__element-two::after {
  left: 0;
  right: auto;
}
.about-one--three {
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
}
@media (min-width: 1200px) {
  .about-one--three .about-one__right {
    margin-left: 45px;
  }
}
.about-one--three .about-one__thumb {
  padding-left: 0px;
  padding-right: 110px;
}
@media (min-width: 1200px) {
  .about-one--three .about-one__thumb {
    margin-right: -15px;
  }
}
.about-one--three .about-one__feature {
  max-width: 490px;
  width: 100%;
}
.about-one--three .about-one__feature ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 40px;
}
@media (max-width: 575px) {
  .about-one--three .about-one__feature ul {
    grid-template-columns: auto;
    gap: 10px;
  }
}
.about-one--three .about-one__feature ul li + li {
  margin-top: 0px;
}
.about-one--three .about-one__thumb::after {
  display: none;
}
.about-one--three .about-one__thumb__item {
  position: relative;
  z-index: 1;
}
.about-one--three .about-one__thumb__item img {
  border-radius: 30px;
}
.about-one--three .about-one__thumb__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 20px;
  border: 1px solid var(--gotur-base, #63AB45);
  border-radius: 30px;
  background-color: transparent;
  z-index: -1;
}
.about-one--three .about-one__thumb__item-small {
  z-index: 2;
}
.about-one--three .about-one__thumb__item-small img {
  border-radius: 30px;
}
.about-one--three .about-one__thumb__item-element {
  position: absolute;
  top: 10px;
  right: 10px;
  animation: scale 3s ease-in-out infinite;
  animation-delay: 500ms;
}
.about-one--three .about-one__element-three {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-one--three .about-one__element-three::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.35;
  filter: blur(150px);
  left: 0;
}
@media (min-width: 1200px) {
  .about-one--three .about-one__element-three {
    display: block;
  }
}

/************ About Two***********/
.about-two {
  position: relative;
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
}
.about-two--one .about-two__feature_icon {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}
.about-two--one .about-two__feature-vestion:hover .about-two__feature_icon {
  color: var(--gotur-white, #fff);
  transform: none;
  background-color: var(--gotur-base, #63AB45);
}
.about-two--two {
  background-color: transparent;
}
.about-two--two .client-carousel {
  padding-top: 120px;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .about-two--two .client-carousel {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .about-two--two .client-carousel {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .about-two--two .client-carousel {
    padding-top: 60px;
  }
}
.about-two__thumb {
  position: relative;
  margin-right: 0px;
}
@media (min-width: 1200px) {
  .about-two__thumb {
    margin-right: 25px;
  }
}
.about-two__thumb__item {
  text-align: left;
}
.about-two__thumb__item img {
  clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
@media (max-width: 991px) {
  .about-two__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.about-two__thumb__item-small {
  position: absolute;
  bottom: 0px;
  right: 0;
}
.about-two__thumb__item-small img {
  border: 8px solid var(--gotur-white, #fff);
}
.about-two__thumb__funfact {
  margin-top: -25px;
  position: relative;
  z-index: 1;
  max-width: 208px;
  width: 100%;
  background-color: var(--gotur-base, #63AB45);
  padding: 20px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-right: auto;
  gap: 10px;
}
.about-two__thumb__funfact__icon {
  color: var(--gotur-white, #fff);
  font-size: 48px;
  line-height: 0;
}
.about-two__thumb__funfact__count {
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  align-self: center;
  justify-content: start;
}
.about-two__thumb__funfact__count span {
  margin-top: -12px;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 179%;
  color: var(--gotur-white, #fff);
  margin-bottom: -15px;
}
.about-two__thumb__funfact__count span:last-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 60px;
}
.about-two__thumb__funfact__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  margin-bottom: -4px;
  padding: 0;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
}
.about-two__thumb__item-element {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  animation: topToBottom 4s ease-in-out infinite;
}
.about-two__right .sec-title {
  padding-bottom: 22px;
  margin-right: -10px;
}
@media (min-width: 1200px) {
  .about-two__right {
    margin-left: -25px;
  }
}
.about-two__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  padding-bottom: 0;
  margin-bottom: 30px;
}
.about-two__feature {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.about-two__feature-vestion {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-two__feature-vestion:hover .about-two__feature_icon {
  color: var(--gotur-primary, #F7921E);
  transform: scaleX(-1);
}
.about-two__feature_icon {
  max-width: 80px;
  width: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gotur-base, #63AB45);
  font-size: 44px;
  height: 80px;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-two__feature-title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 2px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}
.about-two__feature-text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-text, #595959);
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-two__button {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media (min-width: 576px) {
  .about-two__button {
    flex-direction: row;
    align-items: center;
  }
}
.about-two__button__author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-two__button__author__thumb {
  max-width: 56px;
  width: 100%;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.about-two__button__author__thumb img {
  object-fit: cover;
  width: 100%;
}
.about-two__button__author__name {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  text-shadow: 0 0 0.1 currentColor;
}
.about-two__button__author__dec {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
}
.about-two__element-one {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4000ms ease-in-out infinite;
  z-index: -1;
  display: none;
  animation-delay: 500ms;
}
@media (min-width: 1200px) {
  .about-two__element-one {
    display: block;
  }
}
.about-two__element-two {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .about-two__element-two {
    display: block;
  }
}

/************ About Five***********/
.about-five {
  position: relative;
  background-color: var(--gotur-gray, #F3F8F6);
  z-index: 1;
}
.about-five__thumb {
  position: relative;
}
@media (min-width: 1200px) {
  .about-five__thumb {
    margin-right: -30px;
  }
}
@media (min-width: 1200px) {
  .about-five__thumb__item {
    margin-right: 89px;
  }
}
.about-five__thumb__item img {
  border-radius: 100px 0px;
  object-fit: cover;
  width: 100%;
}
.about-five__thumb__item-small {
  position: relative;
  margin-top: -262px;
  text-align: end;
}
.about-five__thumb__item-small img {
  border: 10px solid var(--gotur-white, #fff);
  border-radius: 100px 0px;
  object-fit: cover;
}
.about-five__thumb__item-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -70%);
}
.about-five__thumb__item-video a {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
  font-size: 24px;
  border: 4px solid var(--gotur-base, #63AB45);
  position: relative;
  z-index: 1;
}
.about-five__thumb__item-video a .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--gotur-base-rgb, 99, 171, 69), 0.55);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.about-five__thumb__item-video a .ripple::before, .about-five__thumb__item-video a .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--gotur-base-rgb, 99, 171, 69), 0.45);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.about-five__thumb__item-video a .ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.about-five__thumb__item-video a .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.about-five__thumb__item-video a:hover {
  background-color: var(--gotur-base, #63AB45);
}
.about-five__thumb__item-element {
  position: absolute;
  bottom: -5%;
  z-index: -1;
  left: 25%;
  transform: translateX(-30%);
  animation: topToBottom 3.5s ease-in-out infinite;
}
.about-five__thumb::after {
  content: "";
  width: 16px;
  height: 170px;
  border-radius: 100px;
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  top: 0;
  right: 25px;
  animation: topToBottom 5s ease-in-out infinite;
  z-index: -1;
}
.about-five__right .sec-title {
  padding-bottom: 22px;
  margin-right: -10px;
}
@media (min-width: 1200px) {
  .about-five__right {
    margin-left: 50px;
  }
}
.about-five__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  padding-bottom: 0;
  margin-bottom: 30px;
}
.about-five__feature {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 45px;
  justify-content: start;
}
.about-five__feature__icon {
  font-size: 44px;
  color: var(--gotur-base, #63AB45);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.about-five__feature__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 5px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.about-five__feature__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 245px;
}
.about-five__feature__item:hover .about-five__feature__icon {
  color: var(--gotur-primary, #F7921E);
  transform: scaleX(-1);
}
.about-five__button {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;
  width: 100%;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .about-five__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
@media (max-width: 575px) {
  .about-five__button {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-five__button .gotur-btn .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}
.about-five__button__author {
  display: flex;
  align-items: center;
}
.about-five__button__author__item {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gotur-white, #fff);
  border-radius: 50%;
  overflow: hidden;
}
.about-five__button__author__item img {
  object-fit: cover;
  width: 100%;
}
.about-five__button__author__item__funfact {
  display: flex;
  align-items: center;
}
.about-five__button__author__item__funfact .count {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-base, #63AB45);
}
.about-five__button__author__item__funfact .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.about-five__button__author__item + .about-five__button__author__item {
  margin-left: -15px;
}
.about-five__button__author__item-two {
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-five__button__author__item-two a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px dashed var(--gotur-base, #63AB45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gotur-base, #63AB45);
}
.about-five__element-one {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.about-five__element-two {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-five__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.35;
  filter: blur(150px);
  right: 0;
}
@media (min-width: 1200px) {
  .about-five__element-two {
    display: block;
  }
}
@media (min-width: 1200px) {
  .about-five--two .about-five__right {
    margin-left: 0px;
  }
}
@media (min-width: 1200px) {
  .about-five--two .about-five__thumb {
    margin-right: 32px;
  }
}
.about-five--two .about-five__thumb__item {
  border-radius: 10px;
  padding-left: 30px;
  margin-right: 0;
  padding-right: 73px;
}
.about-five--two .about-five__thumb__item img {
  border-radius: 10px;
}
.about-five--two .about-five__thumb__item-small {
  position: absolute;
  right: 0;
  bottom: 87px;
  border-radius: 16px;
}
.about-five--two .about-five__thumb__item-small img {
  border-radius: 16px;
}
.about-five--two .gotur-btn .icon {
  color: var(--gotur-primary, #F7921E);
}
.about-five--two .about-five__thumb__item-video {
  transform: translate(-50%, -50%);
}
.about-five--two .about-five__thumb__item-video a {
  width: 54px;
  height: 54px;
  border: 0px solid transparent;
  font-size: 15px;
}
.about-five--two .about-five__thumb__text {
  top: 10%;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #63AB45);
  padding: 42px 14px 20px 15px;
  position: absolute;
  left: 0;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  clip-path: polygon(50% 5%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.about-five--two .about-five__element-three {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .about-five--two .about-five__element-three {
    display: block;
  }
}
.about-five--two .about-five__element-four {
  position: absolute;
  right: 0;
  top: 45%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-five--two .about-five__element-four::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .about-five--two .about-five__element-four {
    display: block;
  }
}
.about-five--two .about-five__feature {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 23px;
}
.about-five--two .about-five__feature__item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-five--two .about-five__feature__item {
    gap: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-five--two .about-five__feature__item:hover .about-five__feature__icon {
  background-color: var(--gotur-primary, #F7921E);
}
.about-five--two .about-five__feature__text {
  font-size: 16px;
  line-height: 178%;
  margin-bottom: 0;
  flex: 50%;
  position: relative;
}
.about-five--two .about-five__feature__text::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: -30px;
  top: 0;
  background-color: var(--gotur-base, #63AB45);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-five--two .about-five__feature__text::after {
    display: none;
  }
}
.about-five--two .about-five__feature__content {
  flex: 50%;
  display: flex;
  align-items: center;
  gap: 23px;
}
.about-five--two .about-five__feature__content .about-five__feature__icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  font-size: 40px;
  color: var(--gotur-white, #fff);
}
.about-five--two .about-five__feature__content .about-five__feature__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}

/************ About Five***********/
.about-saven {
  position: relative;
  z-index: 1;
}
.about-saven__thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .about-saven__thumb {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.about-saven__thumb__item {
  overflow: hidden;
  border-radius: 8px;
}
.about-saven__thumb__item img {
  object-fit: cover;
  width: 100%;
}
.about-saven__thumb::after {
  content: "";
  width: 432px;
  height: 432px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gotur-primary, #F7921E);
  opacity: 0.5;
  filter: blur(150px);
  z-index: -1;
}
.about-saven__thumb__element {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-saven__thumb__element img {
  animation: scale 5s ease-in-out infinite;
}
.about-saven__right .sec-title {
  padding-bottom: 22px;
}
@media (min-width: 1200px) {
  .about-saven__right {
    margin-left: 15px;
  }
}
.about-saven__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  padding-bottom: 0;
  margin-bottom: 30px;
}
.about-saven__feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-saven__feature-list li {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.about-saven__feature-list li i {
  color: var(--gotur-base, #63AB45);
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}
.about-saven__feature-list li:hover i {
  color: var(--gotur-black, #1D231F);
}
.about-saven__feature-list li + li {
  margin-top: 10px;
}
.about-saven__feature {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.about-saven__button {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
@media (min-width: 576px) {
  .about-saven__button {
    flex-direction: row;
    align-items: center;
  }
}
.about-saven__button__call {
  position: relative;
}
.about-saven__button__call__icon {
  position: absolute;
  left: 0;
  top: 5%;
  border-radius: 50%;
  max-width: 48px;
  width: 100%;
  height: 48px;
  background-color: var(--gotur-base, #63AB45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.about-saven__button__call__icon::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  background-color: transparent;
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 0.4s ease-in-out;
}
.about-saven__button__call__content {
  padding-left: 58px;
}
.about-saven__button__call span {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 186%;
  text-transform: capitalize;
  color: var(--gotur-base, #63AB45);
  display: block;
}
.about-saven__button__call a {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-saven__button__call a:hover {
  background-size: 100% 1px;
}
.about-saven__button__call a:hover {
  color: var(--gotur-base, #63AB45);
}
.about-saven__button__call:hover .about-saven__button__call__icon {
  background-color: var(--gotur-primary, #F7921E);
}
.about-saven__button__call:hover .about-saven__button__call__icon::after {
  border-color: var(--gotur-primary, #F7921E);
}
.about-saven__feature-video {
  position: relative;
  z-index: 1;
}
.about-saven__feature-video__thumb {
  overflow: hidden;
  border-radius: 12px;
}
.about-saven__feature-video__thumb img {
  object-fit: cover;
  width: 100%;
}
.about-saven__feature-video .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background-color: var(--gotur-white, #fff);
  font-size: 9px;
}
.about-saven__feature-video .video-btn span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border: 1px solid rgba(var(--gotur-white-rgb, 255, 255, 255), 0.7);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-animate 4s linear infinite;
}
.about-saven__feature-video .video-btn span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.about-saven__feature-video .video-btn span:nth-child(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.about-saven__feature-video .video-btn span:nth-child(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
@keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
.about-saven__element {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-saven__element::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  opacity: 0.35;
  filter: blur(150px);
  right: 0;
}
@media (min-width: 1200px) {
  .about-saven__element {
    display: block;
  }
}
.about-saven__element-two {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 4000ms ease-in-out infinite;
  z-index: -1;
  display: none;
  animation-delay: 500ms;
}
@media (min-width: 1200px) {
  .about-saven__element-two {
    display: block;
  }
}

/*--------------------------------------------------------------
# Offer
--------------------------------------------------------------*/
.offer-one {
  position: relative;
  z-index: 1;
}
.offer-one .container {
  position: relative;
}
.offer-one .container::after, .offer-one .container::before {
  position: absolute;
  content: "";
  width: 308px;
  height: 308px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(150px);
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .offer-one .container::after, .offer-one .container::before {
    display: block;
  }
}
.offer-one .container::before {
  background-color: var(--gotur-primary, #F7921E);
  top: 10%;
  right: -10%;
}
.offer-one .container::after {
  background-color: var(--gotur-base, #63AB45);
  left: -10%;
  top: 10%;
}
.offer-one__element {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 4000ms ease-in-out infinite;
  z-index: -1;
  display: none;
  animation-delay: 500ms;
}
@media (min-width: 1200px) {
  .offer-one__element {
    display: block;
  }
}

.offer-one__card {
  display: flex;
  align-items: center;
  background-color: var(--gotur-base, #63AB45);
  padding: 68px 40px 60px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 575px) {
  .offer-one__card {
    padding: 20px 40px;
  }
}
.offer-one__card__content {
  flex: 50%;
  width: 50%;
}
.offer-one__card__content .sec-title {
  padding-bottom: 30px;
}
@media (max-width: 450px) {
  .offer-one__card__content .sec-title {
    padding-top: 0px;
  }
}
.offer-one__card__content .sec-title .sec-title__tagline {
  color: var(--gotur-white, #fff);
  font-weight: 400;
  font-size: 30px;
  padding: 0;
}
.offer-one__card__content .sec-title .sec-title__tagline::after {
  display: none;
}
.offer-one__card__content .sec-title .sec-title__title {
  font-weight: 800;
  font-size: 20px;
  color: var(--gotur-white, #fff);
}
.offer-one__card__btn .gotur-btn {
  padding: 10px 41px 10px 20px;
}
.offer-one__card__btn .gotur-btn .icon {
  width: 24px;
  height: 24px;
  font-size: 13px;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}
.offer-one__card::before {
  top: 10%;
  left: 40px;
  position: absolute;
  width: 204px;
  height: 204px;
  content: "";
  background: var(--gotur-white, #fff);
  filter: blur(175px);
}
.offer-one__card__thumb {
  max-width: 282px;
  width: 100%;
  height: 101%;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 282.000000 295.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,295.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M0 2934 c0 -7 6 -14 14 -17 8 -3 20 -24 27 -45 10 -34 9 -44 -5 -63 -9 -13 -16 -37 -15 -54 1 -43 22 -136 38 -164 15 -28 10 -83 -15 -156 -10 -32 -14 -67 -11 -100 3 -33 0 -60 -10 -78 -19 -38 -13 -166 12 -227 15 -39 16 -53 6 -102 -8 -37 -9 -96 -5 -164 6 -89 11 -110 29 -133 20 -23 22 -35 20 -121 -2 -52 2 -110 7 -128 7 -23 6 -37 -2 -47 -10 -12 -7 -21 14 -46 29 -34 33 -57 12 -65 -8 -3 -18 -24 -21 -47 -4 -23 -13 -52 -21 -64 -8 -12 -14 -32 -14 -44 0 -11 -7 -37 -16 -56 -14 -28 -15 -38 -4 -58 8 -14 10 -37 6 -57 -4 -18 -7 -43 -6 -55 0 -12 -5 -25 -10 -28 -14 -9 0 -175 17 -201 12 -20 15 -57 14 -239 0 -27 -3 -80 -7 -118 -5 -60 -3 -72 19 -110 24 -40 24 -45 11 -82 -7 -22 -14 -46 -14 -53 0 -10 256 -12 1303 -10 1437 3 1326 -2 1389 65 62 64 58 -22 58 1408 0 1156 -2 1310 -15 1343 -20 46 -50 79 -95 102 -34 17 -107 18 -1373 22 -998 2 -1337 0 -1337 -8z"/> </g> </svg> ');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 282.000000 295.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,295.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M0 2934 c0 -7 6 -14 14 -17 8 -3 20 -24 27 -45 10 -34 9 -44 -5 -63 -9 -13 -16 -37 -15 -54 1 -43 22 -136 38 -164 15 -28 10 -83 -15 -156 -10 -32 -14 -67 -11 -100 3 -33 0 -60 -10 -78 -19 -38 -13 -166 12 -227 15 -39 16 -53 6 -102 -8 -37 -9 -96 -5 -164 6 -89 11 -110 29 -133 20 -23 22 -35 20 -121 -2 -52 2 -110 7 -128 7 -23 6 -37 -2 -47 -10 -12 -7 -21 14 -46 29 -34 33 -57 12 -65 -8 -3 -18 -24 -21 -47 -4 -23 -13 -52 -21 -64 -8 -12 -14 -32 -14 -44 0 -11 -7 -37 -16 -56 -14 -28 -15 -38 -4 -58 8 -14 10 -37 6 -57 -4 -18 -7 -43 -6 -55 0 -12 -5 -25 -10 -28 -14 -9 0 -175 17 -201 12 -20 15 -57 14 -239 0 -27 -3 -80 -7 -118 -5 -60 -3 -72 19 -110 24 -40 24 -45 11 -82 -7 -22 -14 -46 -14 -53 0 -10 256 -12 1303 -10 1437 3 1326 -2 1389 65 62 64 58 -22 58 1408 0 1156 -2 1310 -15 1343 -20 46 -50 79 -95 102 -34 17 -107 18 -1373 22 -998 2 -1337 0 -1337 -8z"/> </g> </svg> ');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.offer-one__card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .offer-one__card__thumb {
    max-width: 217px;
    z-index: -1;
  }
}
@media (max-width: 450px) {
  .offer-one__card__thumb {
    display: none;
  }
}
.offer-one__card--two {
  background-color: var(--gotur-primary, #F7921E);
}
.offer-one__card--two .offer-one__card__btn {
  text-align: end;
}
.offer-one__card--two .offer-one__card__btn .icon {
  color: var(--gotur-primary, #F7921E);
}
.offer-one__card--two .offer-one__card__thumb {
  top: -1px;
  right: auto;
  left: -1px;
  bottom: -1px;
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 282.000000 296.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,296.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1325 2950 c-1302 -5 -1216 -1 -1272 -62 -56 -59 -53 15 -53 -1410 0 -1248 1 -1315 19 -1353 23 -51 79 -101 128 -114 26 -7 457 -11 1322 -11 l1283 0 -5 23 c-3 12 -10 36 -15 54 -9 27 -6 37 15 68 22 33 24 43 19 108 -4 40 -7 95 -7 122 -1 193 1 229 14 244 18 21 32 187 16 197 -6 3 -9 17 -6 30 2 14 0 27 -4 30 -14 9 -10 71 5 83 12 11 12 18 -5 54 -10 23 -19 52 -19 65 0 13 -6 30 -14 37 -7 8 -17 35 -20 60 -4 26 -14 49 -22 52 -20 8 -17 25 11 68 18 26 23 41 16 49 -6 8 -7 24 -3 42 5 16 7 71 7 123 -2 82 1 99 20 127 18 26 23 53 29 138 4 69 3 121 -5 148 -12 48 -5 116 16 144 19 25 19 170 1 204 -9 16 -12 42 -9 75 4 33 0 67 -11 99 -25 74 -30 129 -15 157 16 28 37 121 38 164 1 17 -6 41 -15 54 -14 19 -15 29 -5 63 7 21 19 42 27 45 8 3 14 11 14 19 0 11 -28 14 -152 12 -84 -2 -688 -5 -1343 -8z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 282.000000 296.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,296.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1325 2950 c-1302 -5 -1216 -1 -1272 -62 -56 -59 -53 15 -53 -1410 0 -1248 1 -1315 19 -1353 23 -51 79 -101 128 -114 26 -7 457 -11 1322 -11 l1283 0 -5 23 c-3 12 -10 36 -15 54 -9 27 -6 37 15 68 22 33 24 43 19 108 -4 40 -7 95 -7 122 -1 193 1 229 14 244 18 21 32 187 16 197 -6 3 -9 17 -6 30 2 14 0 27 -4 30 -14 9 -10 71 5 83 12 11 12 18 -5 54 -10 23 -19 52 -19 65 0 13 -6 30 -14 37 -7 8 -17 35 -20 60 -4 26 -14 49 -22 52 -20 8 -17 25 11 68 18 26 23 41 16 49 -6 8 -7 24 -3 42 5 16 7 71 7 123 -2 82 1 99 20 127 18 26 23 53 29 138 4 69 3 121 -5 148 -12 48 -5 116 16 144 19 25 19 170 1 204 -9 16 -12 42 -9 75 4 33 0 67 -11 99 -25 74 -30 129 -15 157 16 28 37 121 38 164 1 17 -6 41 -15 54 -14 19 -15 29 -5 63 7 21 19 42 27 45 8 3 14 11 14 19 0 11 -28 14 -152 12 -84 -2 -688 -5 -1343 -8z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.offer-one__card--two::before {
  top: 10%;
  right: 40px;
  left: auto;
  position: absolute;
  width: 204px;
  height: 204px;
  content: "";
  background: var(--gotur-white, #fff);
  filter: blur(175px);
}
.offer-one__card:hover .offer-one__card__thumb img {
  transform: scale(1.1);
}

.offer-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.offer-two .container {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
}
.offer-two__inner {
  border-radius: 20px;
  position: relative;
}
.offer-two__inner::after {
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.2);
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.offer-two__content {
  padding: 100px 100px 310px;
}
@media (max-width: 1199px) {
  .offer-two__content {
    padding: 80px 0px 310px 50px;
  }
}
@media (max-width: 575px) {
  .offer-two__content {
    padding: 80px 30px;
  }
}
.offer-two__content .sec-title {
  padding-bottom: 40px;
}
.offer-two__btn .gotur-btn .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}
.offer-two__element {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 575px) {
  .offer-two__element {
    display: none;
  }
}
.offer-two__element-two {
  position: absolute;
  bottom: 10%;
  left: 25%;
  z-index: -1;
  animation: leftToRight 3.8s ease-in-out infinite;
}
@media (max-width: 575px) {
  .offer-two__element-two {
    display: none;
  }
}
.offer-two__element-three {
  position: absolute;
  top: 0;
  left: 10%;
  z-index: -1;
  animation: leftToRight 3.8s ease-in-out infinite;
}
@media (max-width: 575px) {
  .offer-two__element-three {
    display: none;
  }
}
.offer-two__thumb {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991px) {
  .offer-two__thumb {
    position: relative;
    left: auto;
  }
}
@media (max-width: 575px) {
  .offer-two__thumb {
    display: none;
  }
}
.offer-two__thumb__item {
  margin-right: 90px;
  animation: leftToRight 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .offer-two__thumb__item {
    text-align: center;
  }
}
.offer-two__thumb__element {
  position: absolute;
  width: 562px;
  height: 534px;
  bottom: 0;
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.15);
  right: 50px;
  z-index: -1;
  border-radius: 1000px 1000px 0 0;
}
.offer-two__thumb__element::after {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  border-radius: 1000px 1000px 0 0;
  bottom: 0;
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.15);
  animation: scale 4s ease-in-out infinite;
}
.offer-two__funfact {
  position: absolute;
  left: 57%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .offer-two__funfact {
    left: 75%;
  }
}
@media (max-width: 991px) {
  .offer-two__funfact {
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 575px) {
  .offer-two__funfact {
    display: none;
  }
}
.offer-two__funfact__item__inner {
  position: relative;
  z-index: 1;
  width: 265px;
  height: 265px;
  border-radius: 50%;
  background-color: var(--gotur-primary, #F7921E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.offer-two__funfact__item__count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gotur-white, #fff);
  font-size: 70px;
  font-weight: 900;
}
.offer-two__funfact__item__text {
  color: var(--gotur-white, #fff);
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.offer-two__funfact__item__upto {
  position: absolute;
  top: 34%;
  left: -30px;
  padding: 6px 12px;
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-radius: 100px;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 700;
}
.offer-two__funfact__item__shape {
  position: absolute;
  right: -30px;
  bottom: 0px;
  z-index: -1;
  animation: topToBottomThree 3s ease-in-out infinite;
}
.offer-two__funfact__cercle {
  position: absolute;
  z-index: -1;
  left: 1%;
  transform: rotate(18deg);
  top: -22%;
  border-radius: 50%;
  width: 300px;
  height: 300px;
}
.offer-two__funfact__cercle__inner {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 45px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  text-transform: uppercase;
  letter-spacing: normal;
  color: var(--gotur-black, #1D231F);
}

/*--------------------------------------------------------------
# Listing 
--------------------------------------------------------------*/
/****** Listing Card One*******/
.listing-card {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  position: relative;
}
.listing-card__image {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 0 0;
}
.listing-card__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.listing-card__overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.listing-card__btn-group {
  position: absolute;
  top: 20px;
  left: 20px;
}
.listing-card__discount, .listing-card__featured {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  padding: 2px 11.6px;
  border-radius: 8px;
}
.listing-card__discount + .listing-card__featured {
  margin-top: 10px;
}
.listing-card__discount {
  background-color: var(--gotur-primary, #F7921E);
}
.listing-card__featured {
  background-color: var(--gotur-base, #63AB45);
}
.listing-card__btns {
  position: absolute;
  top: 20px;
  right: 20px;
}
.listing-card__btns a {
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  font-size: 16px;
  color: var(--gotur-text, #595959);
  height: 30px;
  transition: all 0.4s ease-in-out;
}
.listing-card__btns a:hover {
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
}
.listing-card__btns a + a {
  margin-top: 6px;
}
.listing-card__content {
  padding: 1px 30px 30px;
}
.listing-card__content__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-card__rating {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.listing-card__rating span {
  display: block;
  margin-bottom: 5px;
}
.listing-card__rating i {
  font-size: 18px;
  letter-spacing: -1px;
  color: var(--gotur-primary, #F7921E);
}
.listing-card__rating i:nth-child(6) {
  color: #C7C8C7;
}
.listing-card__price {
  margin-top: -26px;
  position: relative;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.listing-card__price__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--gotur-primary, #F7921E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 178%;
  color: var(--gotur-white, #fff);
}
.listing-card__price::after {
  content: "";
  width: 95px;
  height: 33px;
  background-color: var(--gotur-white, #fff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 94.000000 33.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,33.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M714 612 c-176 -65 -298 -184 -395 -384 -46 -94 -130 -169 -229 -204 -44 -15 183 -21 830 -22 l890 -2 -86 43 c-92 45 -153 115 -222 251 -139 278 -503 424 -788 318z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 94.000000 33.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,33.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M714 612 c-176 -65 -298 -184 -395 -384 -46 -94 -130 -169 -229 -204 -44 -15 183 -21 830 -22 l890 -2 -86 43 c-92 45 -153 115 -222 251 -139 278 -503 424 -788 318z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  position: absolute;
  top: -7.2px;
  z-index: -1;
  left: -19px;
}
.listing-card__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 20px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.listing-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.listing-card__title a:hover {
  background-size: 100% 1px;
}
.listing-card__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-card__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 21px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.listing-card__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
}
.listing-card__meta a i {
  margin-right: 8px;
  color: var(--gotur-base, #63AB45);
}
.listing-card__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-card .listing-card__btn {
  border: 1px solid var(--gotur-base, #63AB45);
  background-color: transparent;
  color: var(--gotur-black, #1D231F);
  padding-top: 9px;
  padding-bottom: 9px;
  padding-right: 40px;
}
.listing-card .listing-card__btn .icon {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  width: 24px;
  height: 24px;
  font-size: 10px;
}
.listing-card .listing-card__btn:hover {
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.listing-card:hover img {
  transform: scale(1.1);
}
.listing-card:hover .listing-card__overlay {
  top: 0;
  height: 100%;
}

/****** Listing Card Two*******/
.listing-card-two {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}
.listing-card-two__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.listing-card-two__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 16px 16px 0 0;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.listing-card-two__overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.listing-card-two__btn-group {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.listing-card-two__discount, .listing-card-two__featured {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  padding: 2px 11.6px;
  border-radius: 8px;
}
.listing-card-two__discount + .listing-card-two__featured {
  margin-top: 10px;
}
.listing-card-two__discount {
  background-color: var(--gotur-primary, #F7921E);
}
.listing-card-two__featured {
  background-color: var(--gotur-base, #63AB45);
}
.listing-card-two__btns {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: translateX(50px);
}
.listing-card-two__btns a {
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  font-size: 16px;
  color: var(--gotur-text, #595959);
  height: 30px;
  transition: all 0.4s ease-in-out;
}
.listing-card-two__btns a:hover {
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
}
.listing-card-two__btns a + a {
  margin-top: 6px;
}
.listing-card-two__content {
  margin-top: -20px;
  z-index: 1;
  position: relative;
  padding: 30px;
  background-color: var(--gotur-white, #fff);
  border-radius: 20px;
}
.listing-card-two__content__inner {
  border-radius: 10px;
  background-color: var(--gotur-gray, #F3F8F6);
  padding: 20px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .listing-card-two__content__inner {
    padding: 20px 10px;
  }
}
.listing-card-two__content__inner::after {
  content: "";
  width: 100%;
  height: 0%;
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.listing-card-two__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 14px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.listing-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.listing-card-two__title a:hover {
  background-size: 100% 1px;
}
.listing-card-two__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-card-two__meta {
  margin-top: -5px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .listing-card-two__meta {
    gap: 5px;
  }
}
.listing-card-two__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.listing-card-two__meta a i {
  margin-right: 10px;
  color: var(--gotur-base, #63AB45);
  transition: all 0.2s ease-in-out;
}
.listing-card-two__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-card-two__rating {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.listing-card-two__rating span {
  margin-right: 16px;
  color: inherit;
}
.listing-card-two__rating i {
  font-size: 18px;
  letter-spacing: -1px;
  color: var(--gotur-primary, #F7921E);
}
.listing-card-two__rating i:nth-child(6) {
  color: #808080;
}
.listing-card-two__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-card-two__price__number {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 178%;
  color: var(--gotur-black, #1D231F);
  margin-bottom: -4px;
  padding-bottom: 0;
  transition: all 0.2s ease-in-out;
}
.listing-card-two__price__number span {
  font-size: 13px;
}
.listing-card-two__price i {
  color: var(--gotur-base, #63AB45);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.listing-card-two:hover img {
  transform: scale(1.1);
}
.listing-card-two:hover .listing-card-two__meta {
  border-color: var(--gotur-gray, #F3F8F6);
}
.listing-card-two:hover .listing-card-two__meta a,
.listing-card-two:hover .listing-card-two__meta__icon i,
.listing-card-two:hover .listing-card-two__price h5,
.listing-card-two:hover .listing-card-two__price i {
  color: var(--gotur-white, #fff);
}
.listing-card-two:hover .listing-card-two__overlay {
  top: 0;
  height: 100%;
}
.listing-card-two:hover .listing-card-two__btns {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}
.listing-card-two:hover .listing-card-two__content__inner::after {
  height: 100%;
}

/****** Listing Card Three*******/
.listing-list-card {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px 30px 16px 16px;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__image {
  margin-right: -70px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.listing-list-card__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .listing-list-card__image {
    margin-right: 0px;
  }
}
.listing-list-card__overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.listing-list-card__btn-group {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.listing-list-card__discount, .listing-list-card__featured {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  padding: 2px 11.6px;
  border-radius: 8px;
}
.listing-list-card__discount + .listing-list-card__featured {
  margin-top: 10px;
}
.listing-list-card__discount {
  background-color: var(--gotur-primary, #F7921E);
}
.listing-list-card__featured {
  background-color: var(--gotur-base, #63AB45);
}
.listing-list-card__btns {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: translateX(50px);
}
.listing-list-card__btns a {
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  font-size: 16px;
  color: var(--gotur-text, #595959);
  height: 30px;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__btns a:hover {
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
}
.listing-list-card__btns a + a {
  margin-top: 6px;
}
.listing-list-card__content {
  margin-left: 80px;
}
@media (max-width: 767px) {
  .listing-list-card__content {
    margin-top: 22px;
    margin-left: 0px;
  }
}
.listing-list-card__content__inner {
  border-radius: 10px;
  background-color: var(--gotur-gray, #F3F8F6);
  padding: 20px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.listing-list-card__content__inner::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--gotur-base, #63AB45);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 22px;
  padding-bottom: 0;
}
.listing-list-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.listing-list-card__title a:hover {
  background-size: 100% 1px;
}
.listing-list-card__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-list-card__meta {
  margin-top: -5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  transition: all 0.4s ease-in-out;
}
.listing-list-card__meta a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__meta a i {
  margin-right: 8px;
  font-size: 17px;
  color: var(--gotur-base, #63AB45);
  transition: all 0.4s ease-in-out;
}
.listing-list-card__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-list-card__rating {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__rating span {
  margin-right: 16px;
  color: inherit;
}
.listing-list-card__rating i {
  font-size: 18px;
  letter-spacing: -1px;
  color: var(--gotur-primary, #F7921E);
  transition: all 0.4s ease-in-out;
}
.listing-list-card__rating i:nth-child(6) {
  color: var(--gotur-text, #595959);
}
.listing-list-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-list-card__price__number {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 178%;
  color: var(--gotur-black, #1D231F);
  margin-bottom: -4px;
  padding-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__price__number span {
  font-size: 13px;
  transition: all 0.4s ease-in-out;
}
.listing-list-card__price i {
  color: var(--gotur-primary, #F7921E);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.listing-list-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.listing-list-card:hover img {
  transform: scale(1.1);
}
.listing-list-card:hover .listing-card-two__meta {
  border-color: var(--gotur-gray, #F3F8F6);
}
.listing-list-card:hover .listing-list-card__content__inner::after {
  top: 0;
  height: 100%;
}
.listing-list-card:hover .listing-list-card__content__inner ul a {
  color: var(--gotur-white, #fff);
}
.listing-list-card:hover .listing-list-card__content__inner .listing-list-card__price__number,
.listing-list-card:hover .listing-list-card__content__inner .listing-list-card__rating,
.listing-list-card:hover .listing-list-card__content__inner .listing-list-card__meta a i,
.listing-list-card:hover .listing-list-card__content__inner .listing-list-card__price i {
  color: var(--gotur-white, #fff);
}
.listing-list-card:hover .listing-list-card__overlay {
  top: 0;
  height: 100%;
}
.listing-list-card:hover .listing-list-card__btns {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}
.listing-list-card:hover .listing-card-two__content__inner {
  background-color: var(--gotur-border-color, #E5E5E5);
}

/****** Listing Card Four*******/
.listing-card-four {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.4s ease-in-out;
}
.listing-card-four__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  display: block;
}
.listing-card-four__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.listing-card-four__image__overly {
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.listing-card-four__btn-group {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.listing-card-four__discount, .listing-card-four__featured {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  padding: 2px 11.6px;
  border-radius: 8px;
}
.listing-card-four__discount + .listing-card-four__featured {
  margin-top: 10px;
}
.listing-card-four__discount {
  background-color: var(--gotur-primary, #F7921E);
}
.listing-card-four__featured {
  background-color: var(--gotur-base, #63AB45);
}
.listing-card-four__btns {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}
.listing-card-four__btns__hover {
  transform: translateX(100px);
  transition: all 0.4s ease-in-out;
}
a + .listing-card-four__btns__hover {
  margin-top: 7px;
}
.listing-card-four__btns a {
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  font-size: 16px;
  color: var(--gotur-text, #595959);
  height: 30px;
  transition: all 0.4s ease-in-out;
}
.listing-card-four__btns a:hover {
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
}
.listing-card-four__btns a + a {
  margin-top: 6px;
}
.listing-card-four__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-primary, #F7921E);
  margin-right: 30px;
  border-radius: 20px 20px 0px 0px;
  margin-left: 30px;
  padding: 9px 15px;
  margin-bottom: 0;
  margin-top: -40px;
  transition: all 0.4s ease-in-out;
}
.listing-card-four__meta li:not(:first-child) a::before {
  position: relative;
  content: "|";
  margin-left: 12px;
  margin-right: 12px;
  font-weight: 400;
  color: var(--gotur-white, #fff);
  opacity: 0.5;
}
@media (max-width: 768px) and (min-width: 576px) {
  .listing-card-four__meta li:not(:first-child) a::before {
    display: none;
  }
}
.listing-card-four__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-white, #fff);
  display: flex;
  align-items: center;
}
.listing-card-four__meta a i {
  margin-right: 3px;
  color: var(--gotur-white, #fff);
}
.listing-card-four__meta a:hover {
  color: var(--gotur-primary, #F7921E);
}
@media (max-width: 768px) and (min-width: 576px) {
  .listing-card-four__meta {
    margin-top: -61px;
    flex-direction: column;
  }
}
.listing-card-four__content {
  padding: 0px 15px 15px;
}
.listing-card-four__content__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) and (min-width: 576px) {
  .listing-card-four__content__btn {
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    align-items: start;
  }
}
.listing-card-four__rating {
  margin-top: 24px;
  margin-bottom: 7px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.listing-card-four__rating span {
  margin-right: 5px;
}
.listing-card-four__rating i {
  font-size: 18px;
  letter-spacing: -1px;
  color: var(--gotur-primary, #F7921E);
}
.listing-card-four__rating i:nth-child(6) {
  color: #808080;
}
.listing-card-four__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  text-transform: capitalize;
  padding-bottom: 18px;
  margin-bottom: 18px;
  color: var(--gotur-black, #1D231F);
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.listing-card-four__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.listing-card-four__title a:hover {
  background-size: 100% 1px;
}
.listing-card-four__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.listing-card-four__price__sub {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  display: block;
  color: var(--gotur-text, #595959);
}
.listing-card-four__price__number {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 178%;
  display: block;
  color: var(--gotur-black, #1D231F);
}
.listing-card-four .listing-card-four__btn {
  border: 1px solid var(--gotur-base, #63AB45);
  background-color: transparent;
  color: var(--gotur-black, #1D231F);
  padding-top: 9px;
  padding-bottom: 9px;
  padding-right: 40px;
}
.listing-card-four .listing-card-four__btn::after, .listing-card-four .listing-card-four__btn::before {
  background-color: var(--gotur-base, #63AB45);
}
.listing-card-four .listing-card-four__btn .icon {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  width: 24px;
  height: 24px;
  font-size: 10px;
}
.listing-card-four .listing-card-four__btn:hover {
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.listing-card-four .listing-card-four__btn:hover .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}
.listing-card-four:hover {
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
}
.listing-card-four:hover .listing-card-four__meta {
  background-color: var(--gotur-base, #63AB45);
}
.listing-card-four:hover .listing-card-four__btns__hover {
  transform: translateX(0);
}
.listing-card-four:hover .listing-card-four__image img {
  transform: scale(1.1);
}
.listing-card-four:hover .listing-card-four__image__overly {
  visibility: visible;
  opacity: 1;
}
.listing-card-four--feature .listing-card-four__content {
  padding: 15px 15px 15px;
}
.listing-card-four--feature .listing-card-four__image {
  border-radius: 10px;
}
.listing-card-four--feature .listing-card-four__image img {
  border-radius: 10px;
}
.listing-card-four--feature .listing-card-four__price-two {
  margin-top: -40px;
  z-index: 2;
  position: absolute;
  border-radius: 6px;
  padding: 6px 12px;
  background-color: var(--gotur-primary, #F7921E);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.listing-card-four--feature .listing-card-four__meta {
  background-color: transparent;
  margin-right: 0px;
  border-radius: 0px;
  justify-content: start;
  margin-left: 0px;
  gap: 23px;
  padding: 0;
  margin-top: 0px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.listing-card-four--feature .listing-card-four__meta li:not(:first-child) a::before {
  display: none;
}
.listing-card-four--feature .listing-card-four__meta a {
  color: var(--gotur-text, #595959);
}
.listing-card-four--feature .listing-card-four__meta a i {
  color: var(--gotur-base, #63AB45);
}
.listing-card-four--feature .listing-card-four__meta a:hover {
  color: var(--gotur-primary, #F7921E);
}
.listing-card-four--feature .listing-card-four__title {
  margin-top: 2px;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}
.listing-card-four--feature:hover .listing-card-four__meta {
  background-color: transparent;
}
.listing-card-four--feature:hover .listing-card-four__price-two {
  background-color: var(--gotur-base, #63AB45);
}
.listing-card-four--feature .listing-card-four__content__btn__hart {
  font-size: 18px;
}
.listing-card-four--feature .listing-card-four__content__btn__hart:hover {
  color: var(--gotur-primary, #F7921E);
}

.tour-listing-page {
  position: relative;
}
.tour-listing-page__element {
  position: absolute;
  left: 0;
  bottom: 0;
  animation: leftToRight 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .tour-listing-page__element {
    display: block;
  }
}
.tour-listing-page__element-two {
  position: absolute;
  right: 0;
  top: 45%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.tour-listing-page__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .tour-listing-page__element-two {
    display: block;
  }
}

.feature-package {
  position: relative;
  z-index: 1;
}
.feature-package__top {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .feature-package__top {
    padding-bottom: 50px;
  }
}
.feature-package__top .sec-title {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .feature-package__top .sec-title {
    padding-bottom: 0;
  }
}
.feature-package__bottom__nav {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
@media (min-width: 992px) {
  .feature-package__bottom__nav {
    justify-content: end;
  }
}
.feature-package__bottom__nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}
.feature-package__bottom__nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.feature-package__bottom__nav button:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.feature-package__bottom__nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.feature-package .container-fluid {
  max-width: 1570px;
  margin-left: auto;
  margin-right: 0;
}
.feature-package--two .container-fluid {
  max-width: 1570px;
  margin-left: auto;
  margin-right: auto;
}
.feature-package--two .feature-package__element {
  position: absolute;
  top: 15%;
  z-index: -1;
  left: 2%;
  animation: scale 4s ease-in-out infinite;
}
@media (min-width: 992px) {
  .feature-package__inner {
    margin-right: -50px;
  }
}
.feature-package__element-one {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .feature-package__element-one {
    display: block;
  }
}

/*--------------------------------------------------------------
# Listing From
--------------------------------------------------------------*/
.listing-from {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  z-index: 2;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 10px;
  padding: 24px 27px;
  margin-bottom: 40px;
}
.listing-from__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.listing-from__control .bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 56px;
  background-color: var(--gotur-white, #fff);
  padding: 15px 20px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  border: 1px solid var(--gotur-border-color, #E5E5E5) !important;
  border-radius: 8px;
}
.listing-from__control .bootstrap-select > .dropdown-toggle:active, .listing-from__control .bootstrap-select > .dropdown-toggle:focus {
  outline: none !important;
  border: 1px solid var(--gotur-border-color, #E5E5E5) !important;
}
.listing-from__control .filter-option-inner-inner {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
}
.listing-from__control .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0 !important;
  vertical-align: 0 !important;
  content: "\e920";
  font-family: "icomoon" !important;
  border-top: 0 !important;
  border-right: 0 !important;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  border-bottom: 0 !important;
  border-left: 0 !important;
}
.listing-from__control button[type=button] {
  width: 100%;
  height: 57px;
  padding-left: 0;
  padding-right: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 171%;
  z-index: 1;
}

/*--------------------------------------------------------------
# Listing Details
--------------------------------------------------------------*/
.tour-listing-details {
  position: relative;
}
.tour-listing-details__destination__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .tour-listing-details__destination__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.tour-listing-details__destination__title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  padding-bottom: 0;
  margin-bottom: 10px;
}
.tour-listing-details__destination__revue {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tour-listing-details__destination__ratings-box {
  line-height: 1;
}
.tour-listing-details__destination__ratings-box span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-text, #595959);
  margin-right: 6px;
}
.tour-listing-details__destination__ratings-box i {
  color: var(--gotur-primary, #F7921E);
  font-size: 17px;
  letter-spacing: -1px;
  line-height: 0;
}
.tour-listing-details__destination__posted {
  display: flex;
  align-items: center;
}
.tour-listing-details__destination__posted-text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-text, #595959);
  margin-bottom: 0;
  padding-bottom: 0;
}
.tour-listing-details__destination__posted i {
  color: var(--gotur-base, #63AB45);
  margin-right: 6px;
}
.tour-listing-details__destination__right {
  position: relative;
}
.tour-listing-details__destination__right:hover .tour-listing-details__destination__social__list {
  opacity: 1;
  transform: translateY(-50%) scale(1, 1);
}
.tour-listing-details__destination__btn {
  border: 1px solid var(--gotur-base, #63AB45);
  background-color: transparent;
  color: var(--gotur-black, #1D231F);
  font-weight: 500;
  border-radius: 6px;
  padding: 14px 49px 14px 22px;
}
.tour-listing-details__destination__btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 21px;
  color: var(--gotur-base, #63AB45);
  transition: all 0.3s ease-in-out;
}
.tour-listing-details__destination__btn:hover {
  border-color: transparent;
}
.tour-listing-details__destination__btn:hover i {
  color: var(--gotur-white, #fff);
}
.tour-listing-details__destination__social__list {
  position: absolute;
  top: 50%;
  right: calc(100% + 1px);
  transform: translateY(-50%) scale(0, 1);
  background-color: var(--gotur-gray, #F3F8F6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 51px;
  min-width: 120px;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 0;
  border-radius: 6px;
  transition: 500ms ease;
  transform-origin: top right;
}
.tour-listing-details__destination__social__list a:hover {
  color: var(--gotur-primary, #F7921E);
}
.tour-listing-details__destination__social__list a + a {
  margin-left: 10px;
}
.tour-listing-details__destination + .tour-listing-details__carousel {
  margin-top: 40px;
}
.tour-listing-details__carousel {
  margin-bottom: 20px;
}
.tour-listing-details__info-area__info {
  margin-top: 50px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .tour-listing-details__info-area__info {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
}
.tour-listing-details__info-area li {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.tour-listing-details__info-area li .gotur-btn {
  border-radius: 6px;
  padding: 20px 24px;
  font-size: 14px;
}
.tour-listing-details__info-area li:last-child::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gotur-border-color, #E5E5E5);
  position: absolute;
  top: 0;
  left: -15%;
  transform: translateX(50%);
}
@media (max-width: 991px) {
  .tour-listing-details__info-area li:last-child::after {
    display: none;
  }
}
.tour-listing-details__info-area li:hover .tour-listing-details__info-area__icon {
  color: var(--gotur-base, #63AB45);
}
.tour-listing-details__info-area li + li::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gotur-border-color, #E5E5E5);
  position: absolute;
  top: 0;
  left: -50%;
  transform: translateX(50%);
}
@media (max-width: 991px) {
  .tour-listing-details__info-area li + li::after {
    display: none;
  }
}
.tour-listing-details__info-area__icon {
  font-size: 24px;
  color: var(--gotur-primary, #F7921E);
  transition: all 0.4s ease-in-out;
}
.tour-listing-details__info-area__title {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  margin-bottom: 7px;
  padding-bottom: 0;
}
.tour-listing-details__info-area__text {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}

.tour-listing-details {
  counter-reset: serviceNumber;
}
.tour-listing-details__list {
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-bottom: 35px;
}
.tour-listing-details__content__item + .tour-listing-details__content__item {
  margin-top: 32px;
}
.tour-listing-details__content__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 16px 20px;
}
@media (max-width: 991px) {
  .tour-listing-details__content__list {
    grid-template-columns: auto;
  }
}
.tour-listing-details__content__list li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--gotur-black, #1D231F);
}
.tour-listing-details__content__list li i {
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  margin-right: 6px;
  transition: all 0.4s ease-in-out;
}
.tour-listing-details__content__list li:hover i {
  color: var(--gotur-text, #595959);
}
.tour-listing-details__title {
  margin-top: -4px;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 18px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.tour-listing-details__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: -4px;
  padding-bottom: 0;
}
.tour-listing-details__amenities {
  padding-top: 8px;
  padding-bottom: 15px;
}
.tour-listing-details__amenities__inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 991px) {
  .tour-listing-details__amenities__inner {
    flex-direction: column;
    gap: 16px;
    justify-content: start;
    align-items: start;
  }
}
.tour-listing-details__amenities__list {
  padding: 0;
  margin: 5px 0 0;
  list-style: none;
}
.tour-listing-details__amenities__list li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--gotur-black, #1D231F);
}
.tour-listing-details__amenities__list li i {
  font-size: 17px;
  color: var(--gotur-base, #63AB45);
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}
.tour-listing-details__amenities__list li:hover i {
  color: var(--gotur-text, #595959);
}
.tour-listing-details__amenities__list li + li {
  margin-top: 17px;
}
.tour-listing-details__amenities__list--two li i {
  color: #FF0000;
}
.tour-listing-details__thumb {
  padding-bottom: 20px;
}
.tour-listing-details__thumb__item {
  overflow: hidden;
  border-radius: 10px;
}
.tour-listing-details__thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}
.tour-listing-details__thumb__item:hover img {
  transform: scale(1.1);
}
.tour-listing-details__ture-plan {
  padding-bottom: 20px;
}
.tour-listing-details__ture-plan .tour-listing-details__title {
  margin-bottom: 30px;
}
.tour-listing-details__ture-plan .accordion-title__text::before {
  content: "Day" counter(serviceNumber);
  counter-increment: serviceNumber;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--gotur-base, #63AB45);
  margin-right: 5px;
}
.tour-listing-details__ture-plan .faq-accordion .active .accordion-title h4 {
  color: var(--gotur-black, #1D231F);
}
.tour-listing-details__ture-list {
  padding-bottom: 20px;
}
.tour-listing-details__calender .tour-listing-details__title {
  margin-bottom: 30px;
}
.tour-listing-details__calender-box {
  position: relative;
  width: 100%;
  margin: 0 0 50px;
}
.tour-listing-details__calender-box .ui-widget-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-header {
  padding: 7px 0 10px;
  background-color: var(--gotur-base, #63AB45);
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: var(--gotur-white, #fff);
  border-radius: 0;
  border: none;
  margin: 0;
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-next {
  background-color: transparent;
  border: none;
  color: var(--gotur-white, #fff);
  font-size: 18px;
  cursor: pointer;
  top: 50%;
  right: 20px;
  height: 100%;
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-next::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-next:hover {
  color: var(--gotur-black, #1D231F);
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-next span {
  display: none;
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-prev {
  background-color: transparent;
  border: none;
  color: var(--gotur-white, #fff);
  font-size: 18px;
  cursor: pointer;
  top: 50%;
  left: 20px;
  height: 100%;
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-prev::after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-prev:hover {
  color: var(--gotur-black, #1D231F);
}
.tour-listing-details__calender-box .ui-datepicker .ui-datepicker-prev span {
  display: none;
}
.tour-listing-details__calender-box .ui-datepicker table {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}
.tour-listing-details__calender-box .ui-datepicker table thead tr th {
  border: 1px solid rgba(var(--gotur-text-rgb, 89, 89, 89), 0.1);
}
.tour-listing-details__calender-box .ui-datepicker th {
  background-color: var(--gotur-gray, #F3F8F6);
  font-size: 14px;
  font-weight: 600;
  color: var(--gotur-black, #1D231F);
  padding: 10px 21px;
  text-align: right;
}
@media (max-width: 767px) {
  .tour-listing-details__calender-box .ui-datepicker th {
    padding: 10px 14px;
  }
}
.tour-listing-details__calender-box .ui-datepicker-calendar td {
  text-align: right;
  padding: 11px 21px;
  background-color: transparent;
  color: var(--gotur-text, #595959);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(var(--gotur-text-rgb, 89, 89, 89), 0.1);
  transition: all 400ms ease;
}
@media (max-width: 767px) {
  .tour-listing-details__calender-box .ui-datepicker-calendar td {
    padding: 10px 14px;
  }
}
.tour-listing-details__calender-box .ui-datepicker-calendar td:hover, .tour-listing-details__calender-box .ui-datepicker-calendar td.ui-datepicker-current-day {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-base, #63AB45);
}
.tour-listing-details__calender-box .ui-datepicker-calendar .ui-state-default,
.tour-listing-details__calender-box .ui-datepicker-calendar .ui-widget-content .ui-state-default,
.tour-listing-details__calender-box .ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border: none;
  background-color: transparent;
  background-image: none;
  color: inherit;
  padding: 0;
  text-align: inherit;
  line-height: inherit;
  transition: none;
}
.tour-listing-details__reviews .product-details__comment__card__title {
  margin-top: 0;
}
.tour-listing-details__reviews .product-details__comment__card__star span:last-child {
  color: var(--gotur-border-color, #E5E5E5);
}
.tour-listing-details__add-reviews .tour-listing-details__title {
  text-transform: none;
}
.tour-listing-details__add-reviews .comments-form__form .form-one__group {
  grid-gap: 20px 30px;
}
.tour-listing-details__add-reviews .comments-form__form .form-one__control label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.tour-listing-details__add-reviews .comments-form__form .form-one__control input, .tour-listing-details__add-reviews .comments-form__form .form-one__control textarea {
  border-radius: 6px;
  padding-left: 20px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  border-left: 1px solid var(--gotur-border-color, #E5E5E5);
  border-right: 1px solid var(--gotur-border-color, #E5E5E5);
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  background-color: var(--gotur-white, #fff);
}
.tour-listing-details__add-reviews .comments-form__form .form-one__control textarea {
  height: 200px;
}
.tour-listing-details__add-reviews .comments-form__form button {
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 50px;
}
.tour-listing-details__map .tour-listing-details__title {
  margin-bottom: 30px;
}
.tour-listing-details__map-box iframe {
  border-radius: 10px;
  width: 100%;
  height: 424px;
}

.tour-one {
  width: 100%;
  margin-bottom: 40px;
}
.tour-one__item {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  max-height: 395px;
  height: 100%;
}
.tour-one__item img {
  object-fit: cover;
  width: 100%;
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.tour-one__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.tour-one__item:hover::after {
  opacity: 1;
  visibility: visible;
}
.tour-one__item:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
/******** Instagram One*********/
.instagram-one {
  position: relative;
  z-index: 1;
}
.instagram-one__top {
  position: relative;
  margin-bottom: 30px;
}
.instagram-one__title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 127%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  text-align: center;
  position: relative;
}
.instagram-one__title::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--gotur-border-color, #E5E5E5);
  z-index: -1;
}
.instagram-one__title::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 230px;
  content: "";
  height: 1px;
  background-color: var(--gotur-white, #fff);
}
.instagram-one .container-fluid {
  max-width: 1790px;
  margin-left: auto;
  margin-right: auto;
}
.instagram-one__item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  transition: all 0.4s ease-in-out;
}
.instagram-one__item img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.instagram-one__item__overly {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.instagram-one__item__overly__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-primary, #F7921E);
  color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
  font-size: 30px;
}
.instagram-one__item__overly__icon:hover {
  background-color: var(--gotur-base, #63AB45);
}
.instagram-one__item:hover .instagram-one__item__overly {
  opacity: 1;
  transform: translateY(0);
}
.instagram-one__item:hover {
  border-radius: 100px;
}
.instagram-one__item:hover img {
  transform: scale(1.1);
}
.instagram-one--two .instagram-one__item:hover {
  border-radius: 0px;
}
.instagram-one--two .instagram-one__item:hover img {
  transform: scale(1.1);
}

/******** How To Work One*********/
.how-to-work {
  position: relative;
  z-index: 1;
  counter-reset: workPlanningSerialNumber;
}
.how-to-work__item {
  text-align: center;
}
.how-to-work__item:hover .how-to-work__icon {
  background-color: var(--gotur-base, #63AB45);
  border-style: solid;
  color: var(--gotur-white, #fff);
}
.how-to-work__item:hover .how-to-work__icon__count {
  background-color: var(--gotur-white, #fff);
}
.how-to-work__item:hover .how-to-work__icon__count::after {
  color: var(--gotur-base, #63AB45);
}
.how-to-work__icon {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--gotur-gray, #F3F8F6);
  height: 100px;
  border: 2px dashed var(--gotur-base, #63AB45);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  color: var(--gotur-base, #63AB45);
  font-size: 45px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.how-to-work__icon__count {
  position: relative;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -6px;
  top: 0px;
  background-color: var(--gotur-primary, #F7921E);
  height: 34px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}
.how-to-work__icon__count::after {
  content: counter(workPlanningSerialNumber);
  counter-increment: workPlanningSerialNumber;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.how-to-work__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  padding-bottom: 0;
  margin-bottom: 20px;
  text-align: center;
}
.how-to-work__text {
  margin-top: -6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 346px;
  margin-left: auto;
  margin-right: auto;
}
.how-to-work .container {
  position: relative;
}
.how-to-work__shape {
  position: absolute;
  top: 40%;
  z-index: -1;
  display: none;
  animation: leftToRight 4s ease-in-out infinite;
}
.how-to-work__shape img {
  object-fit: cover;
  width: 100%;
}
@media (min-width: 992px) {
  .how-to-work__shape {
    display: block;
  }
}
.how-to-work__element {
  position: absolute;
  left: 0;
  top: 30%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.how-to-work__element::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  left: -20%;
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .how-to-work__element {
    display: block;
  }
}

/*****Destination One*****/
.destination-card-one {
  position: relative;
  z-index: 1;
}
.destination-card-one__thumb {
  overflow: hidden;
  border-radius: 1000px;
  border: 5px solid transparent;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.destination-card-one__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.destination-card-one__thumb .destination-card-one__overly {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.destination-card-one__content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 106px;
  width: 129px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.destination-card-one__content::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 123px;
  height: 101px;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 126.000000 103.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,103.000000) scale(0.100000,-0.100000)"> <path d="M635 1023 c-171 -24 -340 -114 -461 -247 -137 -149 -194 -308 -164 -458 64 -326 410 -412 825 -205 246 122 407 300 422 467 20 219 -113 384 -353 435 -64 14 -199 18 -269 8z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 126.000000 103.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,103.000000) scale(0.100000,-0.100000)"> <path d="M635 1023 c-171 -24 -340 -114 -461 -247 -137 -149 -194 -308 -164 -458 64 -326 410 -412 825 -205 246 122 407 300 422 467 20 219 -113 384 -353 435 -64 14 -199 18 -269 8z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--gotur-white, #fff);
}
.destination-card-one__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 106px;
  width: 129px;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 134.000000 109.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,109.000000) scale(0.100000,-0.100000)" > <path d="M617 1070 c-283 -60 -535 -288 -602 -545 -51 -196 45 -410 216 -483 180 -77 415 -46 679 89 252 129 410 308 427 483 7 78 -10 172 -42 237 -97 190 -381 282 -678 219z m338 -5 c110 -20 210 -71 273 -140 115 -125 133 -322 45 -473 -141 -241 -579 -462 -871 -439 -218 17 -349 134 -385 343 -38 219 146 506 408 637 157 78 348 104 530 72z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 134.000000 109.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,109.000000) scale(0.100000,-0.100000)" > <path d="M617 1070 c-283 -60 -535 -288 -602 -545 -51 -196 45 -410 216 -483 180 -77 415 -46 679 89 252 129 410 308 427 483 7 78 -10 172 -42 237 -97 190 -381 282 -678 219z m338 -5 c110 -20 210 -71 273 -140 115 -125 133 -322 45 -473 -141 -241 -579 -462 -871 -439 -218 17 -349 134 -385 343 -38 219 146 506 408 637 157 78 348 104 530 72z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--gotur-white, #fff);
}
.destination-card-one__title {
  transform: rotate(-15deg);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  text-transform: capitalize;
  color: var(--gotur-primary, #F7921E);
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  position: relative;
}
.destination-card-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.destination-card-one__title a:hover {
  background-size: 100% 1px;
}
.destination-card-one:hover .destination-card-one__overly {
  opacity: 1;
  transform: translateY(0);
}
.destination-card-one:hover .destination-card-one__thumb {
  border-color: var(--gotur-primary, #F7921E);
}
.destination-card-one:hover img {
  transform: scale(1.1);
}
.destination-card-one:hover .destination-card-one__content::before, .destination-card-one:hover .destination-card-one__content::after {
  background-color: var(--gotur-primary, #F7921E);
}
.destination-card-one:hover .destination-card-one__title {
  color: var(--gotur-white, #fff);
}

/*****Destination Two*****/
.destination-card-two {
  position: relative;
  z-index: 1;
}
.destination-card-two__thumb {
  overflow: hidden;
  border-radius: 0px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.destination-card-two__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.destination-card-two__thumb .destination-card-two__overly {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.6);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  z-index: 1;
  transition: opacity 500ms ease, transform 500ms ease;
}
.destination-card-two__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.destination-card-two__content::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -1px;
  width: 100%;
  height: 138px;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 112.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,112.000000) scale(0.100000,-0.100000)"> <path d="M1767 1073 c-15 -14 -5 -40 30 -78 25 -27 38 -51 40 -73 1 -19 7 -40 14 -48 9 -11 9 -17 -1 -29 -10 -13 -18 -10 -54 21 -35 30 -46 35 -76 30 -28 -4 -38 -1 -48 14 -10 17 -10 21 3 26 13 5 12 10 -7 29 -26 25 -65 38 -70 23 -2 -6 -14 -11 -26 -12 -13 0 -27 -7 -31 -15 -5 -8 -16 -11 -24 -8 -9 3 -17 -2 -20 -14 -6 -22 -37 -26 -37 -4 0 18 -5 19 -30 3 -15 -9 -24 -9 -42 0 -23 12 -77 11 -130 -3 -20 -5 -29 -2 -37 13 -6 12 -24 21 -44 24 -33 3 -34 2 -33 -26 0 -16 -4 -31 -10 -33 -16 -6 -64 36 -64 57 0 9 -6 23 -14 29 -19 16 -48 -1 -135 -81 -16 -16 -36 -28 -43 -28 -8 0 -18 -4 -23 -9 -6 -5 -31 -11 -56 -13 -32 -3 -66 -17 -112 -46 -37 -23 -69 -42 -71 -42 -3 0 -26 -20 -50 -45 -50 -49 -66 -55 -66 -25 0 11 5 20 10 20 6 0 10 9 10 19 0 11 -4 23 -10 26 -5 3 -10 -1 -10 -10 0 -17 -37 -35 -57 -28 -8 3 -13 -3 -13 -16 0 -22 -34 -46 -55 -37 -7 2 -16 -1 -19 -9 -2 -7 -24 -18 -48 -24 -38 -9 -39 -10 -7 -7 20 2 42 1 49 -4 20 -13 3 -40 -25 -40 -14 0 -25 -4 -25 -9 0 -12 64 6 68 19 2 6 12 10 23 10 10 0 19 7 19 15 0 18 45 49 60 40 19 -12 10 -33 -18 -43 -20 -7 -31 -20 -38 -42 -7 -25 -18 -35 -47 -45 -44 -15 -69 -34 -61 -46 3 -5 0 -8 -7 -7 -7 2 -19 -10 -27 -26 -12 -23 -12 -32 -1 -52 11 -21 10 -27 -5 -42 -16 -16 -18 -16 -27 0 -14 26 -42 12 -28 -14 12 -22 5 -32 -28 -43 -18 -5 -22 -3 -17 9 3 9 1 16 -5 16 -6 0 -11 -4 -11 -10 0 -5 -5 -10 -11 -10 -7 0 -10 12 -7 30 6 37 -4 39 -22 3 -8 -16 -23 -41 -35 -58 -11 -16 -18 -32 -15 -35 3 -3 -10 -12 -27 -20 l-33 -15 0 -112 0 -113 1500 0 1500 0 0 46 c0 41 -4 51 -36 78 -29 25 -37 40 -40 71 -1 22 2 45 8 53 6 7 9 13 7 15 -41 23 -79 38 -87 33 -16 -10 -62 12 -62 29 0 8 8 15 18 15 13 0 17 8 15 32 -1 18 -2 41 -2 51 -1 9 -6 17 -12 17 -6 0 -8 -8 -4 -19 9 -28 -28 -37 -71 -16 -27 13 -34 22 -34 45 0 16 -4 32 -10 35 -5 3 -10 -3 -10 -14 0 -15 -4 -19 -17 -14 -10 4 -21 11 -25 17 -4 6 -15 6 -32 -2 -24 -11 -30 -8 -73 34 l-47 46 57 -7 c40 -5 57 -4 57 4 0 6 -6 11 -14 11 -8 0 -23 11 -34 25 -21 27 -48 33 -54 13 -3 -8 -23 -1 -59 21 -68 42 -66 40 -49 51 11 7 12 14 2 34 -9 21 -9 27 6 35 13 8 14 12 5 22 -16 16 -39 5 -55 -28 -18 -37 -32 -35 -36 5 -3 29 0 33 27 38 25 5 31 11 31 33 0 15 5 32 12 39 9 9 7 12 -10 12 -12 0 -22 -6 -22 -14 0 -8 -10 -16 -22 -18 -15 -2 -22 -9 -22 -21 2 -23 -23 -22 -31 2 -4 12 -12 17 -24 14 -11 -3 -24 3 -32 15 -16 22 -103 44 -139 35 -21 -6 -22 -4 -16 20 6 26 5 27 -38 27 -34 0 -48 5 -56 19 -12 24 -66 52 -86 44 -7 -3 -14 -1 -14 5 0 5 -9 12 -20 15 -11 3 -23 13 -27 23 -8 21 -35 54 -44 54 -3 0 -9 -3 -12 -7z m-723 -98 c3 -9 -1 -18 -10 -22 -19 -7 -28 2 -21 22 8 19 23 19 31 0z m859 -55 c14 -11 32 -20 40 -20 18 0 29 -24 21 -45 -5 -13 -9 -13 -22 -3 -8 7 -25 11 -37 10 -15 -2 -28 5 -39 22 -33 52 -11 74 37 36z m-1018 -75 c0 -16 -6 -30 -12 -32 -9 -3 -13 7 -13 32 0 25 4 35 13 33 6 -3 12 -17 12 -33z m1284 1 c8 -10 9 -16 1 -21 -13 -8 -30 3 -30 21 0 18 14 18 29 0z m101 -92 c0 -22 -2 -25 -15 -14 -12 10 -13 16 -4 26 16 20 19 18 19 -12z m173 -151 c40 -31 46 -43 20 -43 -22 0 -83 42 -83 58 0 20 24 14 63 -15z m-2116 -150 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z"/> <path d="M771 1007 c7 -15 16 -27 20 -27 4 0 10 -11 13 -24 3 -14 15 -27 25 -31 26 -8 71 4 68 18 -1 6 8 16 21 22 38 17 18 30 -51 31 -51 1 -72 5 -88 20 -21 19 -21 19 -8 -9z m94 -37 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z"/> <path d="M360 843 c0 -11 35 -42 68 -61 18 -10 22 -10 22 1 0 6 -10 18 -22 26 -13 8 -33 21 -45 29 -13 8 -23 10 -23 5z"/> <path d="M2410 810 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10 -4 -10 -10z"/> <path d="M2530 700 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10 -4 -10 -10z"/> <path d="M2455 650 c-3 -5 1 -10 10 -10 9 0 13 5 10 10 -3 6 -8 10 -10 10 -2 0 -7 -4 -10 -10z"/> <path d="M2631 641 c-8 -6 -9 -11 -3 -15 6 -3 14 -1 17 5 9 14 2 20 -14 10z"/> <path d="M2720 541 c0 -17 29 -33 51 -26 11 4 17 10 13 15 -14 12 -64 21 -64 11z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 112.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,112.000000) scale(0.100000,-0.100000)"> <path d="M1767 1073 c-15 -14 -5 -40 30 -78 25 -27 38 -51 40 -73 1 -19 7 -40 14 -48 9 -11 9 -17 -1 -29 -10 -13 -18 -10 -54 21 -35 30 -46 35 -76 30 -28 -4 -38 -1 -48 14 -10 17 -10 21 3 26 13 5 12 10 -7 29 -26 25 -65 38 -70 23 -2 -6 -14 -11 -26 -12 -13 0 -27 -7 -31 -15 -5 -8 -16 -11 -24 -8 -9 3 -17 -2 -20 -14 -6 -22 -37 -26 -37 -4 0 18 -5 19 -30 3 -15 -9 -24 -9 -42 0 -23 12 -77 11 -130 -3 -20 -5 -29 -2 -37 13 -6 12 -24 21 -44 24 -33 3 -34 2 -33 -26 0 -16 -4 -31 -10 -33 -16 -6 -64 36 -64 57 0 9 -6 23 -14 29 -19 16 -48 -1 -135 -81 -16 -16 -36 -28 -43 -28 -8 0 -18 -4 -23 -9 -6 -5 -31 -11 -56 -13 -32 -3 -66 -17 -112 -46 -37 -23 -69 -42 -71 -42 -3 0 -26 -20 -50 -45 -50 -49 -66 -55 -66 -25 0 11 5 20 10 20 6 0 10 9 10 19 0 11 -4 23 -10 26 -5 3 -10 -1 -10 -10 0 -17 -37 -35 -57 -28 -8 3 -13 -3 -13 -16 0 -22 -34 -46 -55 -37 -7 2 -16 -1 -19 -9 -2 -7 -24 -18 -48 -24 -38 -9 -39 -10 -7 -7 20 2 42 1 49 -4 20 -13 3 -40 -25 -40 -14 0 -25 -4 -25 -9 0 -12 64 6 68 19 2 6 12 10 23 10 10 0 19 7 19 15 0 18 45 49 60 40 19 -12 10 -33 -18 -43 -20 -7 -31 -20 -38 -42 -7 -25 -18 -35 -47 -45 -44 -15 -69 -34 -61 -46 3 -5 0 -8 -7 -7 -7 2 -19 -10 -27 -26 -12 -23 -12 -32 -1 -52 11 -21 10 -27 -5 -42 -16 -16 -18 -16 -27 0 -14 26 -42 12 -28 -14 12 -22 5 -32 -28 -43 -18 -5 -22 -3 -17 9 3 9 1 16 -5 16 -6 0 -11 -4 -11 -10 0 -5 -5 -10 -11 -10 -7 0 -10 12 -7 30 6 37 -4 39 -22 3 -8 -16 -23 -41 -35 -58 -11 -16 -18 -32 -15 -35 3 -3 -10 -12 -27 -20 l-33 -15 0 -112 0 -113 1500 0 1500 0 0 46 c0 41 -4 51 -36 78 -29 25 -37 40 -40 71 -1 22 2 45 8 53 6 7 9 13 7 15 -41 23 -79 38 -87 33 -16 -10 -62 12 -62 29 0 8 8 15 18 15 13 0 17 8 15 32 -1 18 -2 41 -2 51 -1 9 -6 17 -12 17 -6 0 -8 -8 -4 -19 9 -28 -28 -37 -71 -16 -27 13 -34 22 -34 45 0 16 -4 32 -10 35 -5 3 -10 -3 -10 -14 0 -15 -4 -19 -17 -14 -10 4 -21 11 -25 17 -4 6 -15 6 -32 -2 -24 -11 -30 -8 -73 34 l-47 46 57 -7 c40 -5 57 -4 57 4 0 6 -6 11 -14 11 -8 0 -23 11 -34 25 -21 27 -48 33 -54 13 -3 -8 -23 -1 -59 21 -68 42 -66 40 -49 51 11 7 12 14 2 34 -9 21 -9 27 6 35 13 8 14 12 5 22 -16 16 -39 5 -55 -28 -18 -37 -32 -35 -36 5 -3 29 0 33 27 38 25 5 31 11 31 33 0 15 5 32 12 39 9 9 7 12 -10 12 -12 0 -22 -6 -22 -14 0 -8 -10 -16 -22 -18 -15 -2 -22 -9 -22 -21 2 -23 -23 -22 -31 2 -4 12 -12 17 -24 14 -11 -3 -24 3 -32 15 -16 22 -103 44 -139 35 -21 -6 -22 -4 -16 20 6 26 5 27 -38 27 -34 0 -48 5 -56 19 -12 24 -66 52 -86 44 -7 -3 -14 -1 -14 5 0 5 -9 12 -20 15 -11 3 -23 13 -27 23 -8 21 -35 54 -44 54 -3 0 -9 -3 -12 -7z m-723 -98 c3 -9 -1 -18 -10 -22 -19 -7 -28 2 -21 22 8 19 23 19 31 0z m859 -55 c14 -11 32 -20 40 -20 18 0 29 -24 21 -45 -5 -13 -9 -13 -22 -3 -8 7 -25 11 -37 10 -15 -2 -28 5 -39 22 -33 52 -11 74 37 36z m-1018 -75 c0 -16 -6 -30 -12 -32 -9 -3 -13 7 -13 32 0 25 4 35 13 33 6 -3 12 -17 12 -33z m1284 1 c8 -10 9 -16 1 -21 -13 -8 -30 3 -30 21 0 18 14 18 29 0z m101 -92 c0 -22 -2 -25 -15 -14 -12 10 -13 16 -4 26 16 20 19 18 19 -12z m173 -151 c40 -31 46 -43 20 -43 -22 0 -83 42 -83 58 0 20 24 14 63 -15z m-2116 -150 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z"/> <path d="M771 1007 c7 -15 16 -27 20 -27 4 0 10 -11 13 -24 3 -14 15 -27 25 -31 26 -8 71 4 68 18 -1 6 8 16 21 22 38 17 18 30 -51 31 -51 1 -72 5 -88 20 -21 19 -21 19 -8 -9z m94 -37 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z"/> <path d="M360 843 c0 -11 35 -42 68 -61 18 -10 22 -10 22 1 0 6 -10 18 -22 26 -13 8 -33 21 -45 29 -13 8 -23 10 -23 5z"/> <path d="M2410 810 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10 -4 -10 -10z"/> <path d="M2530 700 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10 -4 -10 -10z"/> <path d="M2455 650 c-3 -5 1 -10 10 -10 9 0 13 5 10 10 -3 6 -8 10 -10 10 -2 0 -7 -4 -10 -10z"/> <path d="M2631 641 c-8 -6 -9 -11 -3 -15 6 -3 14 -1 17 5 9 14 2 20 -14 10z"/> <path d="M2720 541 c0 -17 29 -33 51 -26 11 4 17 10 13 15 -14 12 -64 21 -64 11z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background-color: var(--gotur-base, #63AB45);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .destination-card-two__content::after {
    height: 108px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .destination-card-two__content::after {
    height: 123px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .destination-card-two__content::after {
    height: 90px;
  }
}
@media (max-width: 402px) {
  .destination-card-two__content::after {
    height: 90px;
  }
}
.destination-card-two__title {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  position: relative;
  padding-bottom: 36px;
  margin-bottom: 0;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .destination-card-two__title {
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .destination-card-two__title {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .destination-card-two__title {
    padding-bottom: 15px;
  }
}
@media (max-width: 402px) {
  .destination-card-two__title {
    font-size: 30px;
    padding-bottom: 15px;
  }
}
.destination-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.destination-card-two__title a:hover {
  background-size: 100% 1px;
}
.destination-card-two::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0.9);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.destination-card-two:hover .destination-card-two__overly {
  opacity: 1;
  transform: translateY(0);
}
.destination-card-two:hover img {
  transform: scale(1.1);
}
.destination-card-two:hover::before {
  transform: scale(1);
}

.after-color-1 .destination-card-two__content::after {
  background-color: var(--gotur-base, #63AB45);
}

.after-color-2 .destination-card-two__content::after {
  background-color: var(--gotur-primary, #F7921E);
}

.after-color-3 .destination-card-two__content::after {
  background-color: #6045AB;
}

.after-color-4 .destination-card-two__content::after {
  background-color: #BF6E37;
}

.after-color-5 .destination-card-two__content::after {
  background-color: #4315C8;
}

.after-color-6 .destination-card-two__content::after {
  background-color: #4DB8DC;
}

/*****Destination Card*****/
.destinations-card {
  position: relative;
}
.destinations-card__thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 135px 0px 135px 135px;
  border: 4px solid transparent;
  transition: all 0.4s ease-in-out;
}
.destinations-card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.destinations-card__group-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 60px;
  left: 10%;
  transform: translate(18%, 100px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.destinations-card__group-card__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  padding: 5.5px 10.5px;
  border-radius: 24px;
  background-color: var(--gotur-primary, #F7921E);
  margin-bottom: 0;
}
.destinations-card__group-card__text:last-child {
  background-color: var(--gotur-base, #63AB45);
}
.destinations-card__title {
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-primary, #F7921E);
  text-align: center;
}
.destinations-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.destinations-card__title a:hover {
  background-size: 100% 1px;
}
.destinations-card:hover .destinations-card__thumb {
  border-radius: 135px;
  border-color: var(--gotur-primary, #F7921E);
}
.destinations-card:hover .destinations-card__thumb img {
  transform: scale(1.1);
}
.destinations-card:hover .destinations-card__group-card {
  transform: translate(18%, 0px);
  opacity: 1;
}

/*****Destination Card Two*****/
.destinations-card-two {
  position: relative;
}
.destinations-card-two__thumb {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 122px;
  transition: all 0.4s ease-in-out;
}
.destinations-card-two__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.destinations-card-two__hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.destinations-card-two__hover img {
  object-fit: cover;
  width: 100%;
  transform: scale(1.02);
}
@media (max-width: 575px) {
  .destinations-card-two__hover {
    display: none;
  }
}
.destinations-card-two__title {
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 70%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-primary, #F7921E);
  text-align: center;
}
.destinations-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.destinations-card-two__title a:hover {
  background-size: 100% 1px;
}
.destinations-card-two:hover .destinations-card-two__thumb img {
  transform: scale(1.1);
}
.destinations-card-two:hover .destinations-card-two__hover {
  opacity: 1;
  visibility: visible;
}
.destinations-card-two:hover .destinations-card-two__hover img {
  transform: scale(1.02);
}

.popular-destination {
  position: relative;
}
.popular-destination .gutter-x-22 {
  --bs-gutter-x: 22px;
}
.popular-destination .gutter-y-22 {
  --bs-gutter-y: 22px;
}
.popular-destination__element {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.popular-destination__element::after {
  top: 0;
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .popular-destination__element {
    display: block;
  }
}

/*****Destinations Two*****/
.destinations-two {
  position: relative;
  z-index: 1;
}
.destinations-two__top {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .destinations-two__top {
    padding-bottom: 50px;
  }
}
.destinations-two__top .sec-title {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .destinations-two__top .sec-title {
    padding-bottom: 0;
  }
}
.destinations-two__bottom__nav {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
@media (min-width: 992px) {
  .destinations-two__bottom__nav {
    justify-content: end;
  }
}
.destinations-two__bottom__nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}
.destinations-two__bottom__nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.destinations-two__bottom__nav button:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.destinations-two__bottom__nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.destinations-two .container-fluid {
  max-width: 1570px;
  margin-left: auto;
  margin-right: 0;
}
.destinations-two--two {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
}
.destinations-two__element {
  position: absolute;
  left: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.destinations-two__element::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: -40%;
  opacity: 0.4;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .destinations-two__element {
    display: block;
  }
}

/*****Destination Three*****/
.destination-three {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  z-index: 1;
}
.destination-three__carousel__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.destination-three__carousel__item img {
  object-fit: cover;
  width: 100%;
}
.destination-three__carousel__item__group {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-120px);
  transition: transform 600ms ease, opacity 600ms ease;
}
.destination-three__carousel__item__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  padding: 5.5px 10.5px;
  border-radius: 24px;
  background-color: var(--gotur-primary, #F7921E);
  margin-bottom: 0;
}
.destination-three__carousel__item__text:last-child {
  background-color: var(--gotur-base, #63AB45);
}
.destination-three__carousel__item__btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gotur-primary, #F7921E);
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--gotur-white, #fff);
  border-radius: 8px;
  opacity: 0;
  transform: translateX(120px);
  transition: transform 600ms ease, opacity 600ms ease;
}
.destination-three__carousel__item__btn:hover {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-primary, #F7921E);
}
.destination-three__carousel__item__btn:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.destination-three__carousel .active .destination-three__carousel__item__group {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 500ms;
}
.destination-three__carousel .active .destination-three__carousel__item__btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 500ms;
}
.destination-three__carousel__thumb {
  margin-top: 18px;
  margin-left: -8px;
  margin-right: -8px;
}
.destination-three__carousel__thumb .active img {
  border-color: var(--gotur-primary, #F7921E);
}
.destination-three__carousel__thumb .slick-slide {
  text-align: center;
  margin-right: 8px;
  margin-left: 8px;
}
.destination-three__carousel__thumb__item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.destination-three__carousel__thumb__item img {
  transition: all 0.4s ease-in-out;
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
  border: 2px solid transparent;
}
.destination-three__list__item {
  text-align: center;
  background: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  padding: 36px 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.destination-three__list__item__hover-one {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.destination-three__list__item__hover-one span {
  display: block;
}
.destination-three__list__item__hover-one span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 41px;
  background: var(--gotur-primary, #F7921E);
  border-radius: 50px 0px 12px;
  transform: rotate(180deg);
  z-index: -1;
}
.destination-three__list__item__hover-one span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 43px;
  background: var(--gotur-white, #fff);
  opacity: 0.3;
  border-radius: 50px 0px 12px;
  transform: rotate(180deg);
  z-index: -2;
}
.destination-three__list__item__hover-two {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.destination-three__list__item__hover-two span {
  display: block;
}
.destination-three__list__item__hover-two span:first-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 41px;
  background: var(--gotur-primary, #F7921E);
  border-radius: 50px 0px 12px;
  z-index: -1;
}
.destination-three__list__item__hover-two span:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 43px;
  background: var(--gotur-white, #fff);
  opacity: 0.3;
  border-radius: 50px 0px 12px;
  z-index: -2;
}
.destination-three__list__item.active-btn, .destination-three__list__item:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.destination-three__list__item.active-btn .destination-three__list__item__hover-one,
.destination-three__list__item.active-btn .destination-three__list__item__hover-two, .destination-three__list__item:hover .destination-three__list__item__hover-one,
.destination-three__list__item:hover .destination-three__list__item__hover-two {
  opacity: 1;
}
.destination-three__list__item + .destination-three__list__item {
  margin-top: 16px;
}
.destination-three__button {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 119px;
  position: relative;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.destination-three__button::after {
  content: "";
  position: absolute;
  background-color: transparent;
  border-radius: 12px;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--gotur-white, #fff);
}
.destination-three__button::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .destination-three__left {
    margin-right: -40px;
  }
}
@media (min-width: 992px) {
  .destination-three .tabs-content {
    margin-left: 55px;
  }
}
.destination-three__element {
  position: absolute;
  left: 12%;
  top: 10%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) {
  .destination-three__element {
    display: block;
  }
}
.destination-three__element-two {
  position: absolute;
  right: 0;
  bottom: 6%;
  animation: topToBottom 4s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.destination-three__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  opacity: 0.35;
  filter: blur(150px);
  right: 0;
}
@media (min-width: 1200px) {
  .destination-three__element-two {
    display: block;
  }
}
.destination-three::after {
  content: "";
  opacity: 0.7;
  filter: blur(150px);
  width: 308px;
  position: absolute;
  background-color: var(--gotur-base, #63AB45);
  height: 308px;
  border-radius: 50%;
  z-index: -1;
  left: -6%;
  bottom: 30%;
  display: none;
}
@media (min-width: 1200px) {
  .destination-three::after {
    display: block;
  }
}
.destination-three .thumbnail-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .destination-three .thumbnail-container {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .destination-three .thumbnail-container {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/*****Destination Filter*****/
.destination-filter {
  position: relative;
  z-index: 1;
  background-color: var(--gotur-gray, #F3F8F6);
}
.destination-filter .sec-title {
  padding-bottom: 22px;
}
.destination-filter__top {
  padding-bottom: 35px;
}
.destination-filter__top__text {
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  text-align: center;
  margin-bottom: -5px;
}
.destination-filter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}
.destination-filter__btn .gotur-btn {
  background-color: var(--gotur-black, #1D231F);
  padding: 6px 10px;
}
.destination-filter__btn .gotur-btn:hover {
  background-color: transparent;
}
.destination-filter__btn .active-btn {
  background-color: transparent;
}
.destination-filter__btn .active-btn::before {
  width: 100%;
  right: 0;
  left: auto;
}
.destination-filter__btn .active-btn::after {
  width: 100%;
  left: 0;
  right: auto;
}
.destination-filter__element {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  animation: topToBottom 4000ms ease-in-out infinite;
}
.destination-filter__element-two {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  animation: leftToRight 4000ms ease-in-out infinite;
}

/*****Destination One*****/
.destination-carousel--two .destination-carousel__item {
  border-radius: 0px !important;
}
.destination-carousel--two .destination-carousel__item span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -300%);
  font-style: normal;
  font-weight: 800;
  font-size: 200px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gotur-white, #fff);
  opacity: 0;
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (max-width: 1199px) {
  .destination-carousel--two .destination-carousel__item span {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .destination-carousel--two .destination-carousel__item span {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .destination-carousel--two .destination-carousel__item span {
    font-size: 50px;
  }
}
.destination-carousel--two .gotur-owl__carousel--basic-nav.owl-carousel .owl-nav {
  margin-bottom: 0 !important;
}
.destination-carousel--two .active .destination-carousel__item span {
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition-delay: 1000ms;
}
.destination-carousel .destination-carousel__item {
  border-radius: 30px;
  overflow: hidden;
}
.destination-carousel .destination-carousel__item img {
  object-fit: cover;
  width: 100%;
}
.destination-carousel .gotur-owl__carousel--basic-nav.owl-carousel .owl-nav {
  margin-top: -40px !important;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.destination-carousel .gotur-owl__carousel--basic-nav.owl-carousel .owl-nav::after {
  position: absolute;
  top: -14px;
  content: "";
  z-index: -1;
  width: 230px;
  height: 60px;
  background-color: var(--gotur-white, #fff);
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 251.000000 60.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,60.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M525 556 c-100 -47 -157 -135 -169 -258 -14 -150 -78 -239 -203 -284 -32 -11 136 -13 1132 -13 1029 0 1164 2 1124 15 -59 18 -140 90 -169 149 -12 25 -25 78 -29 125 -15 141 -90 246 -201 279 -26 8 -245 11 -736 11 l-699 0 -50 -24z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 251.000000 60.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,60.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M525 556 c-100 -47 -157 -135 -169 -258 -14 -150 -78 -239 -203 -284 -32 -11 136 -13 1132 -13 1029 0 1164 2 1124 15 -59 18 -140 90 -169 149 -12 25 -25 78 -29 125 -15 141 -90 246 -201 279 -26 8 -245 11 -736 11 l-699 0 -50 -24z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.destination-details {
  position: relative;
}
.destination-details__content__item + .destination-details__content__item {
  margin-top: 45px;
}
.destination-details__content__item + .destination-details__content__thumb {
  margin-top: 40px;
}
.destination-details__content__thumb + .destination-details__content__faq {
  margin-top: 50px;
}
.destination-details__content__thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.destination-details__content__faq .destination-details__title {
  margin-bottom: 30px;
}
.destination-details__title {
  margin-top: -4px;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.destination-details__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: -4px;
  padding-bottom: 0;
}
.destination-details__sidebar__item + .destination-details__sidebar__item {
  margin-top: 30px;
}
.destination-details__sidebar__item-list {
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 6px;
  padding: 30px;
}
.destination-details__sidebar__item-map {
  border-radius: 6px;
  overflow: hidden;
}
.destination-details__sidebar__item-map iframe {
  width: 100%;
  height: 345px;
}
.destination-details__sidebar__title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 20px;
  padding-bottom: 0;
  text-shadow: 0 0 0.1px currentColor;
}
.destination-details__sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.destination-details__sidebar__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.destination-details__sidebar__list li p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  margin-bottom: -3px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
}
.destination-details__sidebar__list li p i {
  color: var(--gotur-base, #63AB45);
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}
.destination-details__sidebar__list li span {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 178%;
  color: var(--gotur-base, #63AB45);
}
.destination-details__sidebar__list li:hover p i {
  color: var(--gotur-black, #1D231F);
}
.destination-details__sidebar__list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-top__item {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  padding: 40px 45px;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
.contact-top__item__icon {
  font-size: 60px;
  color: var(--gotur-primary, #F7921E);
  line-height: 1;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .contact-top__item__icon {
    font-size: 80px;
  }
}
.contact-top__item__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  margin-bottom: 7px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
}
@media (min-width: 1200px) {
  .contact-top__item__title {
    font-size: 24px;
  }
}
.contact-top__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-top__item__title a:hover {
  background-size: 100% 1px;
}
.contact-top__item__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  margin-bottom: -5px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  transition: all 0.4s ease-in-out;
}
.contact-top__item::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  bottom: 12px;
  right: 16px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  z-index: -1;
}
.contact-top__item::before {
  content: "";
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--gotur-base, #63AB45);
  z-index: -2;
}
.contact-top__item:hover .contact-top__item__icon,
.contact-top__item:hover .contact-top__item__title,
.contact-top__item:hover .contact-top__item__text {
  color: var(--gotur-white, #fff);
}
.contact-top__item:hover::before {
  width: 100%;
  left: auto;
  right: 0;
}

@media (min-width: 1200px) {
  .contact-page__map {
    margin-right: 30px;
  }
}
.contact-page__map iframe {
  width: 100%;
  height: 573px;
  border-radius: 16px;
}
.contact-page__title {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: var(--gotur-black, #1D231F);
}
@media (min-width: 768px) {
  .contact-page__title {
    font-size: 50px;
  }
}
.contact-page__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
  margin-bottom: 25px;
  padding-bottom: 0;
}
.contact-page .comments-form__form .form-one__group {
  grid-gap: 20px 30px;
}
.contact-page .comments-form__form .form-one__control label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.contact-page .comments-form__form .form-one__control input, .contact-page .comments-form__form .form-one__control textarea {
  border-radius: 6px;
  padding-left: 20px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  background-color: var(--gotur-white, #fff);
}
.contact-page .comments-form__form .form-one__control textarea {
  height: 200px;
}
.contact-page .comments-form__form button i {
  margin-left: 10px;
  line-height: 1;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
/****CTA Two****/
.cta-two {
  max-width: 1680px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1680px) {
  .cta-two .container {
    max-width: 1420px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 30px;
}
.cta-two__thumb {
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 185px;
}
@media (max-width: 1199px) {
  .cta-two__thumb {
    left: 0px;
  }
}
@media (max-width: 991px) {
  .cta-two__thumb {
    display: none;
  }
}
.cta-two__thumb__item {
  animation: leftToRight 3s ease-in-out infinite;
}
.cta-two__thumb img {
  padding-left: 20px;
}
.cta-two__thumb__element {
  position: absolute;
  width: 562px;
  height: 534px;
  bottom: 0;
  background-color: var(--gotur-primary, #F7921E);
  left: -50px;
  z-index: -1;
  border-radius: 1000px 1000px 0 0;
}
.cta-two__thumb__element::after {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  border-radius: 1000px 1000px 0 0;
  bottom: 0;
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.3);
  animation: scale 4s ease-in-out infinite;
}
.cta-two__thumb__popup {
  position: absolute;
  top: 0;
  right: 0;
  animation: scale 4.5s ease-in-out infinite;
}
.cta-two__element {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  z-index: -1;
}
@media (max-width: 991px) {
  .cta-two__element {
    display: none;
  }
}
.cta-two__content {
  padding: 100px 0px 100px 100px;
}
@media (max-width: 1199px) {
  .cta-two__content {
    padding: 100px 0px 100px 0px;
  }
}
.cta-two__content__inner {
  margin-left: auto;
  margin-right: 0;
  max-width: 550px;
  width: 100%;
  position: relative;
  background-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.9);
  border-radius: 10px;
  padding: 53px 50px 59px;
}
@media (max-width: 991px) {
  .cta-two__content__inner {
    max-width: 100%;
  }
}
.cta-two__content .sec-title {
  padding-bottom: 20px;
}
.cta-two__content .sec-title__tagline::after {
  display: none;
}
.cta-two__content .sec-title__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 167%;
}
.cta-two__btn {
  text-align: center;
}
.cta-two__btn a {
  border: 1px solid var(--gotur-base, #63AB45);
  background-color: transparent;
  color: var(--gotur-base, #63AB45);
}
.cta-two__btn a .icon {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.cta-two__btn a:hover {
  color: var(--gotur-white, #fff);
  border-color: transparent;
}

/******* Time Action*******/
.time-wepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .time-wepper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.time-wepper__item {
  width: 85px;
  height: 85px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 6px;
  background-color: var(--gotur-base, #63AB45);
}
@media (max-width: 500px) {
  .time-wepper__item {
    flex: 45%;
    width: 50%;
  }
}
.time-wepper__item h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 33px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  color: var(--gotur-white, #fff);
  margin-bottom: 0;
  padding-bottom: 0;
}
.time-wepper__item__text {
  padding-top: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  color: var(--gotur-white, #fff);
  margin-bottom: 0;
  padding-bottom: 0;
  border-top: 1px solid rgba(230, 247, 252, 0.2);
  display: block;
}

/****CTA Three****/
.cta-three {
  position: relative;
  z-index: 1;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  overflow: hidden;
}
.cta-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  mix-blend-mode: screen;
  border-radius: 30px;
}
.cta-three__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gotur-base, #63AB45);
  mix-blend-mode: screen;
  z-index: -1;
}
.cta-three__inner {
  position: relative;
  z-index: 1;
}
.cta-three__left {
  padding: 100px 0px 80px 85px;
}
@media (max-width: 991px) {
  .cta-three__left {
    padding: 80px 0px 80px 0px;
  }
}
@media (max-width: 767px) {
  .cta-three__left {
    padding: 60px 0px 60px 0px;
  }
}
.cta-three__left .sec-title {
  padding-bottom: 22px;
}
.cta-three__left .sec-title .sec-title__tagline::after {
  background-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.15);
}
.cta-three__left .sec-title .sec-title__tagline,
.cta-three__left .sec-title .sec-title__title {
  color: var(--gotur-white, #fff);
}
.cta-three__top__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 42px;
  padding-bottom: 0;
  color: var(--gotur-white, #fff);
  max-width: 545px;
}
.cta-three__form {
  max-width: 370px;
  width: 100%;
}
.cta-three__form .form-group__form {
  margin-bottom: 0;
}
.cta-three__right::after {
  content: "";
  width: 476px;
  height: 476px;
  position: absolute;
  bottom: 40px;
  right: 0;
  border-radius: 50%;
  background-color: var(--gotur-primary, #F7921E);
  z-index: -2;
  right: 100px;
  animation: scale 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .cta-three__right::after {
    display: none;
  }
}
.cta-three__thumb {
  text-align: end;
  position: absolute;
  bottom: 0;
  right: 181px;
  animation: leftToRight 3.5s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .cta-three__thumb {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .cta-three__thumb {
    display: none;
  }
}
.cta-three__thumb-one {
  position: absolute;
  top: 35%;
  right: 32%;
}
@media (max-width: 1199px) {
  .cta-three__thumb-one {
    right: 27%;
  }
}
@media (max-width: 991px) {
  .cta-three__thumb-one {
    display: none;
  }
}
.cta-three__thumb-two {
  animation: leftToRight 3.5s ease-in-out infinite;
  position: absolute;
  bottom: 0%;
  right: 25%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cta-three__thumb-two {
    right: 14%;
  }
}
@media (max-width: 991px) {
  .cta-three__thumb-two {
    display: none;
  }
}
.cta-three__thumb-two img {
  border: 10px solid var(--gotur-white, #fff);
  border-radius: 8px;
}
.cta-three__shape {
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: -3;
  opacity: 0.1;
}
.cta-three__shape-two {
  position: absolute;
  top: 35%;
  right: 32%;
  z-index: -3;
  animation: leftToRight 3s ease-in-out infinite;
}
@media (max-width: 767px) {
  .cta-three__shape-two {
    display: none;
  }
}

/****CTA Four****/
.cta-four {
  position: relative;
  z-index: 1;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--gotur-base, #63AB45);
}
.cta-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 15px);
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 30px;
  animation: leftToRight 2s linear infinite;
}
.cta-four__inner {
  position: relative;
  z-index: 1;
}
.cta-four__content {
  padding: 80px 0px 240px 65px;
}
@media (max-width: 991px) {
  .cta-four__content {
    padding: 60px 0px 40px 60px;
  }
}
@media (max-width: 767px) {
  .cta-four__content {
    padding: 60px 0px 40px 0px;
  }
}
.cta-four__content .sec-title {
  padding-bottom: 38px;
}
.cta-four__content .sec-title__tagline::after {
  background-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.1);
}
.cta-four__content .sec-title__tagline,
.cta-four__content .sec-title__title {
  color: var(--gotur-white, #fff);
}
.cta-four__content__btn .gotur-btn {
  border: 0px solid transparent;
}
.cta-four__content__btn .gotur-btn::after, .cta-four__content__btn .gotur-btn::before {
  background-color: var(--gotur-black, #1D231F);
}
.cta-four__thumb__item {
  position: absolute;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  top: 20%;
  right: 120px;
  transform: translateY(-10%);
  border-radius: 50%;
}
.cta-four__thumb__item img {
  border-radius: 50%;
  border: 10px solid var(--gotur-white, #fff);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cta-four__thumb__item {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .cta-four__thumb__item {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cta-four__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.cta-four__thumb__item-three {
  position: absolute;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  bottom: 7%;
  right: 27%;
  border-radius: 50%;
}
.cta-four__thumb__item-three img {
  border-radius: 50%;
  border: 10px solid var(--gotur-white, #fff);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cta-four__thumb__item-three {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .cta-four__thumb__item-three {
    top: auto;
    right: 60%;
    bottom: 10%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cta-four__thumb__item-three img {
    object-fit: cover;
    width: 100%;
  }
}
.cta-four__thumb__item-two {
  position: absolute;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  top: 5%;
  right: 23%;
  border-radius: 50%;
}
.cta-four__thumb__item-two img {
  border-radius: 50%;
  border: 10px solid var(--gotur-white, #fff);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cta-four__thumb__item-two {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .cta-four__thumb__item-two {
    top: auto;
    right: 23%;
    bottom: 30%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .cta-four__thumb__item-two img {
    object-fit: cover;
    width: 100%;
  }
}

/****CTA Five****/
.cta-five {
  position: relative;
}
.cta-five__inner {
  position: relative;
  z-index: 1;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0px;
  border-radius: 30px;
}
.cta-five__bg {
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.cta-five__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--gotur-black, #1D231F);
  opacity: 0.3;
  border-radius: 30px;
}
.cta-five__funfact {
  background-color: var(--gotur-white, #fff);
  border-radius: 40px;
  padding: 30px;
}
@media (min-width: 1200px) {
  .cta-five__funfact {
    margin-inline-end: 35px;
  }
}
.cta-five__funfact__list {
  display: grid;
  grid-template-columns: auto auto;
  position: relative;
  z-index: 1;
  grid-gap: 100px;
  margin-bottom: 0;
}
.cta-five__funfact__list::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--gotur-border-color, #E5E5E5);
}
.cta-five__funfact__list::before {
  position: absolute;
  top: 0%;
  left: 50%;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gotur-border-color, #E5E5E5);
}
.cta-five__funfact__item {
  text-align: center;
}
.cta-five__funfact__item:nth-child(1), .cta-five__funfact__item:nth-child(2) {
  padding-top: 40px;
}
.cta-five__funfact__item:nth-child(3), .cta-five__funfact__item:nth-child(4) {
  padding-bottom: 30px;
}
.cta-five__funfact__item:hover .cta-five__funfact__icon {
  color: var(--gotur-primary, #F7921E);
  transform: scaleX(-1);
}
.cta-five__funfact__icon {
  font-size: 70px;
  color: var(--gotur-base, #63AB45);
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.cta-five__funfact__count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 139%;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 0;
  padding-bottom: 0;
}
.cta-five__funfact__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  margin-bottom: -6px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.cta-five__shape {
  text-align: end;
}
.cta-five__shape img {
  animation: scale 6s ease-in-out infinite;
}

/*--------------------------------------------------------------
# listing sidebar
--------------------------------------------------------------*/
.listing__sidebar__item {
  background-color: var(--gotur-gray, #F3F8F6);
  border-radius: 8px;
  padding: 30px;
}
.listing__sidebar__item + .listing__sidebar__item {
  margin-top: 30px;
}
.listing__sidebar .listing__sidebar__item__inner + .listing__sidebar__item__inner {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-top: 30px;
  margin-top: 30px;
}
.listing__sidebar__title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  color: var(--gotur-black, #1D231F);
  position: relative;
  z-index: 1;
  margin-top: -5px;
  padding-bottom: 12px;
}
.listing__sidebar__title::after {
  content: "";
  width: 82px;
  height: 2px;
  background: linear-gradient(90deg, #63ab45 4.49%, rgba(99, 171, 69, 0) 94.87%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.listing__sidebar__rating ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -5px;
}
.listing__sidebar__rating ul li {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check {
  position: relative;
  z-index: 1;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check input[type=checkbox] {
  display: none;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.6);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check label a {
  text-decoration: underline;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 1);
  margin-left: 8px;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: -7px;
  background-color: transparent;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check label::after {
  content: "\f00c";
  color: var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  top: -7px;
  border-radius: 4px;
  right: 0;
  line-height: 16px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check label:first-child {
  margin-top: 0;
}
.listing__sidebar__rating ul li .listing__sidebar__rating__check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.listing__sidebar__rating ul li + li {
  margin-top: 3px;
}
.listing__sidebar__rating ul .listing__sidebar__rating__star {
  color: #ffa41b;
  font-size: 14px;
}
.listing__sidebar__rating ul .listing__sidebar__rating__star i {
  color: inherit;
}
.listing__sidebar__rating ul .listing__sidebar__rating__star span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--gotur-text, #595959);
}
.listing__sidebar__amenitie__title {
  margin-bottom: 26px;
}
.listing__sidebar__amenitie ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -5px;
}
.listing__sidebar__amenitie ul li {
  position: relative;
  z-index: 1;
}
.listing__sidebar__amenitie ul li input[type=checkbox] {
  display: none;
}
.listing__sidebar__amenitie ul li label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
.listing__sidebar__amenitie ul li label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 1px;
  background-color: transparent;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.listing__sidebar__amenitie ul li label::after {
  content: "\f00c";
  color: var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 4px;
  right: 0;
  line-height: 16px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
}
.listing__sidebar__amenitie ul li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.listing__sidebar__amenitie ul li + li {
  margin-top: 13px;
}
.listing__sidebar__form .banner-form .banner-form__control {
  padding-right: 0px;
}
.listing__sidebar__form .banner-form .banner-form__control--date::after {
  right: 0;
}
@media (max-width: 1199px) {
  .listing__sidebar__form .banner-form {
    display: block;
  }
}
.listing__sidebar .banner-form .banner-form__control + .banner-form__control {
  padding-top: 15px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.listing__sidebar .banner-form .banner-form__control {
  padding-left: 45px;
  position: relative;
}
.listing__sidebar .banner-form .banner-form__control label {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.listing__sidebar .banner-form .banner-form__control .filter-option-inner-inner {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
}
.listing__sidebar .banner-form .banner-form__control .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: var(--gotur-base, #63AB45);
  font-size: 24px;
}
.listing__sidebar .banner-form .banner-form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.listing__sidebar .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle,
.listing__sidebar .banner-form .banner-form__control input[type=text],
.listing__sidebar .banner-form .banner-form__control input[type=number],
.listing__sidebar .banner-form .banner-form__control input[type=email] {
  width: 100%;
  background-color: transparent;
  padding: 2px 0px 10px 0px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  border: 1px solid transparent !important;
  z-index: 2;
}
.listing__sidebar .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:active, .listing__sidebar .banner-form .banner-form__control .bootstrap-select > .dropdown-toggle:focus,
.listing__sidebar .banner-form .banner-form__control input[type=text]:active,
.listing__sidebar .banner-form .banner-form__control input[type=text]:focus,
.listing__sidebar .banner-form .banner-form__control input[type=number]:active,
.listing__sidebar .banner-form .banner-form__control input[type=number]:focus,
.listing__sidebar .banner-form .banner-form__control input[type=email]:active,
.listing__sidebar .banner-form .banner-form__control input[type=email]:focus {
  outline: none !important;
  border: 1px solid transparent !important;
}
.listing__sidebar .banner-form .banner-form__control .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0 !important;
  vertical-align: 0 !important;
  content: "\e920";
  font-family: "icomoon" !important;
  border-top: 0 !important;
  border-right: 0 !important;
  color: var(--gotur-black, #1D231F);
  font-weight: 600;
  border-bottom: 0 !important;
  border-left: 0 !important;
}
.listing__sidebar .banner-form .banner-form__control .banner-form__qty-minus,
.listing__sidebar .banner-form .banner-form__control .banner-form__qty-plus {
  position: absolute;
  right: 0;
  color: var(--gotur-black, #1D231F);
  font-weight: 700;
  bottom: 16%;
  background-color: transparent;
  border: none;
  font-size: 14px;
  border: 1px solid transparent !important;
  z-index: 1;
}
.listing__sidebar .banner-form .banner-form__control .banner-form__qty-minus {
  top: 16%;
  bottom: auto;
  transform: rotate(180deg);
}
.listing__sidebar .banner-form .banner-form__button {
  padding-left: 0;
}
.listing__sidebar .banner-form .banner-form__button .gotur-btn {
  width: 100%;
  border-radius: 10px;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-two__form__control + .sidebar-two__form__control {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.sidebar-two__form__control {
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar-two__form__control label {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.sidebar-two__form__control input[type=text] {
  width: 100%;
  height: 60px;
  border: none;
  box-shadow: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.sidebar-two__form__control input[type=text]:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.sidebar-two__form__control input[type=text]:focus-visible {
  border: none;
  box-shadow: none;
  outline: none;
}
.sidebar-two__form__control i {
  position: absolute;
  right: 20px;
  transform: translateY(50%);
  line-height: 0;
  font-size: 16px;
  color: var(--gotur-primary, #F7921E);
  top: 50%;
}
.sidebar-two__form__control .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.sidebar-two__form__control .bootstrap-select > .dropdown-toggle {
  padding: 0 30px;
  background-color: var(--gotur-white, #fff);
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--gotur-text, #595959);
  font-size: 13px;
  font-weight: 500;
  height: 50px;
  text-transform: capitalize;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
.sidebar-two__form__control .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.sidebar-two__form__control .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.sidebar-two__form__control .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.sidebar-two__form__control .bootstrap-select .dropdown-menu {
  border: none;
}
.sidebar-two__form__control .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  line-height: 50px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 13px;
  color: var(--gotur-text, #595959);
}
.sidebar-two__form__control .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.sidebar-two__form__control .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 6px 30px;
  color: var(--gotur-text, #595959);
  background-color: var(--gotur-white, #fff);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidebar-two__form__control .bootstrap-select .dropdown-menu > li:hover > a,
.sidebar-two__form__control .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-base, #63AB45);
}
.sidebar-two__form__control--two {
  flex-direction: column;
  justify-content: start;
  align-items: start !important;
}
.sidebar-two__form__control--two .sidebar-two__form__checkbox {
  margin-top: 10px;
}
.sidebar-two__form__control--title {
  padding-top: 20px;
  padding-bottom: 10px;
}
.sidebar-two__form__checkbox {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
}
.sidebar-two__form__checkbox li {
  position: relative;
  z-index: 1;
}
.sidebar-two__form__checkbox li input[type=checkbox] {
  display: none;
}
.sidebar-two__form__checkbox li label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
.sidebar-two__form__checkbox li label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 1px;
  background-color: transparent;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.sidebar-two__form__checkbox li label::after {
  content: "\f00c";
  color: var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 4px;
  right: 0;
  line-height: 16px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
}
.sidebar-two__form__checkbox li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.sidebar-two__form__checkbox li + li {
  margin-top: 13px;
}
.sidebar-two__form__add-list {
  margin-bottom: 20px;
}
.sidebar-two__form__total, .sidebar-two__form__add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  color: #565656;
  font-size: 16px;
}
.sidebar-two__form__total span, .sidebar-two__form__add span {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.sidebar-two__form__total {
  padding-top: 20px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 40px;
}
.sidebar-two__form .gotur-btn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.sidebar-two__form .gotur-btn i {
  margin-left: 6px;
  margin-bottom: -2px;
}

.tour-listing-details__sidebar__item + .tour-listing-details__sidebar__item {
  margin-top: 30px;
}
.tour-listing-details__sidebar__item-box iframe {
  width: 100%;
  height: 350px;
  border-radius: 6px;
}
.tour-listing-details__sidebar__item-checkout {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
}
.tour-listing-details__sidebar__item-form {
  border-radius: 10px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  padding: 30px;
}
.tour-listing-details__sidebar__title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  z-index: 1;
}
.why-choose-one__thumb {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .why-choose-one__thumb {
    margin-right: 40px;
  }
}
.why-choose-one__thumb__item-one {
  overflow: hidden;
  border-radius: 135px 135px 0 0;
}
.why-choose-one__thumb__item-one:last-child {
  margin-top: 30px;
  border-radius: 0 0 135px 135px;
}
.why-choose-one__thumb__item-two {
  border-radius: 135px;
  overflow: hidden;
}
.why-choose-one__thumb img {
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1200px) {
  .why-choose-one__content {
    margin-left: -12px;
  }
}
.why-choose-one__content .sec-title {
  margin-right: -20px;
  padding-bottom: 22px;
}
.why-choose-one__content__text {
  margin-bottom: 32px;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}
.why-choose-one__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 30px 17px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .why-choose-one__list {
    grid-template-columns: auto;
  }
}
.why-choose-one__list__item {
  display: flex;
  align-items: center;
  gap: 17px;
  border-radius: 12px;
  padding: 16px 20px;
  background-color: #EFF7EC;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.why-choose-one__list__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gotur-base, #63AB45);
  transform: translateX(-101%);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.why-choose-one__list__item:hover .why-choose-one__icon {
  color: var(--gotur-white, #fff);
  transform: scaleX(-1);
}
.why-choose-one__list__item:hover .why-choose-one__title {
  color: var(--gotur-white, #fff);
}
.why-choose-one__list__item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gotur-base, #63AB45);
  transform: translateX(0%);
}
.why-choose-one__icon {
  color: var(--gotur-base, #63AB45);
  font-size: 44px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.why-choose-one__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
  margin-bottom: 0;
  padding-bottom: 0;
}
.why-choose-one__element {
  position: absolute;
  left: 0;
  bottom: 10%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.why-choose-one__element::after {
  content: "";
  position: absolute;
  width: 344px;
  height: 344px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
  right: -20%;
  top: -30%;
  opacity: 0.4;
}
@media (min-width: 1200px) {
  .why-choose-one__element {
    display: block;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.about-testimonials {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  z-index: 1;
}
.about-testimonials__left {
  margin-right: -40px;
}
.about-testimonials__thumb {
  position: relative;
  z-index: 1;
}
.about-testimonials__thumb::after, .about-testimonials__thumb::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  background: var(--gotur-primary, #F7921E);
  border-radius: 0px 100px 0px 0px;
  left: 0;
  opacity: 0.2;
}
.about-testimonials__thumb::after {
  left: 10px;
}
.about-testimonials__thumb__item {
  animation: leftToRight 4s ease-in-out infinite;
}
.about-testimonials__carousel {
  position: relative;
}
.about-testimonials__carousel .owl-nav {
  margin-top: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1200px) {
  .about-testimonials__right {
    margin-left: 70px;
  }
}
.about-testimonials .sec-title {
  padding-bottom: 22px;
}
.about-testimonials__star {
  font-size: 20px;
  color: var(--gotur-primary, #F7921E);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 25px;
}
.about-testimonials__star i:last-child {
  color: var(--gotur-border-color, #E5E5E5);
}
.about-testimonials__text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 30px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.about-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-testimonials__author .about-testimonials__author__thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.about-testimonials__author .about-testimonials__author__thumb img {
  object-fit: cover;
  width: 100%;
}
.about-testimonials__content .about-testimonials__title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-testimonials__content span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  display: block;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.about-testimonials .client-carousel {
  padding-bottom: 0;
  padding-top: 120px;
}
.about-testimonials__element-one {
  position: absolute;
  left: 0;
  top: 20%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-testimonials__element-one::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
  right: -20%;
  opacity: 0.5;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media (min-width: 1200px) {
  .about-testimonials__element-one {
    display: block;
  }
}
.about-testimonials__element-two {
  position: absolute;
  right: 0;
  top: 40%;
  animation: topToBottom 3.5s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-testimonials__element-two::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-primary, #F7921E);
  filter: blur(150px);
  z-index: -1;
}
@media (min-width: 1200px) {
  .about-testimonials__element-two {
    display: block;
  }
}
.about-testimonials--two {
  background-color: transparent;
}
@media (min-width: 1200px) {
  .about-testimonials--two .about-testimonials__left {
    margin-left: 0px;
    margin-right: -20px;
  }
}
@media (min-width: 1200px) {
  .about-testimonials--two .about-testimonials__right {
    margin-left: 52px;
  }
}
.about-testimonials--two .about-testimonials__left {
  position: relative;
  z-index: 1;
}
.about-testimonials--two .about-testimonials__thumb__item {
  text-align: center;
  margin-top: -30px;
  margin-left: -35px;
  margin-bottom: -30px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 450px) {
  .about-testimonials--two .about-testimonials__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.about-testimonials--two .about-testimonials__thumb::after, .about-testimonials--two .about-testimonials__thumb::before {
  display: none;
}
.about-testimonials--two .about-testimonials__thumb .about-testimonials__thumb__shape {
  position: absolute;
  bottom: 0;
  left: -35px;
  z-index: -1;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 450px) {
  .about-testimonials--two .about-testimonials__thumb .about-testimonials__thumb__shape img {
    object-fit: cover;
    width: 100%;
  }
}
.about-testimonials--two .about-testimonials__thumb__shape-one {
  position: absolute;
  top: 20%;
  right: 10%;
  animation: scale 3s ease-in-out infinite;
}
.about-testimonials--two .about-testimonials__thumb__shape-three {
  position: absolute;
  top: 40%;
  left: 4%;
  animation: rotate 7s ease-in-out infinite;
}
.about-testimonials--two .about-testimonials__thumb__shape-two {
  position: absolute;
  bottom: 8%;
  left: 20%;
  animation: scale 3s ease-in-out infinite;
}
.about-testimonials--two .about-testimonials__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-testimonials--two .about-testimonials__bottom__quite {
  font-size: 45px;
  color: var(--gotur-base, #63AB45);
}
.about-testimonials--two .about-testimonials__element-three {
  position: absolute;
  right: 0;
  bottom: 20%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.about-testimonials--two .about-testimonials__element-three::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
  right: -80%;
  opacity: 0.5;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media (min-width: 1200px) {
  .about-testimonials--two .about-testimonials__element-three {
    display: block;
  }
}

.testimonials-two {
  position: relative;
  z-index: 1;
}
.testimonials-two .container-fluid {
  max-width: 1550px;
  margin-left: auto;
  margin-right: 0;
}
.testimonials-two .sec-title {
  padding-bottom: 40px;
}
.testimonials-two__bottom__nav {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.testimonials-two__bottom__nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  border: 1px solid var(--gotur-base, #63AB45);
  transition: all 400ms ease;
}
.testimonials-two__bottom__nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.testimonials-two__bottom__nav button:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.testimonials-two__bottom__nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.testimonials-two__element {
  position: absolute;
  left: 0;
  top: 20%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
  display: none;
}
.testimonials-two__element::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--gotur-base, #63AB45);
  filter: blur(150px);
  z-index: -1;
  right: -20%;
  opacity: 0.5;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media (min-width: 1400px) {
  .testimonials-two__element {
    display: block;
  }
}

.testimonials-two-card {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  margin-bottom: 27px;
}
.testimonials-two-card__inner {
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__inner:hover {
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 0.1);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.testimonials-two-card__top {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--gotur-base, #63AB45);
  padding: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -60px;
  margin-bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__top img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}
.testimonials-two-card__content {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__content--two {
  padding-bottom: 34px;
}
.testimonials-two-card__author {
  margin-bottom: 17px;
}
.testimonials-two-card__author__name {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-transform: capitalize;
  color: var(--gotur-base, #63AB45);
  margin-bottom: 4px;
  padding-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__author__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__text {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__star {
  text-align: center;
  margin-bottom: -17px;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__star--two .testimonials-two-card__star__item {
  text-align: center;
  padding: 10px;
  background: transparent;
  box-shadow: none;
  border-radius: 0px;
  display: block;
  line-height: 0;
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__star__item {
  text-align: center;
  padding: 10px;
  background: var(--gotur-white, #fff);
  box-shadow: 0px 4px 15px rgba(56, 75, 255, 0.15);
  border-radius: 30px;
  display: inline-block;
  line-height: 0;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__star i {
  font-size: 20px;
  color: var(--gotur-primary, #F7921E);
  letter-spacing: -0.9px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.testimonials-two-card__quite {
  font-size: 44px;
  color: var(--gotur-base, #63AB45);
  position: absolute;
  top: 40px;
  left: 40px;
  transition: all 0.4s ease-in-out;
}

.testimonials-three {
  position: relative;
}
.testimonials-three__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.testimonials-three__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gotur-black, #1D231F);
  opacity: 0.5;
  z-index: -2;
}
.testimonials-three__inner {
  margin-right: -300px;
}
@media (max-width: 1199px) {
  .testimonials-three__inner {
    margin-right: 0px;
  }
}
.testimonials-three__thumb {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.testimonials-three__thumb img {
  clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
.testimonials-three::after {
  content: "";
  width: 717px;
  height: 100.55%;
  background-color: var(--gotur-white, #fff);
  position: absolute;
  top: -0.5px;
  left: 0;
  z-index: -1;
  clip-path: polygon(80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
.testimonials-three__bottom__nav {
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-42%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  gap: 10px;
}
.testimonials-three__bottom__nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--gotur-white, #fff);
  border: 1px solid var(--gotur-white, #fff);
  transition: all 400ms ease;
}
.testimonials-three__bottom__nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.testimonials-three__bottom__nav button:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: transparent;
}
.testimonials-three__bottom__nav button span {
  border: none;
  outline: none;
  color: inherit;
  transform: rotate(90deg);
}
.testimonials-three--two {
  margin-bottom: 0;
}
.testimonials-three--two .testimonials-two-card__inner:hover {
  background-color: rgba(var(--gotur-primary-rgb, 247, 146, 30), 1);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.testimonials-three--two .testimonials-two-card__inner:hover .testimonials-two-card__top {
  border-color: var(--gotur-white, #fff);
}
.testimonials-three--two .testimonials-two-card__inner:hover .testimonials-two-card__author__name,
.testimonials-three--two .testimonials-two-card__inner:hover .testimonials-two-card__author__dec,
.testimonials-three--two .testimonials-two-card__inner:hover .testimonials-two-card__text,
.testimonials-three--two .testimonials-two-card__inner:hover .testimonials-two-card__quite,
.testimonials-three--two .testimonials-two-card__inner:hover .testimonials-two-card__star i {
  color: var(--gotur-white, #fff);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page__filter__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.gallery-page__filter__list li span {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}
.gallery-page__filter__list li span.active {
  background-color: var(--gotur-primary, #F7921E);
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
  background-color: var(--gotur-black, #1D231F);
}
.gallery-page__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-page__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-page__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 400ms ease;
}
@media (max-width: 1399px) {
  .gallery-page__card__hover .img-popup {
    width: 50px;
    height: 50px;
  }
}
.gallery-page__card__hover .img-popup:hover {
  background-color: transparent;
}
.gallery-page__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-page__card:hover .gallery-page__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-page__card__icon {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
.gallery-page__card__icon::after, .gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--gotur-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-page__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.img-popup:hover .gallery-page__card__icon::before, .img-popup:hover .gallery-page__card__icon::after {
  background-color: var(--gotur-white, #fff);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/*blog sidebar*/
.sidebar__single {
  background-color: var(--gotur-gray, #F3F8F6);
  padding: 40px 30px;
  border-radius: 10px;
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  margin-top: -5px;
  padding-bottom: 8px;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 118%;
  font-size: 20px;
}
@media (min-width: 768px) {
  .sidebar__title {
    font-size: 22px;
  }
}
.sidebar__title::after {
  content: "";
  width: 82px;
  height: 2px;
  background: linear-gradient(90deg, #63AB45 4.49%, rgba(99, 171, 69, 0) 94.87%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.sidebar__form__title {
  margin-top: -6px;
}
.sidebar__search {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-text, #595959);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--gotur-text, #595959);
  border-radius: 6px;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px;
  line-height: 1;
  width: auto;
  font-size: 20px;
  color: var(--gotur-white, #fff);
}
.sidebar__categories {
  margin-bottom: 0px;
}
.sidebar__categories li a {
  border-radius: 8px;
  color: var(--gotur-black, #1D231F);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 7px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  padding: 20px 24px;
  background-color: var(--gotur-white, #fff);
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a span {
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  text-shadow: 0 0 1px currentColor;
}
.sidebar__categories li a:hover span {
  color: var(--gotur-white, #fff);
}
.sidebar__categories li + li {
  margin-top: 12px;
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:hover .sidebar__posts__image::after {
  width: 100%;
  right: auto;
  left: 0;
}
.sidebar__posts__item:hover .sidebar__posts__image img {
  transform: scale(1.2) rotate(-15deg);
}
.sidebar__posts__item + .sidebar__posts__item {
  margin-top: 19px;
  padding-top: 20px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
  width: 78px;
  height: 79px;
  overflow: hidden;
  border-radius: 6px;
}
.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
}
.sidebar__posts__image::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0%;
  left: auto;
  right: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.5);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.sidebar__posts__title {
  margin: 0;
  margin-bottom: -5px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .sidebar__posts__title {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .sidebar__posts__title {
    font-size: 14px;
  }
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--gotur-base, #63AB45);
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
}
.sidebar__posts__meta a:hover {
  color: var(--gotur-base, #63AB45);
  text-shadow: 0 0 1px currentColor;
}
.sidebar__posts__meta a i {
  color: var(--gotur-primary, #F7921E);
  font-size: 17px;
  margin-right: 9px;
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-black, #1D231F);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 13px 17px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  text-transform: capitalize;
  border-radius: 6px;
}
.sidebar__tags a:hover {
  color: var(--gotur-white, #fff);
}
.sidebar__tags a::after, .sidebar__tags a::before {
  background-color: var(--gotur-base, #63AB45);
}

/*Header Right Menu Style*/
.header-right-sidebar {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: left center;
  transition: transform 600ms ease 600ms, visibility 600ms ease 600ms;
  position: fixed;
  visibility: hidden;
  background: transparent;
}
.header-right-sidebar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gotur-black, #1D231F);
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}
.header-right-sidebar__content {
  max-width: 460px;
  width: 100%;
  z-index: 10;
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
  overflow-y: auto;
  padding: 50px 44px;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 800ms ease 0ms, visibility 800ms ease 0ms, transform 800ms ease 0ms;
}
.header-right-sidebar__close {
  font-size: 20px;
  color: var(--gotur-white, #fff);
  position: absolute;
  padding: 30px;
  top: 0px;
  right: 30px;
  cursor: pointer;
}
.header-right-sidebar__logo-box {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.header-right-sidebar__container {
  padding-top: 30px;
}
.header-right-sidebar__container__about {
  padding-bottom: 40px;
}
.header-right-sidebar__container__title {
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 36px;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  margin-bottom: 22px;
}
.header-right-sidebar__container__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-gray, #F3F8F6);
}
.header-right-sidebar__container__list {
  padding-bottom: 40px;
}
.header-right-sidebar__container__list__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-right-sidebar__container__list__item:hover .header-right-sidebar__container__icon {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-primary, #F7921E);
}
.header-right-sidebar__container__list__item + .header-right-sidebar__container__list__item {
  margin-top: 25px;
}
.header-right-sidebar__container__list__title {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
}
.header-right-sidebar__container__list a,
.header-right-sidebar__container__list p {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-gray, #F3F8F6);
}
.header-right-sidebar__container__list a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.header-right-sidebar__container__list a:hover {
  background-size: 100% 1px;
}
.header-right-sidebar__container__list a:hover {
  color: var(--gotur-primary, #F7921E);
}
.header-right-sidebar__container__icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 50%;
  color: var(--gotur-base, #63AB45);
  background: var(--gotur-gray, #F3F8F6);
  transition: all 0.4s ease-in-out;
}
.header-right-sidebar__container .newsletter-box input[type=email] {
  width: 100%;
  border: none;
  outline: none;
  height: 55px;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-text, #595959);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease;
  border-radius: 8px;
}
.header-right-sidebar__container .newsletter-box input[type=email]:focus {
  color: var(--gotur-text, #595959);
}
.header-right-sidebar__container .newsletter-box input[type=email]::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-text, #595959);
}
.header-right-sidebar__container .newsletter-box button {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  background: var(--gotur-primary, #F7921E);
  width: 100%;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
}
.header-right-sidebar__container .newsletter-box button::after, .header-right-sidebar__container .newsletter-box button::before {
  background-color: var(--gotur-black, #1D231F);
}
.header-right-sidebar__container .newsletter-box button:hover {
  color: var(--gotur-white, #fff);
}
.header-right-sidebar.isActive {
  visibility: visible;
  transform: translateX(0%);
}
.header-right-sidebar.isActive .header-right-sidebar__content {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details .blog-details-card__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.blog-details .blog-details-card__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}
.blog-details .blog-details-card__date {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  max-width: 59px;
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
}
.blog-details .blog-details-card__date__day {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  display: block;
  color: var(--gotur-white, #fff);
}
.blog-details .blog-details-card__date__month {
  margin-top: -1px;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--gotur-white, #fff);
  line-height: 157%;
  text-transform: capitalize;
}
.blog-details .blog-details-card__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 15px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.blog-details .blog-details-card__meta a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.blog-details .blog-details-card__meta a i {
  margin-right: 8px;
  color: var(--gotur-base, #63AB45);
  font-size: 18px;
}
.blog-details .blog-details-card__meta a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-details .blog-details-card__title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 107%;
  margin-bottom: 0;
  padding-bottom: 15px;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.blog-details__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.blog-details__meta__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details__inner {
  padding-top: 17px;
  margin-bottom: 40px;
}
.blog-details__inner__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.blog-details__inner__text {
  margin-top: 35px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  line-height: 175%;
  margin-bottom: 30px;
}
.blog-details__inner__text-one {
  background-color: var(--gotur-gray, #F3F8F6);
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-black, #1D231F);
  padding: 30px 70px 30px 40px;
  border-left: 4px solid var(--gotur-base, #63AB45);
  border-radius: 20px;
}
.blog-details__inner__text-one img {
  position: absolute;
  right: 40px;
  bottom: 20px;
}
.blog-details__inner__text-one + .blog-details__inner__text {
  margin-top: 30px;
  margin-bottom: 0;
}
.blog-details__categories {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-details__categories__box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-details__categories__btn {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  background-color: transparent;
  color: var(--gotur-black, #1D231F);
}
.blog-details__categories__btn::after, .blog-details__categories__btn::before {
  background-color: var(--gotur-base, #63AB45);
}
.blog-details__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-details__social__box a {
  font-size: 16px;
  color: var(--gotur-black, #1D231F);
}
.blog-details__social__box a:hover {
  color: var(--gotur-base, #63AB45);
}
.blog-details__social__box a + a {
  margin-left: 20px;
}

.blog-details-page .comments-form__form input[type=text],
.blog-details-page .comments-form__form input[type=email],
.blog-details-page .comments-form__form textarea {
  font-weight: 500;
  border-color: var(--gotur-border-color, #E5E5E5);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-card {
  position: relative;
  z-index: 1;
}
.team-card__thumb {
  position: relative;
  padding-right: 40px;
  overflow: hidden;
  border-radius: 8px;
}
.team-card__thumb__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.team-card__thumb__item::before {
  content: "";
  width: 0%;
  height: 50%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  transition: all 0.4s ease-in-out;
}
.team-card__thumb__item::after {
  content: "";
  width: 0%;
  height: 50%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--gotur-black-rgb, 29, 35, 31), 0.7);
  transition: all 0.4s ease-in-out;
}
.team-card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.team-card__social {
  background-color: var(--gotur-base, #63AB45);
  padding: 17px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  right: 0px;
  transform: translateX(100px);
  top: 30px;
  z-index: 1;
  border-radius: 30px 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team-card__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
  font-size: 17px;
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.team-card__social a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-card__social a:hover {
  color: var(--gotur-white, #fff);
}
.team-card__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-card__social p {
  padding-bottom: 7px;
  padding-top: 31px;
  position: relative;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--gotur-white, #fff);
  opacity: 0.9;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  position: relative;
}
.team-card__social p::before {
  content: "";
  width: 1px;
  height: 20px;
  transform: translateX(13px);
  background-color: var(--gotur-white, #fff);
  position: absolute;
  top: 0;
  left: 0;
}
.team-card__content {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 30px 0px;
  padding: 30px;
  text-align: center;
  margin-left: 24px;
  margin-right: 64px;
  position: relative;
  z-index: 1;
  margin-top: -53px;
}
.team-card__title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 136%;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-top: -7px;
  margin-bottom: 2px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__title a:hover {
  color: var(--gotur-base, #63AB45);
}
.team-card__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  margin-bottom: -6px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.team-card:hover .team-card__social {
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}
.team-card:hover .team-card__thumb__item::after {
  left: 0;
  right: auto;
  width: 100%;
}
.team-card:hover .team-card__thumb__item::before {
  right: 0;
  width: 100%;
  left: auto;
}
.team-card:hover .team-card__thumb__item img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details-card {
  position: relative;
  margin-bottom: 60px;
}
.team-details-card__inner {
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 8px;
  padding: 30px;
}
.team-details-card__thumb {
  margin-right: -20px;
}
@media (max-width: 991px) {
  .team-details-card__thumb {
    margin-right: 0px;
  }
}
.team-details-card__thumb img {
  object-fit: cover;
  width: 100%;
}
.team-details-card__content {
  margin-left: 20px;
}
@media (max-width: 991px) {
  .team-details-card__content {
    margin-left: 0px;
  }
}
.team-details-card__content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
@media (max-width: 575px) {
  .team-details-card__content__top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}
.team-details-card__content__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 3px;
  color: var(--gotur-black, #1D231F);
}
.team-details-card__content__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  display: block;
}
.team-details-card__content__social {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
.team-details-card__content__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-gray, #F3F8F6);
  font-size: 15px;
  color: var(--gotur-base, #63AB45);
  position: relative;
  z-index: 1;
}
.team-details-card__content__social a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-details-card__content__social a:hover {
  color: var(--gotur-white, #fff);
}
.team-details-card__content__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-details-card__content__signeture {
  margin-top: 50px;
}
.team-details-card__content__list {
  margin-top: 30px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-top: 25px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.team-details-card__content__list li {
  position: relative;
  z-index: 1;
}
.team-details-card__content__list li:hover .team-details-card__content__list__icon {
  color: var(--gotur-white, #fff);
}
.team-details-card__content__list li:hover .team-details-card__content__list__icon::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.team-details-card__content__list__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-gray, #F3F8F6);
  font-size: 17px;
  color: var(--gotur-base, #63AB45);
  position: absolute;
  transform: translateY(-10%);
  top: 0;
  z-index: 1;
}
.team-details-card__content__list__icon::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: var(--gotur-primary, #F7921E);
  left: 50%;
  top: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.team-details-card__content__list a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--gotur-black, #1D231F);
  margin-left: 46px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-details-card__content__list a:hover {
  background-size: 100% 1px;
}
.team-details-card__content__list a:hover {
  color: var(--gotur-base, #63AB45);
}

/*team-details*/
.team-skills-one {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
  background: var(--gotur-gray, #F3F8F6);
}
.team-skills-one__top {
  margin-bottom: 50px;
}
.team-skills-one__top__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 18px;
}
.team-skills-one__top__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.team-skills-one__top__text + .team-skills-one__top__text {
  margin-top: 29px;
}
@media (max-width: 991px) {
  .team-skills-one__top__text + .team-skills-one__top__text {
    margin-top: 20px;
  }
}
.team-skills-one__inner {
  background: var(--gotur-white, #fff);
  padding: 30px 40px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.04);
}
@media (max-width: 991px) {
  .team-skills-one__inner {
    padding: 20px;
  }
}
.team-skills-one__inner__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 27px;
}
.team-skills-one__skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 31px;
  margin-bottom: 42px;
}
@media (max-width: 991px) {
  .team-skills-one__skills {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/*team-Progress*/
.progress-box__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}
.progress-box__bar {
  width: 100%;
  height: 15px;
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
}
.progress-box__bar__inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--gotur-base, #63AB45);
  transition: all 800ms linear;
  width: 0px;
}
.progress-box__number {
  position: absolute;
  bottom: calc(100% + 2px);
  right: 0;
  font-size: 16px;
  color: var(--gotur-black, #1D231F);
  font-weight: 700;
  line-height: 1.875;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one__title,
.comments-form__title {
  text-transform: capitalize;
  margin-bottom: 33px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}

.comments-one {
  padding-top: 40px;
}
.comments-one__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comments-one__card {
  display: grid;
  grid-template-columns: 96px auto;
  grid-gap: 21px;
  padding-bottom: 34px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.comments-one__card:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .comments-one__card {
    grid-template-columns: auto;
  }
}
.comments-one__card__image {
  width: 100px;
}
.comments-one__card__image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.comments-one__card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px 20px;
  margin-top: 18px;
  margin-bottom: 20.5px;
}
@media (max-width: 767px) {
  .comments-one__card__top {
    margin-top: 5px;
  }
}
@media (max-width: 500px) {
  .comments-one__card__top {
    align-items: flex-start;
    flex-direction: column;
  }
}
.comments-one__card__title {
  margin: 0;
  text-transform: capitalize;
  margin-bottom: 17px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: var(--gotur-black, #1D231F);
  line-height: 110%;
}
@media (max-width: 430px) {
  .comments-one__card__title {
    font-size: 18px;
  }
}
.comments-one__card__date {
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 0;
}
.comments-one__card__text {
  line-height: 1.875;
  margin-bottom: 0;
}
.comments-one__card__reply {
  position: relative;
  border: 0;
  outline: 0;
  top: 5px;
  border-radius: 100px;
  padding: 10px 16.4px;
  color: var(--gotur-white, #fff);
  line-height: 1;
  text-transform: capitalize;
  background-color: var(--gotur-base, #63AB45);
  transition: all 400ms ease;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}
.comments-one__card__reply:hover {
  background-color: var(--gotur-black, #1D231F);
}
@media (max-width: 500px) {
  .comments-one__card__reply {
    top: 0;
  }
}

.comments-form {
  margin-top: 40px;
}
.comments-form .comments-form__title {
  margin-bottom: 25px;
}
.comments-form__form label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 10px;
  text-shadow: 0 0 0.1 currentColor;
}
.comments-form__form .gotur-btn {
  padding: 17.5px 23.5px;
  border-radius: 8px;
}
.comments-form__form .gotur-btn span {
  margin-left: 10px;
  font-size: 17px;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Therapist Details
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Appointment
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
  /*********Product Card************/
}
.product__sidebar {
  position: relative;
}
@media (max-width: 991px) {
  .product__sidebar {
    margin-top: 0;
  }
}
.product__sidebar__item + .product__sidebar__item {
  margin-top: 30px;
}
.product__sidebar__item {
  padding: 30px;
  background-color: var(--gotur-gray, #F3F8F6);
}
.product__sidebar__title {
  position: relative;
  text-transform: capitalize;
  margin-top: -2px;
  margin-bottom: 21px;
  font-weight: 600;
  font-size: 22px;
  line-height: 73%;
  text-shadow: 0 0 0.1px currentColor;
  color: var(--gotur-black, #1D231F);
}
.product__search {
  display: flex;
  align-items: center;
  position: relative;
  height: 59px;
}
.product__search input[type=search],
.product__search input[type=text] {
  padding-left: 10px;
  padding-right: 35px;
  outline: none;
  border: 0;
  border: 1px solid transparent;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  font-weight: 400;
  line-height: 1;
  width: 100%;
  height: 100%;
  background-color: var(--gotur-white, #fff);
  text-transform: capitalize;
  transition: all 500ms ease;
}
.product__search input[type=search]:focus,
.product__search input[type=text]:focus {
  color: var(--gotur-black, #1D231F);
  border-color: var(--gotur-base, #63AB45);
}
.product__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--gotur-base, #63AB45);
  z-index: 11;
  transition: all 400ms ease;
}
.product__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__search button[type=submit]:hover {
  color: var(--gotur-black, #1D231F);
}
.product__price-ranger {
  padding-top: 32px;
  padding-bottom: 31px;
}
.product__price-ranger .price-ranger {
  background-color: var(--gotur-white, #fff);
  padding: 15px 21px 6px 9px;
}
.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
  display: none;
}
.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3) {
  position: relative;
  position: absolute;
}
.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3)::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--gotur-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product__price-ranger #slider-range {
  margin: 0;
  background-color: transparent;
  border: 1px solid var(--gotur-base, #63AB45);
  height: 7px;
  border-radius: 10px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--gotur-base, #63AB45);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -6.5px;
  background: var(--gotur-base, #63AB45);
  border: 0;
  height: 18px;
  width: 18px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 7px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--gotur-text, #595959);
  font-size: 12px;
  font-weight: 500;
  width: 36px;
  line-height: 14px;
  border: none;
  outline: none;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--gotur-text, #595959);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  left: -1px;
}
.product__categories {
  padding-top: 32px;
}
.product__categories__title {
  margin-bottom: 13.5px;
}
.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -17px;
}
.product__categories ul li {
  position: relative;
  margin: 0 0 3.5px;
}
.product__categories ul li a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 13px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  font-weight: 500;
  transition: all 500ms ease;
  z-index: 1;
  padding: 10.3px 0;
}
.product__categories ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--gotur-base, #63AB45);
  transition: all 500ms ease;
}
.product__categories ul li a .product-categories__icon {
  display: inline-flex;
  font-size: 12px;
  color: var(--gotur-text, #595959);
  transition: all 500ms ease;
}
.product__categories ul li a .product-categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__categories ul li a .product-categories__icon i {
  position: relative;
  top: 1px;
}
.product__categories ul li a:hover {
  padding-left: 15px;
  padding-right: 15px;
  color: var(--gotur-white, #fff);
}
.product__categories ul li a:hover::after {
  left: 0;
  width: 100%;
}
.product__categories ul li a:hover .product-categories__icon {
  color: var(--gotur-white, #fff);
}
.product__color .product__color__title {
  margin-bottom: 28px;
}
.product__color ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -5px;
}
.product__color ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__color ul li:nth-child(1) .product__color__item {
  background-color: #000000;
}
.product__color ul li:nth-child(2) .product__color__item {
  background-color: #1300F1;
}
.product__color ul li:nth-child(3) .product__color__item {
  background-color: #03CF0B;
}
.product__color ul li:nth-child(4) .product__color__item {
  background-color: #F10101;
}
.product__color ul li:nth-child(5) .product__color__item {
  background-color: #F0A003;
}
.product__color ul li:nth-child(6) .product__color__item {
  background-color: #A46810;
}
.product__color ul li:nth-child(7) .product__color__item {
  background-color: #FFFFFF;
}
.product__color ul li + li {
  margin-top: 13px;
}
.product__color ul p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.product__color ul p span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 10px;
}
.product__size ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -5px;
}
.product__size ul li + li {
  margin-top: 10px;
}
.product__size ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__size ul li p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.product__rating ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -5px;
}
.product__rating ul li {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product__rating ul li .product__rating__check {
  position: relative;
  z-index: 1;
}
.product__rating ul li .product__rating__check input[type=checkbox] {
  display: none;
}
.product__rating ul li .product__rating__check label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.6);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}
.product__rating ul li .product__rating__check label a {
  text-decoration: underline;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 1);
  margin-left: 8px;
}
.product__rating ul li .product__rating__check label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: -7px;
  background-color: transparent;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.product__rating ul li .product__rating__check label::after {
  content: "\f00c";
  color: var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  top: -7px;
  border-radius: 4px;
  right: 0;
  line-height: 16px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
}
.product__rating ul li .product__rating__check label:first-child {
  margin-top: 0;
}
.product__rating ul li .product__rating__check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.product__rating ul li + li {
  margin-top: 3px;
}
.product__rating ul .product__rating__star {
  color: #FFA41B;
  font-size: 14px;
}
.product__rating ul .product__rating__star i {
  color: inherit;
}
.product__rating ul .product__rating__star span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--gotur-text, #595959);
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product__info-top {
    display: block;
  }
}
.product__showing-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--gotur-black, #1D231F);
  line-height: 1;
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 15px;
  }
}
.product__showing-sort {
  margin: 0;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  position: relative;
  display: block;
  width: 100%;
  min-width: 181px !important;
  background-color: var(--gotur-gray, #F3F8F6);
}
@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    min-width: 141px !important;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 52px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 16px;
  padding-right: 38px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-text, #595959) !important;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 52px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle > .filter-option {
  text-align: left;
}
@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select > .dropdown-toggle > .filter-option {
    text-align: left;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 17px;
  color: var(--gotur-text, #595959);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 5px 16px 6px;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-black, #1D231F);
  background-color: var(--gotur-white, #fff);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-base, #63AB45);
}
.product__item {
  position: relative;
  background-color: var(--gotur-white, #fff);
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  transition: all 500ms ease;
}
.product__item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.product__item__image {
  position: relative;
  overflow: hidden;
}
.product__item__image img {
  width: 100%;
  display: block;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item:hover .product__item__image img {
  transform: scale(1.05);
}
.product__item__content {
  position: relative;
  text-align: center;
  padding: 30px 30px 30px;
}
@media (max-width: 767px) {
  .product__item__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.product__item .gotur-ratings {
  justify-content: center;
  gap: 6.75px;
  margin-bottom: 15px;
}
.product__item .gotur-ratings__icon {
  font-size: 12px;
}
.product__item__star {
  font-size: 12px;
  color: var(--gotur-primary, #F7921E);
  margin-bottom: 10px;
}
.product__item__title {
  font-size: 20px;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 11px;
  font-weight: 600;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .product__item__title {
    font-size: 18px;
  }
}
.product__item__title:hover {
  color: var(--gotur-base, #63AB45);
}
.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__item__title a:hover {
  background-size: 100% 1px;
}
.product__item__price {
  font-size: 18px;
  color: var(--gotur-text, #595959);
  text-align: center;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 18px;
}
.product__item .gotur-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  text-transform: uppercase;
  border-radius: 0px;
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
}
.product__item .gotur-btn__icon {
  margin-left: 30px;
  position: relative;
  top: -1px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--gotur-white, #fff);
  transition: all 400ms ease;
}
.product__item .gotur-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__item .gotur-btn__icon::before {
  content: "";
  width: 1px;
  height: calc(100% + 6px);
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background-color: RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.2);
  transition: all 400ms ease;
}

/****Product List Card*****/
.product-list__item {
  padding: 12px;
  position: relative;
  background-color: var(--gotur-white, #fff);
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  transition: all 500ms ease;
}
.product-list__item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.product-list__item__image {
  position: relative;
  overflow: hidden;
  background-color: var(--gotur-gray, #F3F8F6);
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .product-list__item__image {
    margin-left: -2.66px;
  }
}
.product-list__item__image img {
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
@media (min-width: 768px) {
  .product-list__item__content {
    margin-left: 3px;
  }
}
.product-list__item:hover .product-list__item__image {
  background-color: var(--gotur-border-color, #E5E5E5);
}
.product-list__item .gotur-ratings {
  justify-content: center;
  gap: 6.75px;
  margin-bottom: 15px;
}
.product-list__item .gotur-ratings__icon {
  font-size: 12px;
}
.product-list__item__star {
  font-size: 12px;
  color: var(--gotur-primary, #F7921E);
  margin-bottom: 10px;
  letter-spacing: 0.7px;
}
.product-list__item__title {
  margin-bottom: 5px;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
}
@media (max-width: 767px) {
  .product-list__item__title {
    font-size: 20px;
  }
}
.product-list__item__title:hover {
  color: var(--gotur-base, #63AB45);
}
.product-list__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-list__item__title a:hover {
  background-size: 100% 1px;
}
.product-list__item__price {
  margin-top: 3px;
  font-size: 20px;
  color: var(--gotur-text, #595959);
  line-height: normal;
  font-weight: 500;
  margin-bottom: 27px;
}
.product-list__item .gotur-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  text-transform: uppercase;
  border-radius: 0px;
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
}
.product-list__item .gotur-btn__icon {
  margin-left: 30px;
  position: relative;
  top: -1px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--gotur-white, #fff);
  transition: all 400ms ease;
}
.product-list__item .gotur-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product-list__item .gotur-btn__icon::before {
  content: "";
  width: 1px;
  height: calc(100% + 6px);
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background-color: RGBA(var(--gotur-white-rgb, 255, 255, 255), 0.2);
  transition: all 400ms ease;
}

.product-page {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .product-page {
    padding-top: 91px;
  }
}
@media (max-width: 575px) {
  .product-page {
    padding-top: 71px;
  }
}
@media (max-width: 991px) {
  .product-page--left {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .product-page--left {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .product-page--left {
    padding-top: 80px;
  }
}
.product-page .post-pagination {
  justify-content: center;
}
@media (max-width: 991px) {
  .product-page .post-pagination {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Shop Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  background-color: var(--gotur-white, #fff);
}
.product-details__img {
  background-color: var(--gotur-gray, #F3F8F6);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details__img img {
  object-fit: cover;
  width: 100%;
}
.product-details__img-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  line-height: 1;
}
.product-details__img-search a {
  display: inline-block;
  font-size: 21px;
  color: var(--gotur-text, #595959);
  transition: all 500ms ease;
}
.product-details__img-search a:hover {
  color: var(--gotur-base, #63AB45);
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
  margin-bottom: 30px;
}
.product-details__title {
  text-transform: capitalize;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--gotur-black, #1D231F);
}
.product-details__price {
  color: var(--gotur-black, #1D231F);
  margin: 0 0 0 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 16px;
  color: var(--gotur-primary, #F7921E);
}
.product-details__review a {
  display: inline-block;
  color: var(--gotur-text, #595959);
  font-size: 16px;
  letter-spacing: 0;
  margin-left: 12px;
  font-weight: 500;
  transition: all 500ms ease;
  line-height: 21px;
}
.product-details__review a:hover {
  color: var(--gotur-primary, #F7921E);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--gotur-border-color, #E5E5E5);
  margin: 25px 0 21px;
}
.product-details__excerpt {
  margin: 0;
}
.product-details__excerpt-text1 {
  margin: 0 0 38px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 176%;
  color: var(--gotur-text, #595959);
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0px 0 40px;
}
.product-details__quantity-title {
  margin: 0;
  text-transform: capitalize;
  margin-right: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  height: 50px;
}
.product-details__quantity .quantity-box input {
  width: 98px;
  height: 50px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  appearance: textfield;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  color: var(--gotur-black, #1D231F);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--gotur-text, #595959);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: transparent;
  border: none;
  border-left: 1px solid var(--gotur-border-color, #E5E5E5);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--gotur-base, #63AB45);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-details__buttons a {
  text-transform: uppercase;
  display: inline-flex;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0;
  padding: 16.5px 22px;
}
.product-details__buttons__icon {
  position: relative;
  display: inline-flex;
  margin-left: 29px;
  font-size: 18px;
}
.product-details__buttons__icon i {
  font-size: 18px;
}
.product-details__buttons__icon::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  background-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.2);
  transition: all 400ms ease;
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.product-details__socials__title {
  margin: 0;
  margin-right: 10px;
  flex: 0 0 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--gotur-text, #595959);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  transition: all 500ms ease;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 50%;
}
.product-details__socials a:hover {
  background-color: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 55px 0 58px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
@media (max-width: 991px) {
  .product-details__description {
    margin: 45px 0 30px;
  }
}
.product-details__description__title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 18px;
  font-weight: bold;
  line-height: 31px;
}
.product-details__description__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
}
.product-details__description__text + .product-details__description__text {
  margin-top: 23px;
  padding-bottom: 20px;
}
.product-details__description__lists {
  margin: 0 0 30px;
  padding: 0;
}
.product-details__description__lists li {
  display: block;
  position: relative;
  padding: 0 0 0 36px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  color: var(--gotur-black, #1D231F);
}
.product-details__description__lists li span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: var(--gotur-base, #63AB45);
}
.product-details__review-title {
  margin-bottom: 44px;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  line-height: 154%;
}
.product-details__comment-title {
  margin: 0;
  text-transform: capitalize;
  margin-top: -4px;
  margin-bottom: 35px;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 123%;
}
@media (min-width: 992px) {
  .product-details__comment-title {
    margin-bottom: 56px;
  }
}
.product-details__comment__list {
  margin: 0;
  margin-top: 35px;
}
.product-details__comment__card {
  margin-bottom: 40px;
  padding-bottom: 37px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
@media (min-width: 768px) {
  .product-details__comment__card {
    display: flex;
    align-items: flex-start;
  }
}
.product-details__comment__card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-details__comment__card__image {
  margin-right: 20px;
}
.product-details__comment__card__image img {
  border-radius: 50%;
}
.product-details__comment__card__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 15px;
}
.product-details__comment__card__date {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.product-details__comment__card__text {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: var(--gotur-text, #595959);
  margin-bottom: -7px;
  padding-bottom: 0;
}
.product-details__comment__card__star {
  color: var(--gotur-primary, #F7921E);
  font-size: 16px;
  letter-spacing: 1px;
}
.product-details__comment__card__content {
  position: relative;
}
.product-details__form {
  position: relative;
  margin: 51px 0 0;
}
@media (max-width: 767px) {
  .product-details__form {
    margin: 30px 0 0;
  }
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  margin: 0;
  margin-top: -4px;
  margin-bottom: 20px;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 123%;
}
.product-details__form-text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 27px;
  padding-bottom: 0;
  text-transform: capitalize;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-size: 16px;
  color: var(--gotur-primary, #F7921E);
  margin: 0 0 15px;
}
.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--gotur-black, #1D231F);
  margin: 0 17px 0 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
.product-details__form-ratings span {
  color: var(--gotur-primary, #F7921E);
}
.product-details__form__form {
  margin-top: 30px;
}
.product-details__form__form input[type=text],
.product-details__form__form input[type=email] {
  border-radius: 0px;
  background-color: transparent;
  color: var(--gotur-text, #595959);
  font-size: 16px;
  font-weight: 500;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  outline: none;
  padding-left: 0px;
  padding-right: 30px;
}
.product-details__form__form input[type=text]::placeholder,
.product-details__form__form input[type=email]::placeholder {
  color: var(--gotur-text, #595959);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.product-details__form__form textarea {
  background-color: var(--gotur-gray, #F3F8F6);
  height: 145px;
  border-radius: 0px;
  border-color: transparent;
}
.product-details__form .gotur-btn {
  font-style: normal;
  text-transform: uppercase;
  padding: 17px 23px;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  color: var(--gotur-black, #1D231F);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  padding: 0 0 24px;
  font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5) !important;
  box-shadow: none;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: var(--gotur-black, #1D231F);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  padding: 30px 0;
  letter-spacing: 0;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 70px;
  height: 70px;
  background-color: var(--gotur-gray, #F3F8F6);
  border: 1px solid transparent;
  margin-right: 34px;
}
.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
}
.cart-page__table__meta-title a {
  color: inherit;
}
.cart-page__table__meta-title a:hover {
  color: var(--gotur-base, #63AB45);
}
.cart-page__table__remove {
  display: block;
  color: var(--gotur-text, #595959);
  font-size: 13px;
  padding-right: 20px;
}
.cart-page__table__remove:hover {
  color: var(--gotur-base, #63AB45);
}
.cart-page__table .product-details__quantity {
  margin-bottom: 0;
}
.cart-page__table .product-details__quantity .quantity-box input {
  font-size: 16px;
  font-weight: bold;
}
.cart-page__coupone__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .cart-page__coupone__box {
    margin-top: 20px;
    justify-content: start;
    flex-direction: column;
    gap: 30px;
    align-items: start;
  }
}
.cart-page__coupone__box__btn {
  text-transform: capitalize;
  padding: 20px 25px;
  border-radius: 10px;
}
.cart-page__coupone {
  margin-bottom: 50px;
}
.cart-page__coupone__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.2px currentColor;
}
.cart-page__coupone__form {
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .cart-page__coupone__form {
    display: block;
    width: 100%;
  }
}
.cart-page__coupone__form input[type=text] {
  height: 62px;
  width: 268px;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 10px;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 500;
  margin-right: 10px;
}
.cart-page__coupone__form input[type=text]::placeholder {
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .cart-page__coupone__form input[type=text] {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone__form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__coupone__form button {
  text-transform: capitalize;
  padding: 20px 25px;
  border-radius: 10px;
}
.cart-page__coupone__list {
  max-width: 315px;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
}
.cart-page__cart-total__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-bottom: 22px;
  margin-bottom: 25px;
}
.cart-page__cart-total {
  margin-bottom: 23px;
}
.cart-page__cart-total__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: capitalize;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
.cart-page__cart-total__item:first-child {
  margin-bottom: 7px;
}
.cart-page__cart-total__item:last-child {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.cart-page__cart-total__item:last-child .cart-page__cart-total-amount {
  color: var(--gotur-base, #63AB45);
}
.cart-page__cart-total__item:last-child span {
  color: var(--gotur-black, #1D231F);
}
.cart-page__cart-total__item span {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.cart-page__cart-total__item .cart-page__cart-total-amount {
  color: var(--gotur-base, #63AB45);
}
.cart-page__cart-total__item p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cart-page__cart-total__item + .cart-page__cart-total__item {
  padding-top: 14px;
}
.cart-page__buttons {
  text-align: end;
}
.cart-page__buttons a {
  border-radius: 10px;
  padding: 20px 25px;
  text-transform: capitalize;
  font-weight: 600;
}
.cart-page .product-details__quantity .quantity-box input {
  color: var(--gotur-base, #63AB45);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  background-color: var(--gotur-white, #fff);
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  text-transform: capitalize;
  margin: 0 0 34px;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  color: var(--gotur-black, #1D231F);
}
@media (max-width: 767px) {
  .checkout-page__billing-address__title {
    font-size: 20px;
  }
}
.checkout-page__shipping-address {
  position: relative;
}
@media (max-width: 991px) {
  .checkout-page__shipping-address {
    margin: 50px 0 0;
  }
}
.checkout-page__shipping-address .checkout-page__form {
  margin-top: 50px;
}
.checkout-page__shipping-address__title {
  text-transform: capitalize;
  margin: 0 0 18px;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
}
@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 20px;
  }
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box label {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  text-shadow: 0 0 0.2px currentColor;
  margin-bottom: 13px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  height: 61px;
  width: 100%;
  border: none;
  background-color: var(--gotur-gray, #F3F8F6);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  border-radius: 10px;
  font-size: 14px;
  color: var(--gotur-text, #595959);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 600;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 61px;
  border-radius: 10px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--gotur-gray, #F3F8F6) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--gotur-text, #595959) !important;
  font-size: 14px;
  line-height: 58px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  content: "\e920";
  font-family: "icomoon" !important;
  font-weight: 900;
  font-size: 16px;
  color: var(--gotur-text, #595959);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: var(--gotur-text, #595959);
  background-color: var(--gotur-gray, #F3F8F6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
  border-color: var(--gotur-base, #63AB45);
}
.checkout-page__input-box textarea {
  color: var(--gotur-text, #595959);
  height: 177px;
  width: 100%;
  background-color: var(--gotur-gray, #F3F8F6);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
}
.checkout-page__your-order {
  position: relative;
  margin: 32px 0 0;
}
.checkout-page__your-order__title {
  text-transform: capitalize;
  margin-bottom: 27px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: var(--gotur-black, #1D231F);
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-size: 20px;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
  margin: 0;
  padding: 28px 0;
  text-shadow: 0 0 0.1px currentColor;
  border: none;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  color: var(--gotur-text, #595959);
  margin: 0;
  padding: 0 0 30px;
  border: none;
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr:last-child {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.checkout-page__order-table tbody tr:last-child td {
  padding-top: 20px;
  color: var(--gotur-base, #63AB45);
  text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
}
.checkout-page__payment {
  background-color: var(--gotur-gray, #F3F8F6);
  padding: 30px;
  min-height: 295px;
  border-radius: 10px;
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  text-transform: capitalize;
  margin: 0;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}
.checkout-page__payment__title::before {
  content: "\f111";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid var(--gotur-text, #595959);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  display: flex;
  justify-content: center;
  color: var(--gotur-text, #595959);
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: transparent;
  border-color: var(--gotur-base, #63AB45);
  content: "\f111";
  color: var(--gotur-base, #63AB45);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 30px;
}
.checkout-page__payment .gotur-btn {
  margin-top: 40px;
  text-transform: uppercase;
  padding: 17px 24px;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
}
.login-page__thumb {
  position: relative;
  z-index: 1;
}
.login-page__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.login-page__thumb::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid var(--gotur-base, #63AB45);
  animation: leftToRight 4s ease-in-out infinite;
}
@media (min-width: 1200px) {
  .login-page__thumb {
    margin-left: 33px;
    margin-right: 45px;
  }
}
.login-page__content {
  position: relative;
  z-index: 1;
  padding: 78px 60px;
  background-color: var(--gotur-gray, #F3F8F6);
  border-radius: 20px;
}
.login-page__content__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: normal;
  opacity: 0.3;
  z-index: -1;
  border-radius: 20px;
}
.login-page__top {
  margin-top: -5px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-bottom: 18px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) and (min-width: 991px), (max-width: 575px) {
  .login-page__top {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: start;
  }
}
.login-page__top__section-title {
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.33;
  margin-bottom: 5px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
}
@media (min-width: 992px) {
  .login-page__top__section-title {
    font-size: 35px;
  }
}
.login-page__top__section-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  margin-bottom: 0;
  padding-bottom: 0;
}
.login-page__top__btn {
  display: flex;
  align-items: center;
  gap: 0px;
}
.login-page__top__btn button {
  padding: 10px 15px;
  border-radius: 4px;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}
.login-page__top__btn button:hover {
  color: var(--gotur-white, #fff);
}
.login-page__top__btn button::after, .login-page__top__btn button::before {
  background-color: var(--gotur-base, #63AB45);
}
.login-page__top .active-btn {
  color: var(--gotur-white, #fff);
}
.login-page__top .active-btn::after, .login-page__top .active-btn::before {
  background-color: var(--gotur-base, #63AB45);
}
.login-page__top .active-btn::after {
  width: 100%;
  right: 0;
  left: auto;
}
.login-page__top .active-btn::before {
  width: 100%;
  right: 0;
  left: auto;
}
.login-page__input-box {
  position: relative;
}
.login-page__input-box input[type=text],
.login-page__input-box input[type=password] {
  height: 55px;
  width: 100%;
  background-color: var(--gotur-white, #fff);
  padding-left: 45px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 500;
  border-radius: 6px;
  border: 0px solid transparent;
}
.login-page__input-box input[type=text]::placeholder,
.login-page__input-box input[type=password]::placeholder {
  color: var(--gotur-text, #595959);
  font-style: normal;
  line-height: 133%;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
.login-page__input-box span {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  transition: all 400ms ease;
}
.login-page__input-box span:hover {
  color: var(--gotur-base, #63AB45);
}
.login-page__input-box i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 16px;
  color: var(--gotur-text, #595959);
  transition: all 400ms ease;
}
.login-page__input-box i:hover {
  color: var(--gotur-base, #63AB45);
}
.login-page__input-box__inner {
  position: relative;
  z-index: 1;
}
.login-page__input-box__inner input[type=checkbox] {
  display: none;
}
.login-page__input-box__inner label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
.login-page__input-box__inner label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 1px;
  background-color: transparent;
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.login-page__input-box__inner label::after {
  content: "\f00c";
  color: var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 4px;
  right: 0;
  line-height: 16px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
}
.login-page__input-box__inner input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.login-page__input-box + .login-page__input-box {
  margin-top: 15px;
}
.login-page__input-box--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-page__input-box--bottom .login-page__form__forgot {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
  color: var(--gotur-text, #595959);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__input-box--bottom .login-page__form__forgot:hover {
  background-size: 100% 1px;
}
.login-page__input-box--bottom .login-page__form__forgot:hover {
  color: var(--gotur-base, #63AB45);
}
.login-page__input-box__btn {
  padding-top: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gotur-border-color, #E5E5E5);
  margin-bottom: 27px;
}
.login-page__input-box__btn .gotur-btn {
  width: 100%;
  border-radius: 4px;
  padding: 17px 30px;
  text-transform: uppercase;
}
.login-page__form__text {
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}
.login-page__form__text a {
  color: var(--gotur-base, #63AB45);
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-accordion .accordion {
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.faq-accordion .accordion + .accordion {
  margin-top: 20px;
}
.faq-accordion .accordion-title {
  padding: 27px 30px;
  transition: all 500ms ease;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .faq-accordion .accordion-title {
    padding-right: 20px;
  }
}
.faq-accordion .accordion-title h4 {
  margin-top: -7px;
  margin-bottom: -7px;
  position: relative;
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 200%;
  text-shadow: 0 0 0.1px currentColor;
}
.faq-accordion .accordion-title__icon {
  width: 20px;
  height: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(0deg);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-title__icon::before {
  content: "\e918";
  font-family: "icomoon" !important;
  transition: all 500ms ease;
  color: var(--gotur-black, #1D231F);
  transition: all 0.3s ease-in-out;
}
.faq-accordion .active .accordion-title {
  padding: 24px 30px;
}
.faq-accordion .active .accordion-title h4 {
  color: var(--gotur-base, #63AB45);
}
.faq-accordion .active .accordion-title__icon {
  transform: translateY(-50%) rotate(90deg);
}
.faq-accordion .active .accordion-title__icon::before {
  color: var(--gotur-base, #63AB45);
}
.faq-accordion .accordion-content .inner {
  margin-top: -5px;
  padding: 0px 85px 30px 30px;
}
.faq-accordion .accordion-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: -5px;
  padding-bottom: 0;
}

.faq-page__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 167%;
  text-transform: capitalize;
  padding-bottom: 0;
  margin-bottom: 20px;
  color: var(--gotur-black, #1D231F);
}
.faq-page .faq-accordion + .faq-accordion {
  margin-top: 40px;
}
.faq-page__sidebar__item + .faq-page__sidebar__item {
  margin-top: 30px;
}
.faq-page__sidebar__list {
  margin-bottom: 0;
  padding: 15px 30px 15px;
  background-color: var(--gotur-gray, #F3F8F6);
}
.faq-page__sidebar__list li span {
  cursor: pointer;
  margin-bottom: 0;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 250%;
  display: block;
  text-transform: capitalize;
  color: var(--gotur-black, #1D231F);
  transition: all 0.4s ease-in-out;
}
.faq-page__sidebar__list li.active-btn span, .faq-page__sidebar__list li:hover span {
  color: var(--gotur-base, #63AB45);
  padding-left: 15px;
}
.faq-page__sidebar__list li + li {
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
}
.faq-page__sidebar__cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.faq-page__sidebar__cta img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.faq-page__sidebar__cta::before {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  content: "";
  border: 1px solid var(--gotur-white, #fff);
  background-color: transparent;
  z-index: 1;
}
.faq-page__sidebar__cta__content {
  text-align: center;
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 25px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 2;
}
.faq-page__sidebar__cta__content .gotur-btn {
  border: 1px solid var(--gotur-white, #fff);
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 42px;
}
.faq-page__sidebar__cta__content .gotur-btn .icon {
  width: 24px;
  height: 24px;
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-primary, #F7921E);
}
.faq-page__sidebar__cta__content .gotur-btn:hover {
  border-color: var(--gotur-primary, #F7921E);
}
.faq-page__sidebar__cta::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  content: "";
  width: 100%;
  z-index: 1;
  height: 298px;
  background-color: var(--gotur-base, #63AB45);
  -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 242.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,242.000000) scale(0.100000,-0.100000)"> <path d="M0 1723 c0 -383 3 -694 6 -691 3 3 6 20 6 37 1 34 5 37 28 18 23 -18 22 -56 -1 -89 -17 -24 -19 -31 -8 -44 10 -13 10 -17 -2 -25 -8 -5 -9 -9 -2 -9 6 0 13 -10 15 -22 2 -18 9 -22 27 -20 25 2 71 -22 71 -37 0 -5 -8 -12 -18 -14 -14 -4 -13 -5 4 -6 14 -1 28 -16 44 -46 25 -49 44 -60 34 -19 -6 23 -4 25 15 19 15 -4 21 -2 21 8 0 10 7 13 21 10 26 -7 35 -29 20 -47 -17 -20 9 -28 30 -9 14 12 18 11 29 -3 11 -12 11 -20 3 -34 -20 -31 6 -96 34 -86 8 3 11 1 8 -5 -11 -16 14 -38 52 -45 32 -6 53 -32 53 -65 0 -15 -47 -10 -54 6 -3 9 -17 15 -33 14 l-28 -1 25 -7 c14 -4 26 -15 28 -24 4 -22 -25 -34 -48 -19 -9 5 -22 7 -28 3 -7 -4 8 -12 33 -19 25 -7 45 -16 45 -22 0 -5 6 -7 14 -4 21 8 56 -14 56 -35 0 -13 7 -18 27 -18 14 0 32 -8 38 -17 16 -22 25 -20 25 4 0 11 -4 20 -10 20 -5 0 -10 6 -10 14 0 30 20 26 57 -11 35 -35 58 -51 171 -120 21 -13 51 -23 67 -23 42 0 102 -23 128 -48 34 -32 61 -55 94 -79 l31 -22 17 39 c31 70 94 91 81 28 -5 -25 -3 -29 10 -24 9 3 27 6 40 6 15 0 24 6 24 16 0 13 12 15 77 11 47 -3 84 0 95 7 14 8 23 8 39 -2 18 -11 23 -11 33 4 14 19 36 11 36 -12 0 -10 6 -13 19 -9 12 3 21 0 25 -10 3 -8 15 -15 26 -15 11 0 23 -6 26 -14 6 -15 24 -9 74 27 21 15 23 19 10 27 -27 17 2 46 42 42 26 -2 43 4 72 27 21 17 42 31 47 31 14 0 16 -25 2 -57 -7 -18 -10 -39 -7 -47 4 -9 -8 -27 -30 -47 -23 -19 -36 -40 -36 -55 0 -30 21 -31 40 -3 29 42 68 72 84 66 15 -6 76 28 76 42 0 6 21 11 48 13 40 3 47 6 45 23 -2 18 7 22 69 32 48 7 76 17 85 29 7 10 22 18 34 19 12 1 26 9 31 18 12 23 28 21 28 -3 0 -13 7 -20 19 -20 10 0 21 -7 25 -15 9 -25 26 -17 26 13 0 36 -10 49 -43 57 -22 6 -27 13 -27 36 0 41 25 36 49 -8 6 -13 20 -23 30 -23 28 0 33 12 11 27 -16 11 -18 18 -9 40 7 19 6 28 -2 33 -7 5 11 22 45 45 54 36 58 37 70 19 13 -17 15 -17 44 14 16 18 35 32 41 32 6 0 11 5 11 11 0 7 -19 8 -57 3 l-58 -7 19 22 c11 11 24 21 31 21 6 0 17 11 23 25 12 27 31 32 49 14 8 -8 17 -8 31 0 29 16 42 14 42 -6 0 -13 3 -14 12 -5 7 7 13 22 13 34 0 28 52 60 83 51 17 -4 21 -10 17 -24 -4 -11 -2 -19 3 -19 6 0 12 23 14 50 2 42 0 50 -14 50 -10 0 -18 7 -18 15 0 18 43 37 64 29 8 -3 29 2 45 12 l31 18 0 788 0 788 -1500 0 -1500 0 0 -697z m2697 -30 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-2300 -1040 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m2153 -105 c0 -17 -64 -68 -84 -68 -27 0 -18 17 26 49 46 34 58 38 58 19z m-2016 -74 c18 -7 21 -30 6 -39 -12 -8 -60 21 -60 35 0 11 30 13 54 4z m1816 -106 c0 -7 -4 -19 -9 -27 -11 -17 -25 3 -17 24 7 18 26 20 26 3z m-1390 -109 c0 -20 -4 -29 -12 -27 -15 5 -22 33 -14 54 9 24 26 6 26 -27z m1284 22 c7 -10 -22 -37 -30 -28 -9 8 3 37 15 37 5 0 12 -4 15 -9z m-206 -43 c-2 -15 -11 -24 -25 -26 -13 -2 -23 -7 -23 -11 0 -11 -59 -35 -67 -28 -3 4 0 20 7 36 12 29 41 48 58 37 4 -2 14 -1 22 5 24 14 32 11 28 -13z m-925 -99 c4 -15 1 -19 -11 -17 -21 4 -29 38 -9 38 8 0 17 -9 20 -21z"/> <path d="M2802 588 c-7 -7 -12 -16 -12 -20 0 -12 38 -10 63 4 21 11 21 11 2 19 -29 11 -40 10 -53 -3z"/> <path d="M2696 482 c-3 -6 -1 -14 5 -17 15 -10 25 3 12 16 -7 7 -13 7 -17 1z"/> <path d="M2530 460 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/> <path d="M2600 404 c0 -8 5 -12 10 -9 6 3 10 10 10 16 0 5 -4 9 -10 9 -5 0 -10 -7 -10 -16z"/> <path d="M485 321 c-24 -10 -60 -49 -53 -57 7 -6 87 47 88 59 0 9 -9 8 -35 -2z"/> <path d="M2485 300 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z"/> <path d="M900 183 c-8 -2 -24 -23 -35 -46 -27 -55 -29 -66 -11 -43 11 13 23 17 43 13 15 -3 36 -1 46 5 12 6 23 6 31 -1 9 -7 16 -7 24 1 18 18 15 25 -14 32 -18 5 -24 12 -20 22 3 8 2 12 -3 9 -5 -3 -12 -1 -16 5 -6 10 -18 11 -45 3z m40 -37 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z"/> </g> </svg> ');
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 242.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,242.000000) scale(0.100000,-0.100000)"> <path d="M0 1723 c0 -383 3 -694 6 -691 3 3 6 20 6 37 1 34 5 37 28 18 23 -18 22 -56 -1 -89 -17 -24 -19 -31 -8 -44 10 -13 10 -17 -2 -25 -8 -5 -9 -9 -2 -9 6 0 13 -10 15 -22 2 -18 9 -22 27 -20 25 2 71 -22 71 -37 0 -5 -8 -12 -18 -14 -14 -4 -13 -5 4 -6 14 -1 28 -16 44 -46 25 -49 44 -60 34 -19 -6 23 -4 25 15 19 15 -4 21 -2 21 8 0 10 7 13 21 10 26 -7 35 -29 20 -47 -17 -20 9 -28 30 -9 14 12 18 11 29 -3 11 -12 11 -20 3 -34 -20 -31 6 -96 34 -86 8 3 11 1 8 -5 -11 -16 14 -38 52 -45 32 -6 53 -32 53 -65 0 -15 -47 -10 -54 6 -3 9 -17 15 -33 14 l-28 -1 25 -7 c14 -4 26 -15 28 -24 4 -22 -25 -34 -48 -19 -9 5 -22 7 -28 3 -7 -4 8 -12 33 -19 25 -7 45 -16 45 -22 0 -5 6 -7 14 -4 21 8 56 -14 56 -35 0 -13 7 -18 27 -18 14 0 32 -8 38 -17 16 -22 25 -20 25 4 0 11 -4 20 -10 20 -5 0 -10 6 -10 14 0 30 20 26 57 -11 35 -35 58 -51 171 -120 21 -13 51 -23 67 -23 42 0 102 -23 128 -48 34 -32 61 -55 94 -79 l31 -22 17 39 c31 70 94 91 81 28 -5 -25 -3 -29 10 -24 9 3 27 6 40 6 15 0 24 6 24 16 0 13 12 15 77 11 47 -3 84 0 95 7 14 8 23 8 39 -2 18 -11 23 -11 33 4 14 19 36 11 36 -12 0 -10 6 -13 19 -9 12 3 21 0 25 -10 3 -8 15 -15 26 -15 11 0 23 -6 26 -14 6 -15 24 -9 74 27 21 15 23 19 10 27 -27 17 2 46 42 42 26 -2 43 4 72 27 21 17 42 31 47 31 14 0 16 -25 2 -57 -7 -18 -10 -39 -7 -47 4 -9 -8 -27 -30 -47 -23 -19 -36 -40 -36 -55 0 -30 21 -31 40 -3 29 42 68 72 84 66 15 -6 76 28 76 42 0 6 21 11 48 13 40 3 47 6 45 23 -2 18 7 22 69 32 48 7 76 17 85 29 7 10 22 18 34 19 12 1 26 9 31 18 12 23 28 21 28 -3 0 -13 7 -20 19 -20 10 0 21 -7 25 -15 9 -25 26 -17 26 13 0 36 -10 49 -43 57 -22 6 -27 13 -27 36 0 41 25 36 49 -8 6 -13 20 -23 30 -23 28 0 33 12 11 27 -16 11 -18 18 -9 40 7 19 6 28 -2 33 -7 5 11 22 45 45 54 36 58 37 70 19 13 -17 15 -17 44 14 16 18 35 32 41 32 6 0 11 5 11 11 0 7 -19 8 -57 3 l-58 -7 19 22 c11 11 24 21 31 21 6 0 17 11 23 25 12 27 31 32 49 14 8 -8 17 -8 31 0 29 16 42 14 42 -6 0 -13 3 -14 12 -5 7 7 13 22 13 34 0 28 52 60 83 51 17 -4 21 -10 17 -24 -4 -11 -2 -19 3 -19 6 0 12 23 14 50 2 42 0 50 -14 50 -10 0 -18 7 -18 15 0 18 43 37 64 29 8 -3 29 2 45 12 l31 18 0 788 0 788 -1500 0 -1500 0 0 -697z m2697 -30 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-2300 -1040 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m2153 -105 c0 -17 -64 -68 -84 -68 -27 0 -18 17 26 49 46 34 58 38 58 19z m-2016 -74 c18 -7 21 -30 6 -39 -12 -8 -60 21 -60 35 0 11 30 13 54 4z m1816 -106 c0 -7 -4 -19 -9 -27 -11 -17 -25 3 -17 24 7 18 26 20 26 3z m-1390 -109 c0 -20 -4 -29 -12 -27 -15 5 -22 33 -14 54 9 24 26 6 26 -27z m1284 22 c7 -10 -22 -37 -30 -28 -9 8 3 37 15 37 5 0 12 -4 15 -9z m-206 -43 c-2 -15 -11 -24 -25 -26 -13 -2 -23 -7 -23 -11 0 -11 -59 -35 -67 -28 -3 4 0 20 7 36 12 29 41 48 58 37 4 -2 14 -1 22 5 24 14 32 11 28 -13z m-925 -99 c4 -15 1 -19 -11 -17 -21 4 -29 38 -9 38 8 0 17 -9 20 -21z"/> <path d="M2802 588 c-7 -7 -12 -16 -12 -20 0 -12 38 -10 63 4 21 11 21 11 2 19 -29 11 -40 10 -53 -3z"/> <path d="M2696 482 c-3 -6 -1 -14 5 -17 15 -10 25 3 12 16 -7 7 -13 7 -17 1z"/> <path d="M2530 460 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/> <path d="M2600 404 c0 -8 5 -12 10 -9 6 3 10 10 10 16 0 5 -4 9 -10 9 -5 0 -10 -7 -10 -16z"/> <path d="M485 321 c-24 -10 -60 -49 -53 -57 7 -6 87 47 88 59 0 9 -9 8 -35 -2z"/> <path d="M2485 300 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z"/> <path d="M900 183 c-8 -2 -24 -23 -35 -46 -27 -55 -29 -66 -11 -43 11 13 23 17 43 13 15 -3 36 -1 46 5 12 6 23 6 31 -1 9 -7 16 -7 24 1 18 18 15 25 -14 32 -18 5 -24 12 -20 22 3 8 2 12 -3 9 -5 -3 -12 -1 -16 5 -6 10 -18 11 -45 3z m40 -37 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z"/> </g> </svg> ');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.faq-page__sidebar__cta:hover img {
  transform: scale(1.1);
}
.faq-page__sidebar__sub-title {
  font-family: var(--gotur-font2, "Just Another Hand", serif);
  text-transform: capitalize;
  color: var(--gotur-white, #fff);
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 93%;
  display: block;
}
.faq-page__sidebar__title {
  font-style: normal;
  font-weight: 800;
  color: var(--gotur-white, #fff);
  font-size: 30px;
  line-height: 133%;
  text-transform: capitalize;
  margin-bottom: 22px;
  padding-bottom: 0;
}
.faq-page .accordion {
  border: 1px solid var(--gotur-border-color, #E5E5E5);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0);
}

/*--------------------------------------------------------------
# Expert Therapist
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Solutions
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Pricing Plan
--------------------------------------------------------------*/
.pricing-one {
  padding: 120px 0px;
  background-color: var(--gotur-white, #fff);
}
@media (max-width: 991px) {
  .pricing-one {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .pricing-one {
    padding: 80px 0px;
  }
}
@media (max-width: 575px) {
  .pricing-one {
    padding: 68px 0px 70px;
  }
}
.pricing-one__top {
  margin: 0 auto 61px;
  width: 100%;
  max-width: 926px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px 122px;
}
@media (max-width: 991px) {
  .pricing-one__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
.pricing-one--carousel .pricing-one__col-card {
  width: 100%;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.pricing-one--carousel .pricing-one__col-card--popular {
  margin-top: 10px;
  padding: 0px;
}
@media (max-width: 991px) {
  .pricing-one__content {
    text-align: center;
  }
}
.pricing-one__title {
  margin-bottom: 15px;
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3333;
}
.pricing-one__text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.555;
  color: var(--gotur-text, #595959);
}
.pricing-one__main-tab-box {
  position: relative;
  display: block;
}
.pricing-one__main-tab-box .tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 31px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}
@media (max-width: 991px) {
  .pricing-one__main-tab-box .tab-buttons {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
.pricing-one__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 13px 24px;
  color: var(--gotur-black, #1D231F);
  text-transform: uppercase;
  border-radius: 22px;
  background-color: var(--gotur-white, #fff);
  z-index: 1;
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.833333px;
}
.pricing-one__main-tab-box .tab-buttons .tab-btn:hover,
.pricing-one__main-tab-box .tab-buttons .tab-btn.active-btn {
  color: var(--gotur-white, #fff);
  background-color: var(--gotur-base, #63AB45);
  box-shadow: 0px 5px 7px 0px rgba(var(--gotur-base-rgb, 99, 171, 69), 0.23);
  text-shadow: 0 0 1px currentColor;
}
.pricing-one__main-tab-box .tabs-content {
  margin-top: 20px;
  position: relative;
  display: block;
}
.pricing-one__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  transition: all 600ms ease;
  z-index: 10;
}
.pricing-one__main-tab-box .tabs-content .tab.active-tab {
  display: block;
}
.pricing-one__inner {
  padding-right: 40px;
  background-color: var(--gotur-gray, #F3F8F6);
  backdrop-filter: blur(17.5px);
}
@media (max-width: 1199px) {
  .pricing-one__inner {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .pricing-one__inner {
    padding: 40px;
  }
}
@media (max-width: 425px) {
  .pricing-one__inner {
    padding: 30px;
  }
}
@media (max-width: 390px) {
  .pricing-one__inner {
    padding: 20px;
  }
}
.pricing-one__row {
  --bs-gutter-x: 40px;
}
@media (max-width: 991px) {
  .pricing-one__row {
    --bs-gutter-y: 40px;
  }
}
.pricing-one__col-image {
  flex: 0 0 auto;
  width: 21.71%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .pricing-one__col-image {
    display: none;
  }
}
.pricing-one__col-card {
  flex: 0 0 auto;
  width: 23.249%;
  margin-bottom: 56px;
}
@media (max-width: 1199px) {
  .pricing-one__col-card {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .pricing-one__col-card {
    margin-bottom: 0;
    width: 46.92%;
  }
}
@media (max-width: 767px) {
  .pricing-one__col-card {
    width: 100%;
  }
}
.pricing-one__col-card--popular {
  flex: 0 0 auto;
  width: 28.377%;
}
@media (max-width: 1199px) {
  .pricing-one__col-card--popular {
    width: 35.5%;
  }
}
@media (max-width: 991px) {
  .pricing-one__col-card--popular {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pricing-one__col-card--popular {
    width: 100%;
  }
}
.pricing-one__col-divider {
  width: 0.1%;
}
@media (max-width: 767px) {
  .pricing-one__col-divider {
    display: none;
  }
}
.pricing-one__col-divider__inner {
  position: relative;
  height: 100%;
}
.pricing-one__col-divider__inner::after {
  content: "";
  position: absolute;
  top: calc(50% + 9px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: calc(100% - 104px);
  background-color: var(--gotur-border-color, #E5E5E5);
}
.pricing-one__image {
  margin-top: 56px;
}
.pricing-one__image img {
  width: 100%;
  display: block;
}
.pricing-one__card {
  margin-top: 44px;
}
@media (max-width: 991px) {
  .pricing-one__card {
    margin-top: 0;
  }
}
.pricing-one__card--popular {
  margin-top: -26px;
  padding: 20px 30px;
  background-color: var(--gotur-black, #1D231F);
  box-shadow: 0px 42px 34px rgba(82, 67, 194, 0.295755);
}
@media (max-width: 412px) {
  .pricing-one__card--popular {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .pricing-one__card--popular {
    margin-top: 0;
  }
}
.pricing-one__card__price {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 12px;
}
.pricing-one__card__price span {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  color: var(--gotur-text, #595959);
}
.pricing-one__card__title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 13px;
  padding-bottom: 0;
  color: var(--gotur-black, #1D231F);
  text-transform: capitalize;
}
.pricing-one__card__text {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 173%;
  color: var(--gotur-text, #595959);
  margin-bottom: -10px;
  padding-bottom: 0;
}
.pricing-one__card__list {
  border-top: 1px solid var(--gotur-border-color, #E5E5E5);
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.pricing-one__card__list li {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--gotur-text, #595959);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-one__card__list li:hover .pricing-one__card__list__icon {
  color: var(--gotur-white, #fff);
  background: rgba(var(--gotur-base-rgb, 99, 171, 69), 1);
}
.pricing-one__card__list li + li {
  margin-top: 20px;
}
.pricing-one__card__list__icon {
  width: 20px;
  border-radius: 50px;
  background: rgba(174, 97, 190, 0.15);
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--gotur-base, #63AB45);
  transition: all 0.4s ease-in-out;
}
.pricing-one__card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12.2px 30px;
  border-radius: 6px;
}
.pricing-one__card:hover .pricing-one__card__category {
  background: var(--gotur-base, #63AB45);
  color: var(--gotur-white, #fff);
}
.pricing-one .pricing-one__card--popular .pricing-one__card__price,
.pricing-one .pricing-one__card--popular .pricing-one__card__price span,
.pricing-one .pricing-one__card--popular .pricing-one__card__title,
.pricing-one .pricing-one__card--popular .pricing-one__card__text,
.pricing-one .pricing-one__card--popular .pricing-one__card__list li {
  color: var(--gotur-white, #fff);
}
.pricing-one .pricing-one__card--popular .pricing-one__card__title {
  color: var(--gotur-white, #fff);
  font-weight: 600;
}
.pricing-one .pricing-one__card--popular .pricing-one__card__list {
  border-color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.2);
}
.pricing-one .pricing-one__card__category {
  margin: 0 0 21px auto;
  display: table;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: 13.5px;
  color: var(--gotur-base, #63AB45);
  background-color: var(--gotur-white, #fff);
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.833333px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Schedule
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404__inner {
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 55px;
}
.error-404__thumb img {
  object-fit: cover;
  width: 100%;
}
.error-404__element-one {
  position: absolute;
  bottom: 50%;
  right: 10%;
  animation: leftToRight 3s ease-in-out infinite;
}
.error-404__element-two {
  position: absolute;
  top: 25%;
  left: 20%;
  animation: topToBottom 4s ease-in-out infinite;
}
.error-404__sub-title {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  color: var(--gotur-black, #1D231F);
  margin-bottom: 0;
  padding-bottom: 15px;
}
.error-404__sub-title span {
  color: var(--gotur-primary, #F7921E);
  font-weight: 400;
}
@media (min-width: 768px) {
  .error-404__sub-title {
    line-height: 76px;
    font-size: 60px;
  }
}
.error-404__text {
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  margin-bottom: 50px;
  padding-bottom: 0;
  color: var(--gotur-text, #595959);
}
.error-404__btns {
  text-align: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--gotur-black, #1D231F);
  z-index: 1;
}
.main-footer__top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 88px;
  padding-bottom: 51px;
  border-bottom: 1px solid rgba(var(--gotur-border-color-rgb, 229, 229, 229), 0.2);
}
@media (max-width: 991px) {
  .main-footer__top__inner {
    flex-direction: column;
    gap: 30px;
    align-items: start;
    justify-content: start;
  }
}
.main-footer__middle {
  padding-top: 55px;
  padding-bottom: 65px;
  position: relative;
  z-index: 1;
}
.main-footer__bottom {
  position: relative;
  background-color: var(--gotur-base, #63AB45);
}
.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0px;
}
@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .main-footer__bottom__inner {
    gap: 0px;
  }
}
.main-footer__copyright {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  color: var(--gotur-white, #fff);
  margin-bottom: 0;
  padding-bottom: 0;
  opacity: 0.8;
}
.main-footer__element-one {
  position: absolute;
  bottom: 20%;
  left: 0;
  opacity: 0.07;
  z-index: -1;
  animation: bottomOpacity 3s ease-in-out infinite;
}
@keyframes bottomOpacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}
.main-footer__element-two {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.07;
  z-index: -1;
  animation: leftToRight 3.5s ease-in-out infinite;
}

.footer-widget {
  /*** Info***/
  /*** Link***/
  /*** News later***/
  /*** List***/
}
.footer-widget__title {
  color: var(--gotur-white, #fff);
  position: relative;
  padding-bottom: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
}
.footer-widget__logo {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 28px;
}
.footer-widget__logo a {
  display: block;
}
.footer-widget__about-text {
  margin-top: -5px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-white, #fff);
  margin-bottom: 35px;
  padding-bottom: 0;
  opacity: 0.8;
  text-transform: capitalize;
}
.footer-widget__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget__social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D2D2D2;
  color: var(--gotur-white, #fff);
  opacity: 0.7;
  transition: all 0.4s ease-in-out;
}
.footer-widget__social a:hover {
  transform: translateY(-3px);
  color: var(--gotur-white, #fff);
  opacity: 1;
  border-color: var(--gotur-base, #63AB45);
  background-color: var(--gotur-base, #63AB45);
}
.footer-widget__links {
  margin-top: -3px;
  margin-bottom: 0;
}
.footer-widget__links li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--gotur-white, #fff);
  opacity: 0.8;
}
.footer-widget__links li a {
  color: inherit;
  position: relative;
}
.footer-widget__links li a::after {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: var(--gotur-base, #63AB45);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widget__links li a:hover {
  padding-left: 15px;
  color: var(--gotur-base, #63AB45);
}
.footer-widget__links li a:hover::after {
  content: "";
  width: 8px;
  height: 8px;
  opacity: 1;
  visibility: visible;
}
.footer-widget__links li + li {
  margin-top: 10px;
}
.footer-widget__newsletter .form-group__form {
  background-color: var(--gotur-white, #fff);
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 8px;
  margin-bottom: 20px;
}
.footer-widget__newsletter .form-group__form input[type=email] {
  border-radius: 8px;
  width: 100%;
  border: none;
  outline: none;
  height: 56px;
  display: block;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 70px;
  transition: all 500ms ease;
  color: var(--gotur-black, #1D231F);
  line-height: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  background-color: var(--gotur-white, #fff);
}
.footer-widget__newsletter .form-group__form input[type=email]::placeholder {
  color: var(--gotur-black, #1D231F);
  font-style: normal;
  line-height: normal;
  font-weight: 400;
  font-size: 14px;
}
.footer-widget__newsletter .form-group__form button[type=submit] {
  position: absolute;
  right: 5px;
  bottom: 5px;
  top: 5px;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--gotur-white, #fff);
  font-size: 16px;
  transition: all 500ms ease;
  padding: 14px 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 8px;
  background-color: var(--gotur-primary, #F7921E);
}
.footer-widget__newsletter .form-group__form button[type=submit]::after, .footer-widget__newsletter .form-group__form button[type=submit]::before {
  background-color: var(--gotur-base, #63AB45);
}
.footer-widget__newsletter .form-group__form button[type=submit]:hover {
  color: var(--gotur-white, #fff);
}
.footer-widget__newsletter .form-group__check input[type=checkbox] {
  display: none;
}
.footer-widget__newsletter .form-group__check label {
  position: relative;
  line-height: normal;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 38px;
  margin-bottom: 0;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 0.6);
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}
.footer-widget__newsletter .form-group__check label a {
  text-decoration: underline;
  color: rgba(var(--gotur-white-rgb, 255, 255, 255), 1);
  margin-left: 8px;
}
.footer-widget__newsletter .form-group__check label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 5px;
  background-color: transparent;
  border: 1px solid rgba(var(--gotur-text-rgb, 89, 89, 89), 0.8);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.footer-widget__newsletter .form-group__check label::after {
  content: "\f00c";
  color: var(--gotur-white, #fff);
  position: absolute;
  left: 0;
  bottom: 2px;
  border-radius: 4px;
  right: 0;
  line-height: 20px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-base, #63AB45);
  opacity: 0;
}
.footer-widget__newsletter .form-group__check label:first-child {
  margin-top: 0;
}
.footer-widget__newsletter .form-group__check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.footer-widget__list {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0;
  gap: 53px;
}
@media (max-width: 1199px) {
  .footer-widget__list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .footer-widget__list {
    flex-wrap: wrap;
    gap: 30px 60px;
  }
}
.footer-widget__list li {
  display: flex;
  gap: 15px;
}
.footer-widget__list li:hover .footer-widget__list__icon {
  color: var(--gotur-white, #fff);
}
.footer-widget__list li:hover .footer-widget__list__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}
.footer-widget__list__icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gotur-white, #fff);
  font-size: 18px;
  color: var(--gotur-base, #63AB45);
  transition: all 0.4s ease-in-out;
  z-index: 1;
  position: relative;
}
.footer-widget__list__icon::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--gotur-primary, #F7921E);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  z-index: -1;
}
.footer-widget__list__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--gotur-white, #fff);
  text-transform: capitalize;
  margin-bottom: 4px;
  padding-bottom: 0;
  display: block;
}
.footer-widget__list a,
.footer-widget__list p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--gotur-white, #fff);
}
.footer-widget__list a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__list a:hover {
  background-size: 100% 1px;
}
.footer-widget__list a:hover {
  color: var(--gotur-base, #63AB45);
}
.footer-widget__list p {
  text-transform: capitalize;
}
.footer-widget__contact-text {
  margin-top: -3px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  opacity: 0.8;
  color: var(--gotur-white, #fff);
  margin-bottom: 20px;
  padding-bottom: 0;
}
.footer-widget--post {
  margin-right: 10px;
}
@media (max-width: 991px) {
  .footer-widget--post {
    margin-right: 0;
  }
}
.footer-widget--contact {
  margin-left: -10px;
}
@media (max-width: 1199px) {
  .footer-widget--contact {
    margin-left: 0px;
  }
}
.footer-widget--contact .footer-widget__info {
  margin-bottom: 25px;
}
.footer-widget--contact .footer-widget__info__icon {
  color: var(--gotur-white, #fff);
}
.footer-widget--contact .gotur-btn .icon {
  background-color: var(--gotur-white, #fff);
  color: var(--gotur-base, #63AB45);
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--gotur-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--gotur-black-rgb, 29, 35, 31), 0.1);
}
@media (min-width: 1500px) {
  body.boxed-wrapper .main-slider-one__item .container {
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
  }
}
body.boxed-wrapper .main-slider-one__destinations {
  max-width: 800px;
  margin-right: -150px;
}
body.boxed-wrapper .main-slider-one__destinations .container {
  max-width: 800px;
}
body.boxed-wrapper .main-slider-one__destinations__hover {
  max-width: 470px;
  left: -85px;
}
body.boxed-wrapper .main-slider-one__destinations__hover img {
  object-fit: cover;
  width: 100%;
}
body.boxed-wrapper .main-slider-one__element {
  top: 25%;
  right: 22.5%;
}
body.boxed-wrapper .main-slider-one__content {
  padding-top: 150px;
}
body.boxed-wrapper .main-slider-one__item {
  height: 800px;
}
@media (min-width: 992px) {
  body.boxed-wrapper .feature-package__inner {
    margin-right: auto;
    margin-left: auto;
  }
}
body.boxed-wrapper .testimonials-three__bg {
  z-index: -1;
}
body.boxed-wrapper .testimonials-three {
  z-index: 1;
}
body.boxed-wrapper .testimonials-three__thumb {
  left: -120px;
}
body.boxed-wrapper .testimonials-three::after {
  width: 600px;
}
body.boxed-wrapper .testimonials-three__inner {
  margin-right: -250px;
}
/*# sourceMappingURL=gotur.css.map */


.footer-btn{
    position: fixed;
    bottom: 0;
    background-color: #f8921d;
    padding: 15px 0;
    text-align: center;
    z-index: 100;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.call-button {
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 12px 25px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.package-card img {
    object-fit: cover;
    width: 100%;
        height: 200px;
}
.call-button:hover {
  background-color: #218838;
}
.package-card {
    object-fit: cover;
    width: 100%;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    border: 1px solid #e2e2e2;
    padding: 10px;
    margin-bottom: 10px;
}
