@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
:root {
  --gt-body: #fff;
  --gt-black: #000;
  --gt-white: #fff;
  --gt-theme: #FC5A11;
  --gt-header: #1D1D1D;
  --gt-text: #595959;
  --gt-border: #FCFCFC;
  --gt-bg: #F2F2F2;
  --gt-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.gt-theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gt-white);
  overflow: hidden;
  transition: 700ms;
  position: relative;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  z-index: 1;
}
.gt-theme-btn i {
  margin-left: 10px;
}
.gt-theme-btn .gt-text-btn {
  font-size: 16px;
  font-weight: 700;
      border-radius: 100px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.5px;
  background-color: #fab249;
  line-height: 1;
  padding: 19px 24px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 700ms ease;
  text-transform: uppercase;
  z-index: 99;
}
.gt-theme-btn .gt-text-btn .gt-text-2 {
  display: inline-block;
}
.gt-theme-btn .gt-text-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--gt-header);
  z-index: -1;
  transition: all 500ms ease;
}
.gt-theme-btn:hover .gt-text-btn .gt-text-2 {
  animation: slideRight 600ms;
}
.gt-theme-btn:hover .gt-text-btn::after {
  width: 100%;
  left: 0px;
}
.gt-theme-btn.style-2 .gt-text-btn {
  background-color: var(--gt-header);
  color: var(--gt-white);
}
.gt-theme-btn.style-2 .gt-text-btn::after {
  background-color: #fab249 !important;
}

.link-btn {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  font-family: "Barlow", sans-serif;
  text-transform: capitalize;
  color: var(--gt-white);
  position: relative;
  padding-left: 25px;
}
.link-btn::after {
  position: absolute;
  top: 2px;
  left: 0;
  content: "\f324";
  color: #fab249;
  font-family: "Font Awesome 5 Pro";
}
.link-btn:hover {
  color: #fab249;
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--gt-text);
  background-color: var(--gt-white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--gt-white);
  outline: none;
}

input {
  color: var(--gt-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

h1 {
  font-size: 100px;
  font-weight: 800;
  line-height: 108%;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 88px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 117%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 134%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 136%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.gt-about-wrapper .gt-about-content {
  position: relative;
  z-index: 9;
}
.gt-about-wrapper .gt-about-content .gt-about-text {
  margin-top: 25px;
}
.gt-about-wrapper .gt-about-content .gt-about-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-content .gt-about-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-about-wrapper .gt-about-content .gt-about-list li {
  font-size: 20px;
  font-weight: 600;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.gt-about-wrapper .gt-about-content .gt-about-list li i {
  color: #fab249;
  margin-right: 8px;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items {
  margin-top: 30px;
  max-width: 550px;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items .gt-skill-feature:not(:last-child) {
  margin-bottom: 30px;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items .gt-skill-feature .gt-box-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items .gt-skill-feature .gt-progress-value {
  margin-bottom: 10px;
  color: var(--gt-header);
  text-transform: capitalize;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items .gt-skill-feature .gt-progress {
  position: relative;
  height: 10px;
  background-color: var(--gt-bg);
  border-radius: 0;
  overflow: visible;
  margin-top: 15px;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items .gt-skill-feature .gt-progress-bar {
  background-color: #fab249;
  height: 10px;
  margin: 0;
  border-radius: inherit;
  overflow: visible;
  position: relative;
  margin-top: 0;
}
.gt-about-wrapper .gt-about-content .gt-skill-feature-items .gt-skill-feature .gt-progress-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.gt-about-wrapper .gt-about-content .gt-about-button {
  margin-top: 30px;
}
.gt-about-wrapper .gt-about-image-items {
  position: relative;
}
.gt-about-wrapper .gt-about-image-items .gt-about-image {
  text-align: right;
  position: relative;
}
.gt-about-wrapper .gt-about-image-items .gt-about-image .gt-dot-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-image-items .gt-about-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape {
  position: absolute;
  top: 30%;
  z-index: 1;
  left: 5%;
  /* This loop assumes you’ll compile with SCSS */
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-image-items .gt-gear-shape {
    display: none;
  }
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .speed {
  position: absolute;
  display: flex;
  left: 40%;
  top: 20%;
  transform: translate(-50%, -50%);
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .speed__wheel {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: var(--gt-bg);
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .speed__tick {
  display: flex;
  gap: 1px;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick {
  transform-origin: bottom;
  position: absolute;
  background: linear-gradient(to top, transparent 90%, #E63946 90%);
  height: 80px;
  width: 1.5px;
  top: 6px;
  left: 50%;
  transform: rotate(var(--angle)) rotateZ(-127deg);
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(odd)::before {
  position: absolute;
  content: attr(value) "";
  color: var(--gt-header);
  left: -7px;
  top: 12px;
  font-size: 10px;
  z-index: 11;
  transform: rotate(var(--position-number));
  font-weight: 700;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(1) {
  --angle: 0deg;
  --position-number: 130deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(2) {
  --angle: 13.3333333333deg;
  --position-number: 116.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(3) {
  --angle: 26.6666666667deg;
  --position-number: 103deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(4) {
  --angle: 40deg;
  --position-number: 89.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(5) {
  --angle: 53.3333333333deg;
  --position-number: 76deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(6) {
  --angle: 66.6666666667deg;
  --position-number: 62.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(7) {
  --angle: 80deg;
  --position-number: 49deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(8) {
  --angle: 93.3333333333deg;
  --position-number: 35.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(9) {
  --angle: 106.6666666667deg;
  --position-number: 22deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(10) {
  --angle: 120deg;
  --position-number: 8.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(11) {
  --angle: 133.3333333333deg;
  --position-number: -5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(12) {
  --angle: 146.6666666667deg;
  --position-number: -18.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(13) {
  --angle: 160deg;
  --position-number: -32deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(14) {
  --angle: 173.3333333333deg;
  --position-number: -45.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(15) {
  --angle: 186.6666666667deg;
  --position-number: -59deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(16) {
  --angle: 200deg;
  --position-number: -72.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(17) {
  --angle: 213.3333333333deg;
  --position-number: -86deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(18) {
  --angle: 226.6666666667deg;
  --position-number: -99.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(19) {
  --angle: 240deg;
  --position-number: -113deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .tick:nth-child(20) {
  --angle: 253.3333333333deg;
  --position-number: -126.5deg;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .pointer {
  position: relative;
  background: #E63946;
  height: 108px;
  width: 12px;
  left: 79px;
  top: 2px;
  clip-path: polygon(5px 5px, 7px 5px, 12px 85px, 6px 108px, 0 85px);
  transform-origin: 6px 85px;
  animation: animate-pointer 10s ease-in-out infinite;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .pointer::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  top: 80px;
  left: 3px;
  border-radius: 50%;
}
.gt-about-wrapper .gt-about-image-items .gt-gear-shape .endpoint {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  top: 127px;
  left: 134px;
  border-radius: 50%;
}
@keyframes animate-pointer {
  0% {
    transform: rotate(-130deg);
  }
  80% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(-130deg);
  }
}
.gt-about-wrapper .gt-about-image-items .gt-dot-shape-2 {
  position: absolute;
  bottom: -80px;
  right: -40px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-image-items .gt-dot-shape-2 {
    display: none;
  }
}
.gt-about-wrapper .gt-about-image-items .gt-about-image-2 {
  position: absolute;
  left: 0;
  bottom: -40px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-image-items .gt-about-image-2 {
    bottom: 0;
  }
  .gt-about-wrapper .gt-about-image-items .gt-about-image-2 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .gt-about-wrapper .gt-about-image-items .gt-about-image-2 {
    max-width: 350px;
  }
}
@media (max-width: 470px) {
  .gt-about-wrapper .gt-about-image-items .gt-about-image-2 {
    max-width: 250px;
  }
}

.gt-about-section {
  position: relative;
}
.gt-about-section .gt-flag-shape {
  position: absolute;
  bottom: 20%;
  left: 90px;
}

.gt-about-wrapper-2 .gt-about-image {
  max-width: 560px;
  position: relative;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-2 .gt-about-image {
    max-width: initial;
  }
}
.gt-about-wrapper-2 .gt-about-image img {
  width: 100%;
  height: 100%;
}
.gt-about-wrapper-2 .gt-about-image .about-image-2 {
  position: absolute;
  right: -84px;
  bottom: 0px;
  max-width: 330px;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-2 .gt-about-image .about-image-2 {
    right: 0;
    max-width: 250px;
  }
}

.gt-about-section-2 {
  position: relative;
}
.gt-about-section-2 .gt-about-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .gt-about-section-2 .gt-about-shape {
    display: none;
  }
}
.gt-about-section-2 .gt-bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .gt-about-section-2 .gt-bg-shape {
    display: none;
  }
}

.gt-about-wrapper-2 {
  position: relative;
  z-index: 9;
}
.gt-about-wrapper-2 .gt-sub-title {
  font-size: 140px;
  line-height: 1;
  letter-spacing: -1.4px;
  opacity: 0.08;
  position: absolute;
  top: -32px;
  left: -73%;
  transform: rotate(90deg);
  bottom: 0;
  height: 100%;
  z-index: -1;
  color: #FCFCFC;
}
@media (max-width: 1899px) {
  .gt-about-wrapper-2 .gt-sub-title {
    display: none;
  }
}
.gt-about-wrapper-2 .gt-about-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-2 .gt-about-content {
    margin-left: 0;
  }
}
.gt-about-wrapper-2 .gt-about-content .gt-about-text {
  opacity: 0.7;
  color: #FCFCFC;
  margin-top: 25px;
}
.gt-about-wrapper-2 .gt-about-content .gt-about-list {
  margin-top: 30px;
}
.gt-about-wrapper-2 .gt-about-content .gt-about-list li {
  font-size: 20px;
  color: var(--gt-white);
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-2 .gt-about-content .gt-about-list li {
    font-size: 16px;
  }
}
.gt-about-wrapper-2 .gt-about-content .gt-about-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-about-wrapper-2 .gt-about-content .gt-about-list li i {
  font-size: 16px;
  color: #fab249;
  margin-right: 10px;
}
.gt-about-wrapper-2 .gt-about-content .gt-about-list li span {
  opacity: 0.7;
  color: #FCFCFC;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-left: 5px;
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .gt-about-wrapper-2 .gt-about-content .gt-theme-btn {
    margin-top: 30px;
  }
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn .gt-text-btn {
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn .gt-text-btn::after {
  background-color: #fab249;
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn .gt-icon-btn {
  background-color: #fab249;
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-white);
}
.gt-about-wrapper-2 .gt-about-content .gt-theme-btn:hover .gt-icon-btn {
  color: var(--gt-header);
}

.gt-about-wrapper-3 .gt-about-left-item .gt-about-image {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.gt-about-wrapper-3 .gt-about-left-item .gt-about-image .gt-image img {
  width: 100%;
  height: 100%;
}
.gt-about-wrapper-3 .gt-about-left-item .gt-about-image .gt-image.gt-style-2 {
  margin-top: 69px;
}
.gt-about-wrapper-3 .gt-about-left-item .gt-about-image-2 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-3 .gt-about-left-item .gt-about-image-2 {
    margin-left: 0;
  }
}
.gt-about-wrapper-3 .gt-about-left-item .gt-about-image-2 img {
  width: 100%;
  height: 100%;
}
.gt-about-wrapper-3 .gt-about-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-3 .gt-about-content {
    margin-left: 0;
  }
}
.gt-about-wrapper-3 .gt-about-content .gt-about-text {
  margin-top: 25px;
}
.gt-about-wrapper-3 .gt-about-content .gt-about-list {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-3 .gt-about-content .gt-about-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-about-wrapper-3 .gt-about-content .gt-about-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.gt-about-wrapper-3 .gt-about-content .gt-about-list li:not(:last-child) {
  margin-bottom: 14px;
}
.gt-about-wrapper-3 .gt-about-content .gt-about-list li i {
  color: #fab249;
  margin-right: 8px;
}
.gt-about-wrapper-3 .gt-about-content .gt-about-button {
  margin-top: 50px;
}

.gt-about-section-3 {
  position: relative;
  z-index: 9;
}
.gt-about-section-3 .gt-left-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-about-section-3 .gt-left-shape {
    display: none;
  }
}
.gt-about-section-3 .gt-right-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-about-section-3 .gt-right-shape {
    display: none;
  }
}

.gt-main-box {
  text-align: center;
  max-width: 420px;
}
.gt-main-box.style-2 {
  max-width: 420px;
  margin: -35px auto 0;
}
@media (max-width: 1199px) {
  .gt-main-box.style-2 {
    margin-top: 0;
  }
}
.gt-main-box.style-2:first-child {
  margin-right: -129%;
}
@media (max-width: 1199px) {
  .gt-main-box.style-2:first-child {
    margin-right: 0;
  }
}
.gt-main-box.style-2:last-child {
  margin-right: -119%;
}
@media (max-width: 1199px) {
  .gt-main-box.style-2:last-child {
    margin-right: 0;
  }
}
.gt-main-box .gt-about-box-item {
  background-color: var(--gt-bg);
  padding: 30px;
  margin-bottom: 55px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-main-box .gt-about-box-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .gt-main-box .gt-about-box-item {
    margin-bottom: 0;
  }
}
@media (max-width: 470px) {
  .gt-main-box .gt-about-box-item {
    padding: 25px;
  }
}
.gt-main-box .gt-about-box-item::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 56px;
  border: 1px dashed #D9D9D9;
  top: 100%;
  left: 50%;
}
@media (max-width: 1199px) {
  .gt-main-box .gt-about-box-item::before {
    display: none;
  }
}
.gt-main-box .gt-about-box-item.style-2::after {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 56px;
  border: 1px dashed #D9D9D9;
  top: -25%;
  left: 50%;
}
@media (max-width: 1199px) {
  .gt-main-box .gt-about-box-item.style-2::after {
    display: none;
  }
}
.gt-main-box .gt-about-box-item.style-2::before {
  display: none;
}
.gt-main-box .gt-about-box-item .gt-box-content {
  text-align: center;
}
.gt-main-box .gt-about-box-item .gt-box-content h3 {
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .gt-main-box .gt-about-box-item .gt-box-content h3 {
    font-size: 20px;
  }
}
.gt-main-box .gt-about-box-item .gt-box-content h3 a:hover {
  color: #fab249;
}
.gt-main-box .gt-about-box-item .gt-box-content .date-box {
  border-radius: 100px;
  border: 1px solid #D9D9D9;
  padding: 7px 65px;
  display: inline-block;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .gt-main-box .gt-about-box-item .gt-box-content .date-box {
    padding: 7px 20px;
  }
}
@media (max-width: 470px) {
  .gt-main-box .gt-about-box-item .gt-box-content .date-box {
    padding: 4px 12px;
  }
}
.gt-main-box .number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--gt-bg);
  border-radius: 100%;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .gt-main-box .number {
    display: none;
  }
}
.gt-main-box .number:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-main-box .number.style-2 {
  margin-bottom: 55px;
}

.gt-about-box-section {
  position: relative;
}
.gt-about-box-section::before {
  position: absolute;
  content: "";
  width: 68%;
  height: 1px;
  border: 1px dashed #D9D9D9;
  top: 41%;
  left: 16%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-about-box-section::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .gt-about-box-section .box-wrapper-first {
    display: none;
  }
}
.gt-about-box-section .margin-right-style {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -58%;
  margin-left: 6%;
}
@media (max-width: 767px) {
  .gt-about-box-section .margin-right-style {
    margin-right: -111%;
  }
}

.gt-about-wrapper-4 .gt-about-content {
  max-width: 580px;
}
.gt-about-wrapper-4 .gt-about-content .gt-about-text {
  margin-top: 20px;
}
.gt-about-wrapper-4 .gt-about-content .gt-list {
  margin-top: 30px;
}
.gt-about-wrapper-4 .gt-about-content .gt-list li {
  display: flex;
  gap: 16px;
}
.gt-about-wrapper-4 .gt-about-content .gt-list li:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(177, 178, 182, 0.16);
  padding-bottom: 20px;
}
.gt-about-wrapper-4 .gt-about-content .gt-list li span {
  font-size: 20px;
  font-weight: 600;
  color: #fab249;
  font-family: "Barlow", sans-serif;
}
.gt-about-wrapper-4 .gt-about-content .gt-list li .gt-content h4 {
  margin-bottom: 5px;
}
.gt-about-wrapper-4 .gt-about-content .gt-list li:not(:last-child) {
  margin-bottom: 16px;
}
.gt-about-wrapper-4 .gt-about-content .gt-about-button {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-4 .gt-about-content .gt-about-button {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.gt-about-wrapper-4 .gt-about-content .gt-about-button .call-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gt-about-wrapper-4 .gt-about-content .gt-about-button .call-info .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-about-wrapper-4 .gt-about-content .gt-about-button .call-info h4 {
  font-size: 20px;
}
.gt-about-wrapper-4 .gt-about-content .gt-about-button .call-info h4 a {
  color: #fab249;
}
.gt-about-wrapper-4 .gt-about-image {
  text-align: right;
  position: relative;
}
@media (max-width: 767px) {
  .gt-about-wrapper-4 .gt-about-image {
    max-width: 900px;
  }
  .gt-about-wrapper-4 .gt-about-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-about-wrapper-4 .gt-about-image .gt-about-image-2 {
  left: 35px;
  top: 40%;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 575px) {
  .gt-about-wrapper-4 .gt-about-image .gt-about-image-2 {
    max-width: 200px;
  }
}
.gt-about-wrapper-4 .gt-about-image .gt-about-image-2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 244px;
  height: 314px;
  border: 3px solid #fab249;
}
@media (max-width: 575px) {
  .gt-about-wrapper-4 .gt-about-image .gt-about-image-2::before {
    display: none;
  }
}

.gt-about-section-4 {
  position: relative;
}
.gt-about-section-4 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1600px) {
  .gt-about-section-4 .left-shape {
    display: none;
  }
}

.gt-about-wrapper-5 .gt-about-image {
  max-width: 470px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-5 .gt-about-image {
    max-width: 900px;
  }
}
.gt-about-wrapper-5 .gt-about-image img {
  width: 100%;
  height: 100%;
}
.gt-about-wrapper-5 .gt-about-image .gt-about-image-2 {
  max-width: 268px;
  position: absolute;
  top: 20%;
  right: -34%;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-5 .gt-about-image .gt-about-image-2 {
    right: -16%;
  }
}
@media (max-width: 1199px) {
  .gt-about-wrapper-5 .gt-about-image .gt-about-image-2 {
    right: 0;
    top: initial;
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .gt-about-wrapper-5 .gt-about-image .gt-about-image-2 {
    max-width: 150px;
  }
}
.gt-about-wrapper-5 .gt-about-image .counter-box {
  background-color: #fab249;
  padding: 20px 40px;
  text-align: center;
  max-width: 380px;
  position: absolute;
  bottom: -20px;
  right: -160px;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-5 .gt-about-image .counter-box {
    right: -80px;
  }
}
@media (max-width: 1199px) {
  .gt-about-wrapper-5 .gt-about-image .counter-box {
    display: none;
  }
}
.gt-about-wrapper-5 .gt-about-image .counter-box h2 {
  color: var(--gt-white);
}
.gt-about-wrapper-5 .gt-about-image .counter-box h2 .gt-text-2 {
  font-size: 20px;
  font-weight: 600;
}
.gt-about-wrapper-5 .gt-about-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper-5 .gt-about-content {
    margin-left: 0;
  }
}
.gt-about-wrapper-5 .gt-about-content .gt-about-text {
  margin-top: 30px;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-5 .gt-about-content .gt-list-area {
    flex-wrap: wrap;
  }
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area ul li {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 9;
  padding: 16px 40px;
  padding-top: 0;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-5 .gt-about-content .gt-list-area ul li {
    flex-wrap: wrap;
    padding: 16px;
  }
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area ul li:not(:last-child) {
  margin-bottom: 24px;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  z-index: -1;
  height: initial;
  width: initial;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area ul li .gt-content {
  max-width: 255px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .gt-about-wrapper-5 .gt-about-content .gt-list-area ul li .gt-content {
    margin-top: 0;
  }
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area ul li .gt-content h4 {
  font-size: 18px;
  font-weight: 600;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area ul li .gt-content span {
  font-size: 14px;
  line-height: 1;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area .gt-video-bg {
  position: relative;
  text-align: center;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area .gt-video-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(252, 90, 17, 0.8), rgba(29, 29, 29, 0.8));
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area .gt-video-bg .gt-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area .gt-video-bg .video-btn {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  display: inline-block;
  background-color: #fab249;
  color: var(--gt-white);
  border-radius: 50%;
  margin-bottom: 20px;
}
.gt-about-wrapper-5 .gt-about-content .gt-list-area .gt-video-bg h3 {
  color: var(--gt-white);
  font-size: 18px;
  font-weight: 600;
}

.gt-about-section-4 {
  position: relative;
  z-index: 9;
}
.gt-about-section-4 .gt-left-shape {
  position: absolute;
  left: 150px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-about-section-4 .gt-left-shape {
    display: none;
  }
}
.gt-about-section-4 .gt-right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .gt-about-section-4 .gt-right-shape {
    display: none;
  }
}
.gt-about-section-4 .gt-right-top-shape {
  position: absolute;
  top: 110px;
  right: 110px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-about-section-4 .gt-right-top-shape {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}
.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@keyframes moveRightToLeft {
  0% {
    left: 100%;
  }
  100% {
    left: -100px;
  }
}

.modal-common-wrap {
  position: fixed;
  z-index: 9999;
  overflow-y: scroll;
  max-height: 100vh;
}
.modal-common-wrap .modal-content {
  background: transparent;
  border: unset;
}
.modal-common-wrap .modal-header {
  border-radius: 0;
  padding: 0 0;
  margin-left: auto;
  border: unset;
  background: var(--gt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99;
}
.modal-common-wrap .modal-header .btn-close {
  margin: 0 0;
  padding: 0 0;
  outline: none;
  width: 40px;
  height: 40px;
}
.modal-common-wrap .modal-body {
  background: var(--gt-white);
  padding: 0 0;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-image img {
  width: 100%;
  height: 100%;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content {
  padding: 50px;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .gt-join-content {
  max-width: 570px;
  text-align: center;
  margin: 0 auto 0;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content h3 {
  margin-bottom: 10px;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt span {
  font-size: 18px;
  font-weight: 600;
  color: "Barlow", sans-serif;
  color: var(--gt-header);
  padding-bottom: 12px;
  display: inline-block;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt input, .modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt textarea {
  width: 100%;
  border: none;
  line-height: 1;
  padding: 18px 24px;
  line-height: 1;
  background-color: #F2F2F2;
  color: var(--gt-text);
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt textarea {
  padding-bottom: 120px;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt .form .single-select {
  border: none;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  line-height: 1;
  height: initial;
  line-height: 1;
  padding: 18px 24px;
  line-height: 1;
  background-color: #F2F2F2;
  border-radius: 0;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--gt-header);
  border-right: 2px solid var(--gt-header);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt .form .single-select span {
  margin-bottom: 0;
  color: var(--gt-text);
  padding-bottom: 0;
  font-weight: 400;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt .form .single-select .option {
  color: var(--gt-text);
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .form-clt .form .list {
  width: 100%;
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .gt-button .gt-icon-btn {
  background-color: var(--gt-header);
}
.modal-common-wrap .modal-body .gt-join-club-form .gt-join-club-content .gt-button .gt-icon-btn::after {
  background-color: #fab249;
}
.modal-common-wrap .modal-dialog {
  max-width: 850px;
}
.modal-common-wrap .modal-dialog.style-shop-details {
  max-width: 1380px;
}
.modal-common-wrap .modal-dialog.style-shop-details .modal-header {
  background-color: var(--gt-bg);
}
.modal-common-wrap .modal-dialog.style-shop-details .gt-shop-details-wrapper {
  padding: 30px;
}

.gt-newsletter-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  background: linear-gradient(90deg, #E63946 0%, #1D1D1D 100%);
  padding: 10px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper {
    flex-wrap: wrap;
    gap: 75px;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .gt-newsletter-wrapper {
    margin-bottom: 80px;
    gap: 30px;
  }
}
.gt-newsletter-wrapper::before {
  position: absolute;
  content: "";
  width: 151px;
  height: 168px;
  top: 0;
  left: -151px;
  background-color: var(--gt-header);
  clip-path: polygon(100% 1%, 0% 100%, 100% 100%);
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper::before {
    display: none;
  }
}
.gt-newsletter-wrapper::after {
  position: absolute;
  content: "";
  width: 151px;
  height: 168px;
  top: 0;
  right: -151px;
  background-color: var(--gt-header);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper::after {
    display: none;
  }
}
.gt-newsletter-wrapper .gt-footer-logo {
  padding: 27px 57px;
  background-color: var(--gt-header);
}
.gt-newsletter-wrapper .gt-cta-content-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper .gt-cta-content-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-newsletter-wrapper .gt-cta-content-wrapper .gt-content h3 {
  color: var(--gt-white);
}
.gt-newsletter-wrapper .gt-cta-content-wrapper .gt-content p {
  color: var(--gt-white);
}
.gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget {
  position: relative;
  width: 570px;
}
@media (max-width: 1199px) {
  .gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget {
    width: 100%;
    max-width: 570px;
  }
}
.gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget input {
  width: 100%;
  border: none;
  background-color: var(--gt-white);
  position: relative;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 18px;
  color: var(--gt-text);
  border-radius: 0;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget input {
    font-size: 16px;
  }
}
.gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget input::placeholder {
  color: var(--gt-text);
}
.gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
}
@media (max-width: 470px) {
  .gt-newsletter-wrapper .gt-cta-content-wrapper .search-widget button.gt-theme-btn {
    position: static;
    margin-top: 20px;
  }
}

.contact-info-items {
  display: flex;
  gap: 20px;
}
.contact-info-items .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #fab249;
  text-align: center;
  color: var(--gt-white);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.contact-info-items .icon:hover {
  background-color: var(--gt-header);
}
.contact-info-items .content h4 {
  color: var(--gt-header);
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.contact-info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--gt-text);
  line-height: 150%;
}
.contact-info-items .content h6 a {
  color: var(--gt-text);
}

.gt-contact-us-wrapper {
  background-color: var(--gt-bg);
  padding: 48px;
  position: relative;
}
@media (max-width: 767px) {
  .gt-contact-us-wrapper {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .gt-contact-us-wrapper {
    padding: 30px;
  }
}
.gt-contact-us-wrapper h2 {
  font-size: 48px;
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 1199px) {
  .gt-contact-us-wrapper h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .gt-contact-us-wrapper h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .gt-contact-us-wrapper h2 {
    font-size: 35px;
  }
}
.gt-contact-us-wrapper .form-clt span {
  color: var(--gt-header);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.gt-contact-us-wrapper .form-clt input, .gt-contact-us-wrapper .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--gt-white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--gt-text);
  font-size: 16px;
}
.gt-contact-us-wrapper .form-clt input::placeholder, .gt-contact-us-wrapper .form-clt textarea::placeholder {
  color: var(--gt-text);
}
.gt-contact-us-wrapper .form-clt textarea {
  padding-bottom: 80px;
  resize: none;
}
.gt-contact-us-wrapper .contact-btn {
  text-align: center;
}
@media (max-width: 1199px) {
  .gt-contact-us-wrapper .contact-btn {
    text-align: left;
  }
}
.gt-contact-us-wrapper .contact-btn button.gt-theme-btn {
  justify-content: center;
}
.gt-contact-us-wrapper .contact-btn button.gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.gt-contact-us-wrapper .contact-btn button.gt-theme-btn .gt-icon-btn::after {
  background-color: #fab249;
}

.gt-map-section {
  margin-top: -130px;
}
@media (max-width: 1199px) {
  .gt-map-section {
    margin-top: 0;
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .gt-map-section {
    margin-top: 80px;
  }
}

.gt-map-items .googpemap iframe {
  width: 100%;
  height: 686px;
}
@media (max-width: 575px) {
  .gt-map-items .googpemap iframe {
    height: 300px;
  }
}

.gt-instagram-image {
  position: relative;
  overflow: hidden;
}
.gt-instagram-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  top: 30px;
  bottom: 0px;
  right: 0;
  background: rgba(29, 29, 29, 0.6);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  z-index: 9;
}
.gt-instagram-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-instagram-image .gt-icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.gt-instagram-image:hover .gt-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gt-instagram-image:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.gt-instagram-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.gt-instagram-image.style-2::before {
  top: 0;
  right: 0;
  left: 0;
  background: rgba(230, 57, 70, 0.38);
  width: 100%;
  height: 100%;
}

.gt-instagram-slider {
  margin-left: -5%;
  margin-right: -5%;
}
@media (max-width: 1199px) {
  .gt-instagram-slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.gt-cta-offer-wrapper {
  padding: 50px 108px 65px 20px;
  position: relative;
}
@media (max-width: 1399px) {
  .gt-cta-offer-wrapper {
    padding: 80px 70px;
  }
}
@media (max-width: 1199px) {
  .gt-cta-offer-wrapper {
    padding: 70px 60px;
  }
}
@media (max-width: 767px) {
  .gt-cta-offer-wrapper {
    padding: 60px 40px;
  }
}
@media (max-width: 575px) {
  .gt-cta-offer-wrapper {
    padding: 50px 30px;
  }
}
.gt-cta-offer-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1D1D1D 0%, #E63946 100%);
}
.gt-cta-offer-wrapper .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.gt-cta-offer-wrapper .line-shape img {
  width: 100%;
}
@media (max-width: 1199px) {
  .gt-cta-offer-wrapper .line-shape {
    display: none;
  }
}
.gt-cta-offer-wrapper .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .gt-cta-offer-wrapper .left-shape {
    display: none;
  }
}
.gt-cta-offer-wrapper .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .gt-cta-offer-wrapper .right-shape {
    display: none;
  }
}
.gt-cta-offer-wrapper .gt-cta-image {
  position: absolute;
  bottom: -36px;
  left: -200px;
  opacity: 0;
  transform: translateX(-500px);
  transition: all 1s ease-in-out;
}
.gt-cta-offer-wrapper .gt-cta-image.in-view {
  left: 20px;
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1199px) {
  .gt-cta-offer-wrapper .gt-cta-image {
    max-width: 600px;
    bottom: -55px;
  }
}
@media (max-width: 991px) {
  .gt-cta-offer-wrapper .gt-cta-image {
    display: none;
  }
}
.gt-cta-offer-wrapper .gt-cta-image img {
  width: 100%;
  height: 100%;
}
.gt-cta-offer-wrapper .gt-cta-content {
  position: relative;
  text-align: right;
}
.gt-cta-offer-wrapper .gt-cta-content h2 {
  font-size: 60px;
  color: var(--gt-white);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .gt-cta-offer-wrapper .gt-cta-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .gt-cta-offer-wrapper .gt-cta-content h2 {
    font-size: 40px;
  }
}
.gt-cta-offer-wrapper .gt-cta-content h4 {
  font-weight: 600;
  color: var(--gt-white);
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn {
  margin-top: 40px;
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn .gt-text-btn {
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn .gt-text-btn::after {
  background-color: var(--gt-header);
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-white);
}
.gt-cta-offer-wrapper .gt-cta-content .gt-theme-btn:hover .gt-icon-btn {
  color: var(--gt-header);
}

@media (max-width: 1199px) {
  .gt-cta-offer-section {
    margin-bottom: 30px;
  }
}

.cta-offer-section {
  position: relative;
}
.cta-offer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-bg);
  height: 50%;
}

.gt-instagram-section-3 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .gt-instagram-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .gt-instagram-section-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .gt-instagram-section-3 .container-fluid {
    padding: 0 30px;
  }
}

.cta-contact-wrapper-4 .cta-contact-left .icon-items .video-btn.ripple::before, .cta-contact-wrapper-4 .cta-contact-left .icon-items .video-btn.ripple::after {
  width: 60px;
  height: 60px;
  box-shadow: 0 0 0 0 rgba(248, 188, 38, 0.5);
}
.cta-contact-wrapper-4 .cta-contact-left .icon-items .content p {
  color: var(--gt-white);
  position: relative;
}
.cta-contact-wrapper-4 .cta-contact-left .icon-items .content h5 a {
  color: var(--gt-white);
  position: relative;
}
.cta-contact-wrapper-4 .contact-image {
  max-width: 356px;
  margin-bottom: -70px;
  position: relative;
  z-index: 1;
}
.cta-contact-wrapper-4 .contact-image img {
  width: 100%;
  height: 100%;
}

.cta-section-4 {
  position: relative;
}
.cta-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-header);
  bottom: -50%;
  top: initial;
}

.color-palate {
  position: fixed;
  left: 0px;
  text-align: center;
  top: 30%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  max-width: 300px;
  z-index: 999999;
  transform: translate(-100%);
}
.color-palate .color-palate-inner {
  position: relative;
  padding: 30px 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all;
  transition: all;
  background: #ffffff;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.color-palate .color-palate-inner::-webkit-scrollbar {
  width: 5px;
}
.color-palate .color-palate-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.color-palate .color-palate-inner::-webkit-scrollbar-thumb {
  background: #888;
}
.color-palate .color-palate-inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.color-palate .color-picker-panel {
  margin-top: 15px;
}
.color-palate .color-picker-panel input[type=color] {
  -webkit-appearance: none;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.color-palate .rtl-version li:first-child {
  background-color: var(--gt-header);
  border: 1px solid transparent;
}
.color-palate .rtl-version li:first-child:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.color-palate .rtl-version li:last-child {
  background-color: transparent;
  border: 1px solid #fab249;
  color: var(--gt-header);
}
.color-palate .rtl-version li:last-child:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.color-palate .box-version li:first-child {
  background-color: transparent;
  border: 1px solid #fab249;
  color: var(--gt-header);
}
.color-palate .box-version li:first-child:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.color-palate .box-version li:last-child {
  background-color: var(--gt-header);
  border: 1px solid transparent;
}
.color-palate .box-version li:last-child:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.color-palate .color-trigger,
.color-palate .close-color-trigger {
  background: #fab249;
  cursor: pointer;
  height: 36px;
  width: 36px;
  left: 100%;
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  mix-blend-mode: exclusion;
}

.color-palate .color-trigger i {
  color: #ffffff;
  font-size: 16px;
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
}

.color-palate .close-color-trigger i {
  color: #ffffff;
  font-size: 20px;
}

.color-palate .close-color-trigger {
  display: none;
}

.color-palate h6 {
  font-weight: 700;
  color: var(--gt-header);
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 20px;
}

.color-palate .box-version {
  padding-top: 10px;
  padding-bottom: 0px;
}

.color-palate .option-box {
  padding-top: 10px;
}

.color-palate .option-box .active {
  background-color: #fab249 !important;
  color: var(--gt-white) !important;
}

.color-palate .option-box > li {
  position: relative;
  color: #ffffff;
  width: 40%;
  margin: 0px 3px;
  cursor: pointer;
  margin-bottom: 9px;
  padding: 8px 12px;
  font-size: 14px;
  display: inline-block;
  background-color: #fab249;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}

.color-palate.visible-palate {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.gt-faq-wrapper {
  padding-bottom: 80px;
}
.gt-faq-wrapper .gt-faq-content {
  max-width: 560px;
}
.gt-faq-wrapper .gt-faq-content .gt-faq-text {
  margin-top: 25px;
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .gt-faq-wrapper .gt-faq-content .gt-faq-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .gt-faq-wrapper .gt-faq-content .gt-faq-button {
    margin-top: 30px;
    justify-content: center;
  }
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn .gt-text-btn {
  border: 1px solid #fab249;
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn .gt-text-btn::after {
  background-color: #fab249;
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn .gt-text-btn::after {
  background-color: var(--gt-white);
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn.gt-border-style .gt-text-btn {
  border: 1px solid var(--gt-header);
  background: transparent;
  color: var(--gt-header);
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn.gt-border-style .gt-text-btn::after {
  background-color: #fab249;
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn.gt-border-style .gt-text-btn:hover {
  color: #fff;
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-header);
  border: 1px solid var(--gt-white);
}
.gt-faq-wrapper .gt-faq-content .gt-faq-button .gt-theme-btn:hover .gt-icon-btn {
  color: var(--gt-header);
}
.gt-faq-wrapper .faq-items {
  background-color: #fff;
  padding: 48px;
}
@media (max-width: 575px) {
  .gt-faq-wrapper .faq-items {
    padding: 25px;
  }
}
.gt-faq-wrapper .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--gt-bg);
  padding: 0;
}
.gt-faq-wrapper .faq-items .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 24px 30px;
  font-family: "Barlow", sans-serif;
  color: var(--gt-header);
}
@media (max-width: 1399px) {
  .gt-faq-wrapper .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    adding: 24px 20px;
  }
}
.gt-faq-wrapper .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
}
.gt-faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--gt-text);
  font-size: 1x;
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 575px) {
  .gt-faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.gt-faq-wrapper .faq-items .accordion .accordion-button {
  background-color: #fab249;
  color: var(--gt-white) !important;
}
.gt-faq-wrapper .faq-items .accordion .accordion-button::after {
  display: none;
}
.gt-faq-wrapper .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f324";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  transform: rotate(90deg);
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: #fab249;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--gt-white);
}
.gt-faq-wrapper .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--gt-header) !important;
}
.gt-faq-wrapper .faq-items .accordion .accordion-button.collapsed::before {
  font-family: "Font Awesome 5 Pro";
  color: var(--gt-white);
  background-color: #fab249;
  transform: rotate(0);
}

.faq-section {
  position: relative;
  z-index: 9;
}
.faq-section .faq-shape {
  position: absolute;
  bottom: 20px;
  left: 40%;
  transform: translateX(-50%);
  z-index: -1;
}

.faq-wrapper-new .faq-image {
  max-width: 570px;
}
@media (max-width: 1199px) {
  .faq-wrapper-new .faq-image {
    max-width: 800px;
  }
}
.faq-wrapper-new .faq-image img {
  width: 100%;
  height: 100%;
}
.faq-wrapper-new .faq-content .section-title {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .faq-wrapper-new .faq-content .section-title {
    text-align: left;
  }
}
.faq-wrapper-new .faq-content .faq-items {
  position: relative;
  z-index: 9;
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(30, 32, 35, 0.12);
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 29px 30px;
  font-family: "Barlow", sans-serif;
  color: var(--gt-header);
  cursor: pointer;
}
@media (max-width: 575px) {
  .faq-wrapper-new .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--gt-text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .faq-wrapper-new .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--gt-header);
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 29px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: #fab249;
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--gt-header);
}
.faq-wrapper-new .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f067";
}
.faq-wrapper-new.style-faq-page {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .faq-wrapper-new.style-faq-page {
    margin-top: 30px;
  }
}

.faq-section-new {
  position: relative;
}
.gt-counter-wrapper .gt-counter-box {
  position: relative;
  z-index: 9;
  padding: 30px;
}
.gt-counter-wrapper .gt-counter-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-white);
  z-index: -1;
  height: initial;
}
.gt-counter-wrapper .gt-counter-box .gt-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.gt-counter-wrapper .gt-counter-box .gt-content h2 {
  font-size: 72px;
  font-weight: 800;
  text-decoration: none;
  -webkit-text-stroke: 2px var(--gt-header);
  color: transparent;
}
@media (max-width: 1399px) {
  .gt-counter-wrapper .gt-counter-box .gt-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .gt-counter-wrapper .gt-counter-box .gt-content h2 {
    font-size: 55px;
  }
}
@media (max-width: 470px) {
  .gt-counter-wrapper .gt-counter-box .gt-content h2 {
    font-size: 44px;
  }
}
.gt-counter-wrapper .gt-counter-box .gt-content p {
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .gt-counter-wrapper .gt-counter-box .gt-content p {
    font-size: 16px;
  }
}
@media (max-width: 470px) {
  .gt-counter-wrapper .gt-counter-box .gt-content p {
    font-size: 14px;
  }
}
.gt-counter-wrapper .gt-counter-box:hover .gt-icon::before {
  height: 100%;
}
.gt-counter-wrapper .gt-counter-box:hover .gt-icon i {
  transform: scaleX(-1) !important;
}

.gt-counter-section {
  position: relative;
  z-index: 9;
}
.gt-counter-section .gt-counter-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.gt-purposes-section {
  position: relative;
}
@media (max-width: 1399px) {
  .gt-purposes-section {
    padding: 120px 0;
  }
}
@media (max-width: 1199px) {
  .gt-purposes-section {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .gt-purposes-section {
    padding: 80px 0;
  }
}
.gt-purposes-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-header);
  z-index: -1;
  left: 30%;
}
@media (max-width: 1399px) {
  .gt-purposes-section::before {
    left: 0;
  }
}
.gt-purposes-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-bg);
  z-index: -1;
  width: 45%;
  height: 47%;
}
@media (max-width: 1399px) {
  .gt-purposes-section::after {
    width: 100%;
    height: 100%;
    background-color: var(--gt-header);
  }
}
.gt-purposes-section .gt-dot-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-purposes-section .gt-dot-shape {
    display: none;
  }
}
.gt-purposes-section .gt-bike-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .gt-purposes-section .gt-bike-shape {
    display: none;
  }
}
.gt-purposes-section .gt-bg-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 1399px) {
  .gt-purposes-section .gt-bg-shape {
    display: none;
  }
}
.gt-purposes-section .gt-bg-shape img {
  width: 100%;
}
.gt-purposes-section .gt-dot-shape-2 {
  position: absolute;
  left: 65%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-purposes-section .gt-dot-shape-2 {
    display: none;
  }
}
.gt-purposes-section .gt-bike-shape-2 {
  position: absolute;
  top: -270px;
  left: 0;
}
@media (max-width: 1399px) {
  .gt-purposes-section .gt-bike-shape-2 {
    display: none;
  }
}
.gt-purposes-section .gt-bg-shape-2 {
  position: absolute;
  left: 0;
  top: 40%;
  width: 900px;
}
@media (max-width: 1399px) {
  .gt-purposes-section .gt-bg-shape-2 {
    display: none;
  }
}
.gt-purposes-section .gt-bg-shape-2 img {
  width: 100%;
}

.gt-purposes-wrapper .gt-purposes-image {
  position: relative;
  z-index: 9;
  height: 800px;
}
@media (max-width: 1399px) {
  .gt-purposes-wrapper .gt-purposes-image {
    height: initial;
  }
  .gt-purposes-wrapper .gt-purposes-image img {
    object-fit: initial;
  }
}
.gt-purposes-wrapper .gt-purposes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gt-purposes-wrapper .gt-purposes-image .gt-circle-box {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background-color: #fab249;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 155px;
}
.gt-purposes-wrapper .gt-purposes-image .gt-circle-box .gt-arrow {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--gt-white);
  display: block;
  color: var(--gt-header);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.gt-purposes-wrapper .gt-purposes-image .gt-circle-box .gt-arrow i {
  transform: rotate(-45deg);
}
.gt-purposes-wrapper .gt-purposes-image .gt-circle-box .gt-text-circle {
  text-align: center;
  animation: cir36 10s linear infinite;
}
.gt-purposes-wrapper .gt-purposes-image .gt-circle-box .gt-text-circle img {
  width: initial;
}
.gt-purposes-wrapper .gt-purposes-content {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .gt-purposes-wrapper .gt-purposes-content {
    margin-left: 0;
  }
}
.gt-purposes-wrapper .gt-purposes-content .text {
  margin-top: 24px;
  color: var(--gt-white);
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items {
  margin-top: 30px;
  margin-bottom: 50px;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gt-text);
  padding-bottom: 12px;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li .gt-purposes-icon {
  position: relative;
  width: 64px;
  height: 64px;
  line-height: 67px;
  background-color: var(--gt-white);
  text-align: center;
  font-size: 28px;
  color: var(--gt-header);
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li .gt-purposes-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #fab249;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li .gt-purposes-icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
@media (max-width: 470px) {
  .gt-purposes-wrapper .gt-purposes-content .gt-icon-items li .gt-icon-purposes-content {
    flex-basis: 70%;
  }
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li .gt-icon-purposes-content h3 {
  color: var(--gt-white);
  margin-bottom: 5px;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li .gt-icon-purposes-content p {
  color: #FCFCFC;
  opacity: 0.7;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li:hover .gt-purposes-icon {
  color: var(--gt-white);
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li:hover .gt-purposes-icon::before {
  height: 100%;
}
.gt-purposes-wrapper .gt-purposes-content .gt-icon-items li:hover .gt-purposes-icon i {
  transform: scaleX(-1) !important;
}
.gt-purposes-wrapper .gt-purposes-content .gt-theme-btn .gt-text-btn::after {
  background-color: var(--gt-white);
}
.gt-purposes-wrapper .gt-purposes-content .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.gt-purposes-wrapper .gt-purposes-content .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.gt-purposes-wrapper .gt-purposes-content .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-header);
}
.gt-purposes-wrapper .gt-purposes-content .gt-theme-btn:hover .gt-icon-btn {
  color: var(--gt-header);
}

.gt-funfact-wrapper {
  position: relative;
}
.gt-funfact-wrapper .gt-funfact-box-items {
  border: 1px solid #BFBFBF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
@media (max-width: 991px) {
  .gt-funfact-wrapper .gt-funfact-box-items {
    display: inline-flex;
  }
}
.gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter {
  text-align: center;
  padding: 60px 30px;
  border-right: 1px solid #BFBFBF;
}
.gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter.border-none {
  border-right: none;
}
.gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter h2 {
  font-size: 72px;
  margin-bottom: 10px;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter h2 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter h2 {
    font-size: 40px;
  }
}
.gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter p {
  font-size: 20px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #595959;
}
@media (max-width: 991px) {
  .gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter p {
    font-size: 16px;
    margin-top: 5px;
  }
}
@media (max-width: 470px) {
  .gt-funfact-wrapper .gt-funfact-box-items .gt-funfact-counter p {
    font-size: 14px;
    line-height: 1.3;
  }
}
.gt-funfact-wrapper .gt-funfact-box-items.style-2 {
  margin-top: 45px;
}
.gt-funfact-wrapper .funfact-text {
  font-size: 140px;
  letter-spacing: -1.4px;
  opacity: 0.03;
  line-height: 1;
  padding-top: 50px;
}
@media (max-width: 1399px) {
  .gt-funfact-wrapper .funfact-text {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .gt-funfact-wrapper .funfact-text {
    display: none;
  }
}
.gt-funfact-wrapper .gt-funfact-content .gt-section-title {
  margin-left: 30px;
}
@media (max-width: 991px) {
  .gt-funfact-wrapper .gt-funfact-content .gt-section-title {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .gt-funfact-wrapper .gt-funfact-content .gt-section-title {
    text-align: center;
  }
}

.gt-feature-item-3 {
  background-color: var(--gt-bg);
  padding: 40px;
  position: relative;
}
@media (max-width: 575px) {
  .gt-feature-item-3 {
    padding: 30px;
  }
}
.gt-feature-item-3 .gt-icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .gt-feature-item-3 .gt-icon-item {
    flex-wrap: wrap;
  }
}
.gt-feature-item-3 .gt-icon-item .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--gt-border);
  color: #fab249;
  transition: all 0.4s ease-in-out;
}
.gt-feature-item-3 .gt-icon-item .icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.gt-feature-item-3:hover .icon {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-feature-item-3:hover .icon i {
  transform: scaleX(-1) !important;
}

.gt-pricing-card-item-3 {
  margin-top: 30px;
  background-color: var(--gt-bg);
  padding: 40px;
}
.gt-pricing-card-item-3 .gt-pricing-header h3 {
  margin-bottom: 10px;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border-bottom: 1.5px solid #D9D9D9;
  padding-bottom: 24px;
  margin-bottom: 30px;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price h2 {
  font-size: 40px;
  color: #fab249;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price h2 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-text);
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price .text {
  font-size: 12px;
  font-weight: 400;
  transform: rotate(30.625deg);
  padding: 8px 12px;
  background-color: var(--gt-header);
  border-radius: 100px;
  color: var(--gt-white);
  line-height: 1;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price .icon {
  width: 48px;
  height: 48px;
  line-height: 54px;
  text-align: center;
  background-color: var(--gt-white);
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
  font-size: 28px;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price .icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.gt-pricing-card-item-3 .gt-pricing-list {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-pricing-card-item-3 .gt-pricing-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-pricing-card-item-3 .gt-pricing-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.gt-pricing-card-item-3 .gt-pricing-list li:not(:last-child) {
  margin-bottom: 14px;
}
.gt-pricing-card-item-3 .gt-pricing-list li i {
  color: var(--gt-header);
  margin-right: 8px;
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn {
  background-color: transparent;
  border: 1.5px solid #fab249;
  justify-content: center;
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn .gt-text-btn {
  border: 1.5px solid #fab249;
  justify-content: center;
}
.gt-pricing-card-item-3:hover .gt-pricing-header .gt-pricing-price .icon {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-pricing-card-item-3:hover .gt-pricing-header .gt-pricing-price .icon i {
  transform: scaleX(-1) !important;
}

.gt-video-wrapper {
  height: 630px;
  position: relative;
  z-index: 9;
  background-attachment: fixed;
}
@media (max-width: 575px) {
  .gt-video-wrapper {
    height: 360px;
  }
}
.gt-video-wrapper .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  background-color: #fab249;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gt-video-section {
  position: relative;
  z-index: 9;
}
.gt-video-section .horse-shape {
  position: absolute;
  right: 0;
  top: -190px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-video-section .horse-shape {
    display: none;
  }
}
.gt-video-section .dot-shape {
  position: absolute;
  left: 0;
  top: -490px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-video-section .dot-shape {
    display: none;
  }
}

.gt-feature-wrapper-5 .feature-image img {
  width: 100%;
  height: 100%;
}
.gt-feature-wrapper-5 .gt-feature-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .gt-feature-wrapper-5 .gt-feature-content {
    margin-left: 0;
  }
}
.gt-feature-wrapper-5 .gt-feature-content .gt-text {
  font-size: 16px;
  color: #FCFCFC;
  opacity: 0.7;
  margin-top: 25px;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap {
  margin-top: 30px;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items {
  width: 100%;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .pro-head .title {
  font-size: 18px;
  color: var(--gt-white);
  font-weight: 600;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .pro-head .point {
  font-size: 18px;
  color: var(--gt-white);
  font-weight: 600;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .progress {
  background: #F2F2F2;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: #fab249;
  height: 10px;
  width: 0;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.gt-feature-wrapper-5 .gt-feature-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.gt-feature-wrapper-5 .gt-feature-content .gt-theme-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .gt-feature-wrapper-5 .gt-feature-content .gt-theme-btn {
    margin-top: 30px;
  }
}
.gt-feature-wrapper-5 .gt-feature-content .gt-theme-btn .gt-text-btn {
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-feature-wrapper-5 .gt-feature-content .gt-theme-btn .gt-text-btn::after {
  background-color: #fab249;
}
.gt-feature-wrapper-5 .gt-feature-content .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-white);
}

.gt-feature-section-5 {
  position: relative;
  z-index: 9;
}
.gt-feature-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(252, 90, 17, 0.8), rgba(29, 29, 29, 0.8));
  z-index: -1;
}

.gt-gallery-wrapper .gt-gallery-image {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  z-index: 9;
}
.gt-gallery-wrapper .gt-gallery-image::before {
  background: linear-gradient(0deg, rgba(29, 29, 29, 0.48) 0%, rgba(29, 29, 29, 0.48) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.gt-gallery-wrapper .gt-gallery-image .gt-icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  background-color: #fab249;
}
.gt-gallery-wrapper .gt-gallery-image .gt-icon:hover {
  background-color: var(--gt-header);
}
.gt-gallery-wrapper .gt-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gt-gallery-wrapper .gt-gallery-image:hover .gt-icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.gt-gallery-wrapper .gt-gallery-image:hover::before {
  opacity: 1;
  visibility: visible;
}
.gt-gallery-wrapper .gt-gallery-image.height-1 {
  height: 442px;
}
.gt-gallery-wrapper .gt-gallery-image.height-2 {
  height: 357px;
}

.gt-footer-widget-wrapper {
  padding: 50px 0 30px;
}

.gt-footer-widget-wrapper .gt-footer-widget-items {
  margin-top: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head {
  margin-bottom: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head h3 {
  color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content p {
  color: #FCFCFC;
  opacity: 0.7;
  max-width: 480px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1399px) {
  .gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list li {
  font-size: 20px;
  font-weight: 600;
  color: var(--gt-white);
  font-family: "Barlow", sans-serif;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list li .icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list li .icon span {
  font-size: 18px;
  color: #FCFCFC;
  opacity: 0.7;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list li a {
  font-size: 20px;
  font-weight: 600;
  color: var(--gt-white);
  font-family: "Barlow", sans-serif;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list-2 {
  padding: 16px 24px;
  background-color: #fab249;
  margin-top: 22px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list-2 li {
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list-2 li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-contact-list-2 li a {
  color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt {
  position: relative;
  margin-top: 24px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--gt-white);
  line-height: 1;
  padding: 20px;
  color: var(--gt-text);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt .gt-theme-btn {
  margin-top: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt .gt-theme-btn .gt-text-btn::after {
  background-color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-header);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .form-clt .gt-theme-btn:hover .gt-icon-btn {
  color: var(--gt-header);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li a {
  color: #FCFCFC;
  opacity: 0.7;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover a {
  color: #fab249;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-list-2 li {
  color: #FCFCFC;
  opacity: 0.7;
  display: flex;
  gap: 12px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-list-2 li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-list-2 li a {
  color: #FCFCFC;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-list-2 li i {
  line-height: inherit;
  color: #fab249;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-content li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-content li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-content li a {
  color: rgba(255, 255, 255, 0.7);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-contact-content li span i {
  color: #fab249;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .footer-socials a {
  color: #fab249;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .gt-widget-head h3 {
  position: relative;
  padding-bottom: 15px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .gt-widget-head h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 55px;
  height: 2px;
  background-color: #fab249;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .gt-footer-content .gt-list {
  margin-top: 20px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .gt-footer-content .gt-list li {
  font-size: 18px;
  font-weight: 400;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .gt-footer-content .gt-list li a {
  color: var(--gt-border);
  opacity: 0.7;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .gt-footer-content .gt-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery {
  margin-top: 40px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(230, 57, 70, 0.5);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--gt-white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 30px;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.gt-footer-widget-wrapper.gt-widget-wrapper-3 .gt-footer-widget-items .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}

.gt-footer-newsletter {
  border-bottom: 1px solid rgba(191, 191, 191, 0.32);
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-footer-newsletter {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-footer-newsletter .gt-newsletter-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 820px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gt-footer-newsletter .gt-newsletter-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-footer-newsletter .gt-newsletter-content h3 {
  color: var(--gt-white);
}
.gt-footer-newsletter .gt-newsletter-content form {
  max-width: 540px;
  width: 100%;
}
.gt-footer-newsletter .gt-newsletter-content .form-clt {
  position: relative;
}
.gt-footer-newsletter .gt-newsletter-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--gt-white);
  line-height: 1;
  padding: 20px;
  max-width: 540px;
}
.gt-footer-newsletter .gt-newsletter-content .form-clt .gt-theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
}
@media (max-width: 470px) {
  .gt-footer-newsletter .gt-newsletter-content .form-clt .gt-theme-btn {
    position: static;
    margin-top: 20px;
  }
}
.gt-footer-newsletter .gt-social-icon {
  gap: 15px;
}
.gt-footer-newsletter .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-footer-newsletter .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid rgba(191, 191, 191, 0.32);
}
.footer-bottom.style-2 {
  border-top: 1.5px solid rgba(140, 140, 140, 0.32);
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-bottom.style-2 .gt-footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper p {
  text-align: left;
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-footer-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-footer-list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-footer-list li {
  font-size: 16px;
  font-weight: 400;
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-footer-list li a {
  color: #FCFCFC;
  opacity: 0.7;
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-footer-list li a:hover {
  color: #fab249;
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-social-icon {
  gap: 15px;
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: rgba(253, 235, 237, 0.08);
  color: var(--gt-white);
}
.footer-bottom.style-2 .gt-footer-bottom-wrapper .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.footer-bottom.footer-bottom-3 {
  padding: 30px 0;
  border-top: 1.5px solid rgba(140, 140, 140, 0.32);
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 p {
  text-align: center;
  color: #FCFCFC;
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 p b {
  font-weight: 700;
  color: #fab249;
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-bottom-list {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1199px) {
  .footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-bottom-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-bottom-list li a {
  color: var(--gt-border);
  opacity: 0.7;
  transition: all 0.4s ease-in-out;
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-bottom-list li a:hover {
  color: #fab249;
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-social-icon {
  gap: 15px;
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: rgba(253, 235, 237, 0.08);
  color: var(--gt-white);
}
.footer-bottom.footer-bottom-3 .gt-footer-wrapper-3 .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom .footer-wrapper p {
  text-align: center;
  color: #FCFCFC;
}
.footer-bottom .footer-wrapper p b {
  font-weight: 700;
  color: #fab249;
}
.footer-bottom .footer-wrapper .gt-social-icon {
  gap: 15px;
}
.footer-bottom .footer-wrapper .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.footer-bottom .footer-wrapper .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.gt-footer-section {
  position: relative;
  z-index: 9;
}
.gt-footer-section .gt-line-shape-2 {
  position: absolute;
  top: -52%;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-footer-section .gt-line-shape-2 {
    display: none;
  }
}
.gt-footer-section .gt-line-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-footer-section .gt-line-shape {
    display: none;
  }
}
.gt-footer-section .gt-line-shape img {
  width: 100%;
}
.gt-footer-section .gt-dot-shape {
  position: absolute;
  right: 0;
  top: -50%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-footer-section .gt-dot-shape {
    display: none;
  }
}
.gt-footer-section .gt-sub-title {
  font-size: 140px;
  line-height: 1;
  letter-spacing: -1.4px;
  opacity: 0.04;
  position: absolute;
  top: 0;
  left: -15%;
  transform: rotate(90deg);
  bottom: 0;
  height: 100%;
  color: #FCFCFC;
  z-index: -1;
}
@media (max-width: 1899px) {
  .gt-footer-section .gt-sub-title {
    display: none;
  }
}

.gt-footer-section-4 {
  position: relative;
  margin-top: 18px;
}
.gt-footer-section-4 .gt-line-shape-animation {
  height: 28px;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  z-index: 12;
  background-size: cover;
}
@media (max-width: 1399px) {
  .gt-footer-section-4 .gt-line-shape-animation {
    display: none;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: #fab249 !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--gt-white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--gt-header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid #fab249;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--gt-header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: #fab249;
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: #fab249 !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: #fab249 !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: #fab249;
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fab249;
}
.header-main .main-menu ul li .has-homemenu {
  width: 1300px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
  padding: 0 12px;
  color: initial;
  justify-content: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn .gt-icon-btn, .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn .gt-text-btn {
  color: var(--gt-white);
  padding: 16px 22px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: #fab249;
}
.header-main .main-menu ul li:hover > a::after {
  color: #fab249;
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 60px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 30px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-1 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-2 {
  position: initial;
}
.header-1.header-2 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 1199px) {
  .header-1.header-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-1.header-2 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-3 {
  margin-top: 66px;
}
@media (max-width: 1399px) {
  .header-1.header-3 {
    margin-top: 0;
    position: initial;
  }
}
.header-1.header-3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .header-1.header-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-1.header-3 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-3 .header-main {
  z-index: 9;
  position: relative;
  padding: 20px 30px;
  background-color: var(--gt-header);
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main {
    padding: 20px 20px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main {
    padding: 20px 0;
    background-color: transparent;
  }
}
.header-1.header-3 .header-main::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-white);
  width: 322px;
  z-index: 9999;
  clip-path: polygon(0 0, 100% 0, 81% 100%, 0% 100%);
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main::before {
    width: 290px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main::before {
    display: none;
  }
}
.header-1.header-3 .header-main::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-color: #fab249;
  z-index: 999;
  width: 85%;
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main::after {
    width: 81%;
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main::after {
    display: none;
  }
}
.header-1.header-3 .header-main .header-left {
  display: flex;
  align-items: center;
  gap: 137px;
  position: relative;
  z-index: 9999;
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main .header-left {
    gap: 84px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-left {
    gap: 30px;
  }
}
@media (max-width: 1899px) {
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 30px;
  }
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: 23px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-left .main-menu ul li {
    margin-inline-end: initial;
  }
}
.header-1.header-3 .header-main .header-left .main-menu ul li a {
  color: var(--gt-white);
}
.header-1.header-3 .header-main .header-left .main-menu ul li a:hover {
  color: var(--gt-white) !important;
}
.header-1.header-3 .header-main .header-left .main-menu ul li .submenu li a {
  color: var(--gt-header) !important;
}
.header-1.header-3 .header-main .header-right {
  position: relative;
  z-index: 9999;
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main .header-right {
    gap: 30px;
  }
}
.header-1.header-3 .header-main .header-right .search-toggler {
  color: var(--gt-white);
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .search-toggler {
    color: var(--gt-header);
  }
}
.header-1.header-3 .header-main .header-right .header-right-icon-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .header-right-icon-item {
    display: none;
  }
}
.header-1.header-3 .header-main .header-right .header-right-icon-item .phone-icon {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border: 1px solid var(--gt-white);
  color: var(--gt-white);
  position: relative;
}
.header-1.header-3 .header-main .header-right .header-right-icon-item .phone-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-1.header-3 .header-main .header-right .header-right-icon-item .content h6 {
  color: var(--gt-white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 1600px) {
  .header-1.header-3 .header-main .header-right .header-right-icon-item .content h3 {
    font-size: 20px;
  }
}
.header-1.header-3 .header-main .header-right .header-right-icon-item .content h3 a {
  color: var(--gt-white);
}
@media (max-width: 1399px) {
  .header-1.header-3 .header-main .header-right .gt-theme-btn {
    display: none;
  }
}
.header-1.header-3 .header-main .header-right .gt-theme-btn .gt-text-btn {
  background: var(--gt-white);
  color: #fab249;
}
.header-1.header-3 .header-main .header-right .gt-theme-btn .gt-text-btn::after {
  background-color: var(--gt-header);
}
.header-1.header-3 .header-main .header-right .gt-theme-btn .gt-text-btn:hover {
  color: var(--gt-white);
}
.header-1.header-5 .header-main .main-menu ul li a {
  color: var(--gt-white);
}
.header-1.header-5 .header-main .main-menu ul li .submenu li a {
  color: var(--gt-header) !important;
}
.header-1.header-5 .header-main .header-right .header-right-icon .search-toggler {
  color: var(--gt-white);
}
.header-1.header-5 .header-main .header-right .sidebar__toggle img {
  filter: brightness(0) invert(1);
}

.header-1 .header-logo-2 {
  display: none;
}
.header-1 .header-right .header-right-icon {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-1 .header-right .header-right-icon .search-toggler {
  color: #3E4359;
  font-size: 22px;
}
.header-1 .header-right .header-right-icon .cart-icon {
  color: #2C2F3D;
  font-size: 22px;
}
@media (max-width: 1199px) {
  .header-1 .header-right .gt-theme-btn {
    display: none;
  }
}
.header-1 .header-right .gt-theme-btn .gt-text-btn.gt-bg-theme-color::after {
  background-color: #fab249;
}
.header-1 .header-right .gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.header-1 .header-right .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.header-1 .header-right .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.header-1 .header-right .gt-theme-btn .gt-icon-btn.gt-bg-theme-color {
  background-color: #fab249;
}
.header-1 .header-right .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-white);
}
.header-1 .header-right .gt-theme-btn:hover .gt-icon-btn {
  color: var(--gt-header);
}
.header-1 .header-right .sidebar__toggle {
  cursor: pointer;
}
.header-1 .header-right .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .header-right .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-1 .header-right .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .header-right .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

@media (max-width: 1399px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 40px;
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-top-section .container-fluid {
    padding: 0 15px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(44, 47, 61, 0.2);
  padding: 10px 0;
}
.header-top-wrapper span {
  font-size: 18px;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.header-top-wrapper span i {
  color: var(--gt-header);
  margin-right: 5px;
}
.header-top-wrapper h6 {
  letter-spacing: 4.5px;
  font-weight: 400;
}

.header-top-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 1399px) {
  .header-top-section-3 {
    display: none;
  }
}
.header-top-section-3 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .header-top-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-top-section-3 .container-fluid {
    padding: 0 15px;
  }
}

.header-top-wrapper-3 {
  background-color: var(--gt-header);
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .header-top-wrapper-3 {
    padding: 14px 20px;
  }
}
.header-top-wrapper-3 .header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-wrapper-3 .header-left span {
  color: var(--gt-white);
}
.header-top-wrapper-3 .header-left span i {
  margin-right: 10px;
  color: var(--gt-white);
}
.header-top-wrapper-3 .header-left span a {
  color: var(--gt-white);
}
.header-top-wrapper-3 .social-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-wrapper-3 .social-item a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: var(--gt-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1A1A1A;
}
.header-top-wrapper-3 .social-item a:hover {
  border: 1px solid #fab249;
  color: #fab249;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--gt-white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 .header-logo-2 {
  display: block;
}
.sticky.header-1 .header-logo {
  display: none;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--gt-header);
}
.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: #fab249 !important;
}
.sticky.header-1 .header-right .gt-theme-btn .gt-text-btn {
  background-color: var(--gt-header);
  color: var(--gt-white);
}
.sticky.header-1 .header-right .gt-theme-btn .gt-text-btn::after {
  background-color: #fab249;
}
.sticky.header-1 .header-right .header-right-icon .search-toggler {
  color: var(--gt-header);
}
.sticky.header-3 {
  margin-top: 0;
}
.sticky.header-3 .header-main {
  background-color: transparent;
  padding: initial;
}
@media (max-width: 1399px) {
  .sticky.header-3 .header-main {
    padding: 20px 0;
  }
}
.sticky.header-3 .header-main::before {
  display: none;
}
.sticky.header-3 .header-main::after {
  display: none;
}
.sticky.header-3 .header-main .header-left .main-menu ul li a {
  color: var(--gt-header);
}
.sticky.header-3 .header-main .header-right .search-toggler {
  color: var(--gt-header);
}
.sticky.header-3 .header-main .header-right .header-right-icon-item .phone-icon {
  border: 1px solid #fab249;
  color: var(--gt-white);
}
.sticky.header-3 .header-main .header-right .header-right-icon-item .phone-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fab249;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sticky.header-3 .header-main .header-right .header-right-icon-item .content h6 {
  color: var(--gt-header);
}
.sticky.header-3 .header-main .header-right .header-right-icon-item .content h3 a {
  color: var(--gt-header);
}
.sticky.header-3 .header-main .header-right .gt-theme-btn .gt-text-btn {
  background: #fab249;
  color: var(--gt-white);
}
.sticky.header-3 .header-main .header-right .gt-theme-btn .gt-text-btn::after {
  background-color: var(--gt-header);
}
.sticky.header-3 .header-main .header-right .gt-theme-btn .gt-text-btn:hover {
  color: var(--gt-white);
}
.sticky.header-5 .header-main .header-right .header-right-icon .search-toggler {
  color: var(--gt-header);
}
.sticky.header-5 .header-main .header-right .sidebar__toggle img {
  filter: initial;
}

.offcanvas__info {
  background: var(--gt-white) none repeat scroll 0 0;
  border-left: 2px solid #fab249;
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--gt-text);
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
    width: 80px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: #fab249;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--gt-white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    display: none !important;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--gt-text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: #fab249;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--gt-bg);
  color: var(--gt-header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.gt-breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.gt-breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(1deg, black, #fab249c9);
  z-index: -1;
}
.gt-breadcrumb-wrapper .gt-right-shape {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: -1;
  display: none;
}
.gt-breadcrumb-wrapper .gt-right-shape img {
  height: 100%;
}
.gt-breadcrumb-wrapper .gt-page-heading {
  position: relative;
  padding: 140px 0 110px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 140px 0;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
  color: var(--gt-white);
  font-size: 40px;
  position: relative;
  text-transform: uppercase;
  z-index: 9;
  font-weight: 800;
}
@media (max-width: 991px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 32px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
    margin-top: 15px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li {
  color: var(--gt-white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a {
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a:hover {
  color: #fab249;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
  color: #fab249;
  margin-right: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
  color: var(--gt-white);
}

.gt-error-items {
  text-align: center;
  position: relative;
}
.gt-error-items .gt-error-image {
  margin-bottom: 50px;
}
.gt-error-items .gt-error-image img {
  width: 100%;
  height: 100%;
}
.gt-error-items h2 {
  margin-bottom: 15px;
}
.gt-error-items h2 span {
  font-size: 72px;
}
@media (max-width: 1199px) {
  .gt-error-items h2 span {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .gt-error-items h2 span {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .gt-error-items h2 span {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .gt-error-items h2 span {
    font-size: 28px;
  }
}
.gt-error-items p {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .gt-error-items p {
    margin-bottom: 30px;
  }
}
.gt-error-items .gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.gt-error-items .gt-theme-btn .gt-icon-btn::after {
  background-color: #fab249;
}

.gt-coming-soon-items {
  text-align: center;
}
.gt-coming-soon-items h2 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.gt-coming-soon-items form {
  max-width: 540px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.gt-coming-soon-items .form-clt {
  position: relative;
  margin-top: 40px;
}
.gt-coming-soon-items .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--gt-bg);
  line-height: 1;
  padding: 20px;
  max-width: 540px;
}
.gt-coming-soon-items .form-clt .gt-theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  text-align: center;
}
.gt-coming-soon-items .form-clt .gt-theme-btn .gt-text-btn {
  background-color: var(--gt-header);
}
.gt-coming-soon-items .form-clt .gt-theme-btn .gt-text-btn::after {
  background-color: #fab249;
}
@media (max-width: 470px) {
  .gt-coming-soon-items .form-clt .gt-theme-btn {
    position: static;
    margin-top: 20px;
  }
}
.gt-coming-soon-items .gt-social-icon {
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
}
.gt-coming-soon-items .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--gt-bg);
  color: var(--gt-header);
}
.gt-coming-soon-items .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.gt-coming-soon-section {
  position: relative;
}
.gt-coming-soon-section .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .gt-coming-soon-section .left-shape {
    display: none;
  }
}
.gt-coming-soon-section .left-shape img {
  width: 100%;
  height: 100%;
}
.gt-coming-soon-section .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .gt-coming-soon-section .right-shape {
    display: none;
  }
}
.gt-coming-soon-section .bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .gt-coming-soon-section .bottom-shape {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--gt-bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fab249;
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.gt-array-button {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gt-array-button .array-prev {
  background-color: var(--gt-white);
  color: var(--gt-header);
}

.array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--gt-bg);
  color: #fab249;
  transition: all 0.4s ease-in-out;
}
.array-prev:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: #fab249;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.array-next:hover {
  background-color: var(--gt-bg);
  color: #fab249;
}

.swiper-dot {
  padding-top: 50px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: rgba(252, 252, 252, 0.7);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fab249;
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fab249;
  content: "";
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.footer-bg {
  background-color: var(--gt-header);
}

.price-range-wrapper {
  /* Custom thumb styling */
  /* Remove the default appearance for sliders in Firefox */
}
.price-range-wrapper .slider-container {
  position: relative;
  width: 100%;
}
.price-range-wrapper .price-text label {
  color: #1b1f2a;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.price-range-wrapper .price-text input {
  color: #1b1f2a;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.price-range-wrapper .slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #ddd; /* Default background */
  outline: none;
  position: absolute;
  top: 0;
  pointer-events: none;
}
.price-range-wrapper .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #fab249;
  cursor: pointer;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
  pointer-events: all;
}
.price-range-wrapper .slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fab249;
  cursor: pointer;
  border-radius: 0;
  border: 2px solid var(--gt-header);
  z-index: 2;
  position: relative;
}
.price-range-wrapper .slider::-ms-thumb {
  width: 20px;
  height: 20px;
  background: #fab249;
  cursor: pointer;
  border-radius: 0;
  border: 2px solid var(--gt-header);
  z-index: 2;
  position: relative;
}
.price-range-wrapper input[type=range]::-moz-range-track {
  background: transparent;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: #fab249;
  color: var(--gt-white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--gt-bg);
  color: var(--gt-header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: #fab249;
  color: var(--gt-white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: #fab249;
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--gt-white);
}

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

.container-1730 {
  max-width: 1730px;
  margin: auto;
}

.swiper-dot-5 {
  text-align: center;
  margin-top: 30px;
}
.swiper-dot-5 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--gt-header);
  opacity: 1;
  position: relative;
}
.swiper-dot-5 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--gt-white);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 30px;
}
.swiper-dot-5 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.swiper-dot2 {
  text-align: center;
}
.swiper-dot2 .swiper-pagination-bullet {
  width: 36px;
  height: 3px;
  transition: 0.6s;
  background-color: var(--gt-white);
  opacity: 1;
  border-radius: 0;
  position: relative;
}
.swiper-dot2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fab249;
  transition: 0.6s;
  position: relative;
  width: 36px;
  border-radius: 0;
}

.page-control {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.page-control::before {
  content: "";
  width: 1px;
  height: 96px;
  background: var(--gt-black);
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
}
.page-control .page-1 {
  color: var(--gt-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}
.page-control .page-1::after {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--gt-black);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.page-control .page-2 {
  color: var(--gt-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.slider-control {
  display: flex;
  gap: 165px;
  align-items: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  width: 45px;
}
@media (max-width: 1399px) {
  .slider-control {
    padding-bottom: 30px;
  }
}
.slider-control .btns-group {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 52px;
  justify-content: space-between;
  height: 100%;
}
.slider-control .array-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.slider-control .array-nav .array-prev,
.slider-control .array-nav .array-next {
  width: 44px;
  height: 44px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: var(--gt-bg);
  transition: all 200ms ease-in-out;
}
.slider-control .array-nav .array-prev:hover,
.slider-control .array-nav .array-next:hover {
  background-color: #fab249;
}
.slider-control .array-nav .array-prev:hover svg,
.slider-control .array-nav .array-next:hover svg {
  filter: brightness(0) invert(1);
}
.slider-control .page-control {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.slider-control .page-control::before {
  content: "";
  width: 1px;
  height: 96px;
  background: var(--gt-black);
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
}
.slider-control .page-control .page-1 {
  color: var(--gt-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}
.slider-control .page-control .page-1::after {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--gt-black);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.slider-control .page-control .page-2 {
  color: var(--gt-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.swiper-dot-4 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}
.swiper-dot-4 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b1b1b0;
  opacity: 1;
  transition: all 0.4s ease;
}
.swiper-dot-4 .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.15);
}
.swiper-dot-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fab249;
  box-shadow: 0 0 0 5px rgba(#fab249, 0.2);
  transform: scale(1.25);
  position: relative;
}
.swiper-dot-4 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(#fab249, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-1 {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding-top: 120px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .hero-1 {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
.hero-1 .hero-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .hero-1 .hero-shape {
    right: -200px;
    bottom: -80px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-shape {
    right: -472px;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-shape {
    right: 0;
  }
}
.hero-1 .group-shape {
  position: absolute;
  bottom: 0;
  left: -40px;
}
@media (max-width: 1600px) {
  .hero-1 .group-shape {
    left: -24%;
  }
}
@media (max-width: 1399px) {
  .hero-1 .group-shape {
    display: none;
  }
}
.hero-1 .line-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -4;
}
@media (max-width: 1399px) {
  .hero-1 .line-shape {
    display: none;
  }
}
.hero-1 .line-shape img {
  width: 100%;
  height: 100%;
}
.hero-1 .top-shape {
  position: absolute;
  top: 0;
  left: 130px;
}
@media (max-width: 1399px) {
  .hero-1 .top-shape {
    display: none;
  }
}
.hero-1 .pagi-item {
  right: 60px;
  top: 410px;
  position: absolute;
  z-index: 999;
}
@media (max-width: 1600px) {
  .hero-1 .pagi-item {
    top: 420px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .pagi-item {
    display: none;
  }
}
.hero-1 .pagi-item .dot-number {
  display: flex;
  gap: 20px;
}
.hero-1 .pagi-item .dot-number .swiper-pagination-bullet {
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  transition: all 0.4s ease-in-out;
  opacity: 1 !important;
}
.hero-1 .pagi-item .dot-number .swiper-pagination-bullet-active .dot-num span {
  color: #fab249 !important;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.hero-1 .pagi-item .dot-number .dot-num {
  transition: all 0.4s ease-in-out;
}
.hero-1 .pagi-item .dot-number .dot-num span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gt-white) !important;
  transition: all 0.4s ease-in-out;
  opacity: 9 !important;
  display: inline-block;
}
.hero-1 .pagi-item .dot-number .dot-num span.style-2 {
  margin-top: 20px;
  position: relative;
}
.hero-1 .pagi-item .dot-number .dot-num span.style-2::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -22px;
  background: rgba(255, 255, 255, 0.3);
  width: 27px;
  height: 1px;
  transform: rotate(115deg);
}
.hero-1 .container-fluid {
  padding: 0 190px;
}
@media (max-width: 1899px) {
  .hero-1 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-1 .container-fluid {
    padding: 0 15px;
  }
}
.hero-1 .hero-content h1 {
  font-size: 75px;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 65px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 35px;
  }
}
.hero-1 .hero-content h1 span {
  color: #fab249;
}
.hero-1 .hero-content p {
  max-width: 750px;
  margin-top: 20px;
  margin-bottom: 50px;
  color: #525A6D;
}
@media (max-width: 1600px) {
  .hero-1 .hero-content p {
    max-width: 703px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content p {
    margin-bottom: 30px;
    max-width: 750px;
  }
}
.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-1 .hero-content .hero-button .gt-theme-btn.new .gt-text-btn {
  background: #2C2F3D;
}
.hero-1 .hero-content .hero-button .gt-theme-btn.new .gt-text-btn::after {
  background-color: #fab249;
}
.hero-1 .hero-image {
  margin-top: 140px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-top: 0px;
  }
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-1 .hero-image img {
  opacity: 0;
  width: 60%;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}
.hero-1 .swiper-slide-active .hero-image img {
  opacity: 1;
  transform: translateY(0);
}

.hero-2 {
  position: relative;
  margin: 0 40px;
  z-index: 9;
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding-top: 120px;
    padding-bottom: 120px;
    margin: 15px 30px 0;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .hero-2 {
    margin: 15px 15px 0;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-2 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1899px) {
  .hero-2 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 15px;
  }
}
.hero-2 .hero-content {
  position: relative;
}
.hero-2 .hero-content h1 {
  color: var(--gt-white);
  font-size: 115px;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 1899px) {
  .hero-2 .hero-content h1 {
    font-size: 105px;
  }
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 94px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 55px;
  }
  .gt-theme-btn .gt-text-btn {
      padding: 14px 14px !important;
    font-size: 14px !important;

  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .hero-2 .hero-content h1 {
    font-size: 32px;
  }
}
.hero-2 .hero-content h1 span {
  color: #fab249;
}
.hero-2 .hero-content h1 b {
  color: #fab249;
  margin-left: 220px;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .hero-2 .hero-content h1 b {
    margin-left: 174px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-content h1 b {
    margin-left: 0;
  }
}
.hero-2 .hero-content .hero-bottom {
  display: flex;
  align-items: center;
  gap: 130px;
  margin-top: 210px;
}
@media (max-width: 1399px) {
  .hero-2 .hero-content .hero-bottom {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-2 .hero-content .hero-bottom .hero-button {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-bottom .hero-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-2 .hero-content .hero-bottom .hero-button .gt-theme-btn.new .gt-text-btn {
  background: var(--gt-white);
  color: #fab249;
}
.hero-2 .hero-content .hero-bottom .hero-button .gt-theme-btn.new .gt-text-btn::after {
  background-color: #fab249;
}
.hero-2 .hero-content .hero-bottom .hero-button .gt-theme-btn.new .gt-text-btn:hover {
  color: var(--gt-white);
}
.hero-2 .hero-content .hero-bottom p {
  color: var(--gt-white);
  max-width: 388px;
  border-left: 3px solid var(--gt-white);
  padding-left: 15px;
  position: relative;
}
.hero-2 .hero-content .hero-bottom p::before {
  position: absolute;
  content: "";
  left: -3px;
  bottom: 0;
  background-color: #fab249;
  width: 3px;
  height: 30px;
}
.hero-2 .hero-box {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, rgb(252, 90, 17), rgba(255, 255, 255, 0.9)) 1;
  padding: 48px 60px;
}
@media (max-width: 1600px) {
  .hero-2 .hero-box {
    padding: 48px 45px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .hero-box {
    padding: 30px;
  }
}
.hero-2 .hero-box .count-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.hero-2 .hero-box .count-content h2 {
  color: var(--gt-white);
  font-size: 45px;
  font-weight: 500;
}
.hero-2 .hero-box .count-content h6 {
  color: var(--gt-white);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
}
.hero-2 .hero-box .count-content.border-none {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hero-bg {
  background-color: var(--gt-header);
}

.gt-hero-3 {
  position: relative;
  padding-top: 300px;
  padding-bottom: 130px;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-hero-3 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .gt-hero-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.gt-hero-3 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1899px) {
  .gt-hero-3 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .gt-hero-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .gt-hero-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .gt-hero-3 .container-fluid {
    padding: 0 15px;
  }
}
.gt-hero-3 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
  z-index: 9;
}
.gt-hero-3 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.5) 37.74%, rgba(0, 0, 0, 0) 60.8%);
  z-index: -1;
}
.gt-hero-3 .gt-hero-content {
  position: relative;
  z-index: 999;
}
.gt-hero-3 .gt-hero-content h4 {
  font-size: 65px;
  font-weight: 800;
  color: var(--gt-white);
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .gt-hero-3 .gt-hero-content h4 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .gt-hero-3 .gt-hero-content h4 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content h4 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .gt-hero-3 .gt-hero-content h4 {
    font-size: 25px;
  }
}
.gt-hero-3 .gt-hero-content h1 {
  color: var(--gt-white);
  font-size: 110px;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--gt-white);
  color: transparent;
}
@media (max-width: 1600px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 1399px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 36px;
  }
}
.gt-hero-3 .gt-hero-content h3 {
  font-size: 45px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gt-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
  margin-bottom: 50px;
  line-height: normal;
  max-width: 946px;
}
@media (max-width: 1399px) {
  .gt-hero-3 .gt-hero-content h3 {
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .gt-hero-3 .gt-hero-content h3 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content h3 {
    font-size: 30px;
  }
}
.gt-hero-3 .gt-hero-content .hero-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content .hero-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content .hero-item .hero-image {
    flex-basis: 100%;
  }
}
.gt-hero-3 .gt-hero-content .hero-item .hero-image img {
  width: 100%;
  height: 100%;
}
.gt-hero-3 .gt-hero-content .hero-item .content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  color: var(--gt-white);
  font-family: "Barlow", sans-serif;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .gt-hero-3 .gt-hero-content .hero-item .content p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content .hero-item .content p {
    font-size: 16px;
  }
}
.gt-hero-3 .gt-hero-content .hero-item .content .hero-button {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .gt-hero-3 .gt-hero-content .hero-item .content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-hero-3 .gt-hero-content .hero-item .content .hero-button .gt-theme-btn.new .gt-text-btn {
  background: var(--gt-white);
  color: #fab249;
}
.gt-hero-3 .gt-hero-content .hero-item .content .hero-button .gt-theme-btn.new .gt-text-btn::after {
  background-color: #fab249;
}
.gt-hero-3 .gt-hero-content .hero-item .content .hero-button .gt-theme-btn.new .gt-text-btn:hover {
  color: var(--gt-white);
}

.gt-hero-section-3 {
  position: relative;
}
.gt-hero-section-3 .left-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-hero-section-3 .left-shape {
    display: none;
  }
}
.gt-hero-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-hero-section-3 .right-shape {
    display: none;
  }
}
.gt-hero-section-3 .swiper-dot-4 {
  position: absolute;
  bottom: 390px;
  left: -47%;
  z-index: 999;
}
@media (max-width: 1600px) {
  .gt-hero-section-3 .swiper-dot-4 {
    left: -48%;
  }
}
@media (max-width: 1399px) {
  .gt-hero-section-3 .swiper-dot-4 {
    display: none;
  }
}
.gt-hero-section-3 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.gt-hero-4 {
  position: relative;
  padding-top: 220px;
  padding-bottom: 220px;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-hero-4 {
    padding-top: 150px;
    padding-bottom: 130px;
  }
}
@media (max-width: 991px) {
  .gt-hero-4 {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.gt-hero-4 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
  z-index: 9;
}
.gt-hero-4 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #1D1D1D 2.66%, rgba(0, 18, 51, 0) 100%);
  z-index: -1;
}
.gt-hero-4 .gt-hero-content {
  position: relative;
  z-index: 999;
}
@media (max-width: 1199px) {
  .gt-hero-4 .gt-hero-content {
    margin-left: 0;
  }
}
.gt-hero-4 .gt-hero-content h6 {
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--gt-white);
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .gt-hero-4 .gt-hero-content h6 {
    font-size: 16px;
  }
}
@media (max-width: 470px) {
  .gt-hero-4 .gt-hero-content h6 {
    font-size: 15px;
  }
}
.gt-hero-4 .gt-hero-content h1 {
  color: var(--gt-white);
  font-size: 72px;
}
@media (max-width: 1399px) {
  .gt-hero-4 .gt-hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .gt-hero-4 .gt-hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .gt-hero-4 .gt-hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .gt-hero-4 .gt-hero-content h1 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-hero-4 .gt-hero-content h1 {
    font-size: 32px;
  }
}
.gt-hero-4 .gt-hero-content h1 span {
  color: #fab249;
}
.gt-hero-4 .gt-hero-content p {
  font-size: 18px;
  font-weight: 400;
  color: #FCFCFC;
  opacity: 0.7;
  margin-top: 20px;
}
.gt-hero-4 .gt-hero-content .gt-theme-btn {
  margin-top: 50px;
}
.gt-hero-4 .gt-hero-content .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.gt-hero-4 .gt-hero-content .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.gt-hero-4 .gt-hero-content .gt-theme-btn:hover {
  color: var(--gt-header) !important;
}
.gt-hero-4 .gt-hero-content .gt-theme-btn:hover .gt-text-btn {
  color: #fff;
}
.gt-hero-4 .gt-hero-content .gt-text-btn {
  background-color: var(--gt-white);
  color: #fab249;
}
.gt-hero-4 .gt-hero-content .gt-text-btn::after {
  background-color: #fab249 !important;
}
.gt-hero-4 .gt-hero-content .gt-text-btn:hover {
  color: var(--gt-white);
}

.gt-hero-section-4 {
  position: relative;
}
.gt-hero-section-4 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.gt-hero-5 {
  position: relative;
}
.gt-hero-5 .video-btn {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  display: inline-block;
  background-color: #fab249;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  bottom: 170px;
  left: 56%;
  transform: translateX(-50%);
  z-index: 99;
}
@media (max-width: 767px) {
  .gt-hero-5 .video-btn {
    display: none;
  }
}
.gt-hero-5 .video-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 184px;
  height: 184px;
  border-radius: 1000px;
  background: rgba(217, 217, 217, 0.08);
  transform: translate(-50%, -50%);
}
.gt-hero-5 .array-button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  z-index: 9;
  gap: 10px;
}
@media (max-width: 991px) {
  .gt-hero-5 .array-button {
    display: none;
  }
}
.gt-hero-5 .array-button .array-prev, .gt-hero-5 .array-button .array-next {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 24px;
}
.gt-hero-5 .array-button .arry-prev {
  background-color: #fab249;
  color: var(--gt-header);
}
.gt-hero-5 .swiper-slide-active .hero-image {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}
.gt-hero-5 .hero-image {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.gt-hero-5 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.5) 37.74%, rgba(0, 0, 0, 0) 60.8%);
  z-index: 999;
}
.gt-hero-5 .gt-hero-content {
  padding: 200px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-hero-5 .gt-hero-content {
    padding: 180px 0 180px;
  }
}
@media (max-width: 991px) {
  .gt-hero-5 .gt-hero-content {
    padding: 160px 0 160px;
  }
}
@media (max-width: 767px) {
  .gt-hero-5 .gt-hero-content {
    padding: 130px 0 130px;
  }
}
@media (max-width: 470px) {
  .gt-hero-5 .gt-hero-content {
    padding: 100px 0 100px;
  }
}
.gt-hero-5 .gt-hero-content .gt-sub-title {
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--gt-white);
  display: inline-block;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .gt-hero-5 .gt-hero-content .gt-sub-title {
    font-size: 16px;
  }
}
@media (max-width: 470px) {
  .gt-hero-5 .gt-hero-content .gt-sub-title {
    font-size: 15px;
  }
}
.gt-hero-5 .gt-hero-content .gt-sub-title img {
  margin-right: 8px;
}
.gt-hero-5 .gt-hero-content h1 {
  color: var(--gt-white);
  font-size: 72px;
}
@media (max-width: 1600px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 32px;
  }
}
.gt-hero-5 .gt-hero-content p {
  font-size: 18px;
  font-weight: 400;
  color: #FCFCFC;
  opacity: 0.7;
  margin-top: 20px;
  max-width: 615px;
}
.gt-hero-5 .gt-hero-content .gt-theme-btn {
  margin-top: 50px;
}
.gt-hero-5 .gt-hero-content .gt-theme-btn .gt-icon-btn::after {
  background-color: var(--gt-white);
}
.gt-hero-5 .gt-hero-content .gt-theme-btn .gt-icon-btn i {
  display: inline-block;
}
.gt-hero-5 .gt-hero-content .gt-theme-btn:hover {
  color: var(--gt-header) !important;
}
.gt-hero-5 .gt-hero-content .gt-theme-btn:hover .gt-text-btn {
  color: #fff;
}
.gt-hero-5 .gt-hero-content .gt-text-btn {
  background-color: var(--gt-white);
  color: #fab249;
}
.gt-hero-5 .gt-hero-content .gt-text-btn::after {
  background-color: #fab249 !important;
}
.gt-hero-5 .gt-hero-content .gt-text-btn:hover {
  color: var(--gt-white);
}
.gt-hero-5 .social-text {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: var(--gt-white);
  padding: 30px 29px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 1600px) {
  .gt-hero-5 .social-text {
    display: none;
  }
}
.gt-hero-5 .social-text li {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  font-family: "Barlow", sans-serif;
}
.gt-hero-5 .social-text li a {
  color: #1D1D1D;
}
.gt-hero-5 .social-text li a:hover {
  color: #fab249;
}
.gt-hero-5 .container-fluid {
  padding: 0 155px;
}
@media (max-width: 1600px) {
  .gt-hero-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .gt-hero-5 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .gt-hero-5 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .gt-hero-5 .container-fluid {
    padding: 0 15px;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--gt-header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #E5E5E5 !important;
  border: none;
  font-family: "Barlow", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: #fab249;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: #fab249;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 40px;
  background-color: var(--gt-bg);
  padding: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: var(--gt-white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--gt-text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: #fab249;
  color: var(--gt-white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--gt-header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  border-bottom: 1.5px solid rgba(191, 191, 191, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-size: 32px;
}
@media (max-width: 1199px) {
  .gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
    font-size: 30px;
  }
}
.gt-main-sideber .gt-single-sideber-widget ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
.gt-main-sideber .gt-single-sideber-widget ul li a {
  color: var(--gt-header);
}
.gt-main-sideber .gt-single-sideber-widget ul li i {
  transition: all 0.4s ease-in-out;
  color: var(--gt-header);
}
.gt-main-sideber .gt-single-sideber-widget ul li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget ul li:hover a {
  color: #fab249;
}
.gt-main-sideber .gt-single-sideber-widget ul li:hover i {
  color: #fab249;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
    flex-wrap: wrap;
  }
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h5 a:hover {
  color: #fab249;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  color: var(--gt-text);
}
.gt-main-sideber .gt-contact-bg {
  position: relative;
}
.gt-main-sideber .gt-contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(14, 18, 29, 0.85);
}
.gt-main-sideber .gt-contact-bg .gt-contact-content {
  padding: 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-main-sideber .gt-contact-bg .gt-contact-content {
    padding: 30px;
  }
}
.gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
  font-size: 32px;
  color: var(--gt-white);
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
    font-size: 30px;
  }
}
.gt-main-sideber .gt-contact-bg .gt-contact-content p {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
  color: var(--gt-border);
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1.2px solid var(--gt-white);
  color: var(--gt-white);
  font-size: 24px;
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
  font-size: 16px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: var(--gt-white);
}
@media (max-width: 1199px) {
  .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
    font-size: 14px;
  }
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
  color: var(--gt-white);
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
  color: var(--gt-white);
}

.gt-news-details-wrapper .gt-details-image img {
  width: 100%;
  height: 100%;
}
.gt-news-details-wrapper .gt-news-details-content {
  margin-top: 24px;
}
.gt-news-details-wrapper .gt-news-details-content h3 {
  font-size: 36px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content h3 {
    font-size: 25px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list {
  margin-top: 30px;
  margin-bottom: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item {
  margin-bottom: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item h3 {
    font-size: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list .gt-list-item .gt-details-list li i {
  color: #fab249;
  margin-right: 8px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
  padding: 30px 40px;
  border: 1.5px solid #fab249;
  background-color: var(--gt-bg);
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-sideber {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-sideber {
    padding: 30px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber h6 {
  margin-bottom: 15px;
  line-height: 150%;
  letter-spacing: 0.5px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info .image {
  border-radius: 100%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info h4 {
  font-size: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .text {
  font-size: 24px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .text {
    font-size: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding: 30px 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--gt-bg);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
    padding: 10px 20px;
  }
}
@media (max-width: 1199px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--gt-header);
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: var(--gt-bg);
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:hover {
  color: var(--gt-white);
  background-color: #fab249;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area {
  margin-top: 40px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
  .gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply {
  border-radius: 50px;
  padding: 5px 18px;
  font-weight: 400;
  background-color: #fab249;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply:hover {
  background-color: var(--gt-header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap {
  background-color: var(--gt-bg);
  padding: 30px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap h3 {
  margin-bottom: 30px;
  border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt span {
  color: var(--gt-header);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--gt-border);
  padding: 16px 20px;
  font-weight: 400;
  color: var(--gt-text);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input::placeholder, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea::placeholder {
  color: var(--gt-text);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap button.gt-theme-btn .gt-icon-btn::after {
  background-color: #fab249;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #fab249;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Barlow", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: #fab249;
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--gt-header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Barlow", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #fab249;
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--gt-bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.gt-back-to-top {
  background-color: #fab249;
  width: 50px;
  height: 50px;
  line-height: 40px;
  color: var(--gt-white);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.gt-back-to-top:hover {
  background-color: var(--gt-header);
  color: var(--gt-white);
}
.gt-back-to-top:hover img {
  animation: slideUp 600ms;
}
.gt-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #fab249;
  background-color: #fab249;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: #fab249;
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--gt-text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: #fab249;
  border: 1px solid #686363;
  opacity: 0;
}

.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: #000000;
  opacity: 0.7;
  cursor: url(../img/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%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--gt-white);
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--gt-header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--gt-white);
  background-color: #fab249;
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--gt-header);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 999999;
}

.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.7;
  -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;
}

.gt-page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.gt-page-nav-wrap ul li {
  display: inline-block;
}
.gt-page-nav-wrap ul li:first-child {
  border: 1px solid #BFBFBF;
}
.gt-page-nav-wrap ul li:first-child a {
  color: #fab249;
  background-color: transparent;
}
.gt-page-nav-wrap ul li:last-child {
  border: 1px solid #fab249;
}
.gt-page-nav-wrap ul li:last-child a {
  color: #fab249;
  background-color: transparent;
}
.gt-page-nav-wrap ul li .gt-page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: var(--gt-header);
  text-align: center;
  background-color: var(--gt-bg);
  border: 1px solid transparent;
}
.gt-page-nav-wrap ul li .gt-page-numbers.current {
  background-color: #fab249;
  color: var(--gt-white);
}
@media (max-width: 767px) {
  .gt-page-nav-wrap ul li .gt-page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.gt-page-nav-wrap ul li .gt-page-numbers i {
  margin-top: 2px;
}
.gt-page-nav-wrap ul li .gt-page-numbers:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.gt-pricing-wrapper .gt-pricing-left-content .pricing-text {
  margin-top: 30px;
}
.gt-pricing-wrapper .gt-pricing-left-content .nav {
  display: inline-flex;
  align-items: center;
  border: 1.2px solid #fab249;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .gt-pricing-wrapper .gt-pricing-left-content .nav {
    margin-top: 30px;
  }
}
.gt-pricing-wrapper .gt-pricing-left-content .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: var(--gt-header);
  text-transform: uppercase;
  padding: 12px 32px;
}
@media (max-width: 575px) {
  .gt-pricing-wrapper .gt-pricing-left-content .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}
.gt-pricing-wrapper .gt-pricing-left-content .nav .nav-item .nav-link.active {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-pricing-wrapper.style-2 .gt-pricing-left-content {
  max-width: 460px;
}
.gt-pricing-wrapper.style-2 .gt-pricing-left-content h6 {
  font-size: 20px;
  color: #1D1D1D;
  font-weight: 600;
  margin-top: 40px;
}
.gt-pricing-wrapper.style-2 .gt-pricing-left-content h6 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-text);
  font-family: "Inter", sans-serif;
}

.gt-pricing-box-items {
  background-color: #F2F2F2;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 9;
}
@media (max-width: 470px) {
  .gt-pricing-box-items {
    padding: 30px 24px;
  }
}
.gt-pricing-box-items .gt-price-tag {
  padding: 4px 12px;
  display: inline-block;
  background-color: var(--gt-header);
  font-size: 14px;
  text-align: center;
  color: var(--gt-white);
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(40.012deg);
  width: 185px;
}
@media (max-width: 470px) {
  .gt-pricing-box-items .gt-price-tag {
    font-size: 10px;
    top: 13px;
    right: -43px;
  }
}
.gt-pricing-box-items .gt-pricing-header {
  border-bottom: 1px solid rgba(191, 191, 191, 0.56);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.gt-pricing-box-items .gt-pricing-header h2 {
  font-size: 48px;
  color: #fab249;
  margin-top: 10px;
}
.gt-pricing-box-items .gt-pricing-header h2 sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  margin-left: -10px;
  color: var(--gt-text);
}
.gt-pricing-box-items .gt-theme-btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.gt-pricing-box-items .gt-theme-btn .gt-text-btn {
  width: 100%;
  background: transparent;
  border: 1.2px solid #fab249;
  color: var(--gt-header);
}
.gt-pricing-box-items .gt-theme-btn .gt-text-btn i {
  margin-right: 10px;
}
.gt-pricing-box-items .gt-theme-btn .gt-text-btn::after {
  background: #fab249;
}
.gt-pricing-box-items .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-white);
}
.gt-pricing-box-items .gt-pricing-list-items {
  margin-top: 25px;
}
.gt-pricing-box-items .gt-pricing-list-items li {
  color: var(--gt-header);
}
@media (max-width: 470px) {
  .gt-pricing-box-items .gt-pricing-list-items li {
    font-size: 14px;
  }
}
.gt-pricing-box-items .gt-pricing-list-items li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .gt-pricing-box-items .gt-pricing-list-items li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.gt-pricing-box-items .gt-pricing-list-items li i {
  margin-right: 10px;
}
.gt-pricing-box-items::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1.5px solid #fab249;
  border-left: 1.5px solid #fab249;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: initial;
  z-index: -1;
}
.gt-pricing-box-items::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1.5px solid #fab249;
  border-right: 1.5px solid #fab249;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.gt-pricing-box-items:hover {
  transform: translateY(-10px);
}
.gt-pricing-box-items:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.gt-pricing-box-items:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transform: initial;
  transform-origin: initial;
}

.gt-pricing-section {
  position: relative;
  z-index: 9;
}
.gt-pricing-section .gt-left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-pricing-section .gt-left-shape {
    display: none;
  }
}
.gt-pricing-section .gt-sub-title {
  font-size: 140px;
  line-height: 1;
  letter-spacing: -1.4px;
  opacity: 0.04;
  position: absolute;
  top: 0;
  left: -25%;
  transform: rotate(90deg);
  bottom: 0;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1899px) {
  .gt-pricing-section .gt-sub-title {
    display: none;
  }
}

.gt-pricing-card-item-3 {
  margin-top: 30px;
  background-color: var(--gt-bg);
  padding: 40px;
}
.gt-pricing-card-item-3 .gt-pricing-header h3 {
  margin-bottom: 10px;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border-bottom: 1.5px solid #D9D9D9;
  padding-bottom: 24px;
  margin-bottom: 30px;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price h2 {
  font-size: 40px;
  color: #fab249;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price h2 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-text);
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price .text {
  font-size: 12px;
  font-weight: 400;
  transform: rotate(30.625deg);
  padding: 8px 12px;
  background-color: var(--gt-header);
  border-radius: 100px;
  color: var(--gt-white);
  line-height: 1;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price .icon {
  width: 48px;
  height: 48px;
  line-height: 54px;
  text-align: center;
  background-color: var(--gt-white);
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
  font-size: 28px;
}
.gt-pricing-card-item-3 .gt-pricing-header .gt-pricing-price .icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.gt-pricing-card-item-3 .gt-pricing-list {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-pricing-card-item-3 .gt-pricing-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-pricing-card-item-3 .gt-pricing-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
}
.gt-pricing-card-item-3 .gt-pricing-list li:not(:last-child) {
  margin-bottom: 14px;
}
.gt-pricing-card-item-3 .gt-pricing-list li i {
  color: var(--gt-header);
  margin-right: 8px;
}
.gt-pricing-card-item-3 .gt-pricing-button {
  margin-top: 30px;
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn .gt-text-btn {
  width: 100%;
  background: transparent;
  border: 1.2px solid #fab249;
  color: var(--gt-header);
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn .gt-text-btn i {
  margin-right: 10px;
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn .gt-text-btn::after {
  background: #fab249;
}
.gt-pricing-card-item-3 .gt-pricing-button .gt-theme-btn:hover .gt-text-btn {
  color: var(--gt-white);
}
.gt-pricing-card-item-3:hover .gt-pricing-header .gt-pricing-price .icon {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-pricing-card-item-3:hover .gt-pricing-header .gt-pricing-price .icon i {
  transform: scaleX(-1) !important;
}

.gt-pricing-section-4 {
  position: relative;
}
.gt-pricing-section-4 .horse-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.project-box-item {
  margin-top: 30px;
}
.project-box-item .project-image {
  position: relative;
  z-index: 999;
}
.project-box-item .project-image img {
  width: 100%;
  height: 100%;
}
.project-box-item .project-image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.28%, rgba(0, 0, 0, 0.8) 91.5%);
  padding: 30px;
  display: flex;
  align-items: end;
  z-index: 2;
}
.project-box-item .project-image .project-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 999;
}
.project-box-item .project-image .project-content .list {
  margin-bottom: 20px;
}
.project-box-item .project-image .project-content .list li a {
  color: var(--gt-white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
  display: inline-block;
}
.project-box-item .project-image .project-content .list li a:hover {
  color: var(--gt-white);
  background-color: #fab249;
  border: 1px solid #fab249;
}
.project-box-item .project-image .project-content h3 a {
  color: var(--gt-white);
}
.project-box-item .project-image .project-content h3 a:hover {
  color: #fab249;
}

.project-image-items {
  margin-top: 30px;
}
.project-image-items .project-image {
  position: relative;
  display: block;
  overflow: hidden;
}
.project-image-items .project-image img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}
.project-image-items .project-image .project-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 27px 25px 26px;
  background-color: rgba(252, 90, 17, 0.8);
  overflow: hidden;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  z-index: 2;
}
.project-image-items .project-image .project-content .content-box p {
  color: var(--gt-white);
}
.project-image-items .project-image .project-content .content-box h3 {
  font-size: 22px;
}
.project-image-items .project-image .project-content .content-box h3 a {
  color: var(--gt-white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-image-items .project-image .project-content .content-box h3 a:hover {
  color: var(--gt-white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--gt-white) 0%, var(--gt-white) 100%);
}
.project-image-items:hover .project-image img {
  transform: scale(1);
}
.project-image-items:hover .project-image .project-content {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1);
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.project-box-items-1 {
  margin-top: 30px;
  padding: 20px;
  background: var(--gt-header);
  padding-bottom: 100px;
  position: relative;
  transition: 0.3s;
}
.project-box-items-1 .project-image {
  position: relative;
}
.project-box-items-1 .project-image img {
  width: 100%;
  height: 100%;
}
.project-box-items-1 .inner-content {
  padding: 30px;
  padding-top: 20px;
  position: absolute;
  height: 90px;
  overflow: hidden;
  bottom: 0;
  left: 0;
  transition: 0.5s;
  background: #141416;
  border-radius: 10px;
}
.project-box-items-1 .inner-content h4 {
  margin-bottom: 20px;
}
.project-box-items-1 .inner-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--gt-white);
}
.project-box-items-1 .inner-content h4 a:hover {
  color: var(--gt-white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--gt-white) 0%, var(--gt-white) 100%);
}
.project-box-items-1 .inner-content p.disc {
  color: var(--gt-white);
  font-size: 15px;
  margin-bottom: 25px;
}
.project-box-items-1 .inner-content .gt-link-btn {
  height: 40px;
  padding: 20px;
  color: var(--gt-white);
  padding-left: 0;
}
.project-box-items-1 .inner-content .gt-link-btn i {
  margin-left: 8px;
  color: var(--gt-white);
}
.project-box-items-1 .inner-content .gt-link-btn:hover {
  color: #fab249;
}
.project-box-items-1 .inner-content .gt-link-btn:hover i {
  color: #fab249;
}
.project-box-items-1:hover {
  background-color: #fab249;
}
.project-box-items-1:hover .inner-content {
  height: 235px;
  background-color: #fab249;
}

.project-top-wrapper {
  margin-top: 60px;
}
.project-top-wrapper .project-list {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.project-top-wrapper .project-list .single-project {
  padding: 34.5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom, var(--gt-header) 0%, var(--gt-header) 98%);
  background-size: 0;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.8s;
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-list .single-project {
    padding: 28px 0;
  }
}
@media (max-width: 991px) {
  .project-top-wrapper .project-list .single-project {
    padding: 34.5px 0;
  }
}
.project-top-wrapper .project-list .single-project:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.project-top-wrapper .project-list .single-project .project-content {
  display: flex;
  align-items: center;
  gap: 35px;
  transition: 0.7s;
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-list .single-project .project-content {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .project-top-wrapper .project-list .single-project .project-content {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.project-top-wrapper .project-list .single-project .project-content span {
  color: var(--gt-text);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: 0.5s;
}
.project-top-wrapper .project-list .single-project .project-content h5 {
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-transform: uppercase;
  flex-basis: 40%;
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-list .single-project .project-content h5 {
    flex-basis: 44%;
  }
}
@media (max-width: 991px) {
  .project-top-wrapper .project-list .single-project .project-content h5 {
    flex-basis: initial;
  }
}
.project-top-wrapper .project-list .single-project .project-content h5 svg {
  fill: var(--gt-header);
  transition: 0.5s;
}
.project-top-wrapper .project-list .single-project .project-content h5 a {
  color: var(--gt-header);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: 0.5s;
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-list .single-project .project-content h5 a {
    font-size: 18px;
    text-decoration: initial;
  }
}
@media (max-width: 767px) {
  .project-top-wrapper .project-list .single-project .project-content h5 a {
    text-decoration: underline;
  }
}
.project-top-wrapper .project-list .single-project .project-content p {
  max-width: 425px;
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-list .single-project .project-content p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .project-top-wrapper .project-list .single-project .project-content p {
    font-size: 16px;
  }
}
.project-top-wrapper .project-list .single-project:hover {
  background-size: 100%;
  background-position: 0% 100%;
  color: var(--gt-white);
}
.project-top-wrapper .project-list .single-project:hover .project-content {
  transform: translateX(40px);
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-list .single-project:hover .project-content {
    transform: translateX(10px);
  }
}
.project-top-wrapper .project-list .single-project:hover .project-content span {
  color: rgba(255, 255, 255, 0.6);
}
.project-top-wrapper .project-list .single-project:hover .project-content h5 svg {
  fill: #fab249;
}
.project-top-wrapper .project-list .single-project:hover .project-content h5 a {
  color: #fab249;
}
.project-top-wrapper .project-img-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .project-top-wrapper .project-img-group {
    display: none;
    visibility: hidden;
  }
}
.project-top-wrapper .project-img-group li {
  position: relative;
}
.project-top-wrapper .project-img-group li .project-img {
  min-height: 631px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 12;
}
@media (max-width: 1399px) {
  .project-top-wrapper .project-img-group li .project-img {
    min-height: 602px;
  }
}
@media (max-width: 1199px) {
  .project-top-wrapper .project-img-group li .project-img {
    min-height: 567px;
  }
}
.project-top-wrapper .project-img-group li .project-img img {

  width: 100%;
  object-fit: cover;
}
.project-top-wrapper .project-img-group li.active .project-img {
  animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 15;
}
@keyframes qodef-animate-image-out {
  0% {
    transform: scale(1) translateZ(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qodef-animate-image-in {
  0% {
    transform: scale(1.05) translateZ(0);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.project-details-wrapper .project-details-image {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-details-image {
    margin-bottom: 0;
  }
}
.project-details-wrapper .project-details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-informaion-box {
  background-color: var(--gt-bg);
  border-top: 4px solid #fab249;
  padding: 40px;
  margin-right: 30px;
  margin-top: -220px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-informaion-box {
    margin-right: 0;
    margin-top: 0;
  }
}
.project-details-wrapper .project-informaion-box h4 {
  padding-bottom: 10px;
  border-bottom: 2px solid #fab249;
  margin-bottom: 20px;
}
.project-details-wrapper .project-informaion-box .project-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--gt-header);
  font-family: "Barlow", sans-serif;
  border-bottom: 1px solid var(--gt-border);
  padding: 20px 0;
}
.project-details-wrapper .project-informaion-box .project-list li span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-text);
  font-family: "Inter", sans-serif;
  display: inline-block;
  margin-left: 5px;
}
.project-details-wrapper .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper h3 {
  font-size: 36px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper h3 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper h3 {
    font-size: 25px;
  }
}
.project-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .project-list-content p {
  max-width: 793px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-list-content .list-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-list-content .list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.project-details-wrapper .project-list-content .list-item .list li i {
  color: #fab249;
  margin-right: 5px;
}
.project-details-wrapper .project-list-content .list-item .list li:not(:last-child) {
  margin-bottom: 5px;
}
.project-details-wrapper .text {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .text {
    margin-top: 30px;
  }
}

.project-area-three .project-wrapper {
  margin-top: 48px;
}
.project-area-three .project-wrapper .section-title-three {
  display: flex;
  align-items: end;
  gap: 30px;
  padding-bottom: 75px;
}
.project-area-three .project-wrapper .section-title-three .title {
  max-width: 512px;
}
.project-area-three .project-wrapper .section-title-three .number-wrap {
  width: 50px;
  height: 50px;
}
.project-area-three .project-wrapper .section-title-three .number-wrap .number {
  width: 48px;
  height: 48px;
  aspect-ratio: 48px;
  background: #fab249;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-area-three .project-wrapper .section-title-three .text-2 {
  max-width: 440px;
  color: var(--gt-text);
  text-transform: capitalize;
}
.project-area-three .project-wrapper .simple-btn-white {
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  color: var(--gt-header);
  text-transform: uppercase;
}
.project-area-three .project-wrapper .thumb-wrap {
  display: flex !important;
  align-items: center;
  gap: 30px;
  margin-right: -410px;
  position: relative;
}
.project-area-three .project-wrapper .thumb-wrap .thumb {
  position: relative;
  margin-right: 30px;
  height: 582px;
  min-height: 582px;
  width: 210px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: all 0.4s ease;
}
.project-area-three .project-wrapper .thumb-wrap .thumb a {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-area-three .project-wrapper .thumb-wrap .thumb a .card-text-content {
  position: absolute;
  left: -100%;
  bottom: 30px;
  background: var(--gt-white);
  padding: 28px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease-in-out;
}
.project-area-three .project-wrapper .thumb-wrap .thumb a .card-text-content .title {
  color: var(--gt-black);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.project-area-three .project-wrapper .thumb-wrap .thumb a .card-text-content .text {
  color: var(--gt-text);
  text-transform: capitalize;
}
.project-area-three .project-wrapper .thumb-wrap .thumb a:hover .project-btn {
  visibility: visible;
  opacity: 1;
  right: 30px;
}
.project-area-three .project-wrapper .thumb-wrap .thumb a:hover .card-text-content {
  visibility: visible;
  opacity: 1;
  left: 30px;
}
.project-area-three .project-wrapper .thumb-wrap .thumb .project-btn {
  position: absolute;
  top: 30px;
  right: -100%;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 250ms ease-in-out;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--gt-white);
  transition: all 0.4s ease-in-out;
  left: initial;
}
.project-area-three .project-wrapper .thumb-wrap .thumb .project-btn i {
  transform: rotate(45deg);
}
.project-area-three .project-wrapper .thumb-wrap .thumb .project-btn:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.project-area-three .project-wrapper .thumb-wrap .thumb.active {
  width: 690px;
}
.project-area-three .project-wrapper .thumb-wrap .thumb.active .project-btn {
  right: 30px;
  opacity: 1;
  visibility: visible;
}

.project-card-items-4 .project-thumb {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.project-card-items-4 .project-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 90, 17, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-card-items-4 .project-thumb img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  object-fit: cover;
}
.project-card-items-4 .project-thumb .project-content {
  position: absolute;
  left: 25px;
  z-index: 9;
  bottom: -25px;
  background-color: rgba(252, 90, 17, 0.8);
  padding: 15px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-card-items-4 .project-thumb .project-content span {
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  display: inline-block;
  color: #fab249;
  padding: 7px 12px;
  background-color: var(--gt-white);
  margin-bottom: 10px;
}
.project-card-items-4 .project-thumb .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--gt-white);
}
.project-card-items-4 .project-thumb .project-content h3 a:hover {
  color: var(--gt-white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--gt-white) 0%, var(--gt-white) 100%);
}
.project-card-items-4 .project-thumb .arrow-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: var(--gt-white);
  color: #fab249;
  position: absolute;
  right: 30px;
  top: -30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.project-card-items-4 .project-thumb .arrow-icon:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.project-card-items-4:hover .project-thumb::before {
  opacity: 1;
  visibility: visible;
}
.project-card-items-4:hover .project-thumb img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.project-card-items-4:hover .project-thumb .project-content {
  bottom: 25px;
  opacity: 1;
  visibility: visible;
}
.project-card-items-4:hover .project-thumb .arrow-icon {
  top: 30px;
  opacity: 1;
  visibility: visible;
}

.project-section-4 .swiper-slide.swiper-slide-active .project-card-items-4 .project-thumb::before {
  opacity: 1;
  visibility: visible;
}
.project-section-4 .swiper-slide.swiper-slide-active .project-card-items-4 .project-thumb .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}
.project-section-4 .swiper-slide.swiper-slide-active .project-card-items-4 .project-thumb .arrow-icon {
  top: 30px;
  opacity: 1;
  visibility: visible;
}
.project-section-4 .project-slider-4 {
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .project-section-4 .project-slider-4 {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.project-section-4 .gt-array-button .array-prev {
  background: var(--gt-header);
  color: var(--gt-white);
}
.project-section-4 .gt-array-button .array-prev:hover {
  background-color: #fab249;
}

.gt-project-section {
  background-color: #1D1D1D;
}
.gt-project-section .gt-array-items {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gt-project-wrapper {
  margin-left: -38%;
  margin-right: -38%;
}
@media (max-width: 1199px) {
  .gt-project-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.gt-project-wrapper .gt-project-thumb {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .gt-project-wrapper .gt-project-thumb {
    height: 450px;
  }
  .gt-project-wrapper .gt-project-thumb img {
    object-fit: cover;
  }
}
.gt-project-wrapper .gt-project-thumb img {
  width: 100%;
  height: 100%;
}
.gt-project-wrapper .gt-project-thumb .gt-project-content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  text-align: center;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .gt-project-wrapper .gt-project-thumb .gt-project-content {
    left: 20px;
    right: 20px;
  }
}
.gt-project-wrapper .gt-project-thumb .gt-project-content::before {
  position: absolute;
  bottom: -210%;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 230px;
  background-color: #fab249;
  z-index: -1;
}
@media (max-width: 575px) {
  .gt-project-wrapper .gt-project-thumb .gt-project-content::before {
    display: none;
  }
}
.gt-project-wrapper .gt-project-thumb .gt-project-content span {
  color: var(--gt-white);
}
.gt-project-wrapper .gt-project-thumb .gt-project-content h3 {
  font-size: 28px;
}
.gt-project-wrapper .gt-project-thumb .gt-project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--gt-white);
}
.gt-project-wrapper .gt-project-thumb .gt-project-content h3 a:hover {
  color: var(--gt-white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--gt-white) 0%, var(--gt-white) 100%);
}
.gt-project-wrapper .gt-project-thumb .gt-project-content .list-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gt-project-wrapper .gt-project-thumb .gt-project-content .list-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-project-wrapper .gt-project-thumb .gt-project-content .list-item li {
  color: var(--gt-white);
}
.gt-project-wrapper .gt-project-thumb .gt-project-content .list-item li img {
  width: initial;
  height: initial;
  margin-right: 5px;
}
.gt-project-wrapper .gt-project-thumb .gt-project-content h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gt-white);
  margin-bottom: 30px;
}
.gt-project-wrapper .gt-project-thumb:hover .gt-project-content {
  opacity: 1;
  visibility: visible;
}

.gt-section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .gt-section-title {
    margin-bottom: 0;
  }
}
.gt-section-title h6 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #fab249;
  font-family: "Barlow", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.gt-section-title h6.gt-style-3 {
  border: 1px solid #fab249;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 100px;
}
.gt-section-title h6.gt-style-4 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.gt-section-title h6.gt-style-4::after {
  display: none;
}
.gt-section-title h6.gt-style-4::before {
  display: none;
}
.gt-section-title h6.gt-style-5 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #fab249;
}
.gt-section-title h6.gt-style-5::after {
  display: none;
}
.gt-section-title h6.gt-style-5::before {
  display: none;
}
.gt-section-title h2 {
  text-transform:  uppercase;
}

.gt-section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .gt-section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--gt-bg);
}

.section-bg-2 {
  background-color: var(--gt-header);
}

.section-padding {
  padding: 50px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 40px 0;
  }
}

.service-card-items {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--gt-white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 15px;
  margin-top: 30px;
}
.service-card-items .service-image img {
  width: 100%;
      height: 250px;
    object-fit: cover;
}
.service-card-items .service-content {
  text-align: center;
  padding: 0px 35px 40px;
}
.service-card-items .service-content .icon {
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 105px;
  background-color: #fab249;
  text-align: center;
  margin: 0 auto;
  margin-top: -40px;
  position: relative;
  margin-bottom: 25px;
  font-size: 41px;
  color: var(--gt-white);
}
.service-card-items .service-content h4 {
  margin-bottom: 10px;
}
.service-card-items .service-content h4 a:hover {
  color: #fab249;
}
.service-card-items .service-content .link-btns {
      display: inline-block;
    color: #000000;
    background: #FFC107;
    padding: 10px 25px;
    border-radius: 100px;
    margin-top: 15px;
    font-weight: 700;
}
.service-card-items .service-content .link-btns i {
  margin-left: 6px;
}
.service-card-items .service-content .link-btns:hover {
  color: #fab249;
}

.service-section-1 {
  position: relative;
  z-index: 9;
}
.service-section-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-white);
  top: 68%;
  height: initial;
  z-index: -1;
}

.gt-services-item {
  margin-top: 30px;
}
.gt-services-item .gt-service-image {
  position: relative;
  overflow: hidden;
}
.gt-services-item .gt-service-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-services-item .service-content {
  background: var(--gt-bg);
  padding: 20px 30px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .gt-services-item .service-content {
    padding: 20px 30px;
  }
}
.gt-services-item .service-content .content-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gt-services-item .service-content .content-item .content .text h3 {
  font-size: 22px;
}
.gt-services-item .service-content .content-item .content .text h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-services-item .service-content .content-item .content .text h3 a:hover {
  color: #fab249;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #fab249 0%, #fab249 100%);
}
.gt-services-item .service-content .content-item .content p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.gt-services-item .service-content .content-item .content .service-btn .link-btn {
  color: var(--gt-header);
}
.gt-services-item:hover .gt-service-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.gt-service-details-wrapper .gt-service-details-item .gt-service-details-image img {
  width: 100%;
  height: 100%;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content {
  margin-top: 20px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content h3 {
  font-size: 36px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content h3 {
    font-size: 30px;
  }
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area {
  margin-top: 30px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item {
  margin-bottom: 30px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item h3 {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item h3 {
    font-size: 20px;
  }
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .gt-details-list {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .gt-details-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .gt-details-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
}
@media (max-width: 575px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .gt-details-list li {
    font-size: 14px;
  }
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .gt-details-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .gt-details-list li i {
  color: #fab249;
  margin-right: 8px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .gt-list-item-area .gt-list-item .thumb img {
  width: 100%;
  height: 100%;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .text {
  font-size: 24px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .thumb img {
  width: 100%;
  height: 100%;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .service-benefit-content h3 {
  margin-bottom: 10px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .service-benefit-content p {
  max-width: 375px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .service-benefit-content .details-list {
  margin-top: 15px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .service-benefit-content .details-list li {
  font-size: 18px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .service-benefit-content .details-list li i {
  color: #fab249;
  margin-right: 5px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .service-benefit-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content {
  margin-top: 40px;
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content h3 {
    font-size: 25px;
  }
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item {
  border: none !important;
  background: var(--gt-bg);
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--gt-header);
  letter-spacing: -0.2px;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  background: var(--gt-bg);
  padding: 20px 30px 0;
  text-transform: capitalize;
  font-size: 20px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 20px 20px 0;
  }
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-header .accordion-button::before {
  font-family: "Font Awesome 5 Pro";
  color: var(--gt-white);
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  font-family: "Font Awesome 5 Pro";
  color: var(--gt-white);
  transform: rotate(-90deg);
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background: var(--gt-bg);
  padding: 18px 30px;
  color: var(--gt-header);
}
.gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-left: 33px;
  padding-top: 15px;
  padding-right: 40px;
  color: var(--gt-text);
  background: var(--gt-bg);
  padding-bottom: 28px;
}
@media (max-width: 767px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-left: 60px;
  }
}
@media (max-width: 575px) {
  .gt-service-details-wrapper .gt-service-details-item .gt-service-details-content .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-left: 20px;
    padding-bottom: 20px;
  }
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 40px;
  background-color: var(--gt-bg);
  padding: 30px;
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  border-bottom: 1.5px solid rgba(191, 191, 191, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-size: 32px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
    font-size: 30px;
  }
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget ul li a {
  color: var(--gt-header);
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget ul li i {
  transition: all 0.4s ease-in-out;
  color: var(--gt-header);
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget ul li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget ul li:hover a {
  color: #fab249;
}
.gt-service-details-wrapper .gt-main-sideber .gt-single-sideber-widget ul li:hover i {
  color: #fab249;
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg {
  position: relative;
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content {
  padding: 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content {
    padding: 30px;
  }
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
  font-size: 32px;
  color: var(--gt-white);
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
    font-size: 30px;
  }
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content p {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
  color: var(--gt-border);
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1.2px solid var(--gt-white);
  color: var(--gt-white);
  font-size: 24px;
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
  font-size: 16px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: var(--gt-white);
}
@media (max-width: 1199px) {
  .gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
    font-size: 14px;
  }
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
  color: var(--gt-white);
}
.gt-service-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
  color: var(--gt-white);
}

.service-box-items-5 {
  margin-top: 30px;
}
.service-box-items-5 .gt-thumb {
  overflow: hidden;
}
.service-box-items-5 .gt-thumb img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.service-box-items-5 .gt-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-items-5 .gt-content h3 a:hover {
  color: #fab249;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #fab249 0%, #fab249 100%);
}
.service-box-items-5 .gt-content .gt-title-content {
  padding-top: 30px;
}
.service-box-items-5 .gt-content .gt-title-content .gt-link-btn {
  display: inline-block;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: var(--gt-header);
  z-index: 9;
  text-transform: uppercase;
  margin-top: 7px;
}
.service-box-items-5 .gt-content .gt-title-content .gt-link-btn i {
  margin-left: 8px;
  color: #fab249;
}
.service-box-items-5 .gt-content .gt-title-content .gt-link-btn:hover {
  color: #fab249;
}
.service-box-items-5:hover .gt-thumb img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.service-top-wrapper {
  margin-top: 60px;
}
.service-top-wrapper .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.service-top-wrapper .service-list .single-service {
  padding: 51px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom, var(--gt-header) 0%, var(--gt-header) 98%);
  background-size: 0;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.8s;
}
@media (max-width: 1399px) {
  .service-top-wrapper .service-list .single-service {
    padding: 48px 0;
  }
}
@media (max-width: 1199px) {
  .service-top-wrapper .service-list .single-service {
    padding: 45px 0;
  }
}
@media (max-width: 575px) {
  .service-top-wrapper .service-list .single-service {
    padding: 40px 0;
  }
}
.service-top-wrapper .service-list .single-service:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.service-top-wrapper .service-list .single-service .service-content {
  display: flex;
  align-items: center;
  gap: 50px;
  transition: 0.7s;
}
@media (max-width: 1199px) {
  .service-top-wrapper .service-list .single-service .service-content {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .service-top-wrapper .service-list .single-service .service-content {
    gap: 30px;
  }
}
.service-top-wrapper .service-list .single-service .service-content span {
  color: var(--gt-text);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: 0.5s;
}
.service-top-wrapper .service-list .single-service .service-content h5 {
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-transform: uppercase;
}
.service-top-wrapper .service-list .single-service .service-content h5 svg {
  fill: var(--gt-header);
  transition: 0.5s;
}
.service-top-wrapper .service-list .single-service .service-content h5 a {
  color: var(--gt-header);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: 0.5s;
}
@media (max-width: 1199px) {
  .service-top-wrapper .service-list .single-service .service-content h5 a {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .service-top-wrapper .service-list .single-service .service-content h5 a {
    font-size: 20px;
  }
}
.service-top-wrapper .service-list .single-service:hover {
  background-size: 100%;
  background-position: 0% 100%;
  color: var(--gt-white);
}
.service-top-wrapper .service-list .single-service:hover .service-content {
  transform: translateX(40px);
}
.service-top-wrapper .service-list .single-service:hover .service-content span {
  color: rgba(255, 255, 255, 0.6);
}
.service-top-wrapper .service-list .single-service:hover .service-content h5 svg {
  fill: #fab249;
}
.service-top-wrapper .service-list .single-service:hover .service-content h5 a {
  color: #fab249;
}
.service-top-wrapper .service-img-group {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .service-top-wrapper .service-img-group {
    display: none;
    visibility: hidden;
  }
}
.service-top-wrapper .service-img-group li {
  position: relative;
}
.service-top-wrapper .service-img-group li .service-img {
  min-height: 631px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 12;
}
@media (max-width: 1399px) {
  .service-top-wrapper .service-img-group li .service-img {
    min-height: 602px;
  }
}
@media (max-width: 1199px) {
  .service-top-wrapper .service-img-group li .service-img {
    min-height: 567px;
  }
}
.service-top-wrapper .service-img-group li .service-img img {
  height: 100%;
  object-fit: cover;
}
.service-top-wrapper .service-img-group li.active .service-img {
  animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 15;
}
@keyframes qodef-animate-image-out {
  0% {
    transform: scale(1) translateZ(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qodef-animate-image-in {
  0% {
    transform: scale(1.05) translateZ(0);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.service-item {
  margin-top: 30px;
}
.service-item .service-thumb {
  overflow: hidden;
}
.service-item .service-thumb img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.service-item .service-content {
  background: var(--gt-bg);
  padding: 27px;
  margin: -44px 0px 0 35px;
  position: relative;
}
@media (max-width: 1399px) {
  .service-item .service-content {
    margin: -44px 0px 0 0px;
  }
}
.service-item .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-item .service-content h3 a:hover {
  color: #fab249;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #fab249 0%, #fab249 100%);
}
.service-item .service-content p {
  margin-top: 10px;
}
.service-item .service-content .service-btn {
  margin-top: 28px;
}
.service-item .service-content .service-btn .gt-link-btn {
  display: inline-block;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: var(--gt-header);
  z-index: 9;
  text-transform: uppercase;
}
.service-item .service-content .service-btn .gt-link-btn i {
  margin-left: 8px;
  color: #fab249;
}
.service-item .service-content .service-btn .gt-link-btn:hover {
  color: #fab249;
}
.service-item:hover .service-thumb img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.service-wrapper-5 {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-wrapper-5 .single-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 35px 70px 35px 35px;
  background-color: var(--gt-white);
  transition: 0.5s;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .service-wrapper-5 .single-service {
    padding: 35px 50px 35px 25px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service {
    padding: 25px 40px 25px 20px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service {
    padding: 25px 50px 25px 20px;
  }
}
@media (max-width: 1199px) {
  .service-wrapper-5 .single-service {
    flex-wrap: wrap;
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .service-wrapper-5 .single-service {
    padding: 25px 20px;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-5 .single-service {
    padding: 20px 10px 25px;
    gap: 10px;
  }
}
.service-wrapper-5 .single-service:last-child {
  margin-bottom: 0;
}
.service-wrapper-5 .single-service .service-img-and-title-area {
  display: flex;
  gap: 50px;
  max-width: 900px;
  width: 100%;
}
@media (max-width: 1600px) {
  .service-wrapper-5 .single-service .service-img-and-title-area {
    gap: 40px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-img-and-title-area {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-img-and-title-area {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-img-and-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .service-wrapper-5 .single-service .service-img-and-title-area {
    gap: 25px;
  }
}
.service-wrapper-5 .single-service .service-img-and-title-area .service-img {
  min-width: 450px;
}
@media (max-width: 1600px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .service-img {
    min-width: 340px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .service-img {
    min-width: 450px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .service-img {
    min-width: initial;
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .service-img {
    min-width: initial;
    flex-basis: initial;
  }
}
.service-wrapper-5 .single-service .service-img-and-title-area .service-img img {
  width: 100%;
  height: 100%;
}
.service-wrapper-5 .single-service .service-img-and-title-area .title-area {
  padding: 35px 0 20px;
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area {
    padding: 25px 0 20px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area {
    padding: 0;
  }
}
.service-wrapper-5 .single-service .service-img-and-title-area .title-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area ul {
    margin-bottom: 40px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area ul {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area ul {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area ul {
    gap: 10px;
    row-gap: 15px;
    margin-bottom: 20px;
  }
}
.service-wrapper-5 .single-service .service-img-and-title-area .title-area ul li {
  display: inline-flex;
}
.service-wrapper-5 .single-service .service-img-and-title-area .title-area ul li a {
  color: var(--gt-white);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 7px 20px;
  background-color: rgba(252, 90, 17, 0.9);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area ul li a {
    font-size: 14px;
    padding: 5px 15px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area ul li a {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 {
  margin-bottom: 0;
  line-height: 1.3;
}
.service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 a {
  color: var(--gt-header);
  font-weight: 600;
  font-size: 35px;
  line-height: 1.3;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 a {
    font-size: 30px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 a {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 a {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 a {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-5 .single-service .service-img-and-title-area .title-area h2 a {
    font-size: 22px;
  }
}
.service-wrapper-5 .single-service .service-content {
  max-width: 467px;
  width: 100%;
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-content {
    max-width: 362px;
  }
}
@media (max-width: 1199px) {
  .service-wrapper-5 .single-service .service-content {
    max-width: 330px;
  }
}
@media (max-width: 1199px) {
  .service-wrapper-5 .single-service .service-content {
    max-width: unset;
  }
}
.service-wrapper-5 .single-service .service-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 40px;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-content p {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-5 .single-service .service-content p {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .service-wrapper-5 .single-service .service-content p {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-5 .single-service .service-content p {
    padding-left: 10px;
    font-size: 15px;
    line-height: 28px;
  }
}
.service-wrapper-5 .single-service .service-content p::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 77px;
  top: 10px;
  left: 0;
  background-color: var(--gt-header);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-wrapper-5 .single-service .service-content p::before {
    height: 45px;
  }
}
.service-wrapper-5 .single-service:hover {
  background-color: #fab249;
}
.service-wrapper-5 .single-service:hover .service-img-and-title-area .title-area ul li a {
  color: var(--gt-header);
  background-color: var(--gt-white);
}
.service-wrapper-5 .single-service:hover .service-img-and-title-area .title-area h2 a {
  color: var(--gt-white);
}
.service-wrapper-5 .single-service:hover .service-content p {
  color: var(--gt-white);
}
.service-wrapper-5 .single-service:hover .service-content p::before {
  background-color: var(--gt-white);
}
.service-wrapper-5 .single-service:hover .service-content .gt-theme-btn .gt-text-btn {
  background-color: var(--gt-header);
}

.service-section-5 .container-fluid {
  padding: 0 90px;
}
@media (max-width: 1899px) {
  .service-section-5 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .service-section-5 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1399px) {
  .service-section-5 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .service-section-5 .container-fluid {
    padding: 0 15px;
  }
}


.common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.common-table .cart-item-thumb {
  width: 86px;
}
@media (max-width: 1399px) {
  .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}
.common-table .cart-item-thumb .head {
  color: var(--gt-header);
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
.common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: var(--gt-text);
}
.common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead,
.common-table tbody {
  width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.common-table thead tr {
  color: var(--gt-header);
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
}

.common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.quantity button i {
  font-size: 16px;
}

.quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: var(--gt-header);
  border: unset;
}

@media (max-width: 767px) {
  .cart-list-area .table-responsive {
    overflow-x: scroll;
  }
}
@media (max-width: 991px) {
  .cart-list-area .table-responsive .table {
    width: 900px;
  }
}
.cart-list-area .coupon-items input {
  background: var(--gt-bg);
  border: none;
  padding: 19px 30px;
  color: var(--gt-text);
  line-height: 1;
}
.cart-list-area .theme-btn {
  transition: all 0.4s ease-in-out;
}

.cart-total-area {
  margin-top: -10px;
}
.cart-total-area h3 {
  font-size: 48px;
  margin-bottom: 5px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cart-total-area h3 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .cart-total-area h3 {
    font-size: 32px;
  }
}
.cart-total-area ul {
  margin-bottom: 50px;
}
.cart-total-area ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--gt-header);
  display: flex;
  align-items: center;
  gap: 220px;
  border-bottom: 1px solid #E4E4E5;
  padding-bottom: 25px;
  padding-top: 25px;
}
@media (max-width: 1199px) {
  .cart-total-area ul li {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .cart-total-area ul li {
    font-size: 18px;
  }
}
.cart-total-area ul li .subtotal {
  color: var(--gt-text);
  font-weight: 400;
  margin-left: -30px;
}
@media (max-width: 1199px) {
  .cart-total-area ul li .subtotal {
    margin-left: 10px;
  }
}
.cart-total-area ul li .price {
  font-weight: 700;
  font-size: 22px;
  flex-basis: 30%;
}
@media (max-width: 767px) {
  .cart-total-area ul li .price {
    font-size: 18px;
    flex-basis: 100%;
  }
}

.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}
.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--gt-header);
  text-transform: capitalize;
}
.checkout-radio h4 {
  color: var(--gt-header);
  margin-bottom: 16px;
  font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid #E4E4E5;
  font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--gt-header);
  text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--gt-header);
  margin-bottom: 2rem;
  font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid #E4E4E5;
  padding: 12px 24px;
  color: var(--gt-header);
  text-transform: capitalize;
  font-weight: 500;
  background-color: transparent;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--gt-header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--gt-header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select {
  border: 1px solid #E4E4E5;
  border-radius: 0;
  font-weight: 500;
  color: var(--gt-header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select .list {
  width: 100%;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--gt-header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .theme-btn {
  border-radius: 0;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid #E4E4E5;
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border: 1px solid #E4E4E5;
  background-color: #fab249;
  outline: none;
  color: var(--gt-header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.gt-shop-details-wrapper .gt-shop-details-image {
  position: relative;
}
.gt-shop-details-wrapper .gt-shop-details-image img {
  width: 100%;
  height: 100%;
}
.gt-shop-details-wrapper .gt-shop-details-image .gt-box-text {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  line-height: 1;
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-shop-details-wrapper .gt-shop-details-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content {
    margin-left: 0;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content h6 {
  font-size: 16px;
}
.gt-shop-details-wrapper .gt-shop-details-content h6 span {
  color: var(--gt-text);
  font-family: "Inter", sans-serif;
}
.gt-shop-details-wrapper .gt-shop-details-content h2 {
  font-size: 36px;
  margin-top: 15px;
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .gt-shop-details-content h2 {
    font-size: 30px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .price-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content .price-list li:first-child {
  font-size: 16px;
  color: var(--gt-header);
  font-weight: 500;
}
.gt-shop-details-wrapper .gt-shop-details-content .price-list li span {
  font-weight: 700;
  color: #fab249;
}
.gt-shop-details-wrapper .gt-shop-details-content .eye-icon {
  display: inline-block;
  margin-top: 12px;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li span {
  color: var(--gt-header);
  font-weight: 500;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(4) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #E69539;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(3) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #1D1D1D;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(2) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #E63946;
}
.gt-shop-details-wrapper .gt-shop-details-content .color-list li:nth-last-of-type(1) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ECB014;
}
.gt-shop-details-wrapper .gt-shop-details-content .star {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.gt-shop-details-wrapper .gt-shop-details-content .star i {
  color: #ECB014;
}
.gt-shop-details-wrapper .gt-shop-details-content .star span {
  margin-left: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content p {
  margin-top: 15px;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity {
    flex-wrap: wrap;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  background-color: #F2F2F2;
  padding: 16px 14px;
  line-height: 1;
  justify-content: space-between;
  margin-top: 0;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty button,
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gt-header);
  font-weight: 400;
  font-size: 24px;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  background-color: #fab249;
  color: var(--gt-white);
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn:hover {
  background-color: var(--gt-header);
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .icon-item {
    margin-top: 16px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .icon-item .icon {
  background-color: #F2F2F2;
  padding: 23px 24px;
  transition: all 0.4s ease-in-out;
}
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .icon-item .icon:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-shop-details-wrapper .gt-shop-details-content .buy-btn {
  width: 100%;
  background-color: #F2F2F2;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
}
.gt-shop-details-wrapper .gt-shop-details-content .buy-btn:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items {
  margin-top: 25px;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items li {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-list-items li span {
  color: var(--gt-header);
}
.gt-shop-details-wrapper .gt-shop-details-content .share-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.gt-shop-details-wrapper .gt-shop-details-content .share-list a {
  color: var(--gt-text);
}
.gt-shop-details-wrapper .gt-shop-details-content .share-list a:hover {
  color: #fab249;
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-bank-list {
  color: var(--gt-header);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-details-content .gt-bank-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-shop-details-wrapper .gt-shop-details-content .gt-bank-list span {
  display: block;
  color: var(--gt-text);
  font-weight: 400;
}
.gt-shop-details-wrapper .gt-shop-tab-area {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .gt-shop-details-wrapper .gt-shop-tab-area {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .gt-shop-tab-area {
    margin-top: 50px;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .nav {
  justify-content: center;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .nav .nav-item .nav-link {
  font-size: 18px;
  color: var(--gt-header);
  font-weight: 500;
  position: relative;
}
.gt-shop-details-wrapper .gt-shop-tab-area .nav .nav-item .nav-link.active {
  color: #fab249;
}
.gt-shop-details-wrapper .gt-shop-tab-area .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: #fab249;
  transition: 0.3s;
}
@media (max-width: 470px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .nav .nav-item .nav-link.active::before {
    display: none;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content {
  padding-top: 30px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-text {
  font-size: 18px;
}
@media (max-width: 767px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-text {
    font-size: 16px;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .description-list-items .description-list li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--gt-header);
  font-weight: 600;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .description-list-items .description-list li span {
  color: var(--gt-text);
  font-weight: 400;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items {
  background-color: #F2F2F2;
  padding: 48px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items {
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items {
    padding: 25px;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items h3 {
  margin-bottom: 20px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap.border-none {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap .gt-clicnt-content .gt-star {
  color: #ECB014;
  margin-bottom: 5px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap .gt-clicnt-content h4 {
  font-size: 18px;
  font-weight: 600;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap .gt-clicnt-content h4 span {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--gt-text);
  font-size: 14px;
  margin-left: 10px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap .gt-review-box-area {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-box-items .gt-review-box-wrap p {
  max-width: 760px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box {
  background-color: #F2F2F2;
  padding: 48px;
}
@media (max-width: 767px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box {
    padding: 30px;
  }
}
@media (max-width: 470px) {
  .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box {
    padding: 25px;
  }
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .star {
  color: #fab249;
  margin-bottom: 10px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box h3 {
  margin-bottom: 20px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .form-clt span {
  font-size: 18px;
  font-weight: 600;
  color: "Barlow", sans-serif;
  color: var(--gt-header);
  padding-bottom: 12px;
  display: inline-block;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .form-clt input, .gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .form-clt textarea {
  width: 100%;
  border: none;
  line-height: 1;
  padding: 18px 24px;
  line-height: 1;
  background-color: var(--gt-white);
  color: var(--gt-text);
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .form-clt textarea {
  padding-bottom: 130px;
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.gt-shop-details-wrapper .gt-shop-tab-area .tab-content .gt-review-form-box .gt-theme-btn .gt-icon-btn::after {
  background-color: #fab249;
}

.gt-shop-section-2 {
  position: relative;
  z-index: 9;
}
.gt-shop-section-2 .gt-sub-title {
  font-size: 140px;
  line-height: 1;
  letter-spacing: -1.4px;
  opacity: 0.04;
  position: absolute;
  top: 0;
  left: -29%;
  transform: rotate(90deg);
  bottom: 0;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1899px) {
  .gt-shop-section-2 .gt-sub-title {
    display: none;
  }
}

.gt-team-wrapper .gt-team-left-items .gt-content-box {
  padding: 19px 24px;
  background-color: var(--gt-white);
  transition: all 0.4s ease-in-out;
  margin-top: 24px;
}
.gt-team-wrapper .gt-team-left-items .gt-content-box h3 {
  margin-bottom: 5px;
}
.gt-team-wrapper .gt-team-left-items .gt-content-box:hover {
  background-color: #fab249;
}
.gt-team-wrapper .gt-team-left-items .gt-content-box:hover h3 a {
  color: var(--gt-white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-team-wrapper .gt-team-left-items .gt-content-box:hover h3 a:hover {
  color: var(--gt-white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--gt-white) 0%, var(--gt-white) 100%);
}
.gt-team-wrapper .gt-team-left-items .gt-content-box:hover p {
  color: var(--gt-white);
}
.gt-team-wrapper .gt-team-box-items {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.gt-team-wrapper .gt-team-box-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  top: 0px;
  right: 0;
  background: linear-gradient(0deg, rgba(230, 57, 70, 0.48) 0%, rgba(230, 57, 70, 0.48) 100%);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  width: 100%;
  height: 100%;
  z-index: 9;
}
.gt-team-wrapper .gt-team-box-items img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-team-wrapper .gt-team-box-items .gt-social-icon {
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  transition: all 0.4s ease-in-out;
}
.gt-team-wrapper .gt-team-box-items .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--gt-white);
  color: var(--gt-header);
}
@media (max-width: 575px) {
  .gt-team-wrapper .gt-team-box-items .gt-social-icon a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
  }
}
.gt-team-wrapper .gt-team-box-items .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-team-wrapper .gt-team-box-items.hovered::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}
.gt-team-wrapper .gt-team-box-items.hovered img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.gt-team-wrapper .gt-team-box-items.hovered .gt-social-icon {
  opacity: 1;
  visibility: visible;
}

.gt-team-section-2 {
  position: relative;
  z-index: 9;
}
.gt-team-section-2 .gt-sub-title {
  font-size: 140px;
  line-height: 1;
  letter-spacing: -1.4px;
  opacity: 0.04;
  position: absolute;
  top: 0;
  right: 1%;
  transform: rotate(90deg);
  bottom: 0;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1899px) {
  .gt-team-section-2 .gt-sub-title {
    display: none;
  }
}

.gt-team-card-items-2 {
  position: relative;
}
.gt-team-card-items-2 .gt-team-image {
  position: relative;
  overflow: hidden;
}
.gt-team-card-items-2 .gt-team-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(230, 57, 70, 0.48) 0%, rgba(230, 57, 70, 0.48) 100%);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: 1;
}
.gt-team-card-items-2 .gt-team-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-team-card-items-2 .gt-team-image .gt-social-icon {
  gap: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.gt-team-card-items-2 .gt-team-image .gt-social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-team-card-items-2 .gt-team-image .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}
.gt-team-card-items-2 .gt-team-image .gt-team-content {
  padding: 15px 20px;
  text-align: center;
  background-color: var(--gt-white);
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9;
}
.gt-team-card-items-2 .gt-team-image .gt-team-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.gt-team-card-items-2 .gt-team-image .gt-team-content h4 a:hover {
  color: #fab249;
}
.gt-team-card-items-2:hover .gt-team-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.gt-team-card-items-2:hover .gt-team-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.gt-team-card-items-2:hover .gt-team-image .gt-social-icon {
  opacity: 1;
  visibility: visible;
}

.gt-team-details-wrapper .gt-thumb img {
  width: 100%;
  height: 100%;
}
.gt-team-details-wrapper .gt-details-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .gt-team-details-wrapper .gt-details-content {
    margin-left: 0;
  }
}
.gt-team-details-wrapper .gt-details-content h2 {
  margin-bottom: 10px;
}
.gt-team-details-wrapper .gt-details-content span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}
.gt-team-details-wrapper .gt-details-content .gt-list {
  margin-top: 30px;
}
.gt-team-details-wrapper .gt-details-content .gt-list li {
  color: var(--gt-header);
}
.gt-team-details-wrapper .gt-details-content .gt-list li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-team-details-wrapper .gt-details-content .gt-list li i {
  color: var(--gt-header);
  margin-right: 5px;
}
.gt-team-details-wrapper .gt-details-content .gt-social-icon {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-team-details-wrapper .gt-details-content .gt-social-icon a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  color: var(--gt-header);
  background-color: var(--gt-bg);
  transition: all 0.4s ease-in-out;
}
.gt-team-details-wrapper .gt-details-content .gt-social-icon a:hover {
  background-color: #fab249;
  color: var(--gt-white);
}

.gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item {
  margin-bottom: 30px;
}
.gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item h3 {
  font-size: 36px;
}
@media (max-width: 1199px) {
  .gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item h3 {
    font-size: 25px;
  }
}
.gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item .gt-details-list {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item .gt-details-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item .gt-details-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--gt-header);
}
@media (max-width: 575px) {
  .gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item .gt-details-list li {
    font-size: 14px;
  }
}
.gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item .gt-details-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-team-Experience-wrapper .gt-team-Experience-content .gt-list-item .gt-details-list li i {
  color: #fab249;
  margin-right: 8px;
}
.gt-team-Experience-wrapper .gt-team-Experience-content .text {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .gt-team-Experience-wrapper .gt-team-Experience-content .text {
    font-size: 20px;
  }
}
.gt-team-Experience-wrapper .contact-form-items h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gt-team-Experience-wrapper .contact-form-items h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-team-Experience-wrapper .contact-form-items h3 {
    font-size: 25px;
  }
}
.gt-team-Experience-wrapper .contact-form-items .form-clt input, .gt-team-Experience-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--gt-white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--gt-text);
  font-size: 16px;
}
.gt-team-Experience-wrapper .contact-form-items .form-clt input::placeholder, .gt-team-Experience-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: var(--gt-text);
}
.gt-team-Experience-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}
.gt-team-Experience-wrapper .contact-form-items button.gt-theme-btn .gt-icon-btn {
  background-color: var(--gt-header);
}
.gt-team-Experience-wrapper .contact-form-items button.gt-theme-btn .gt-icon-btn::after {
  background-color: #fab249;
}

.gt-team-image-4 {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.gt-team-image-4 img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.gt-team-image-4 .gt-social-icon {
  display: grid;
  align-items: center;
  position: absolute;
  right: -100px;
  bottom: 19.8%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 99;
}
.gt-team-image-4 .gt-social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #fab249;
  color: var(--gt-white);
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 99;
}
.gt-team-image-4 .gt-social-icon a:hover {
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-team-image-4 .gt-team-content {
  background-color: var(--gt-header);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  clip-path: polygon(50% 0%, 100% 0, 100% 43%, 100% 78%, 100% 100%, 0 100%, 0 77%, 0 151%, 20% 0);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: 30px;
  padding-left: 90px;
}
@media (max-width: 1199px) {
  .gt-team-image-4 .gt-team-content {
    padding-left: 30px;
    clip-path: none;
  }
}
.gt-team-image-4 .gt-team-content .gt-team-title h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--gt-white);
}
.gt-team-image-4 .gt-team-content .gt-team-title h3 a:hover {
  color: #fab249;
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, #fab249 0%, #fab249 100%);
}
.gt-team-image-4 .gt-team-content .gt-team-title p {
  color: #FCFCFC;
  opacity: 0.7;
}
.gt-team-image-4 .gt-team-content .arrow-icon {
  font-size: 24px;
  color: #fab249;
}
.gt-team-image-4.style-2 .arrow-icon {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #fab249;
  color: #fff;
}
.gt-team-image-4.style-2 .gt-social-icon {
  left: 24px;
  right: initial;
  bottom: 68px;
}
.gt-team-image-4.style-2 .gt-social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #fab249;
  color: var(--gt-white);
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 99;
}
.gt-team-image-4.style-2 .gt-social-icon a:hover {
  background-color: var(--gt-white);
  color: var(--gt-header);
}
.gt-team-image-4.style-2 .gt-team-content {
  clip-path: none;
  margin-left: 100px;
  text-align: center;
  padding-left: 24px;
  justify-content: center;
  background-color: var(--gt-white);
  right: -130px;
  left: initial;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gt-team-image-4.style-2 .gt-team-content .gt-team-title {
  text-align: center;
}
.gt-team-image-4.style-2 .gt-team-content h3 {
  font-size: 20px;
}
.gt-team-image-4.style-2 .gt-team-content h3 a {
  color: var(--gt-header);
}
.gt-team-image-4.style-2 .gt-team-content p {
  color: var(--gt-text);
}
.gt-team-image-4.style-2:hover .gt-team-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.gt-team-image-4.style-2:hover .arrow-icon {
  transform: rotate(-90deg);
}
.gt-team-image-4:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.gt-team-image-4:hover .gt-team-content .arrow-icon {
  transform: rotate(-90deg);
}

.gt-team-image-4 .gt-team-content:hover ~ .gt-social-icon,
.gt-team-image-4:hover .gt-social-icon {
  opacity: 1;
  right: 0;
}

.gt-team-section-4 {
  position: relative;
}
.gt-team-section-4 .horse-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

.gt-testimonial-box-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
  text-align: center;
  opacity: 0.32;
}
.gt-testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F2F2F2;
  z-index: -1;
  top: 40px;
  height: initial;
  opacity: 0.32;
}
.gt-testimonial-box-items .gt-testi-thumb img {
    width:100px;
    height:100px;
    border-radius:100px;
    object-fit:cover;
}
.gt-testimonial-box-items .gt-testi-content {
  padding: 0 55px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .gt-testimonial-box-items .gt-testi-content {
    margin-top: 0;
    padding: 30px;
  }
}
.gt-testimonial-box-items .gt-testi-content h5 {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 150%;
  color: #1D1D1D;
}
@media (max-width: 767px) {
  .gt-testimonial-box-items .gt-testi-content h5 {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .gt-testimonial-box-items .gt-testi-content h5 {
    font-size: 16px;
  }
}
.gt-testimonial-box-items .gt-testi-content .client-info {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gt-white);
  padding: 12px 16px;
  gap: 30px;
}
@media (max-width: 767px) {
  .gt-testimonial-box-items .gt-testi-content .client-info {
    gap: 15px;
  }
}
.gt-testimonial-box-items .gt-testi-content .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .gt-testimonial-box-items .gt-testi-content .client-info h4 {
    font-size: 16px;
  }
}
.gt-testimonial-box-items .gt-testi-content .client-info p {
  color: #595959;
  line-height: 1;
}
@media (max-width: 767px) {
  .gt-testimonial-box-items .gt-testi-content .client-info p {
    font-size: 14px;
  }
}

.gt-testimonial-wrapper .gt-testimonial-content-slider .swiper-slide-active .gt-testimonial-box-items {
  opacity: 1;
}
.gt-testimonial-wrapper .gt-testimonial-content-slider .swiper-slide-active .gt-testimonial-box-items::before {
  background-color: #fab249;
  opacity: 1;
}
.gt-testimonial-wrapper .gt-testimonial-content-slider .swiper-slide-active .gt-testimonial-box-items .gt-testi-content h5 {
  color: var(--gt-white);
}
.gt-testimonial-wrapper .gt-testimonial-slider-thumb {
  max-width: 360px;
  height: 100px;
}
@media (max-width: 575px) {
  .gt-testimonial-wrapper .gt-testimonial-slider-thumb {
    max-width: 100px;
  }
}
.gt-testimonial-wrapper .gt-testimonial-slider-thumb img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.gt-testimonial-wrapper .gt-testimonial-slider-thumb .swiper-wrapper {
  display: flex;
  gap: 0px;
}
.gt-testimonial-wrapper .gt-testimonial-slider-thumb .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: auto;
}
.gt-testimonial-wrapper .gt-testimonial-slider-thumb .swiper-slide-thumb-active img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  position: relative;
  z-index: 9;
  border: 2px solid #fab249;
}
.gt-testimonial-wrapper .gt-testimonial-content-slider {
  margin-left: -17%;
  margin-right: -17%;
}
@media (max-width: 767px) {
  .gt-testimonial-wrapper .gt-testimonial-content-slider {
    margin-left: 0;
    margin-right: 0;
  }
}
.gt-testimonial-wrapper .gt-array-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  max-width: 660px;
}

.testimonail-box-item {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(104deg, rgba(255, 255, 255, 0.2) -52.49%, rgba(255, 255, 255, 0) 101.11%);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  position: relative;
}
.testimonail-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fab249;
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}
.testimonail-box-item .star {
  margin-bottom: 30px;
  color: #fab249;
}
.testimonail-box-item p {
  color: var(--gt-white);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 155%;
}
.testimonail-box-item .client-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonail-box-item .client-info-item .client-image img {
  width: 100%;
  height: 100%;
}
.testimonail-box-item .client-info-item .info-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gt-white);
}
.testimonail-box-item .client-info-item .info-content span {
  color: #fab249;
  font-size: 14px;
  font-weight: 400;
}
.testimonail-box-item:hover .star {
  color: var(--gt-white);
}
.testimonail-box-item:hover .client-info-item .info-content span {
  color: var(--gt-white);
}
.testimonail-box-item:hover::before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.testimonail-section-2 {
  position: relative;
  z-index: 9;
}
.testimonail-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(1deg, #1D1D1D 0.18%, rgba(14, 18, 29, 0.9) 56.12%, rgba(38, 41, 51, 0.05) 106.04%);
  z-index: -1;
}
.testimonail-section-2 .array-buttons .array-prev {
  position: absolute;
  left: 11%;
  top: 54%;
  background-color: #fab249;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 0;
  text-align: center;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.testimonail-section-2 .array-buttons .array-prev:hover {
  background-color: var(--gt-white);
  color: #fab249;
}
.testimonail-section-2 .array-buttons .array-next {
  position: absolute;
  right: 11%;
  top: 54%;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 0;
  text-align: center;
  background-color: #fab249;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.testimonail-section-2 .array-buttons .array-next:hover {
  background-color: var(--gt-white);
  color: #fab249;
}

.gt-testimonial-wrapper-3 .gt-testimonial-image img {
  width: 100%;
  height: 100%;
}
.gt-testimonial-wrapper-3.style-4 .gt-testimonial-box {
  margin-top: 11px;
}
.gt-testimonial-wrapper-3.style-4 .gt-section-title {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .gt-testimonial-wrapper-3.style-4 .gt-section-title {
    margin-left: 0;
  }
}

.gt-testi-main-box {
  margin-right: -56%;
  margin-left: -110px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-testi-main-box {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
  }
}
.gt-testi-main-box .gt-testimonial-slider-3 .swiper-slide-active .gt-testimonial-box {
  opacity: 1;
}
.gt-testi-main-box .gt-testimonial-slider-3 .swiper-slide-active .gt-testimonial-box::before {
  background-color: #fab249;
  opacity: 1;
}
.gt-testi-main-box .gt-testimonial-slider-3 .swiper-slide-active .gt-testimonial-box .gt-testi-content h5 {
  color: var(--gt-white);
}
.gt-testi-main-box .gt-testimonial-slider-3 .swiper-slide-active .gt-testimonial-box .gt-testi-content .gt-testimonial-info .content h3 {
  color: var(--gt-white);
}
.gt-testi-main-box .gt-testimonial-slider-3 .swiper-slide-active .gt-testimonial-box .gt-testi-content .gt-testimonial-info .content span {
  color: var(--gt-white);
}
.gt-testi-main-box .gt-testimonial-box {
  position: relative;
  z-index: 9;
  opacity: 0.32;
  padding: 40px;
}
@media (max-width: 575px) {
  .gt-testi-main-box .gt-testimonial-box {
    padding: 30px;
  }
}
.gt-testi-main-box .gt-testimonial-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-border);
  z-index: -1;
  opacity: 0.32;
}
.gt-testi-main-box .gt-testimonial-box .gt-testi-content .gt-star {
  color: rgb(252, 213, 84);
  margin-bottom: 10px;
}
.gt-testi-main-box .gt-testimonial-box .gt-testi-content h5 {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 160%;
  color: var(--gt-header);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .gt-testi-main-box .gt-testimonial-box .gt-testi-content h5 {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .gt-testi-main-box .gt-testimonial-box .gt-testi-content h5 {
    font-size: 16px;
  }
}
.gt-testi-main-box .gt-testimonial-box .gt-testi-content .gt-testimonial-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.gt-testimonial-box-4 {
  background-color: #F2F2F2;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 48px 88px;
  text-align: center;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .gt-testimonial-box-4 {
    padding: 30px 40px;
  }
}
@media (max-width: 575px) {
  .gt-testimonial-box-4 {
    padding: 30px 25px;
  }
}
.gt-testimonial-box-4 .gt-star {
  color: #FCD554;
  text-align: center;
  margin-bottom: 15px;
}
.gt-testimonial-box-4 h3 {
  font-weight: 600;
  line-height: 150%;
}
.gt-testimonial-box-4 .gt-testimonial-slider-thumb2 {
  max-width: 360px;
  height: 100px;
}
@media (max-width: 575px) {
  .gt-testimonial-box-4 .gt-testimonial-slider-thumb2 {
    max-width: 100px;
  }
}
.gt-testimonial-box-4 .gt-testimonial-slider-thumb2 img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.gt-testimonial-box-4 .gt-testimonial-slider-thumb2 .swiper-wrapper {
  display: flex;
  gap: 0px;
}
.gt-testimonial-box-4 .gt-testimonial-slider-thumb2 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: auto;
}
.gt-testimonial-box-4 .gt-testimonial-slider-thumb2 .swiper-slide-thumb-active img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  position: relative;
  z-index: 9;
  border: 2px solid #fab249;
}
.gt-testimonial-box-4 .gt-array-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  max-width: 660px;
}
.gt-testimonial-box-4 .gt-array-items .array-prev {
  background-color: #fff;
}
.gt-testimonial-box-4 .gt-array-items .array-prev:hover {
  background-color: #fab249;
}
.gt-testimonial-box-4 .gt-array-items .array-next:hover {
  background-color: var(--gt-header);
  color: #fff;
}
.gt-testimonial-box-4 .client-info {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .gt-testimonial-box-4 .client-info {
    gap: 15px;
  }
}
.gt-testimonial-box-4 .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .gt-testimonial-box-4 .client-info h4 {
    font-size: 16px;
  }
}
.gt-testimonial-box-4 .client-info p {
  color: #595959;
  line-height: 1;
}
@media (max-width: 767px) {
  .gt-testimonial-box-4 .client-info p {
    font-size: 14px;
  }
}
.gt-testimonial-box-4 .gt-array-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 660px;
}

.gt-testimonial-section-4 {
  position: relative;
  z-index: 9;
}
.gt-testimonial-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--gt-white);
  top: 58%;
}
.gt-testimonial-section-4::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 58%;
  background: linear-gradient(90deg, rgba(252, 90, 17, 0.8), rgba(29, 29, 29, 0.8));
}/*# sourceMappingURL=main.css.map */
.logo img {
    width: 85px;
}
.whatsapp_icon {
        display: block;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 555;
}
.whatsapp_icon img {
        width: 55px;
}
.call_icon {
    display: block;
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 555;
    background: white;
    border-radius: 100px;
}
.call_icon img {
        width: 50px;
}