/*
Theme Name: Boostly 
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Boostly - SaaS & Tech Startup HTML Template
Service Html Template 
Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --gt-body: #fff;
  --gt-black: #000;
  --gt-white: #fff;
  --gt-theme: #6B41FF;
  --gt-theme2: #A0EA71;
  --gt-theme3: #124AFF;
  --gt-theme4: #7444FD;
  --gt-theme5: #6A47ED;
  --gt-header: #fff;
  --gt-header2: #0E0E0C;
  --gt-header3: #05111A;
  --gt-text: #9BA0A3;
  --gt-text2: #686866;
  --gt-border: #FCFCFC;
  --gt-bg: #05111A;
  --gt-bg2: #F8F8F8;
  --gt-bg3: #F7F3EE;
  --gt-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.gt-theme-btn {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 800;
  padding: 20px 22px;
  line-height: 1;
  border-radius: 10px;
  border: 2px solid #FEBC5F;
  background: #05111A;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 575px) {
  .gt-theme-btn {
    font-size: 13px;
    padding: 16px;
  }
}
.gt-theme-btn::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 100%;
  content: "";
  border-radius: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.gt-theme-btn:hover {
  border: 2px solid transparent;
}
.gt-theme-btn:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.gt-theme-btn.style-2 {
  border-radius: 100px;
  background: #173401;
  font-size: 16px;
  font-weight: 700;
  color: var(--gt-theme2);
  padding: 20px 42px;
  border: none;
}
.gt-theme-btn.style-2::before {
  background: var(--gt-theme2);
}
.gt-theme-btn.style-2:hover {
  color: var(--gt-header2);
}
.gt-theme-btn.style-3 {
  border-radius: 6px;
  background: var(--gt-theme3);
  font-size: 16px;
  font-weight: 700;
  color: var(--gt-white);
  padding: 20px 42px;
  text-transform: capitalize;
  border: none;
}
.gt-theme-btn.style-3::before {
  background: var(--gt-white);
}
.gt-theme-btn.style-3:hover {
  color: var(--gt-header2);
}
.gt-theme-btn.style-4 {
  border-radius: 6px;
  background: var(--gt-theme4);
  font-size: 16px;
  font-weight: 700;
  color: var(--gt-white);
  padding: 18px 34px;
  text-transform: capitalize;
  border: none;
}
.gt-theme-btn.style-4::before {
  background: var(--gt-white);
}
.gt-theme-btn.style-4:hover {
  color: var(--gt-header3);
}
.gt-theme-btn.style-5 {
  border-radius: 6px;
  background: var(--gt-theme5);
  font-size: 16px;
  font-weight: 700;
  color: var(--gt-white);
  padding: 18px 34px;
  text-transform: capitalize;
  border: none;
}
.gt-theme-btn.style-5::before {
  background: var(--gt-header3);
}
.gt-theme-btn.style-5:hover {
  color: var(--gt-white);
}

.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;
}
.link-btn:hover {
  color: var(--gt-theme);
}

@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: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  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: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  margin: 0px;
  padding: 0;
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 117%;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 56px;
  }
}
@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: 45px;
  font-weight: 400;
  line-height: 134%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

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

h4 {
  font-size: 18px;
  font-weight: 400;
}

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

@font-face {
  font-family: "TestTiemposFine-Black-BF66457a508fe8f";
  src: url("../fonts/TestTiemposFine-Black-BF66457a508fe8f.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-BlackItalic-BF66457a510424a";
  src: url("../fonts/TestTiemposFine-BlackItalic-BF66457a510424a.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-Bold-BF66457a510211b";
  src: url("../fonts/TestTiemposFine-Bold-BF66457a510211b.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-BoldItalic-BF66457a50b8568";
  src: url("../fonts/TestTiemposFine-BoldItalic-BF66457a50b8568.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-Light-BF66457a5102792";
  src: url("../fonts/TestTiemposFine-Light-BF66457a5102792.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-LightItalic-BF66457a50eb132";
  src: url("../fonts/TestTiemposFine-LightItalic-BF66457a50eb132.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-Medium-BF66457a50e62cd";
  src: url("../fonts/TestTiemposFine-Medium-BF66457a50e62cd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-MediumItalic-BF66457a511be83";
  src: url("../fonts/TestTiemposFine-MediumItalic-BF66457a511be83.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9";
  src: url("../fonts/TestTiemposFine-Regular-BF66457a50e8bc9.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-RegularItalic-BF66457a50e36f9";
  src: url("../fonts/TestTiemposFine-RegularItalic-BF66457a50e36f9.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-Semibold-BF66457a50f016a";
  src: url("../fonts/TestTiemposFine-Semibold-BF66457a50f016a.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TestTiemposFine-SemiboldItalic-BF66457a50b0e18";
  src: url("../fonts/TestTiemposFine-SemiboldItalic-BF66457a50b0e18.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.gt-about-wrapper {
  padding: 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-about-wrapper {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .gt-about-wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .gt-about-wrapper {
    padding: 30px 20px;
  }
}
.gt-about-wrapper .shape-1 {
  position: absolute;
  top: 0;
  left: 33%;
  z-index: -1;
}
.gt-about-wrapper .bg-shape {
  position: absolute;
  bottom: 0;
  left: -30px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .bg-shape {
    display: none;
  }
}
.gt-about-wrapper .gt-about-image {
  position: absolute;
  left: 60px;
  bottom: 0px;
  max-width: 640px;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-image {
    position: static;
  }
}
.gt-about-wrapper .gt-about-image img {
  width: 100%;
  height: 100%;
}
.gt-about-wrapper .about-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.gt-about-wrapper .about-bg img {
  width: 100%;
  height: 100%;
}
.gt-about-wrapper .gt-about-content {
  margin-left: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-about-wrapper .gt-about-content {
    margin-left: 0;
  }
}
.gt-about-wrapper .gt-about-content .gt-about-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--gt-header2);
  max-width: 575px;
  margin-top: 5px;
  border-bottom: 1px solid #0E0E0C;
  padding-bottom: 30px;
}
.gt-about-wrapper .gt-about-content .gt-about-list {
  margin-top: 30px;
  margin-bottom: 40px;
}
.gt-about-wrapper .gt-about-content .gt-about-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--gt-header2);
}
.gt-about-wrapper .gt-about-content .gt-about-list li i {
  margin-right: 8px;
}
.gt-about-wrapper .gt-about-content .gt-about-list li:not(:last-child) {
  margin-bottom: 10px;
}
.gt-about-wrapper .gt-about-content .gt-theme-btn::before {
  background-color: var(--gt-white);
}

.gt-about-wrapper-3 {
  border-top: 1px solid rgba(104, 104, 102, 0.2);
}
.gt-about-wrapper-3 .gt-about-content {
  max-width: 650px;
}
.gt-about-wrapper-3 .gt-about-content .gt-text {
  color: var(--gt-text2);
  margin-top: 25px;
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items {
  margin-top: 35px;
  position: relative;
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items::before {
  position: absolute;
  top: 0;
  left: 3px;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(104, 104, 102, 0.2);
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items li {
  display: flex;
  gap: 14px;
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items li:not(:last-child) {
  margin-bottom: 35px;
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items li .gt-circle-box {
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background-color: var(--gt-white);
  display: inline-block;
  position: relative;
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items li .gt-circle-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--gt-theme3);
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items li .gt-content h4 {
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.gt-about-wrapper-3 .gt-about-content .gt-list-items li .gt-content span {
  color: #686866;
}
.gt-about-wrapper-3 .gt-about-image {
  text-align: right;
  position: relative;
  z-index: 9;
}
.gt-about-wrapper-3 .gt-about-image img {
  width: 100%;
  height: 100%;
}

.gt-app-benefit-wrapper-4 .gt-app-image {
  position: relative;
  z-index: 9;
}
.gt-app-benefit-wrapper-4 .gt-app-image img {
  width: 100%;
  height: 100%;
}
.gt-app-benefit-wrapper-4 .gt-app-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .gt-app-benefit-wrapper-4 .gt-app-content {
    margin-left: 0;
  }
}
.gt-app-benefit-wrapper-4 .gt-app-content .gt-app-text {
  margin-top: 25px;
  color: var(--gt-header3);
  max-width: 690px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 30px;
}
.gt-app-benefit-wrapper-4 .gt-app-content ul {
  margin-top: 30px;
}
.gt-app-benefit-wrapper-4 .gt-app-content ul li {
  background-color: var(--gt-white);
}
.gt-app-benefit-wrapper-4 .gt-app-content ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.gt-app-benefit-wrapper-4 .gt-app-content ul li .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #E77096;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}
.gt-app-benefit-wrapper-4 .gt-app-content ul li .content h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--gt-header3);
  margin-bottom: 15px;
}
.gt-app-benefit-wrapper-4 .gt-app-content ul li .content p {
  color: var(--gt-header3);
}
.gt-app-benefit-wrapper-4 .gt-app-content ul li:hover .icon {
  background-color: var(--gt-theme4);
}

.about-section-5 {
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1899px) {
  .about-section-5 {
    background-color: #F6F3FE;
  }
}
.about-section-5 .brand-wrapper-5 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 9;
  max-width: 1200px;
}
@media (max-width: 1899px) {
  .about-section-5 .brand-wrapper-5 {
    max-width: initial;
    position: static;
    transform: initial;
    margin-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .about-section-5 .brand-wrapper-5 {
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .about-section-5 .brand-wrapper-5 {
    margin-bottom: 80px;
  }
}
.about-section-5 .brand-wrapper-5 .brand-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: var(--gt-header3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}
.about-section-5 .brand-wrapper-5 .brand-title::before {
  position: absolute;
  top: 15px;
  left: 5%;
  content: "";
  height: 1px;
  width: 413px;
  background-color: #E5E5E5;
}
@media (max-width: 1399px) {
  .about-section-5 .brand-wrapper-5 .brand-title::before {
    display: none;
  }
}
.about-section-5 .brand-wrapper-5 .brand-title::after {
  position: absolute;
  top: 15px;
  right: 5%;
  content: "";
  height: 1px;
  width: 413px;
  background-color: #E5E5E5;
}
@media (max-width: 1399px) {
  .about-section-5 .brand-wrapper-5 .brand-title::after {
    display: none;
  }
}
.about-section-5 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .about-section-5 .left-shape {
    display: none;
  }
}

.about-wrapper-5 {
  margin-top: 155px;
}
@media (max-width: 1899px) {
  .about-wrapper-5 {
    margin-top: 0;
  }
}
.about-wrapper-5 .about-image {
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-image {
    max-width: 400px;
  }
  .about-wrapper-5 .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-wrapper-5 .about-image .bg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-image .bg-shape img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper-5 .about-image .grap-shape {
  position: absolute;
  bottom: 40px;
  left: 35px;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-image .grap-shape {
    display: none;
  }
}
.about-wrapper-5 .about-image .box-shape {
  position: absolute;
  right: 25px;
  top: 32%;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-image .box-shape {
    display: none;
  }
}
.about-wrapper-5 .about-image .emoji-shape {
  position: absolute;
  top: 20%;
  left: 164px;
  animation: bounce-x 7s infinite linear;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-image .emoji-shape {
    display: none;
  }
}
.about-wrapper-5 .about-content {
  margin-left: 10px;
}
.about-wrapper-5 .about-content p {
  color: var(--gt-text2);
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-content .circle-progress-bar-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-5 .about-content .circle-progress-bar-wrapper {
    margin-top: 40px;
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-5 .about-content .circle-progress-bar-wrapper {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-content .circle-progress-bar-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .content h6 {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
  color: var(--gt-header3);
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 575px) {
  .about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 120px;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 20px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background-color: #DFE2FF;
  color: var(--gt-header3);
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: #DFE2FF !important;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--gt-theme) !important;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: #DFE2FF !important;
}
.about-wrapper-5 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--gt-theme) !important;
}

@-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));
}

.contact-wrapper-5 {
  background-color: var(--gt-white);
  padding: 60px;
  border-radius: 30px;
  position: relative;
  z-index: 9;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .contact-wrapper-5 {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper-5 {
    padding: 40px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-5 {
    padding: 30px;
  }
}
.contact-wrapper-5 .contact-form-area {
  border-radius: 16px;
  border: 1px solid var(--gt-border);
  padding: 40px;
}
@media (max-width: 575px) {
  .contact-wrapper-5 .contact-form-area {
    padding: 30px;
  }
}
.contact-wrapper-5 .contact-form-area h3 {
  font-size: 30px;
  margin-bottom: 25px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--gt-header3);
}
.contact-wrapper-5 .contact-form-area .form-clt input, .contact-wrapper-5 .contact-form-area .form-clt textarea {
  outline: none;
  border: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  padding: 20px 20px;
  line-height: 1;
  color: var(--gt-text2);
}
.contact-wrapper-5 .contact-form-area .form-clt textarea {
  padding-bottom: 110px;
}
.contact-wrapper-5 .contact-form-area .form-clt .single-select {
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  color: var(--gt-text2);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.contact-wrapper-5 .contact-form-area .form-clt .single-select .list {
  width: 100%;
}
.contact-wrapper-5 .contact-form-area .theme-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--gt-theme5);
  color: var(--gt-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 19.5px 35px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .contact-wrapper-5 .contact-form-area .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}
.contact-wrapper-5 .contact-form-area .theme-btn:hover {
  background-color: var(--gt-header3);
}
.contact-wrapper-5 .contact-map {
  position: relative;
}
.contact-wrapper-5 .contact-map iframe {
  width: 100%;
  height: 630px;
  border-radius: 20px;
}
.contact-wrapper-5 .contact-info-wrapper {
  position: absolute;
  top: 0;
  left: 90px;
  right: 90px;
  max-width: 430px;
  margin: 0 auto;
  padding: 30px;
  background: var(--gt-theme5);
  border-radius: 0px 0px 8px 8px;
}
@media (max-width: 767px) {
  .contact-wrapper-5 .contact-info-wrapper {
    left: 20px;
    right: 20px;
  }
}
.contact-wrapper-5 .contact-info-wrapper .shape-left {
  position: absolute;
  top: 0;
  left: -28px;
}
.contact-wrapper-5 .contact-info-wrapper .shape-right {
  position: absolute;
  top: 0;
  right: -28px;
}
.contact-wrapper-5 .contact-info-wrapper h2 {
  color: var(--gt-white);
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-wrapper-5 .contact-info-wrapper .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .contact-wrapper-5 .contact-info-wrapper .contact-info {
    flex-wrap: wrap;
  }
}
.contact-wrapper-5 .contact-info-wrapper .contact-info .content h3 {
  color: var(--gt-white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.contact-wrapper-5 .contact-info-wrapper .contact-info .content h3 a {
  color: var(--gt-white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.contact-wrapper-5 .contact-info-wrapper .contact-info .icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--gt-white);
}

.contact-section-5 {
  position: relative;
}
.contact-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--gt-theme);
  right: 50px;
  left: 50px;
  border-radius: 30px;
  width: calc(100% - 95px);
}
@media (max-width: 1899px) {
  .contact-section-5::before {
    width: calc(100% - 0px);
    left: 0;
  }
}
.contact-section-5::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F6F3FE;
  top: 50%;
  z-index: -1;
}

.contact-info-items {
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  border-radius: 10px;
  border: 1px solid rgba(155, 160, 163, 0.2);
  background: #EDF1FF;
}
.contact-info-items .icon {
  font-size: 40px;
  color: var(--gt-theme);
}
.contact-info-items .content {
  margin-top: 20px;
}
.contact-info-items .content h3 {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
.contact-info-items .content h3 a {
  color: var(--gt-header3);
}
.contact-info-items .content p {
  font-size: 18px;
  margin-top: 10px;
}

.contact-wrapper-2 .map-items .googpemap iframe {
  width: 100%;
  border-radius: 16px;
  height: 660px;
}
@media (max-width: 767px) {
  .contact-wrapper-2 .map-items .googpemap iframe {
    height: 550px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-2 .map-items .googpemap iframe {
    height: 450px;
  }
}
.contact-wrapper-2 .contact-content {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-2 .contact-content h2 {
  margin-bottom: 10px;
  color: var(--gt-header3);
}
.contact-wrapper-2 .contact-content .contact-form-items {
  margin-top: 30px;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
  color: var(--gt-header3);
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 15px;
  display: inline-block;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  border-radius: 10px;
  border: 1px solid rgba(155, 160, 163, 0.2);
  color: var(--gt-text);
  padding: 15px 20px;
  width: 100%;
  outline: none;
  background-color: transparent;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--gt-text);
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}
.contact-wrapper-2 .contact-content .contact-form-items .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  color: var(--gt-white);
}
.contact-wrapper-2 .contact-content .contact-form-items .gt-theme-btn::after {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}

.gt-account-box {
  max-width: 400px;
  background: #EDF1FF;
  box-shadow: 0 4px 150px 0 rgba(107, 65, 255, 0.5);
  padding: 30px 30px 50px;
  margin: 0 auto;
  border-radius: 12px;
}
@media (max-width: 470px) {
  .gt-account-box {
    padding: 25px 15px;
  }
}
.gt-account-box .google-box .google-text {
  padding: 15px 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  justify-content: center;
  color: var(--gt-header3);
}
@media (max-width: 575px) {
  .gt-account-box .google-box .google-text {
    padding: 15px 20px;
  }
}
.gt-account-box .google-box .text {
  text-align: center;
  color: var(--gt-header3);
  font-weight: 500;
  font-size: 14px;
  padding: 20px 0;
  position: relative;
  display: block;
  z-index: 9;
}
.gt-account-box .google-box .text::before {
  position: absolute;
  top: 34px;
  left: 0;
  width: 42%;
  content: "";
  height: 1px;
  z-index: -1;
  background: rgba(155, 160, 163, 0.2);
}
@media (max-width: 1199px) {
  .gt-account-box .google-box .text::before {
    display: none;
  }
}
.gt-account-box .google-box .text::after {
  position: absolute;
  top: 34px;
  right: 0;
  width: 42%;
  content: "";
  height: 1px;
  z-index: -1;
  background: rgba(155, 160, 163, 0.2);
}
@media (max-width: 1199px) {
  .gt-account-box .google-box .text::after {
    display: none;
  }
}

.gt-account-box h4 {
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.gt-account-box form .form-clt {
  margin-top: 20px;
  position: relative;
}
.gt-account-box form .form-clt input, .gt-account-box form .form-clt textarea {
  width: 100%;
  background: var(--gt-white);
  border: none;
  text-transform: capitalize;
  padding: 18px 20px;
  line-height: 1;
  color: #7E8B96;
  border-radius: 10px;
  border: 1px solid rgba(155, 160, 163, 0.2);
}
.gt-account-box form .form-clt input::placeholder, .gt-account-box form .form-clt textarea::placeholder {
  color: #7E8B96;
}
.gt-account-box form .form-clt .toggle-password {
  position: absolute;
  right: 20px;
  top: 22px;
}
.gt-account-box form .gt-theme-btn {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  color: var(--gt-white);
}
.gt-account-box form .gt-theme-btn::after {
  display: none;
}
.gt-account-box .login-text {
  text-align: center;
  font-size: 16px;
  color: var(--gt-text);
  margin-top: 30px;
  line-height: 1;
}
.gt-account-box .login-text a {
  color: var(--gt-theme);
}

.cta-box-items {
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 4px 150px 0 rgba(107, 65, 255, 0.5);
}
@media (max-width: 1199px) {
  .cta-box-items {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .cta-box-items {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .cta-box-items {
    padding: 30px 25px;
  }
}
.cta-box-items .cta-content {
  max-width: 840px;
  margin: 0 auto;
}
.cta-box-items .cta-content h2 {
  font-style: italic;
}
.cta-box-items .cta-content p {
  color: var(--gt-white);
}
.cta-box-items .cta-content .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cta-box-items .cta-content .gt-theme-btn {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cta-box-items .cta-content .gt-theme-btn {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .cta-box-items .cta-content .gt-theme-btn {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .cta-box-items .cta-content .gt-theme-btn {
    margin-top: 25px;
  }
}
.cta-box-items .cta-content .gt-theme-btn::after {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.cta-box-items .cta-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .cta-box-items .cta-content ul {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.cta-box-items .cta-content ul li {
  font-size: 14px;
  font-weight: 500;
  color: #9BA0A3;
  text-transform: capitalize;
  position: relative;
  padding-left: 20px;
}
.cta-box-items .cta-content ul li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--gt-theme);
}

.cta-box-items-2 {
  padding: 60px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .cta-box-items-2 {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cta-box-items-2 {
    padding: 30px;
  }
}
.cta-box-items-2 .vector-shape {
  position: absolute;
  bottom: 45px;
  left: 61%;
  transform: translateX(-50%);
  z-index: -1;
}
.cta-box-items-2 .cta-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.cta-box-items-2 .cta-content .gt-theme-btn {
  color: var(--gt-theme2);
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cta-box-items-2 .cta-content .gt-theme-btn {
    margin-top: 30px;
  }
}
.cta-box-items-2 .cta-content .gt-theme-btn::after {
  display: none;
}
.cta-box-items-2 .cta-content .gt-theme-btn::before {
  background-color: var(--gt-header2);
}

.gt-cta-wrapper-3 {
  text-align: center;
  padding: 60px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .gt-cta-wrapper-3 {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .gt-cta-wrapper-3 {
    padding: 30px;
  }
}
.gt-cta-wrapper-3 p {
  color: #05111A;
  font-weight: 600;
  margin-top: 20px;
}
.gt-cta-wrapper-3 .gt-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .gt-cta-wrapper-3 .gt-cta-btn {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.gt-cta-wrapper-3 .gt-cta-btn .gt-theme-btn.bg-header {
  background-color: var(--gt-header3);
}
.gt-cta-wrapper-3 ul {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-cta-wrapper-3 ul {
    flex-wrap: wrap;
  }
}
.gt-cta-wrapper-3 ul li {
  color: #05111A;
  font-weight: 500;
}
.gt-cta-wrapper-3 ul li i {
  margin-right: 8px;
}

.gt-technology-box-items {
  padding: 50px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-technology-box-items {
    padding: 30px;
  }
}
.gt-technology-box-items .technology-image {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .gt-technology-box-items .technology-image {
    display: none;
  }
}
.gt-technology-box-items .content h6 {
  color: var(--gt-theme2) !important;
}
.gt-technology-box-items .content h2 {
  color: var(--gt-white);
}
.gt-technology-box-items .content p {
  max-width: 410px;
  color: #ECEDEA;
  margin-top: 20px;
}
.gt-technology-box-items .content .gt-theme-btn {
  background-color: var(--gt-theme2);
  color: #173401;
  margin-top: 50px;
}

.gt-cta-section-3.before-none::before {
  display: none;
}

.tags-container > canvas {
  position: relative;
}

.tags-container {
  width: 100%;
  height: 483px;
  margin-top: 0vw;
  overflow: hidden;
  background: #0E0E0C;
  transform: scale(1.001);
  border-radius: 20px;
  position: relative;
}
.tags-container::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../assets/img/home-2/technology-bg.jpg");
}

.cta-wrapper-5 {
  border-radius: 30px;
  padding: 65px 65px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -37px;
}
@media (max-width: 1199px) {
  .cta-wrapper-5 {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-5 {
    margin-top: -80px;
    justify-content: center;
    text-align: center;
  }
}
.cta-wrapper-5 h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gt-white);
  margin-left: 450px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 1399px) {
  .cta-wrapper-5 h2 {
    margin-left: 300px;
    position: relative;
    z-index: 9;
  }
}
@media (max-width: 1199px) {
  .cta-wrapper-5 h2 {
    margin-left: 0;
  }
}
.cta-wrapper-5 .cta-img {
  position: absolute;
  bottom: 0;
  left: 85px;
}
@media (max-width: 1199px) {
  .cta-wrapper-5 .cta-img {
    display: none;
  }
}
.cta-wrapper-5 .gt-theme-btn {
  background-color: var(--gt-white);
  color: var(--gt-header3);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cta-wrapper-5 .gt-theme-btn:hover {
  color: var(--gt-white);
  background-color: var(--gt-header);
}

.cta-section-5 {
  position: relative;
  background-color: #F6F3FE;
}
.cta-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #18185E;
  top: 60%;
  height: initial;
}
.cta-section-5 .rokect-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}
@media (max-width: 1199px) {
  .cta-section-5 .rokect-shape {
    display: none;
  }
}

.gt-cta-inner-bg {
  background-color: #05111A;
  position: relative;
}
.gt-cta-inner-bg .vec-shape {
  position: absolute;
  top: 0;
  right: 0;
}
.gt-cta-inner-bg .cta-box-items {
  border-radius: 20px;
  background: #000;
  box-shadow: 0 4px 150px 0 rgba(107, 65, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.gt-cta-inner-bg .cta-box-items::before {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  content: "";
  width: 496px;
  height: 574px;
  background: rgba(160, 234, 113, 0.35);
  filter: blur(135px);
}

.gt-pricing-box-items {
  margin-top: 30px;
  border-radius: 20px;
  background: #05111A;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .gt-pricing-box-items {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .gt-pricing-box-items {
    padding: 25px;
  }
}
.gt-pricing-box-items::before {
  position: absolute;
  top: -20%;
  left: -20%;
  content: "";
  width: 237px;
  height: 240px;
  background: linear-gradient(180deg, #6B41FF 0%, #EA4BFF 48.56%, #FEBC5F 100%);
  filter: blur(62px);
}
.gt-pricing-box-items .gradient-bg {
  width: 240px;
  height: 240px;
  position: absolute;
  top: -90px;
  left: -50px;
  display: inline-block;
  background: linear-gradient(180deg, #6B41FF 0%, #EA4BFF 48.56%, #FEBC5F 100%);
  filter: blur(62px);
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.gt-pricing-box-items .gt-pricing-header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 35px;
  position: relative;
  z-index: 9;
}
.gt-pricing-box-items .gt-pricing-header .sub-texts {
  top: 40px;
  right: 0;
  position: absolute;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gt-white);
}
.gt-pricing-box-items .gt-pricing-header h2 {
  font-size: 96px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
}
@media (max-width: 575px) {
  .gt-pricing-box-items .gt-pricing-header h2 {
    font-size: 60px;
  }
}
.gt-pricing-box-items .gt-pricing-header h2 sup {
  font-size: 30px;
  font-weight: 600;
  top: -1.5em;
  margin-right: -10px;
}
@media (max-width: 767px) {
  .gt-pricing-box-items .gt-pricing-header h2 sup {
    top: -10px;
  }
}
.gt-pricing-box-items .gt-pricing-header h2 sub {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-left: -10px;
}
.gt-pricing-box-items .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  padding: 24px 22px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .gt-pricing-box-items .gt-theme-btn {
    padding: 20px;
  }
}
.gt-pricing-box-items .gt-theme-btn::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background: #05111A;
  z-index: -1;
  border-radius: 10px;
}
.gt-pricing-box-items .gt-theme-btn:hover {
  background: transparent;
}
.gt-pricing-box-items .gt-theme-btn:hover::after {
  display: none;
}
.gt-pricing-box-items .gt-pricing-list {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.gt-pricing-box-items .gt-pricing-list li {
  font-weight: 600;
  text-transform: capitalize;
}
.gt-pricing-box-items .gt-pricing-list li i {
  color: var(--gt-theme);
  margin-right: 8px;
}
.gt-pricing-box-items .gt-pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.gt-pricing-box-items::after {
  transition: all 0.4s ease-in-out;
}
.gt-pricing-box-items:hover {
  position: relative;
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-pricing-box-items:hover .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-pricing-box-items:hover .gt-theme-btn::after {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-pricing-box-items:hover::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background: #05111A;
  z-index: 1;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.gt-pricing-box-items:hover .gradient-bg {
  opacity: 1;
}
.gt-pricing-box-items.pricing-style-3 {
  border-radius: 20px;
  background: #F4F4F4 !important;
}
.gt-pricing-box-items.pricing-style-3::after {
  display: none;
}
.gt-pricing-box-items.pricing-style-3 .gt-pricing-header {
  border-bottom: 1px solid rgba(5, 17, 26, 0.2);
}
.gt-pricing-box-items.pricing-style-3 .gt-pricing-header .sub-texts {
  color: var(--gt-header3);
  text-transform: capitalize;
}
.gt-pricing-box-items.pricing-style-3 .gt-pricing-header h2 {
  color: var(--gt-header3);
}
.gt-pricing-box-items.pricing-style-3 .gt-pricing-header h2 sub {
  color: #686866;
}
.gt-pricing-box-items.pricing-style-3 .gradient-bg {
  background: linear-gradient(180deg, #124AFF 0%, #124AFF 48.56%, #124AFF 100%);
  filter: blur(62px);
}
.gt-pricing-box-items.pricing-style-3::before {
  background: linear-gradient(180deg, #124AFF 0%, #124AFF 48.56%, #124AFF 100%);
  filter: blur(62px);
  opacity: 0.7;
  transition: all 0.4s ease-in-out;
}
.gt-pricing-box-items.pricing-style-3 .gt-theme-btn {
  background: var(--gt-header3);
}
@media (max-width: 767px) {
  .gt-pricing-box-items.pricing-style-3 .gt-theme-btn {
    padding: 20px;
  }
}
.gt-pricing-box-items.pricing-style-3 .gt-theme-btn::after {
  display: none;
}
.gt-pricing-box-items.pricing-style-3 .gt-theme-btn::before {
  background: var(--gt-theme3);
}
.gt-pricing-box-items.pricing-style-3 .gt-pricing-list li {
  color: var(--gt-text2);
  font-weight: 400;
  font-size: 16px;
}
.gt-pricing-box-items.pricing-style-3 .gt-pricing-list li i {
  color: var(--gt-text2);
  transition: all 0.4s ease-in-out;
}
.gt-pricing-box-items.pricing-style-3:hover {
  background: #F4F4F4;
}
.gt-pricing-box-items.pricing-style-3:hover::before {
  opacity: 1;
}
.gt-pricing-box-items.pricing-style-3:hover .gt-pricing-list li i {
  color: var(--gt-header3);
}
.gt-pricing-box-items.pricing-style-3.actives {
  background: #F4F4F4;
}
.gt-pricing-box-items.pricing-style-3.actives::before {
  opacity: 1;
}
.gt-pricing-box-items.pricing-style-3.actives .gt-theme-btn {
  background-color: var(--gt-theme3);
}
.gt-pricing-box-items.pricing-style-3.actives .gt-theme-btn::before {
  background-color: var(--gt-header);
}
.gt-pricing-box-items.pricing-style-3.actives .gt-theme-btn:hover {
  color: var(--gt-header3);
}
.gt-pricing-box-items.pricing-style-3.actives .gt-pricing-list li i {
  color: var(--gt-header3);
}
.gt-pricing-box-items.style-2 {
  background-color: var(--gt-white);
}
.gt-pricing-box-items.style-2 .gt-pricing-header .sub-texts {
  color: var(--gt-header3);
}
.gt-pricing-box-items.style-2 .gt-pricing-header h2 {
  color: var(--gt-header3);
}
.gt-pricing-box-items.style-2 .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  padding: 24px 22px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .gt-pricing-box-items.style-2 .gt-theme-btn {
    padding: 20px;
  }
}
.gt-pricing-box-items.style-2 .gt-theme-btn::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background: #05111A;
  z-index: -1;
  border-radius: 10px;
}
.gt-pricing-box-items.style-2 .gt-theme-btn:hover {
  background: transparent;
}
.gt-pricing-box-items.style-2 .gt-theme-btn:hover::after {
  display: none;
}
.gt-pricing-box-items.style-2 .gt-pricing-list li {
  color: var(--gt-header3);
}
.gt-pricing-box-items.style-2 .gt-pricing-list li i {
  color: #6B41FF;
  margin-right: 8px;
}
.gt-pricing-box-items.style-2 .gt-pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.gt-pricing-box-items.style-2.active-2 {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-pricing-box-items.style-2.active-2 .gt-pricing-header .sub-texts {
  color: var(--gt-header);
}
.gt-pricing-box-items.style-2.active-2 .gt-pricing-header h2 {
  color: var(--gt-header);
}
.gt-pricing-box-items.style-2.active-2 .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  padding: 24px 22px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .gt-pricing-box-items.style-2.active-2 .gt-theme-btn {
    padding: 20px;
  }
}
.gt-pricing-box-items.style-2.active-2 .gt-theme-btn::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background: #05111A;
  z-index: -1;
  border-radius: 10px;
}
.gt-pricing-box-items.style-2.active-2 .gt-theme-btn:hover {
  background: transparent;
}
.gt-pricing-box-items.style-2.active-2 .gt-theme-btn:hover::after {
  display: none;
}
.gt-pricing-box-items.style-2.active-2 .gt-pricing-list li {
  color: var(--gt-header);
}
.gt-pricing-box-items.style-2.active-2 .gt-pricing-list li i {
  color: var(--gt-header);
  margin-right: 8px;
}
.gt-pricing-box-items.style-2.active-2 .gt-pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}

.gt-pricing-section {
  position: relative;
  z-index: 9;
}
.gt-pricing-section .pricing-right-shape {
  position: absolute;
  top: -5%;
  right: 0;
  z-index: -1;
}
.gt-pricing-section .pricing__tab-content {
  position: relative;
}
.gt-pricing-section .pricing__tab-content .shape1 {
  position: absolute;
  top: -88px;
  right: 33%;
}
@media (max-width: 1399px) {
  .gt-pricing-section .pricing__tab-content .shape1 {
    display: none;
  }
}
.gt-pricing-section .nav {
  border: none;
  border-radius: 24.5px;
  border: 1px solid rgba(155, 160, 163, 0.5);
  padding: 4px 24px;
  margin-top: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.gt-pricing-section .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
}
.gt-pricing-section .nav .nav-link {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--gt-text);
  margin-bottom: 0;
}
.gt-pricing-section .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: #9BA0A3;
  width: 45px;
  height: 25px;
  border-radius: 20px;
}
.gt-pricing-section .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #000;
  z-index: 1;
}
.gt-pricing-section .nav .nav-link:first-child {
  padding-left: 0;
}
.gt-pricing-section .nav .nav-link:last-child {
  padding-right: 0;
}
.gt-pricing-section .nav .nav-link:last-child::after {
  display: none;
}
.gt-pricing-section .nav .nav-link:last-child::before {
  display: none;
}
.gt-pricing-section .nav .nav-link.active {
  background: linear-gradient(90deg, #EA4BFF 0%, #FEBC5F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gt-pricing-section .nav .nav-link.active::after {
  right: 0;
}

.gt-pricing-section-3 {
  position: relative;
  z-index: 9;
}
.gt-pricing-section-3 .pricing__tab-content {
  position: relative;
}
.gt-pricing-section-3 .pricing__tab-content .shape1 {
  position: absolute;
  top: -88px;
  right: 33%;
}
@media (max-width: 1399px) {
  .gt-pricing-section-3 .pricing__tab-content .shape1 {
    display: none;
  }
}
.gt-pricing-section-3 .nav {
  border: none;
  border-radius: 24.5px;
  border: 1px solid rgba(155, 160, 163, 0.5);
  padding: 4px 24px;
  margin-top: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.gt-pricing-section-3 .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
}
.gt-pricing-section-3 .nav .nav-link {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--gt-text);
  margin-bottom: 0;
}
.gt-pricing-section-3 .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--gt-theme3);
  width: 45px;
  height: 25px;
  border-radius: 20px;
}
.gt-pricing-section-3 .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.gt-pricing-section-3 .nav .nav-link:first-child {
  padding-left: 0;
}
.gt-pricing-section-3 .nav .nav-link:last-child {
  padding-right: 0;
}
.gt-pricing-section-3 .nav .nav-link:last-child::after {
  display: none;
}
.gt-pricing-section-3 .nav .nav-link:last-child::before {
  display: none;
}
.gt-pricing-section-3 .nav .nav-link.active {
  color: var(--gt-theme3);
  font-weight: 400;
}
.gt-pricing-section-3 .nav .nav-link.active::after {
  right: 0;
}

.gt-pricing-wrapper-2 .gt-pricing-content {
  position: relative;
  z-index: 9;
}
.gt-pricing-wrapper-2 .gt-pricing-content .vector-2 {
  position: absolute;
  top: 82%;
  left: 42%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-pricing-wrapper-2 .gt-pricing-content .vector-2 {
    display: none;
  }
}
.gt-pricing-wrapper-2 .gt-pricing-content .pricing-text {
  margin-top: 25px;
  color: var(--gt-text2);
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav {
  border: none;
  border-radius: 24.5px;
  border: 1px solid rgba(155, 160, 163, 0.5);
  padding: 4px 24px;
  margin-top: 40px;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--gt-text);
  margin-bottom: 0;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: #173401;
  width: 45px;
  height: 25px;
  border-radius: 20px;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:first-child {
  padding-left: 0;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:last-child {
  padding-right: 0;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:last-child::after {
  display: none;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:last-child::before {
  display: none;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link.active {
  color: var(--gt-theme2);
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link.active::after {
  right: 0;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items {
  display: flex;
  align-items: center;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items {
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  background: #173401;
  box-shadow: 0px 4px 100px 0px rgba(160, 234, 113, 0.5);
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items::before {
  background: linear-gradient(180deg, #A0EA71 0%, #A0EA71 48.56%, #A0EA71 100%);
  filter: blur(62px);
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items .gt-theme-btn {
  background: var(--gt-theme2);
  color: var(--gt-header2);
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items .gt-theme-btn::after {
  display: none;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items .gt-theme-btn::before {
  background-color: var(--gt-white);
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items ul li {
  color: #ECEDEA;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items ul li i {
  color: var(--gt-white);
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 {
  margin-left: -32%;
  z-index: -1;
  border-radius: 20px;
  background: #ECEDEA;
}
@media (max-width: 767px) {
  .gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 {
    margin-left: -70%;
  }
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 .gt-pricing-header .sub-texts {
  color: #173401;
  opacity: 0.2;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 .gt-theme-btn {
  background: var(--gt-theme2);
  color: var(--gt-header2);
  background: transparent;
  border-radius: 100px;
  border: 1px solid #173401;
  opacity: 0.2;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 .gt-theme-btn::after {
  display: none;
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 .gt-theme-btn::before {
  background-color: var(--gt-white);
}
.gt-pricing-wrapper-2 .gt-pricing-right-items .gt-pricing-box-items.style-2 ul li {
  color: #173401;
  opacity: 0.2;
}

.case-study-wrapper .case-study-box-items {
  margin-top: 30px;
}
.case-study-wrapper .case-study-box-items .thumb {
  position: relative;
}
.case-study-wrapper .case-study-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
@media (max-width: 575px) {
  .case-study-wrapper .case-study-box-items .thumb {
    height: 450px;
  }
  .case-study-wrapper .case-study-box-items .thumb img {
    object-fit: cover;
  }
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items {
  position: absolute;
  top: 30px;
  left: 30px;
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items ul {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a {
  border-radius: 33px;
  border: 0.5px solid var(--gt-white);
  background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(25px);
  font-size: 14px;
  font-weight: 500;
  color: var(--gt-white);
  padding: 11px 15px;
  line-height: 1;
  display: inline-block;
}
.case-study-wrapper .case-study-box-items .thumb .post-box-items ul li a i {
  margin-left: 10px;
}
.case-study-wrapper .case-study-box-items .thumb .project-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.case-study-wrapper .case-study-box-items .thumb .project-title img {
  width: initial;
  height: initial;
  border-radius: 0;
  margin-right: 10px;
}
.case-study-wrapper .case-study-box-items .thumb .project-title a {
  color: var(--gt-white);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.case-study-wrapper .case-study-box-items .thumb .number {
  right: 30px;
  bottom: 30px;
  position: absolute;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--gt-white);
  font-size: 14px;
  font-weight: 500;
  color: var(--gt-header3);
}
.case-study-wrapper .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 30px;
  }
}
.case-study-wrapper .main-box .box {
  background-image: url(../../assets/img/case-studies/05.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 92px !important;
  height: 328px;
  position: relative;
  overflow: hidden;
  list-style: none;
  border-radius: 24px;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
  overflow: hidden;
  background-color: var(--gt-theme5);
}
.case-study-wrapper .main-box .box .title-items {
  position: relative;
  z-index: 9;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .title-items {
    display: none;
  }
}
.case-study-wrapper .main-box .box .title-items h3 {
  position: absolute;
  top: 40%;
  left: 70%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.case-study-wrapper .main-box .box .title-items h3 a {
  color: var(--gt-white);
  display: ruby-text;
}
.case-study-wrapper .main-box .box .title-items .number {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--gt-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--gt-header3);
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .title-items .number {
    display: none;
  }
}
.case-study-wrapper .main-box .box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 24px;
  background: var(--gt-theme5);
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box::before {
    display: none;
  }
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box {
    width: initial !important;
  }
}
.case-study-wrapper .main-box .box .number-hover {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--gt-white);
  font-size: 14px;
  font-weight: 600;
  color: var(--gt-header3);
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .number-hover {
    opacity: 1;
    visibility: visible;
  }
}
.case-study-wrapper .main-box .box .project-content {
  position: absolute;
  bottom: -100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  right: 30px;
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
}
.case-study-wrapper .main-box .box .project-content h3 {
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.case-study-wrapper .main-box .box .project-content h3 a {
  color: var(--gt-white);
}
.case-study-wrapper .main-box .box .project-content p {
  color: var(--gt-white);
  line-height: 162%;
}
.case-study-wrapper .main-box .box .project-content .link-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gt-white);
  text-transform: capitalize;
}
.case-study-wrapper .main-box .box .project-content .icon {
  transform: rotate(-40deg);
  color: var(--gt-theme);
  transition: all 0.4s ease-in-out;
}
.case-study-wrapper .main-box .box .project-content .icon:hover {
  transform: rotate(0);
}
@media (max-width: 1399px) {
  .case-study-wrapper .main-box .box {
    width: 328px !important;
  }
  .case-study-wrapper .main-box .box::before {
    border: 0.5px solid var(--gt-white);
    background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(25px);
  }
  .case-study-wrapper .main-box .box .number-hover {
    opacity: 1;
    visibility: visible;
  }
  .case-study-wrapper .main-box .box .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
  }
  .case-study-wrapper .main-box .box .title-items {
    opacity: 0;
    visibility: hidden;
  }
}
.case-study-wrapper .main-box .box.active {
  width: 328px !important;
}
.case-study-wrapper .main-box .box.active::before {
  border: 0.5px solid var(--gt-white);
  background: radial-gradient(258.86% 216.49% at -18.48% -74.46%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(25px);
}
.case-study-wrapper .main-box .box.active .number-hover {
  opacity: 1;
  visibility: visible;
}
.case-study-wrapper .main-box .box.active .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.case-study-wrapper .main-box .box.active .title-items {
  opacity: 0;
  visibility: hidden;
}

.case-study-section {
  position: relative;
}
.case-study-section .overlay-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.case-study-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 40px;
}
@media (max-width: 1600px) {
  .case-study-section .left-shape {
    display: none;
  }
}
.case-study-section .right-shape {
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media (max-width: 1600px) {
  .case-study-section .right-shape {
    display: none;
  }
}

.pricing-box-items {
  border-radius: 20px;
  border: 1px solid #D4DCFF;
  background: var(--gt-white);
  padding: 30px;
}
.pricing-box-items .pricing-header {
  border-radius: 16px;
  background: #17012C;
  padding: 24px;
  position: relative;
}
.pricing-box-items .pricing-header .icon {
  position: absolute;
  top: 24px;
  right: 24px;
}
.pricing-box-items .pricing-header h4 {
  color: var(--gt-white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}
.pricing-box-items .pricing-header h2 {
  color: var(--gt-white);
  font-size: 40px;
  margin-top: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}
.pricing-box-items .pricing-header h2 sub {
  color: var(--gt-white);
  font-size: 16px;
  font-weight: 400;
  margin-left: -5px;
}
.pricing-box-items .price-list {
  margin-top: 30px;
}
.pricing-box-items .price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-box-items .price-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-box-items .price-list li .price-1 {
  font-weight: 500;
}
.pricing-box-items .price-list li .price-1.color-2 i {
  color: #FF1010;
}
.pricing-box-items .price-list li .price-1 i {
  color: var(--gt-theme);
  margin-right: 5px;
}
.pricing-box-items .price-button {
  margin-top: 40px;
}
.pricing-box-items .price-button .theme-btn {
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: 16px;
  background: #17012C;
  display: inline-block;
  color: var(--gt-white);
  font-weight: 700;
}
.pricing-box-items .price-button .theme-btn i {
  margin-left: 10px;
}
.pricing-box-items .price-button .theme-btn:hover {
  background-color: var(--gt-theme5);
}
.pricing-box-items.style-2 .pricing-header {
  background: #6A47ED;
}
.pricing-box-items.style-2 .price-button .theme-btn {
  border: 1.5px solid var(--gt-theme5);
  display: inline-block;
  color: var(--gt-theme5);
  background: transparent;
}
.pricing-box-items.style-2 .price-button .theme-btn:hover {
  background-color: var(--gt-theme5);
  color: var(--gt-white);
}

.pricing-content .pricing-tab-header {
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .pricing-content .pricing-tab-header {
    margin-bottom: 0;
  }
}
.pricing-content .pricing-tab-header .arrow-shape {
  position: absolute;
  left: 48.5%;
  top: 0;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1199px) {
  .pricing-content .pricing-tab-header .arrow-shape {
    display: none;
  }
}
.pricing-content .pricing-tab-header .nav {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: var(--gt-white);
  border: 1px solid var(--gt-border);
  border-radius: 100px;
  padding: 6px;
  max-width: 210px;
}
@media (max-width: 991px) {
  .pricing-content .pricing-tab-header .nav {
    max-width: 325px;
  }
}
@media (max-width: 575px) {
  .pricing-content .pricing-tab-header .nav {
    gap: 15px;
    max-width: 225px;
  }
}
.pricing-content .pricing-tab-header .nav .nav-link {
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--gt-header3);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .pricing-content .pricing-tab-header .nav .nav-link {
    padding: 14px 45px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .pricing-content .pricing-tab-header .nav .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.pricing-content .pricing-tab-header .nav .nav-link.active {
  position: relative;
  background-color: var(--gt-theme5);
  color: var(--gt-white);
}
.pricing-content .pricing-tab-header .save-text {
  font-weight: 500;
  color: var(--gt-theme5);
  font-size: 18px;
  text-align: center;
  margin-left: 60%;
}

.pricing-section-5 {
  position: relative;
  background-color: #F6F3FE;
}
.pricing-section-5 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .pricing-section-5 .left-shape {
    display: none;
  }
}
.pricing-section-5 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .pricing-section-5 .right-shape {
    display: none;
  }
}

.gt-pricing-box-items-4 {
  margin-top: 30px;
  border-radius: 0 0 4px 4px;
  background: var(--gt-white);
  position: relative;
  padding: 30px;
  z-index: 9;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  height: 100%;
}
.gt-pricing-box-items-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #F0F3F9;
  background: linear-gradient(236deg, rgba(116, 68, 253, 0.6) 0%, rgba(231, 112, 150, 0.1) 100%);
  z-index: -1;
  height: 280px;
}
.gt-pricing-box-items-4 .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  border-radius: 50%;
  background: radial-gradient(58.93% 58.93% at 50% 77.68%, #058BF7 0%, #1AADFE 100%);
  margin-bottom: 20px;
}
.gt-pricing-box-items-4 .gt-pricing-header h3 {
  color: var(--gt-header3);
  font-family: "Montserrat", sans-serif;
}
.gt-pricing-box-items-4 .gt-pricing-header h2 {
  font-family: "Montserrat", sans-serif;
  color: #101828;
  font-weight: 600;
}
.gt-pricing-box-items-4 .gt-pricing-header .gt-pricing-list {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.gt-pricing-box-items-4 .gt-pricing-header .gt-pricing-list .sub-pricie {
  display: grid;
}
.gt-pricing-box-items-4 .gt-pricing-header .gt-pricing-list .sub-pricie del {
  color: var(--gt-header3);
  font-weight: 500;
  font-size: 18px;
}
.gt-pricing-box-items-4 .gt-pricing-header .gt-pricing-list .sub-pricie span {
  color: #475467;
}
.gt-pricing-box-items-4 .gt-pricing-header p {
  font-size: 18px;
  color: #101828;
  opacity: 0.8;
  margin-top: 10px;
}
.gt-pricing-box-items-4 .gt-theme-btn {
  width: 100%;
  text-align: center;
  padding: 16px 34px;
  margin-top: 50px;
  background: var(--Linear, linear-gradient(180deg, #9F70FF 0%, #7732FF 100%));
  box-shadow: 0 12px 24px 0 rgba(119, 50, 255, 0.2), -2px -2px 4px 0 rgba(88, 42, 187, 0.49) inset, 2px 2px 3px 0 rgba(198, 180, 238, 0.5) inset, 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.gt-pricing-box-items-4 .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.gt-pricing-box-items-4 .gt-theme-btn:hover {
  color: var(--gt-white);
}
.gt-pricing-box-items-4 ul {
  margin-top: 20px;
}
.gt-pricing-box-items-4 ul li {
  font-size: 16px;
  color: var(--gt-header3);
  display: flex;
  gap: 6px;
  line-height: 1.5;
}
.gt-pricing-box-items-4 ul li i {
  color: var(--gt-theme4);
  line-height: 1;
}
.gt-pricing-box-items-4 ul li:not(:last-child) {
  margin-bottom: 12px;
}

.gt-pricing-section-4 .nav {
  border: none;
  border-radius: 24.5px;
  border: 1px solid rgba(155, 160, 163, 0.5);
  padding: 4px 24px;
  margin-top: 40px;
}
.gt-pricing-section-4 .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
}
.gt-pricing-section-4 .nav .nav-link {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 45px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--gt-text);
  margin-bottom: 0;
}
.gt-pricing-section-4 .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--gt-theme4);
  width: 45px;
  height: 25px;
  border-radius: 20px;
}
.gt-pricing-section-4 .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.gt-pricing-section-4 .nav .nav-link:first-child {
  padding-left: 0;
}
.gt-pricing-section-4 .nav .nav-link:last-child {
  padding-right: 0;
}
.gt-pricing-section-4 .nav .nav-link:last-child::after {
  display: none;
}
.gt-pricing-section-4 .nav .nav-link:last-child::before {
  display: none;
}
.gt-pricing-section-4 .nav .nav-link.active {
  color: var(--gt-theme4);
}
.gt-pricing-section-4 .nav .nav-link.active::after {
  right: 0;
}

.gt-faq-wrapper .accordion .accordion-item {
  border: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 30px;
  padding: 25px;
}
.gt-faq-wrapper .accordion .accordion-item h2 button {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  font-family: "DM Sans", sans-serif;
  padding: 0 0;
  padding-bottom: 0;
  color: var(--gt-header);
  border-radius: 10px !important;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .gt-faq-wrapper .accordion .accordion-item h2 button {
    font-size: 20px;
    line-height: 1.3;
  }
}
.gt-faq-wrapper .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 15px;
}
.gt-faq-wrapper .accordion .accordion-item .accordion-body p {
  color: var(--gt-white);
  font-weight: 500;
  font-size: 15px;
}
.gt-faq-wrapper .accordion .accordion-item .accordion-body .faq-image {
  margin-top: 10px;
}
.gt-faq-wrapper .accordion .accordion-item .accordion-body .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.gt-faq-wrapper .accordion .accordion-button {
  background-color: transparent;
  color: #FEBC5F !important;
  border-radius: 0;
}
.gt-faq-wrapper .accordion .accordion-button::after {
  display: none;
}
.gt-faq-wrapper .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 0;
  right: 0;
  font-size: 18px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: #FEBC5F;
  text-align: center;
}
.gt-faq-wrapper .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--gt-header) !important;
}
.gt-faq-wrapper .accordion .accordion-button.collapsed::before {
  color: #9BA0A3;
  content: "+";
}
.gt-faq-wrapper .accordion.style-inner .accordion-item {
  border: 1px solid rgba(155, 160, 163, 0.2) !important;
}
.gt-faq-wrapper .accordion.style-inner .accordion-item .accordion-body p {
  color: var(--gt-text);
}
.gt-faq-wrapper .accordion.style-inner .accordion-button.collapsed {
  color: var(--gt-header2) !important;
}
.gt-faq-wrapper .accordion.style-inner .accordion-button.collapsed::before {
  color: #9BA0A3;
  content: "+";
}
.gt-faq-wrapper .accordion.style-inner-faq .accordion-item {
  border: none !important;
  background-color: var(--gt-white);
}
.gt-faq-wrapper .accordion.style-inner-faq .accordion-item .accordion-body p {
  color: var(--gt-text);
}
.gt-faq-wrapper .accordion.style-inner-faq .accordion-button.collapsed {
  color: var(--gt-header2) !important;
}
.gt-faq-wrapper .accordion.style-inner-faq .accordion-button.collapsed::before {
  color: #9BA0A3;
  content: "+";
}

.gt-faq-section {
  position: relative;
}
.gt-faq-section .faq-left-shape {
  position: absolute;
  left: 0;
  top: -18%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-faq-section .faq-left-shape {
    display: none;
  }
}
.gt-faq-section .right-shape {
  position: absolute;
  bottom: 19%;
  right: 0;
}
@media (max-width: 1199px) {
  .gt-faq-section .right-shape {
    display: none;
  }
}

.gt-faq-wrapper-2 {
  border-radius: 20px;
  background: linear-gradient(112deg, #FFF 0%, #F2FFEA 100%);
  box-shadow: 0px 4px 210px 0px rgba(0, 0, 0, 0.1);
  padding: 120px 30px;
  position: relative;
}
.gt-faq-wrapper-2 .faq-line {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .gt-faq-wrapper-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .gt-faq-wrapper-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.gt-faq-wrapper-2 .accordion {
  max-width: 950px;
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .gt-faq-wrapper-2 .accordion {
    margin-top: 30px;
  }
}
.gt-faq-wrapper-2 .accordion .accordion-item {
  border: none;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(5, 17, 26, 0.2);
  margin-top: 30px;
}
.gt-faq-wrapper-2 .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  padding: 25px;
  box-shadow: none;
  font-family: "Sen", sans-serif;
  color: #173401;
  border-radius: 10px !important;
  text-transform: capitalize;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 767px) {
  .gt-faq-wrapper-2 .accordion .accordion-item h2 button {
    font-size: 20px;
    line-height: 1.3;
  }
}
.gt-faq-wrapper-2 .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 15px;
  background-color: var(--gt-theme2);
  padding: 0 25px;
  padding-bottom: 23px;
  border-radius: 10px !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.gt-faq-wrapper-2 .accordion .accordion-item .accordion-body p {
  color: #173401;
  font-weight: 500;
  font-size: 16px;
}
.gt-faq-wrapper-2 .accordion .accordion-item .accordion-body .faq-image {
  margin-top: 10px;
}
.gt-faq-wrapper-2 .accordion .accordion-item .accordion-body .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.gt-faq-wrapper-2 .accordion .accordion-button {
  background-color: transparent;
  color: var(--gt-header2) !important;
  border-radius: 0;
}
.gt-faq-wrapper-2 .accordion .accordion-button::after {
  display: none;
}
.gt-faq-wrapper-2 .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 25px;
  right: 25px;
  font-size: 18px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: #173401;
  text-align: center;
}
.gt-faq-wrapper-2 .accordion .accordion-button.collapsed {
  color: var(--gt-header2) !important;
}
.gt-faq-wrapper-2 .accordion .accordion-button.collapsed::before {
  color: #173401;
  content: "+";
}
.gt-faq-wrapper-2 .accordion .accordion-button:not(.collapsed) {
  background-color: var(--gt-theme2);
}

.gt-faq-section {
  position: relative;
}
.gt-faq-section .faq-ellipse-1 {
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-faq-section .faq-ellipse-1 {
    display: none;
  }
}
.gt-faq-section .faq-ellipse-2 {
  position: absolute;
  top: -20%;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-faq-section .faq-ellipse-2 {
    display: none;
  }
}

.gt-faq-section-4 {
  margin: 0 60px;
  border-radius: 40px;
}
@media (max-width: 1399px) {
  .gt-faq-section-4 {
    margin: 0 36px;
  }
}
@media (max-width: 1199px) {
  .gt-faq-section-4 {
    margin: 0 30px;
  }
}
@media (max-width: 767px) {
  .gt-faq-section-4 {
    margin: 0 22px;
  }
}

@media (max-width: 1199px) {
  .gt-faq-wrapper-4 {
    padding: 0 20px;
  }
}
.gt-faq-wrapper-4 .gt-faq-content {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .gt-faq-wrapper-4 .gt-faq-content {
    margin-left: 0;
  }
}
.gt-faq-wrapper-4 .gt-faq-content .gt-faq-text {
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
  margin-top: 15px;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion {
  max-width: 950px;
  margin: 15px auto 0;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item {
  border: none;
  background: var(--gt-white);
  border-radius: 10px;
  border: none;
  margin-top: 15px;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  padding: 25px;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
  color: #fff !important;
  border-radius: 10px !important;
  text-transform: capitalize;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 1399px) {
  .gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item h2 button {
    font-size: 16px;
    line-height: 1.3;
    padding: 20px;
  }
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 0;
  background-color: var(--gt-theme4);
  padding: 0 25px;
  padding-bottom: 23px;
  border-radius: 10px !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item .accordion-body p {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item .accordion-body .faq-image {
  margin-top: 10px;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-item .accordion-body .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-button {
  background-color: transparent;
  color: var(--gt-header2) !important;
  border-radius: 0;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-button::after {
  display: none;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 25px;
  right: 25px;
  font-size: 18px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: #fff;
  text-align: center;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-button.collapsed {
  color: var(--gt-header2) !important;
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-button.collapsed::before {
  color: var(--gt-theme4);
  content: "+";
}
.gt-faq-wrapper-4 .gt-faq-content .accordion .accordion-button:not(.collapsed) {
  background-color: var(--gt-theme4);
}
.gt-faq-wrapper-4 .faq-image-2 {
  position: relative;
}
.gt-faq-wrapper-4 .faq-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gt-faq-wrapper-4 .faq-image-2 .faq-image-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gt-faq-wrapper-4 .faq-image-2 .faq-image-3 img {
  border-radius: 0;
}

.gt-feature-box-items {
  margin-top: 30px;
  border-radius: 10px;
  text-align: center;
  padding: 25px 70px;
  padding-top: 45px;
  position: relative;
}
.gt-feature-box-items .gt-number-box::before,
.gt-feature-box-items .gt-number-box::after {
  box-shadow: none !important;
  filter: none !important;
}
.gt-feature-box-items::before {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid rgba(155, 160, 163, 0.2);
}
.gt-feature-box-items .hover-lines {
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  left: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #EA4BFF;
  border-left: 0 solid #EA4BFF;
  border-right: 0 solid #EA4BFF;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  -webkit-transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1) 340ms, height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms;
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1) 340ms, height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 340ms;
}
.gt-feature-box-items .hover-lines::before, .gt-feature-box-items .hover-lines::after {
  position: absolute;
  height: 1px;
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  background-color: #EA4BFF;
  -webkit-transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
  transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
}
.gt-feature-box-items .hover-lines::after {
  left: auto;
  right: 0;
}
.gt-feature-box-items .gt-number-box {
  margin-bottom: 35px;
  position: relative;
}
.gt-feature-box-items .gt-number-box span {
  font-size: 20px;
  font-weight: 800;
  color: var(--gt-white);
  position: relative;
  z-index: 99;
}
.gt-feature-box-items .gt-number-box .bg-border-style {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(121deg, #FEBC5F 12.68%, #EA4BFF 92.5%);
  transition: all 500ms ease;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 62"><path d="M22.0967 3.31934C25.0359 1.62244 28.6575 1.6225 31.5967 3.31934L48.4434 13.0459C51.3827 14.7429 53.1933 17.8794 53.1934 21.2734V40.7266C53.1933 44.1206 51.3827 47.2571 48.4434 48.9541L31.5967 58.6807C28.6575 60.3775 25.0359 60.3776 22.0967 58.6807L5.25 48.9541C2.31071 47.2571 0.500023 44.1206 0.5 40.7266V21.2734C0.500022 17.9856 2.19929 14.94 4.97754 13.21L5.25 13.0459L22.0967 3.31934Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  width: 54px;
  height: 62px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.gt-feature-box-items .gt-number-box .icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}
.gt-feature-box-items.style-height-1 {
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .gt-feature-box-items.style-height-1 {
    margin-top: 30px;
  }
}
.gt-feature-box-items.style-height-2 {
  margin-top: 150px;
}
@media (max-width: 1199px) {
  .gt-feature-box-items.style-height-2 {
    margin-top: 30px;
  }
}
.gt-feature-box-items h3 {
  color: var(--gt-white);
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.gt-feature-box-items p {
  font-weight: 500;
  margin-top: 10px;
  position: relative;
  z-index: 9;
}
.gt-feature-box-items:hover .hover-lines {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  -webkit-transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms;
  transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), height 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-left-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms, border-right-width 0s cubic-bezier(0.25, 0.25, 0.75, 0.75) 145ms;
  width: 100%;
}
.gt-feature-box-items:hover .hover-lines::before, .gt-feature-box-items:hover .hover-lines::after {
  -webkit-transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1) 340ms;
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1) 340ms;
  width: 50%;
}
.gt-feature-box-items:hover .gt-number-box .bg-border-style {
  opacity: 1;
  visibility: visible;
}
.gt-feature-box-items:hover .gt-number-box .icon-bg {
  opacity: 0;
  visibility: hidden;
}

.gt-brand-wrapper .seco-tool-text {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto 55px;
}
.gt-brand-wrapper .seco-tool-text .color-1 {
  background: linear-gradient(92deg, #EA4BFF 50.13%, #FEBC5F 58.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gt-brand-wrapper .seco-tool-text .color-2 {
  background: linear-gradient(90deg, #FEBC5F 3.88%, #6B41FF 99.94%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.gt-brand-wrapper .seco-tool-text .color-3 {
  background: linear-gradient(92deg, #EA4BFF 50.13%, #FEBC5F 58.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gt-brand-wrapper h5 {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 55px;
}
.gt-brand-wrapper h5.color-2 {
  font-family: "Sen", sans-serif;
  color: var(--gt-header2);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}
.gt-brand-wrapper h5.color-3 {
  color: #686866;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
}
.gt-brand-wrapper h5.color-3 b {
  color: var(--gt-theme3);
  position: relative;
}
.gt-brand-wrapper h5.color-3 b::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 8.8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/home-3/bar-line.png);
  animation: width 1.5s linear 3 !important;
  animation-fill-mode: both;
  background-position: center;
}

.gt-feature-list-wrapper {
  border-radius: 20px;
  border: 3px solid rgba(155, 160, 163, 0.25);
  background: var(--gt-black);
  padding: 74px 60px;
  padding-right: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-feature-list-wrapper {
    padding: 40px 35px;
  }
}
@media (max-width: 767px) {
  .gt-feature-list-wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .gt-feature-list-wrapper {
    padding: 30px 25px;
  }
}
.gt-feature-list-wrapper .bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-feature-list-wrapper .bg-shape {
    display: none;
  }
}
.gt-feature-list-wrapper .gt-feature-list-content .list-head {
  font-size: 18px;
  font-weight: 700;
  color: var(--gt-white);
  max-width: 555px;
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .gt-feature-list-wrapper .gt-feature-list-content .list-head {
    font-size: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.gt-feature-list-wrapper .gt-feature-list-content p {
  max-width: 555px;
}
.gt-feature-list-wrapper .gt-feature-list-content .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .gt-feature-list-wrapper .gt-feature-list-content .gt-theme-btn {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .gt-feature-list-wrapper .gt-feature-list-content .gt-theme-btn {
    margin-top: 25px;
  }
}
.gt-feature-list-wrapper .gt-feature-list-content .gt-theme-btn::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: #000;
  z-index: -1;
  border-radius: 10px;
}
.gt-feature-list-wrapper .gt-feature-list-content .gt-theme-btn:hover {
  background: transparent;
}
.gt-feature-list-wrapper .gt-feature-list-content .gt-theme-btn:hover::after {
  display: none;
}
.gt-feature-list-wrapper .gt-feature-list-image {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .gt-feature-list-wrapper .gt-feature-list-image {
    margin-left: 0;
  }
}
.gt-feature-list-wrapper .gt-feature-list-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gt-feature-list-wrapper.style-2 {
  padding-bottom: 0;
  padding-left: 10px;
  padding-top: 20px;
}
@media (max-width: 1399px) {
  .gt-feature-list-wrapper.style-2 {
    padding: 25px;
  }
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-image {
  margin-left: 0;
  max-width: 456px;
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .gt-feature-list-wrapper.style-2 .gt-feature-list-content {
    margin-left: 0;
  }
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .right-text {
  margin-top: 15px;
  font-weight: 500;
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .gt-feature-marqueee-area {
  border-radius: 10px;
  border: 1px solid #9BA0A3;
  background: #05111A;
  padding: 20px 10px;
  margin-top: 20px;
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .gt-feature-right-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .gt-feature-right-box ul:not(:last-child) {
  margin-bottom: 10px;
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .gt-feature-right-box ul li {
  font-size: 15px;
  border-radius: 100px;
  border: 1px solid rgba(155, 160, 163, 0.2);
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 10px;
  line-height: 1;
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .button-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-feature-list-wrapper.style-2 .gt-feature-list-content .button-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .gt-feature-list-wrapper.style-2 .gt-feature-list-content .button-list {
    margin-top: 25px;
  }
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .gt-theme-btn.style-bg {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-feature-list-wrapper.style-2 .gt-feature-list-content .gt-theme-btn.style-bg::after {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}

.gt-what-can-box-items {
  margin-top: 30px;
  border-radius: 10px;
  background: #192337;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
.gt-what-can-box-items::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background: #192337;
  z-index: -1;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.gt-what-can-box-items .gt-icon {
  border-radius: 10px;
  background: rgba(107, 65, 255, 0.15);
  max-width: 86px;
  height: 80px;
  width: 100%;
  text-align: center;
  line-height: 75px;
  font-size: 50px;
  position: relative;
  z-index: 9;
}
.gt-what-can-box-items .gt-icon i, .gt-what-can-box-items .gt-icon svg {
  transition: all 0.6s ease;
  display: inline-block;
}
.gt-what-can-box-items .gt-icon::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 500ms ease;
}
.gt-what-can-box-items h4 {
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
}
.gt-what-can-box-items:hover {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-what-can-box-items:hover::after {
  background-color: #192337;
}
.gt-what-can-box-items:hover .gt-icon::before {
  height: 100%;
}
.gt-what-can-box-items:hover .gt-icon i, .gt-what-can-box-items:hover .gt-icon svg {
  transform: rotateY(180deg);
}

.gt-what-get-wrapper .gt-what-get-content {
  position: relative;
}
.gt-what-get-wrapper .gt-what-get-content::before {
  position: absolute;
  top: 50%;
  left: -22%;
  transform: translateY(-50%);
  content: "";
  width: 540px;
  height: 540px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 1199px) {
  .gt-what-get-wrapper .gt-what-get-content::before {
    display: none;
  }
}
.gt-what-get-wrapper .gt-what-get-content .gt-what-text {
  margin-top: 25px;
  max-width: 570px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .gt-what-get-wrapper .gt-what-get-content .gt-what-text {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .gt-what-get-wrapper .gt-what-get-content .gt-what-text {
    margin-bottom: 25px;
  }
}
.gt-what-get-wrapper .gt-what-get-content .gt-theme-btn {
  border: none;
}
.gt-what-get-wrapper .gt-what-get-content .gt-theme-btn.style-bg {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-what-get-wrapper .gt-what-get-content .gt-theme-btn.style-bg::after {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}
.gt-what-get-wrapper .gt-what-get-faq-items {
  padding: 45px 50px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .gt-what-get-wrapper .gt-what-get-faq-items {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .gt-what-get-wrapper .gt-what-get-faq-items {
    padding: 20px;
  }
}
.gt-what-get-wrapper .faq-items {
  border-radius: 20px 20px 0px 0px;
  background: #05111A;
  padding: 40px;
}
@media (max-width: 1199px) {
  .gt-what-get-wrapper .faq-items {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .gt-what-get-wrapper .faq-items {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .gt-what-get-wrapper .faq-items {
    padding: 25px;
  }
}
.gt-what-get-wrapper .faq-items .accordion .accordion-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  margin-top: 25px;
  padding-bottom: 25px;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-item h2 button {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  font-family: "DM Sans", sans-serif;
  padding: 0 0;
  padding-bottom: 0;
  color: var(--gt-header);
  border-radius: 0 !important;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .gt-what-get-wrapper .faq-items .accordion .accordion-item h2 button {
    font-size: 18px;
  }
}
.gt-what-get-wrapper .faq-items .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 15px;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--gt-text);
  font-weight: 500;
  font-size: 15px;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-item .accordion-body .faq-image {
  margin-top: 10px;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-item .accordion-body .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: #FEBC5F !important;
  border-radius: 0;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-button::after {
  display: none;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  top: 0;
  right: 0;
  font-size: 18px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: #FEBC5F;
  text-align: center;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--gt-header) !important;
}
.gt-what-get-wrapper .faq-items .accordion .accordion-button.collapsed::before {
  color: #9BA0A3;
  content: "+";
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9;
}

.text-slider {
  font-size: 100px;
  font-weight: 300;
  height: 100px;
  line-height: 1;
  text-transform: uppercase;
  color: #EA4BFF;
}
@media (max-width: 767px) {
  .text-slider {
    font-size: 80px;
  }
}
@media (max-width: 575px) {
  .text-slider {
    font-size: 70px;
  }
}
.text-slider.color-2 {
  color: #FEBC5F;
}
.text-slider.color-3 {
  color: #6B41FF;
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.marque-section-2 {
  position: relative;
}

.feature-box-items-2 {
  margin-top: 30px;
  border-radius: 10px;
  background: linear-gradient(134deg, #FFF 0.75%, #ECEDEA 100%);
  padding: 30px;
}
.feature-box-items-2 .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  font-size: 40px;
  background: linear-gradient(145deg, rgba(160, 234, 113, 0.5) 15.71%, #F7F8F6 89.9%);
}
.feature-box-items-2 .content {
  margin-top: 20px;
}
.feature-box-items-2 .content h3 {
  font-weight: 600;
  font-family: "Sen", sans-serif;
  color: var(--gt-header2);
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .feature-box-items-2 .content h3 {
    font-size: 20px;
  }
}
.feature-box-items-2 .content p {
  color: var(--gt-text2);
  margin-top: 20px;
  max-width: 240px;
}

.feature-box-image-items-2 {
  margin-top: 30px;
  padding: 0 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0;
  padding-left: 80px;
  padding-top: 43px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .feature-box-image-items-2 {
    padding: 30px;
  }
}
.feature-box-image-items-2 .bg-shape {
  position: absolute;
  bottom: 0;
  left: -40px;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .feature-box-image-items-2 .bg-shape {
    display: none;
  }
}
.feature-box-image-items-2 .bg-shape img {
  height: 100%;
}
@media (max-width: 1199px) {
  .feature-box-image-items-2 .thumb {
    display: none;
  }
}
.feature-box-image-items-2 .content {
  max-width: 340px;
}
.feature-box-image-items-2 .content h3 {
  font-weight: 600;
  font-family: "Sen", sans-serif;
  color: var(--gt-white);
  font-size: 24px;
  text-transform: capitalize;
}
.feature-box-image-items-2 .content .gt-theme-btn {
  background-color: var(--gt-theme2);
  color: var(--gt-header2);
  margin-top: 35px;
}
@media (max-width: 1199px) {
  .feature-box-image-items-2 .content .gt-theme-btn {
    margin-top: 20px;
  }
}
.feature-box-image-items-2 .content .gt-theme-btn::before {
  background-color: var(--gt-white);
}

.gt-app-downloand-wrapper .gt-app-downloand-content .gt-downloand-text {
  margin-top: 25px;
  color: var(--gt-text2);
  max-width: 636px;
}
.gt-app-downloand-wrapper .gt-app-downloand-content .gt-counter-box-items {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .gt-app-downloand-wrapper .gt-app-downloand-content .gt-counter-box-items {
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}
.gt-app-downloand-wrapper .gt-app-downloand-content .gt-counter-box-items .gt-counter-items {
  border-radius: 10px;
  border: 1px solid #A0EA71;
  background: var(--gt-white);
  box-shadow: 0px 4px 100px 0px rgba(160, 234, 113, 0.2);
  padding: 20px 27px;
}
.gt-app-downloand-wrapper .gt-app-downloand-content .gt-counter-box-items h2 {
  color: var(--gt-header2);
  color: #173401;
  font-family: "Sen", sans-serif;
  font-size: 30px;
  font-weight: 600;
}
.gt-app-downloand-wrapper .gt-app-downloand-content .gt-counter-box-items h6 {
  color: var(--gt-header2);
  color: #173401;
  font-family: "Sen", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.gt-app-downloand-wrapper .gt-dashboard-image-items {
  position: relative;
}
.gt-app-downloand-wrapper .gt-dashboard-image-items .gt-mobile-app-image {
  position: absolute;
  top: 0;
  left: -20px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .gt-app-downloand-wrapper .gt-dashboard-image-items .gt-mobile-app-image {
    display: none;
  }
}
.gt-app-downloand-wrapper .gt-dashboard-image-items .gt-mobile-app-image .gt-mobile-app-image-2 {
  position: absolute;
  right: -70px;
  bottom: -20px;
  z-index: -1;
  transition: transform 0.5s ease;
  transform: rotate(0deg);
}
@media (max-width: 1199px) {
  .gt-app-downloand-wrapper .gt-dashboard-image-items .gt-mobile-app-image .gt-mobile-app-image-2 {
    display: none;
  }
}
.gt-app-downloand-wrapper .gt-dashboard-image-items .gt-dashboard-image {
  margin-right: -40%;
  margin-left: 120px;
}
@media (max-width: 1199px) {
  .gt-app-downloand-wrapper .gt-dashboard-image-items .gt-dashboard-image {
    margin-left: 0;
    margin-right: 0;
  }
  .gt-app-downloand-wrapper .gt-dashboard-image-items .gt-dashboard-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-app-downloand-wrapper .gt-dashboard-image-items .gt-dashboard-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.gt-payment-secured-wrapper .atm-bank-image {
  margin-left: -40px;
}
@media (max-width: 1199px) {
  .gt-payment-secured-wrapper .atm-bank-image {
    margin-left: 0;
  }
}
.gt-payment-secured-wrapper .atm-bank-image img {
  width: 100%;
  height: 100%;
}
.gt-payment-secured-wrapper .gt-payment-content {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .gt-payment-secured-wrapper .gt-payment-content {
    margin-left: 0;
  }
}
.gt-payment-secured-wrapper .gt-payment-content .gt-payment-text {
  margin-top: 25px;
  max-width: 690px;
  color: var(--gt-white);
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box {
  margin-top: 40px;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li {
  border-radius: 10px;
  border: 1px solid rgba(155, 160, 163, 0.3);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li {
    flex-wrap: wrap;
  }
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li:not(:last-child) {
  margin-bottom: 30px;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li .icon {
  max-width: 82px;
  width: 100%;
  height: 73px;
  line-height: 73px;
  background-color: var(--gt-white);
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li .icon svg path {
  transition: all 0.4s ease-in-out;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li .content h3 {
  font-size: 24px;
  color: var(--gt-white);
  font-family: "Sen", sans-serif;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li .content p {
  color: #ECEDEA;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li:hover .icon {
  background-color: #173401;
}
.gt-payment-secured-wrapper .gt-payment-content .gt-icon-box li:hover .icon svg path {
  fill: var(--gt-theme2);
}

.gt-payment-secured-section {
  position: relative;
  z-index: 9;
}
.gt-payment-secured-section .left-shape {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-payment-secured-section .left-shape {
    display: none;
  }
}
.gt-payment-secured-section .ellipse-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-payment-secured-section .ellipse-bg {
    display: none;
  }
}

.gt-feature-section-2 {
  position: relative;
  z-index: 9;
}
.gt-feature-section-2 .ellipse-1 {
  position: absolute;
  bottom: -20%;
  z-index: -1;
  left: 0;
}
.gt-feature-section-2 .ellipse-2 {
  position: absolute;
  top: -20%;
  z-index: -1;
  right: 0;
}

.gt-feature-focus-wrapper {
  border-radius: 20px;
  background: #05111A;
  margin: 0 60px;
}
@media (max-width: 1399px) {
  .gt-feature-focus-wrapper {
    margin: 0 40px;
  }
}
@media (max-width: 1199px) {
  .gt-feature-focus-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .gt-feature-focus-wrapper {
    margin: 0 25px;
  }
}
@media (max-width: 470px) {
  .gt-feature-focus-wrapper {
    margin: 0 20px;
  }
}
.gt-feature-focus-wrapper .gt-feature-image {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-feature-focus-wrapper .gt-feature-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-feature-focus-wrapper .gt-feature-image .bg-shape {
  position: absolute;
  top: -43%;
  left: -30%;
  z-index: -1;
}
.gt-feature-focus-wrapper .gt-feature-content {
  position: relative;
  z-index: 99;
}
.gt-feature-focus-wrapper .gt-feature-content .gt-counter-items {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .gt-feature-focus-wrapper .gt-feature-content .gt-counter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-feature-focus-wrapper .gt-feature-content .gt-counter-items .gt-counter h2 {
  font-size: 50px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}
.gt-feature-focus-wrapper .gt-feature-content .gt-counter-items .gt-counter p {
  color: var(--gt-white);
}
.gt-feature-focus-wrapper .gt-feature-content .gt-btn-all {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1199px) {
  .gt-feature-focus-wrapper .gt-feature-content .gt-btn-all {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.gt-feature-focus-wrapper .gt-feature-content .gt-btn-all .gt-theme-btn {
  border: 1px solid var(--gt-theme3);
}
.gt-feature-focus-wrapper .gt-feature-content .gt-btn-all .gt-theme-btn.style-border {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gt-feature-benefit-wrapper {
  border-top: 1px solid rgba(104, 104, 102, 0.2);
  margin-top: 60px;
  padding-top: 60px;
}
@media (max-width: 1199px) {
  .gt-feature-benefit-wrapper {
    margin-top: 30px;
  }
}
.gt-feature-benefit-wrapper .gt-feature-benefit-items ul li .gt-benefit-content {
  background-color: var(--gt-white);
  padding: 50px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .gt-feature-benefit-wrapper .gt-feature-benefit-items ul li .gt-benefit-content {
    padding: 28px;
  }
}
.gt-feature-benefit-wrapper .gt-feature-benefit-items ul li .gt-benefit-content h3 {
  font-size: 24px;
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
  margin-bottom: 15px;
}
.gt-feature-benefit-wrapper .gt-feature-benefit-items ul li .gt-benefit-content .gt-number {
  font-size: 36px;
  font-weight: 600;
  color: var(--gt-theme3);
  font-family: "Manrope", sans-serif;
  position: absolute;
  right: 30px;
  top: 30px;
}
.gt-feature-benefit-wrapper .gt-feature-benefit-items ul li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-feature-benefit-wrapper .gt-feature-box-image {
  position: relative;
  padding-top: 60px;
}
.gt-feature-benefit-wrapper .gt-feature-box-image .bg-shape {
  position: absolute;
  top: 0;
  z-index: -1;
}
@media (max-width: 1899px) {
  .gt-feature-benefit-wrapper .gt-feature-box-image .bg-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .gt-feature-benefit-wrapper .gt-feature-box-image .bg-shape {
    right: 0;
    bottom: 0;
  }
}
.gt-feature-benefit-wrapper .gt-feature-box-image .bg-shape img {
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.gt-feature-benefit-wrapper .gt-feature-box-image .image-1 {
  text-align: right;
}
@media (max-width: 1199px) {
  .gt-feature-benefit-wrapper .gt-feature-box-image .image-1 img {
    width: 100%;
    height: 100%;
  }
}
.gt-feature-benefit-wrapper .gt-feature-box-image .image-2 {
  margin-top: -265px;
  text-align: right;
  padding-right: 50px;
}
@media (max-width: 1199px) {
  .gt-feature-benefit-wrapper .gt-feature-box-image .image-2 {
    display: none;
  }
}
.gt-feature-benefit-wrapper .gt-feature-box-image .image-3 {
  margin-top: -265px;
  text-align: right;
  padding-right: 100px;
  position: relative;
  z-index: 8;
}
@media (max-width: 1199px) {
  .gt-feature-benefit-wrapper .gt-feature-box-image .image-3 {
    display: none;
  }
}

.gt-product-tour-wrapper .gt-product-tour-slider {
  margin-right: -55%;
}
@media (max-width: 1199px) {
  .gt-product-tour-wrapper .gt-product-tour-slider {
    margin-right: 0;
  }
}
.gt-product-tour-wrapper .gt-product-tour-image {
  margin-top: 30px;
}
.gt-product-tour-wrapper .gt-product-tour-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 3px solid var(--gt-header3);
}

.gt-why-choose-us-wrapper-3 {
  margin: 0 60px;
  border-radius: 20px;
  background: #05111A;
}
@media (max-width: 1399px) {
  .gt-why-choose-us-wrapper-3 {
    margin: 0 40px;
  }
}
@media (max-width: 1199px) {
  .gt-why-choose-us-wrapper-3 {
    margin: 0 30px;
  }
  .gt-why-choose-us-wrapper-3 .gt-choose-us-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .gt-why-choose-us-wrapper-3 {
    margin: 0 25px;
  }
}
@media (max-width: 470px) {
  .gt-why-choose-us-wrapper-3 {
    margin: 0 20px;
  }
}
.gt-why-choose-us-wrapper-3 .accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 25px;
  margin-bottom: 50px;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-item {
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  margin-top: 25px;
  padding-bottom: 25px;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  font-family: "Manrope", sans-serif;
  padding: 0 0;
  padding-bottom: 0;
  color: var(--gt-header);
  border-radius: 10px !important;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .gt-why-choose-us-wrapper-3 .accordion .accordion-item h2 button {
    font-size: 20px;
    line-height: 1.3;
  }
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 15px;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-item .accordion-body p {
  color: var(--gt-white);
  font-weight: 500;
  font-size: 15px;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-button {
  background-color: transparent;
  color: #fff !important;
  border-radius: 0;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-button::after {
  display: none;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-button::before {
  display: none;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--gt-header) !important;
}
.gt-why-choose-us-wrapper-3 .accordion .accordion-button.collapsed::before {
  color: #9BA0A3;
  content: "+";
}

.gt-web-app-wrapper .gt-web-app-content .web-text {
  margin-top: 25px;
  color: var(--gt-text2);
  max-width: 640px;
}
.gt-web-app-wrapper .gt-web-app-content .gt-client-box-items {
  padding: 40px;
  border-radius: 10px;
  background: var(--gt-white);
  max-width: 690px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gt-web-app-wrapper .gt-web-app-content .gt-client-box-items {
    padding: 30px;
  }
}
.gt-web-app-wrapper .gt-web-app-content .gt-client-box-items p {
  font-style: italic;
  color: var(--gt-header2);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  border-left: 1px solid var(--gt-theme3);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .gt-web-app-wrapper .gt-web-app-content .gt-client-box-items p {
    padding-left: 15px;
    font-size: 16px;
  }
}
.gt-web-app-wrapper .gt-web-app-content .gt-client-box-items .gt-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 1px solid var(--gt-theme3);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .gt-web-app-wrapper .gt-web-app-content .gt-client-box-items .gt-info {
    padding-left: 15px;
  }
}
.gt-web-app-wrapper .gt-web-app-content .gt-client-box-items .gt-info span {
  font-weight: 500;
}
.gt-web-app-wrapper .gt-web-app-content .gt-client-box-items .gt-info span b {
  color: var(--gt-header2);
}
.gt-web-app-wrapper .gt-web-app-image img {
  width: 100%;
  height: 100%;
}

.gt-barnd-text-4 {
  text-transform: capitalize;
  font-weight: 600;
  color: #686866;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gt-barnd-text-4 p {
  position: relative;
}
.gt-barnd-text-4 p::before {
  position: absolute;
  top: 14px;
  left: -70px;
  height: 1px;
  width: 60px;
  content: "";
  background: #9BA0A3;
}
.gt-barnd-text-4 p::after {
  position: absolute;
  top: 14px;
  right: -70px;
  height: 1px;
  width: 60px;
  content: "";
  background: #9BA0A3;
}

.gt-feature-wrapper-4 {
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0px 4px 100px 0px rgba(107, 65, 255, 0.1);
  border-radius: 20px;
  padding-bottom: 0;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .gt-feature-wrapper-4 {
    padding: 35px;
  }
}
@media (max-width: 1399px) {
  .gt-feature-wrapper-4 {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .gt-feature-wrapper-4 {
    padding: 25px;
  }
}
.gt-feature-wrapper-4 .gt-feature-content .gt-feature-text {
  color: var(--gt-header3);
  max-width: 545px;
  margin-top: 25px;
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list {
    flex-wrap: wrap;
  }
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1 li {
  font-size: 16px;
  font-weight: 600;
  color: var(--gt-header3);
  border-radius: 10px;
  background: rgba(228, 221, 255, 0.4);
  padding: 20px 20px;
  padding-right: 40px;
  line-height: 1;
  display: inherit;
}
@media (max-width: 575px) {
  .gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1 li {
    padding: 16px;
    padding-right: 22px;
  }
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1 li:nth-last-of-type(2) {
  background: rgba(251, 224, 255, 0.4);
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1 li:nth-last-of-type(1) {
  background: rgba(255, 228, 228, 0.4);
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1 li i {
  color: #E77096;
  margin-right: 10px;
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1 li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1.style-2 li {
  background: rgba(255, 242, 223, 0.4);
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1.style-2 li:nth-last-of-type(2) {
  background: rgba(207, 255, 234, 0.4);
}
.gt-feature-wrapper-4 .gt-feature-content .gt-fuature-list .gt-list-1.style-2 li:nth-last-of-type(1) {
  background: rgba(222, 238, 255, 0.4);
}
.gt-feature-wrapper-4 .gt-feature-mobile {
  margin-left: 40px;
  margin-bottom: -270px;
}
@media (max-width: 1600px) {
  .gt-feature-wrapper-4 .gt-feature-mobile {
    margin-left: 0;
  }
  .gt-feature-wrapper-4 .gt-feature-mobile img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .gt-feature-wrapper-4 .gt-feature-mobile {
    margin-bottom: 0;
  }
}

.gt-why-choose-wrapper-4 .gt-why-choose-image img {
  width: 100%;
  height: 100%;
}
.gt-why-choose-wrapper-4 .gt-why-choose-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .gt-why-choose-wrapper-4 .gt-why-choose-content {
    margin-left: 0;
  }
}
.gt-why-choose-wrapper-4 .gt-why-choose-content .gt-choose-text {
  padding-top: 25px;
  color: var(--gt-header3);
}
.gt-why-choose-wrapper-4 .gt-why-choose-content ul {
  margin-top: 30px;
  margin-bottom: 40px;
}
.gt-why-choose-wrapper-4 .gt-why-choose-content ul li {
  color: var(--gt-header3);
  font-weight: 500;
}
.gt-why-choose-wrapper-4 .gt-why-choose-content ul li i {
  color: #5DC51B;
  margin-right: 8px;
}
.gt-why-choose-wrapper-4 .gt-why-choose-content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.gt-why-choose-wrapper-4 .gt-why-choose-content .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.gt-why-choose-wrapper-4 .gt-why-choose-content .gt-theme-btn:hover {
  color: var(--gt-white);
}

.gt-screenshot-image-4 {
  margin-top: 30px;
}
.gt-screenshot-image-4 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 3px solid var(--gt-header3);
}

.gt-screenshot-section-4 {
  position: relative;
}
.gt-screenshot-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #EDF1FF;
  top: 70%;
  height: initial;
}

.gt-why-choose-boostly-wrapper {
  padding: 60px;
  border-radius: 20px;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .gt-why-choose-boostly-wrapper {
    padding: 40px;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .gt-why-choose-boostly-wrapper {
    padding: 35px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .gt-why-choose-boostly-wrapper {
    padding: 28px;
    padding-bottom: 0;
  }
}
.gt-why-choose-boostly-wrapper .boostly-choose-image {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .gt-why-choose-boostly-wrapper .boostly-choose-image {
    margin-top: 30px;
    height: 350px;
  }
  .gt-why-choose-boostly-wrapper .boostly-choose-image img {
    object-fit: cover;
  }
}
.gt-why-choose-boostly-wrapper .boostly-choose-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.gt-why-choose-boostly-section .nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gt-why-choose-boostly-section .nav .nav-item .nav-link {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #05111A;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 17px 25px;
  line-height: 1;
}
.gt-why-choose-boostly-section .nav .nav-item .nav-link.active {
  background-color: var(--gt-theme4);
}

.gt-product-tour-section {
  position: relative;
}
.gt-product-tour-section .gt-product-dot {
  display: flex;
  align-items: center;
  margin-top: 50px;
  max-width: 800px;
  justify-content: center;
  margin: 50px auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .gt-product-tour-section .gt-product-dot {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.gt-product-tour-section .gt-product-dot::before {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: rgba(104, 104, 102, 0.2);
}
@media (max-width: 1199px) {
  .gt-product-tour-section .gt-product-dot::before {
    display: none;
  }
}
.gt-product-tour-section .gt-product-dot .swiper-pagination-bullet {
  background-color: transparent;
  cursor: pointer;
  border-radius: 0;
  opacity: 1;
  max-width: 850px;
  width: 100%;
}
.gt-product-tour-section .gt-product-dot .swiper-pagination-bullet .dot-content {
  display: flex;
  justify-content: center;
  height: 100%;
}
.gt-product-tour-section .gt-product-dot .swiper-pagination-bullet .dot-content span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #05111A;
}
.gt-product-tour-section .gt-product-dot .swiper-pagination-bullet .dot-content span:first-child {
  text-align: right;
}
.gt-product-tour-section .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  color: var(--gt-theme3);
  position: relative;
}
.gt-product-tour-section .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active span::before {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--gt-theme3);
}
@media (max-width: 1199px) {
  .gt-product-tour-section .gt-product-dot .swiper-pagination-bullet.swiper-pagination-bullet-active span::before {
    display: none;
  }
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  margin-top: -14px;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 60px;
  font-weight: 800;
  line-height: 80px;
  text-transform: capitalize;
  color: var(--gt-header3);
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scrolling-wrap .comm .cmn-textslide img {
  margin-right: 10px;
}
.scrolling-wrap .comm .cmn-textslide.stroke-text {
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke: 1px #17012C;
  -webkit-text-fill-color: transparent;
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .scrolling-wrap {
    gap: 14px;
  }
  .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}

.marquee-section-1 {
  position: relative;
  z-index: 99;
}

.mycustom-marque.style-2 {
  border: 1px solid var(--gt-header3);
  background: var(--gt-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  transform: rotate(1.913deg);
  margin-top: -15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .mycustom-marque.style-2 {
    margin-top: 0;
    transform: rotate(0);
  }
}
.mycustom-marque.style-2 .scrolling-wrap .comm .cmn-textslide {
  font-size: 30px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--gt-header3);
  padding-top: 10px;
}
.mycustom-marque.style-2.bg-2 {
  background-color: var(--gt-header3);
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.mycustom-marque.style-2.bg-2 .scrolling-wrap .comm .cmn-textslide {
  color: var(--gt-white);
  padding-top: 0;
}
.mycustom-marque.style-3 {
  background: #C6F806;
  transform: rotate(-2.772deg);
  margin-top: -52px;
  position: relative;
  z-index: 7;
}
@media (max-width: 1399px) {
  .mycustom-marque.style-3 {
    margin-top: 0;
    transform: rotate(0);
  }
}
@media (max-width: 1399px) {
  .mycustom-marque.style-3 .scrolling-wrap .comm {
    animation: scroll2 60s linear infinite;
  }
}
.mycustom-marque.style-3 .scrolling-wrap .comm .cmn-textslide {
  font-size: 30px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--gt-header3);
  padding-top: 0;
}
.mycustom-marque.style-3 .scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
.mycustom-marque.style-3.bg-3 {
  background-color: var(--gt-theme5);
  border: none;
  box-shadow: none;
  margin-top: -70px;
}
@media (max-width: 1399px) {
  .mycustom-marque.style-3.bg-3 {
    margin-top: 0;
  }
}
.mycustom-marque.style-3.bg-3 .scrolling-wrap .comm .cmn-textslide {
  color: var(--gt-white);
  padding-top: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.marquee-2 {
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .marquee-2 {
    margin-bottom: 0;
  }
}

.audience-wrapper .audience-content .ratting-image {
  margin-top: 100px;
}
.audience-wrapper .audience-content .client-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.audience-wrapper .audience-content .client-items .client-img {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.audience-wrapper .audience-content .client-items .client-img .star-icon .star {
  font-size: 14px;
  color: #FBB03B;
}
.audience-wrapper .audience-content .client-items .client-img .star-icon span {
  color: var(--gt-white);
  font-size: 14px;
  line-height: 1;
}
.audience-wrapper .audience-right {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .audience-wrapper .audience-right {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.audience-wrapper .audience-right .audience-img {
  max-width: 333px;
}
.audience-wrapper .audience-right .audience-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.audience-wrapper .audience-right .counter-box-area {
  padding: 30px;
  border-radius: 0px 20px 10px 0px;
  background: var(--gt-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 575px) {
  .audience-wrapper .audience-right .counter-box-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.audience-wrapper .audience-right .counter-box-area h2 {
  font-size: 40px;
  color: var(--gt-header3);
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.audience-wrapper .audience-right .counter-box-area .content {
  margin-top: 150px;
  max-width: 235px;
}
@media (max-width: 767px) {
  .audience-wrapper .audience-right .counter-box-area .content {
    margin-top: 30px;
  }
}
.audience-wrapper .audience-right .counter-box-area .content h4 {
  margin-bottom: 10px;
  color: var(--gt-header3);
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.audience-wrapper .audience-right .counter-box-area .content p {
  font-size: 16px;
  color: var(--gt-text2);
}

.gt-software-integration-wrapper .gt-software-integration-frame {
  max-width: 381px;
  margin: 0 auto;
  height: 776px;
  line-height: 776px;
  text-align: center;
  overflow: hidden;
}
.gt-software-integration-wrapper .gt-software-integration-frame .gt-software-thumb {
  max-width: 347px;
  margin: 0 auto;
  overflow: hidden;
}
.gt-software-integration-wrapper .gt-software-integration-frame .gt-software-thumb img {
  border-radius: 37px;
  width: 100%;
  height: 100%;
}
.gt-software-integration-wrapper .gt-software-integration-content .software-text {
  margin-top: 25px;
  color: var(--gt-header3);
}
.gt-software-integration-wrapper .gt-software-integration-content .gt-list-items {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .gt-software-integration-wrapper .gt-software-integration-content .gt-list-items {
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 25px;
  }
}
.gt-software-integration-wrapper .gt-software-integration-content .gt-list-items ul li {
  font-size: 17px;
  color: var(--gt-header3);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.gt-software-integration-wrapper .gt-software-integration-content .gt-list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}
.gt-software-integration-wrapper .gt-software-integration-content .gt-list-items ul li i {
  color: var(--gt-theme4);
  margin-right: 10px;
}

.case-studies-card-items {
  margin-top: 30px;
}
.case-studies-card-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.case-studies-card-items .content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.case-studies-card-items .content .title h3 {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.case-studies-card-items .content .title h3 a {
  color: var(--gt-header3);
}
.case-studies-card-items .content .title h3 a:hover {
  color: var(--gt-theme);
}
.case-studies-card-items .content .title p {
  font-weight: 500;
  text-transform: capitalize;
}
.case-studies-card-items .content .icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  text-align: center;
  border-radius: 50%;
}
.case-studies-card-items .content .icon:hover {
  background-color: var(--gt-header);
  color: var(--gt-header3);
}

.project-details-wrapper .details-top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  padding-bottom: 40px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .details-top-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.project-details-wrapper .details-top-items .details-left h2 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
.project-details-wrapper .details-top-items .details-left .post-cat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.project-details-wrapper .details-top-items .details-left .post-cat li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--gt-header3);
  text-transform: capitalize;
  border: 1px solid rgba(155, 160, 163, 0.2);
  padding: 8px 15px;
  border-radius: 100px;
  line-height: 1;
}
.project-details-wrapper .details-top-items .details-left .post-cat li a:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}
.project-details-wrapper .details-top-items .details-right .client-details li {
  font-size: 16px;
  font-weight: 700;
  color: var(--gt-header3);
}
.project-details-wrapper .details-top-items .details-right .client-details li span {
  color: var(--gt-text);
  font-weight: 400;
}
.project-details-wrapper .project-details-content {
  margin-top: 30px;
}
.project-details-wrapper .project-details-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
@media (max-width: 767px) {
  .project-details-wrapper .project-details-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .project-details-content h3 {
    font-size: 28px;
  }
}
.project-details-wrapper .project-details-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.project-details-wrapper .project-details-content .list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .project-details-wrapper .project-details-content .list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.project-details-wrapper .project-details-content .list-items li {
  color: var(--gt-header3);
  text-transform: capitalize;
  position: relative;
}
.project-details-wrapper .project-details-content .list-items li span {
  padding-left: 25px;
  display: inline-block;
}
.project-details-wrapper .project-details-content .list-items li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--gt-theme);
}
.project-details-wrapper .project-details-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items {
  width: 100%;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  color: var(--gt-header3);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--gt-header3);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items .progress {
  background: #F6F3FE;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--gt-theme);
  height: 8px;
  width: 0;
}
.project-details-wrapper .project-details-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.slider-button {
  border-top: 1px solid rgba(155, 160, 163, 0.2);
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  margin-top: 65px;
  padding: 25px 0;
}
.slider-button .cmn-next,
.slider-button .cmn-prev {
  width: 70px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid rgba(155, 160, 163, 0.2);
}
.slider-button .cmn-next i,
.slider-button .cmn-prev i {
  color: #454750;
  font-size: 24px;
  transition: all 0.4s;
}
.slider-button .cmn-next:hover,
.slider-button .cmn-prev:hover {
  background: var(--gt-theme);
  border-color: var(--gt-theme);
}
.slider-button .cmn-next:hover i,
.slider-button .cmn-prev:hover i {
  color: var(--gt-white);
}
@media (max-width: 1399px) {
  .slider-button .cmn-next,
  .slider-button .cmn-prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .slider-button .cmn-next i,
  .slider-button .cmn-prev i {
    font-size: 17px;
  }
}
@media (max-width: 1399px) {
  .slider-button .cmn-next,
  .slider-button .cmn-prev {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
  .slider-button .cmn-next i,
  .slider-button .cmn-prev i {
    font-size: 16px;
  }
}
.slider-button .previus-text {
  font-size: 22px;
  color: var(--gt-header3);
}
@media (max-width: 575px) {
  .slider-button .previus-text {
    font-size: 18px;
  }
  .slider-button .project-storke {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .slider-button .previus-text {
    font-size: 16px;
  }
  .slider-button .project-storke {
    font-size: 24px;
  }
}
@media (max-width: 470px) {
  .slider-button .previus-text {
    font-size: 14px;
  }
  .slider-button .project-storke {
    display: none;
  }
}

.gt-feature-marqueee-slider {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9;
  height: 50px;
  text-transform: uppercase;
}

.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.gt-footer-widget-wrapper {
  padding: 50px 0 80px;
}
.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;
  padding-bottom: 20px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #FEBC5F 0%, #05111A 100%);
  border-bottom: 2px solid transparent;
  border-image-slice: 2;
  display: inline-block;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gt-white);
  font-family: "DM Sans", sans-serif;
  text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content {
  max-width: 400px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content p {
  color: #9BA0A3;
  font-weight: 500;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon {
  gap: 15px;
  margin-top: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-align: center;
  color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li {
  font-weight: 500;
  text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 16px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li a {
  color: #9BA0A3;
  font-size: 16px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover a {
  color: var(--gt-white);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-download-app {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .gt-footer-widget-wrapper .gt-footer-widget-items .gt-download-app {
    flex-wrap: wrap;
    display: inline-flex;
  }
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-download-app li {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #05111A;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px;
  width: 100%;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-download-app li .icon {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  max-width: 44px;
  width: 100%;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-download-app li .content {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-download-app li h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--gt-white);
  font-family: "DM Sans", sans-serif;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-widget-head {
  padding-bottom: 0;
  border: none;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-widget-head h3 {
  color: var(--gt-header2);
  color: #173401;
  font-family: "DM Sans", sans-serif;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-footer-content p {
  color: #173401;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-footer-content .gt-social-icon a {
  border-radius: 6px;
  border: 1px solid rgba(23, 52, 1, 0.2);
  color: #173401;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover {
  background-color: #173401;
  color: var(--gt-white);
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-list-area li {
  font-family: "DM Sans", sans-serif;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-list-area li a {
  color: #173401;
}
.gt-footer-widget-wrapper.style-2 .gt-footer-widget-items .gt-list-area li:hover a {
  color: #173401;
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-widget-head {
  padding-bottom: 0;
  border: none;
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-widget-head h3 {
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-footer-content p {
  color: #686866;
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-footer-content .gt-social-icon a {
  border-radius: 4px;
  border: 1px solid rgba(5, 17, 26, 0.2);
  color: var(--gt-header3);
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover {
  background-color: var(--gt-theme3);
  color: var(--gt-white);
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-list-area li {
  font-family: "DM Sans", sans-serif;
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-list-area li a {
  color: #686866;
}
.gt-footer-widget-wrapper.style-3 .gt-footer-widget-items .gt-list-area li:hover a {
  color: var(--gt-theme3);
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-widget-head {
  padding-bottom: 0;
  border: none;
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-widget-head h3 {
  color: var(--gt-white);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-footer-content p {
  color: #fff;
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-footer-content .gt-social-icon a {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gt-white);
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover {
  background-color: var(--gt-theme3);
  color: var(--gt-white);
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-list-area li {
  font-family: "DM Sans", sans-serif;
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-list-area li a {
  color: #fff;
}
.gt-footer-widget-wrapper.style-4 .gt-footer-widget-items .gt-list-area li:hover a {
  color: var(--gt-white);
}

.gt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
.gt-footer-bottom p {
  text-align: center;
  font-weight: 500;
  color: #9BA0A3;
}
.gt-footer-bottom p b {
  color: #FEBC5F;
}

.gt-footer-top-wrapper {
  padding: 43px 42px;
  background-color: var(--gt-white);
  border-radius: 20px;
  border: 2px solid var(--gt-theme2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-footer-top-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}
.gt-footer-top-wrapper p {
  margin-top: 10px;
}
.gt-footer-top-wrapper form {
  max-width: 800px;
  width: 100%;
}
.gt-footer-top-wrapper form .form-clt {
  position: relative;
}
.gt-footer-top-wrapper form .form-clt i {
  position: absolute;
  left: 30px;
  top: 26px;
  color: #173401;
}
.gt-footer-top-wrapper form .form-clt input {
  border-radius: 100px;
  background: #ECEDEA;
  width: 100%;
  outline: none;
  border: none;
  text-transform: capitalize;
  color: var(--gt-text);
  padding: 24px 65px;
  line-height: 1;
}
.gt-footer-top-wrapper form .form-clt .gt-theme-btn {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  background-color: var(--gt-theme2);
  color: var(--gt-header2);
}
@media (max-width: 575px) {
  .gt-footer-top-wrapper form .form-clt .gt-theme-btn {
    position: static;
    margin-top: 20px;
  }
}
.gt-footer-top-wrapper form .form-clt .gt-theme-btn::before {
  background-color: var(--gt-header2);
}
.gt-footer-top-wrapper form .form-clt .gt-theme-btn:hover {
  color: var(--gt-white);
}

.gt-footer-bottom-2 {
  border-top: 1px solid rgba(23, 52, 1, 0.2);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .gt-footer-bottom-2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
}
.gt-footer-bottom-2 .gt-footer-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .gt-footer-bottom-2 .gt-footer-list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.gt-footer-bottom-2 .gt-footer-list li {
  font-size: 16px;
  font-weight: 400;
}
.gt-footer-bottom-2 .gt-footer-list li a {
  color: #173401;
}
.gt-footer-bottom-2 p {
  color: #173401;
}

.gt-footer-section-3 {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #D7E0FF 100%);
}

.gt-cta-section-3 {
  position: relative;
  z-index: 9;
}
.gt-cta-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #EDF1FF;
  height: 50%;
  z-index: -1;
}

.gt-footer-bottom-3 {
  border-top: 1px solid rgba(5, 17, 26, 0.2);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .gt-footer-bottom-3 {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.gt-footer-bottom-3 p {
  color: var(--gt-text2);
}
.gt-footer-bottom-3.style-4 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.gt-footer-bottom-3.style-4 p {
  color: var(--gt-white);
}
.gt-footer-bottom-3 .gt-social-icon {
  gap: 15px;
}
.gt-footer-bottom-3 .gt-social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-align: center;
  color: var(--gt-white);
}
.gt-footer-bottom-3 .gt-social-icon a:hover {
  background-color: var(--gt-theme3);
  color: var(--gt-white);
}
.gt-footer-bottom-3 .gt-social-icon.style-home-3 a {
  border: 1px solid rgba(104, 104, 102, 0.2);
  color: var(--gt-header3);
}
.gt-footer-bottom-3 .gt-social-icon.style-home-3 a:hover {
  color: var(--gt-white);
}

.footer-widgets-wrapper-5 {
  padding: 50px 0 80px;
}
.footer-widgets-wrapper-5 .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper-5 .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper-5 .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper-5 .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--gt-white);
  font-size: 22px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer-widgets-wrapper-5 .single-footer-widget .widget-head h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--gt-white);
}
.footer-widgets-wrapper-5 .single-footer-widget .widget-head h3::after {
  position: absolute;
  bottom: 0;
  left: 25px;
  content: "";
  width: 83px;
  height: 2px;
  background-color: var(--gt-theme5);
}
@media (max-width: 767px) {
  .footer-widgets-wrapper-5 .single-footer-widget .widget-head h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper-5 .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 10px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper-5 .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--gt-theme5);
  color: var(--gt-white);
  border: 1px solid var(--gt-theme5);
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .contact-info {
  margin-top: 20px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .contact-info li {
  color: var(--gt-text2);
  font-weight: 400;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .contact-info li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .contact-info li i {
  font-size: 16px;
  color: var(--gt-white);
  margin-right: 10px;
  font-size: 20px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .contact-info li a {
  color: var(--gt-white);
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .footer-input input {
  background: var(--gt-white);
  border: none;
  outline: none;
  padding: 16px 20px;
  width: 100%;
  border-radius: 8px;
  color: var(--gt-text2);
  text-transform: capitalize;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--gt-text2);
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--gt-theme5);
  color: var(--gt-white);
  bottom: 5px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .footer-input .newsletter-btn i {
  font-size: 18px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .form-check {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 25px;
}
.footer-widgets-wrapper-5 .single-footer-widget .footer-content .form-check a {
  color: var(--gt-white);
  text-decoration: underline;
}
.footer-widgets-wrapper-5 .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 500;
}
.footer-widgets-wrapper-5 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper-5 .single-footer-widget .list-area li a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widgets-wrapper-5 .single-footer-widget .list-area li a i {
  margin-right: 5px;
}
.footer-widgets-wrapper-5 .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widgets-wrapper-5 .single-footer-widget .list-area li:hover a {
  color: var(--gt-white);
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .thumb {
  width: 80px;
  height: 80px;
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
  margin-bottom: 5px;
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .content h6 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
  color: var(--gt-white);
}
.footer-widgets-wrapper-5 .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--gt-theme5);
}
.footer-widgets-wrapper-5 .single-footer-widget .contact-list li {
  color: #DADADA;
}
.footer-widgets-wrapper-5 .single-footer-widget .contact-list li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper-5 .single-footer-widget .contact-list li a {
  color: #F5F5F5;
}

.footer-bottom-5 {
  background-color: var(--gt-theme5);
  padding: 30px 0;
  position: relative;
}
@media (max-width: 767px) {
  .footer-bottom-5 .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
  }
}
.footer-bottom-5 .footer-wrapper p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom-5 .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-5 .footer-wrapper .footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  background-image: linear-gradient(var(--gt-white), var(--gt-white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.footer-bottom-5 .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
  color: var(--gt-white);
}
.footer-bottom-5 .scroll-icon {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  line-height: 60px;
  background-color: var(--gt-theme5);
  border-radius: 50%;
  text-align: center;
  color: var(--gt-white);
  border: 5px solid var(--gt-white);
  display: inline-block;
  z-index: 99;
}
@media (max-width: 1399px) {
  .footer-bottom-5 .scroll-icon {
    left: 50%;
  }
}

.footer-section-5 {
  background-color: #18185E;
}

.gt-cta-footer-wrap-4 {
  padding: 60px;
  border-radius: 20px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  padding-top: 16px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gt-cta-footer-wrap-4 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    justify-content: center;
  }
  .gt-cta-footer-wrap-4 .gt-mobile {
    display: none;
  }
}
.gt-cta-footer-wrap-4 .footer-counter {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .gt-cta-footer-wrap-4 .footer-counter {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
.gt-cta-footer-wrap-4 .footer-counter .counter-text {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.gt-cta-footer-wrap-4 .footer-counter .counter-text.border-right-none {
  padding-right: 0;
  border-right: none;
}
.gt-cta-footer-wrap-4 .footer-counter .counter-text h2 {
  font-size: 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
}
.gt-cta-footer-wrap-4 .footer-counter .counter-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gt-white);
}
.gt-cta-footer-wrap-4 .app-button {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 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: 50px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.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-white);
  font-family: "DM Sans", 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: var(--gt-theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  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: 3px solid var(--gt-theme);
  background-color: #0B0E13;
  box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
}
.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: var(--gt-theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--gt-theme) !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: var(--gt-theme) !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: var(--gt-theme);
}
.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: var(--gt-theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -90px;
  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%);
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  text-align: center;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 5px 15px;
  color: var(--gt-white) !important;
  min-width: 140px;
  width: 100%;
  text-align: center;
  justify-content: center;
  background: var(--gt-theme) !important;
  border-radius: 6px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--gt-header) !important;
  color: var(--gt-header3) !important;
}
.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: "DM Sans", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--gt-theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--gt-theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-1 .header-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .header-1 .header-button {
    display: none;
  }
}
.header-1 .header-button .gt-theme-btn {
  padding: 17px 24px;
  color: #fff;
  border-radius: 10px;
  border: 2px solid rgba(155, 160, 163, 0.2);
  background: transparent;
}
.header-1 .header-button .gt-theme-btn.style-bg {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  padding: 19px 24px;
}
.header-1 .header-button .gt-theme-btn.style-bg::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: #05111A;
  z-index: -1;
  border-radius: 10px;
}
.header-1 .header-button .gt-theme-btn.style-bg:hover {
  background: transparent;
}
.header-1 .header-button .gt-theme-btn.style-bg:hover::after {
  display: none;
}
.header-1 .sidebar__toggle {
  cursor: pointer;
}
.header-1 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .header-1 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.header-1 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--gt-white);
  overflow: hidden;
}
.header-1 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--gt-white);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .header-1 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.header-1 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--gt-white);
  width: 40px;
}
@media (max-width: 470px) {
  .header-1 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.header-1 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-1 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-2 .header-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .header-2 .header-button {
    display: none;
  }
}
.header-2 .header-button .gt-theme-btn {
  padding: 18px 32px;
}
.header-2 .header-button .gt-theme-btn.bg-border {
  background: transparent;
  border: 1px solid var(--gt-theme2);
  padding: 18px 34px;
}
.header-2 .header-button .gt-theme-btn.bg-theme {
  background-color: var(--gt-theme2);
  color: var(--gt-header2);
}
.header-2 .header-button .gt-theme-btn.bg-theme::before {
  background-color: var(--gt-white);
}
.header-2 .header-main .main-menu ul li a:hover {
  color: var(--gt-theme2) !important;
}
.header-2 .header-main .main-menu ul li .submenu {
  color: var(--gt-header);
  border-top: 3px solid var(--gt-theme2);
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--gt-header2);
}
.header-2 .header-main .main-menu ul li .submenu li a::before {
  background: var(--gt-theme2);
}
.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--gt-theme2) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--gt-theme2) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--gt-theme2);
}
.header-2 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--gt-theme2);
}
.header-2 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  color: var(--gt-header3) !important;
  background: var(--gt-theme2) !important;
}
.header-2 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--gt-header) !important;
  color: var(--gt-header3) !important;
}
.header-2 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  color: var(--gt-header3);
}
.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--gt-theme2);
}
.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--gt-theme2);
}
.header-2 .sidebar__toggle {
  cursor: pointer;
}
.header-2 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .header-2 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.header-2 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--gt-white);
  overflow: hidden;
}
.header-2 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--gt-white);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .header-2 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.header-2 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--gt-white);
  width: 40px;
}
@media (max-width: 470px) {
  .header-2 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.header-2 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-2 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-2 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-2 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-3 {
  position: relative;
}
.header-3 .header-main .main-menu ul li a {
  color: var(--gt-header3);
}
.header-3 .header-main .main-menu ul li a:hover {
  color: var(--gt-theme3) !important;
}
.header-3 .header-main .main-menu ul li .submenu {
  color: var(--gt-header);
  border-top: 3px solid var(--gt-theme3);
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--gt-header3);
}
.header-3 .header-main .main-menu ul li .submenu li a::before {
  background: var(--gt-theme3);
}
.header-3 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--gt-theme3) !important;
}
.header-3 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--gt-theme3) !important;
}
.header-3 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--gt-theme3);
}
.header-3 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--gt-theme3);
}
.header-3 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  color: var(--gt-white) !important;
  background: var(--gt-theme3) !important;
}
.header-3 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--gt-header) !important;
  color: var(--gt-header3) !important;
}
.header-3 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  color: var(--gt-header3);
}
.header-3 .header-main .main-menu ul li:hover > a {
  color: var(--gt-theme3);
}
.header-3 .header-main .main-menu ul li:hover > a::after {
  color: var(--gt-theme3);
}
.header-3 .header-button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
}
@media (max-width: 1199px) {
  .header-3 .header-button {
    display: none;
  }
}
.header-3 .header-button .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.header-3 .header-button .gt-theme-btn:hover {
  color: var(--gt-white);
}
.header-3 .header-button .gt-theme-btn.bg-border {
  background: transparent;
  border-radius: 6px;
  border: 1px solid rgba(5, 17, 26, 0.2);
  color: var(--gt-header3);
}
.header-3 .header-button .gt-theme-btn.bg-border::before {
  background-color: var(--gt-theme3);
}
.header-3 .header-button .gt-theme-btn.bg-border:hover {
  color: var(--gt-white);
}
.header-3 .sidebar__toggle {
  cursor: pointer;
}
.header-3 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .header-3 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.header-3 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--gt-header3);
  overflow: hidden;
}
.header-3 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--gt-header3);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .header-3 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.header-3 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--gt-header3);
  width: 40px;
}
@media (max-width: 470px) {
  .header-3 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.header-3 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-3 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-3 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-3 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-4 {
  position: absolute;
  z-index: 9999;
  left: 0;
  width: 100%;
}
.header-4 .header-main .main-menu ul li a {
  color: var(--gt-header3);
}
.header-4 .header-main .main-menu ul li a:hover {
  color: var(--gt-theme4) !important;
}
.header-4 .header-main .main-menu ul li .submenu {
  color: var(--gt-header);
  border-top: 3px solid var(--gt-theme4);
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--gt-header3);
}
.header-4 .header-main .main-menu ul li .submenu li a::before {
  background: var(--gt-theme4);
}
.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--gt-theme4) !important;
}
.header-4 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--gt-theme4) !important;
}
.header-4 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--gt-theme4);
}
.header-4 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--gt-theme4);
}
.header-4 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  color: var(--gt-white) !important;
  background: var(--gt-theme4) !important;
}
.header-4 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--gt-header) !important;
  color: var(--gt-header3) !important;
}
.header-4 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  color: var(--gt-header3);
}
.header-4 .header-main .main-menu ul li:hover > a {
  color: var(--gt-theme4);
}
.header-4 .header-main .main-menu ul li:hover > a::after {
  color: var(--gt-theme4);
}
.header-4 .header-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .header-4 .header-button {
    display: none;
  }
}
.header-4 .header-button .gt-theme-btn {
  padding: 18px 32px;
}
.header-4 .header-button .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.header-4 .header-button .gt-theme-btn:hover {
  color: var(--gt-white);
}
.header-4 .header-button .gt-theme-btn.bg-border {
  background: transparent;
  border-radius: 6px;
  border: 1px solid rgba(5, 17, 26, 0.2);
  color: var(--gt-header3);
}
.header-4 .header-button .gt-theme-btn.bg-border::before {
  background-color: var(--gt-theme4);
}
.header-4 .header-button .gt-theme-btn.bg-border:hover {
  color: var(--gt-white);
}
.header-4 .header-button .gt-theme-btn.bg-theme {
  background-color: var(--gt-theme4);
}
.header-4 .sidebar__toggle {
  cursor: pointer;
}
.header-4 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .header-4 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.header-4 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--gt-header3);
  overflow: hidden;
}
.header-4 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--gt-header3);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .header-4 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.header-4 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--gt-header3);
  width: 40px;
}
@media (max-width: 470px) {
  .header-4 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.header-4 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-4 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-4 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-4 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.header-5 .header-logo {
  display: none;
}
.header-5 .header-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .header-5 .header-button {
    display: none;
  }
}
.header-5 .header-button .gt-theme-btn {
  padding: 16px 32px;
}
.header-5 .header-button .gt-theme-btn.bg-border {
  background: transparent;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gt-white);
}
.header-5 .header-button .gt-theme-btn.bg-border:hover {
  color: var(--gt-header3);
}
.header-5 .header-button .gt-theme-btn.bg-theme {
  background-color: #A0EA71;
  color: var(--gt-header3);
}
.header-5 .header-main .main-menu ul li a {
  color: var(--gt-white);
}
.header-5 .header-main .main-menu ul li a:hover {
  color: var(--gt-white) !important;
}
.header-5 .header-main .main-menu ul li .submenu {
  color: var(--gt-header);
  border-top: 3px solid var(--gt-theme5);
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-5 .header-main .main-menu ul li .submenu li a {
  color: var(--gt-header3);
}
.header-5 .header-main .main-menu ul li .submenu li a::before {
  background: var(--gt-theme5);
}
.header-5 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--gt-theme5) !important;
}
.header-5 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--gt-theme5) !important;
}
.header-5 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--gt-theme5);
}
.header-5 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--gt-theme5);
}
.header-5 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  color: var(--gt-white) !important;
  background: var(--gt-theme5) !important;
}
.header-5 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--gt-header) !important;
  color: var(--gt-header3) !important;
}
.header-5 .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  color: var(--gt-header3);
}
.header-5 .sidebar__toggle {
  cursor: pointer;
}
.header-5 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .header-5 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.header-5 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--gt-header);
  overflow: hidden;
}
.header-5 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--gt-header);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .header-5 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.header-5 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--gt-header);
  width: 40px;
}
@media (max-width: 470px) {
  .header-5 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.header-5 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-5 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-5 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-5 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 {
  background-color: #0B0E13;
  -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(0, 0, 0, 0.9) 0px 8px 24px;
}
.sticky.header-2 {
  background-color: #0B0E13;
  box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
}
.sticky.header-3 {
  background-color: var(--gt-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 9999;
}
.sticky.header-4 {
  background: var(--gt-white) !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-5 {
  background-color: var(--gt-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-5 .header-logo {
  display: block;
}
.sticky.header-5 .white-logo {
  display: none;
}
.sticky.header-5 .main-menu ul li a {
  color: var(--gt-header3);
}
.sticky.header-5 .main-menu ul li a:hover {
  color: var(--gt-theme5) !important;
}
.sticky.header-5 .main-menu ul li .submenu {
  color: var(--gt-header);
  border-top: 3px solid var(--gt-theme5);
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.sticky.header-5 .main-menu ul li .submenu li a {
  color: var(--gt-header3);
}
.sticky.header-5 .main-menu ul li .submenu li a::before {
  background: var(--gt-theme5);
}
.sticky.header-5 .main-menu ul li .submenu li a:hover {
  color: var(--gt-theme5) !important;
}
.sticky.header-5 .main-menu ul li .submenu li:hover > a {
  color: var(--gt-theme5) !important;
}
.sticky.header-5 .main-menu ul li .submenu li:hover > a::after {
  color: var(--gt-theme5);
}
.sticky.header-5 .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--gt-theme5);
}
.sticky.header-5 .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  color: var(--gt-white) !important;
  background: var(--gt-theme5) !important;
}
.sticky.header-5 .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--gt-header) !important;
  color: var(--gt-header3) !important;
}
.sticky.header-5 .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  color: var(--gt-header3);
}
.sticky.header-5 .main-menu ul li:hover > a {
  color: var(--gt-theme5);
}
.sticky.header-5 .main-menu ul li:hover > a::after {
  color: var(--gt-theme5);
}
.sticky.header-5 .header-button .gt-theme-btn.bg-border {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--gt-header3);
}
.sticky.header-5 .header-button .gt-theme-btn.bg-border::before {
  background-color: var(--gt-theme5);
}
.sticky.header-5 .header-button .gt-theme-btn.bg-border:hover {
  color: var(--gt-header);
}
.sticky.header-5 .header-button .gt-theme-btn.bg-theme::before {
  background-color: var(--gt-header3);
}
.sticky.header-5 .header-button .gt-theme-btn.bg-theme:hover {
  color: var(--gt-white);
}
.sticky.header-5 .sidebar__toggle {
  cursor: pointer;
}
.sticky.header-5 .sidebar__toggle .header-bar {
  position: relative;
  width: 40px;
  height: 11px;
}
@media (max-width: 470px) {
  .sticky.header-5 .sidebar__toggle .header-bar {
    width: 25px;
  }
}
.sticky.header-5 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--gt-header3);
  overflow: hidden;
}
.sticky.header-5 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--gt-header3);
  left: 0;
  width: 40px;
}
@media (max-width: 470px) {
  .sticky.header-5 .sidebar__toggle .header-bar span:first-child {
    width: 25px;
  }
}
.sticky.header-5 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--gt-header3);
  width: 40px;
}
@media (max-width: 470px) {
  .sticky.header-5 .sidebar__toggle .header-bar span:last-child {
    width: 25px;
  }
}
.sticky.header-5 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.sticky.header-5 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.sticky.header-5 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.sticky.header-5 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.offcanvas__info {
  background-color: #0B0E13;
  box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
  border-left: 2px solid var(--gt-theme);
  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: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
@media (max-width: 575px) {
  .offcanvas__info .offcanvas__logo img {
    width: 140px;
  }
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info.style-2 {
  background-color: var(--gt-white) !important;
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__close {
  background-color: var(--gt-theme2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--gt-header2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--gt-header2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--gt-theme2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__info.style-2 .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: transparent;
  color: var(--gt-header2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(121, 113, 113, 0.2) !important;
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--gt-theme2);
  color: var(--gt-header2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .gt-theme-btn {
  background: var(--gt-theme2);
  color: var(--gt-header2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::after {
  display: none;
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::before {
  background-color: var(--gt-header2);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover {
  background: transparent;
  color: var(--gt-white);
}
.offcanvas__info.style-2 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover::after {
  display: none;
}
.offcanvas__info.style-3 {
  background-color: var(--gt-white) !important;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__close {
  background-color: var(--gt-theme3);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--gt-white);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--gt-header2);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--gt-theme3);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__info.style-3 .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: transparent;
  color: var(--gt-header2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(121, 113, 113, 0.2) !important;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--gt-theme3);
  color: var(--gt-white);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .gt-theme-btn {
  background: var(--gt-theme3);
  color: var(--gt-white);
  border-radius: 6px;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::after {
  display: none;
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover {
  background: transparent;
  color: var(--gt-white);
}
.offcanvas__info.style-3 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover::after {
  display: none;
}
.offcanvas__info.style-4 {
  background-color: var(--gt-white) !important;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__close {
  background-color: var(--gt-theme4);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--gt-white);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--gt-header3);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--gt-theme4);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__info.style-4 .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: transparent;
  color: var(--gt-header3);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(121, 113, 113, 0.2) !important;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--gt-theme4);
  color: var(--gt-white);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .gt-theme-btn {
  background: var(--gt-theme4);
  color: var(--gt-white);
  border-radius: 6px;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::after {
  display: none;
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover {
  background: transparent;
  color: var(--gt-white);
}
.offcanvas__info.style-4 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover::after {
  display: none;
}
.offcanvas__info.style-5 {
  background-color: var(--gt-white) !important;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__close {
  background-color: var(--gt-theme5);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--gt-white);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--gt-header3);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--gt-theme5);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__info.style-5 .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: transparent;
  color: var(--gt-header3);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(121, 113, 113, 0.2) !important;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--gt-theme5);
  color: var(--gt-white);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .gt-theme-btn {
  background: var(--gt-theme5);
  color: var(--gt-white);
  border-radius: 6px;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::after {
  display: none;
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover {
  background: transparent;
  color: var(--gt-white);
}
.offcanvas__info.style-5 .offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover::after {
  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 h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--gt-text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--gt-theme);
  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;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--gt-white);
}
.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: var(--gt-theme);
}
.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: transparent;
  color: var(--gt-header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(121, 113, 113, 0.2) !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}
.offcanvas__wrapper .offcanvas__content .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
  font-size: 16px;
  padding: 20px;
  width: 100%;
  text-align: center;
}
.offcanvas__wrapper .offcanvas__content .gt-theme-btn::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: #000;
  z-index: -1;
  border-radius: 10px;
}
.offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover {
  background: transparent;
}
.offcanvas__wrapper .offcanvas__content .gt-theme-btn:hover::after {
  display: none;
}

.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 .gt-page-heading {
  position: relative;
  padding: 200px 0 120px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading {
    text-align: center;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
  color: var(--gt-white);
  font-size: 72px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.36px;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 767px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .gt-breadcrumb-wrapper .gt-page-heading h1 {
    font-size: 40px;
  }
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
@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: var(--gt-theme);
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
  color: var(--gt-theme);
  margin-right: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
  color: var(--gt-white);
}
.gt-breadcrumb-wrapper .gt-breadcrumb-image {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 140px;
}
@media (max-width: 1600px) {
  .gt-breadcrumb-wrapper .gt-breadcrumb-image {
    right: 30px;
  }
}
@media (max-width: 1199px) {
  .gt-breadcrumb-wrapper .gt-breadcrumb-image {
    display: none;
  }
}
.gt-breadcrumb-wrapper .breadcrumb-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.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;
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.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: var(--gt-theme);
}

.gt-coming-soon-items {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .gt-coming-soon-items {
    margin-bottom: 0;
  }
}
.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: var(--gt-theme);
}
@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: var(--gt-theme);
  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;
  }
}

.gt-error-items {
  text-align: center;
}
.gt-error-items .gt-error-image {
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .gt-error-items .gt-error-image {
    margin-bottom: 40px;
  }
}
.gt-error-items .gt-error-image img {
  width: 100%;
  height: 100%;
}
.gt-error-items h2 {
  margin-bottom: 20px;
  font-size: 56px;
  font-style: italic;
}
.gt-error-items p {
  margin-bottom: 48px;
}
@media (max-width: 1199px) {
  .gt-error-items p {
    margin-bottom: 30px;
  }
}
.gt-error-items .gt-theme-btn {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
  border: none;
}
.gt-error-items .gt-theme-btn::after {
  background: linear-gradient(90deg, #6B41FF 0%, #EA4BFF 52.98%, #FEBC5F 100%);
}

.header-top-3 {
  background-color: #05111A;
  text-align: center;
  padding: 12px 0;
  position: relative;
  z-index: 99;
}
.header-top-3 p {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: rgb(255, 255, 255);
}
.header-top-3 p a {
  display: inline-block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 10px;
  line-height: 1;
  margin-left: 10px;
}
.header-top-3 p a:hover {
  background-color: var(--gt-theme3);
}

.header-3 {
  position: relative;
  z-index: 99;
}

::-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: var(--gt-theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(170, 132, 83, 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;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 14px;
}
.array-button.style-5 .array-prev {
  background-color: var(--gt-theme5);
  border: 1px solid var(--gt-theme5);
  color: var(--gt-white);
}
.array-button.style-5 .array-prev:hover {
  background-color: var(--gt-header3);
}
.array-button.style-5 .array-next:hover {
  background-color: var(--gt-theme5);
}
.array-button.style-5 .array-next:hover:hover {
  color: var(--gt-white);
}

.array-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #173401;
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  border: 1px solid #173401;
}
.array-prev:hover {
  background-color: var(--gt-theme2);
  color: var(--gt-header2);
  border: 1px solid var(--gt-theme2);
}

.array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: transparent;
  color: #173401;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  border: 1px solid rgba(23, 52, 1, 0.2);
}
.array-next:hover {
  background-color: var(--gt-theme2);
  color: var(--gt-header2);
  border: 1px solid var(--gt-theme2);
}

.swiper-dot {
  position: relative;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #9BA0A3;
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #173401;
  transition: 0.6s;
  position: relative;
}
.swiper-dot.bg-color-4 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #9BA0A3;
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot.bg-color-4 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}
.swiper-dot.bg-color-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E77096;
  transition: 0.6s;
  position: relative;
}

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

.inner-font {
  font-family: "Manrope", sans-serif !important;
}
.inner-font span {
  font-family: "Manrope", sans-serif !important;
  font-weight: 700 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fz-50 {
  font-size: 50px;
}
@media (max-width: 767px) {
  .fz-50 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .fz-50 {
    font-size: 32px;
  }
}

.mtt-30 {
  margin-top: 30px !important;
}
@media (max-width: 1199px) {
  .mtt-30 {
    margin-top: 0 !important;
  }
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--gt-theme);
  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: #000;
  color: var(--gt-header);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--gt-theme);
  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: var(--gt-header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--gt-white);
}

.body-bg {
  background-color: #05111A;
}

.body-bg-2 {
  background-color: #EDF1FF;
}

.bor-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}

.black-bg {
  background-color: #000;
}

.text-theme-color-2 {
  color: var(--gt-theme2) !important;
}

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

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

.swiper-dot-2 {
  text-align: center;
}
.swiper-dot-2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  transition: 0.6s;
  background-color: #686866;
  border-radius: 30px;
  opacity: 1;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E77096;
  border: 1px solid #E77096;
  transition: 0.6s;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #E77096;
  width: 23px;
  height: 23px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.swiper-dot-2.style-2 {
  transform: rotate(90deg);
  margin-left: 100px;
}
.swiper-dot-2.style-2 .swiper-pagination-bullet {
  background-color: #fff;
}
.swiper-dot-2.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E77096;
  border: 1px solid #E77096;
  transition: 0.6s;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 30px;
}
.swiper-dot-2.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid #E77096;
  width: 23px;
  height: 23px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.text-header-color {
  color: var(--gt-header3) !important;
}

.text-body-color {
  color: var(--gt-text) !important;
}

.gt-hero-1 {
  padding: 180px 0 0;
  z-index: 9;
  position: relative;
  overflow: hidden;
}
.gt-hero-1 .robot-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
}
@media (max-width: 1600px) {
  .gt-hero-1 .robot-shape {
    max-width: 450px;
  }
  .gt-hero-1 .robot-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1399px) {
  .gt-hero-1 .robot-shape {
    display: none;
  }
}
.gt-hero-1 .left-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-hero-1 .left-shape {
    display: none;
  }
}
.gt-hero-1 .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.gt-hero-1 .gt-hero-items {
  position: relative;
  z-index: 9;
}
.gt-hero-1 .gt-hero-items .shape2 {
  position: absolute;
  top: -30px;
  right: -40px;
}
@media (max-width: 1399px) {
  .gt-hero-1 .gt-hero-items .shape2 {
    display: none;
  }
}
.gt-hero-1 .gt-hero-items .box-shape {
  position: absolute;
  top: -15%;
  left: 21%;
  z-index: -1;
}
.gt-hero-1 .gt-hero-items .gt-hero-content {
  max-width: 895px;
  margin: 0 auto 50px;
  text-align: center;
  z-index: 99;
}
.gt-hero-1 .gt-hero-items .gt-hero-content p {
  text-transform: uppercase;
  font-weight: 600;
}
.gt-hero-1 .gt-hero-items .gt-hero-content h1 {
  margin-bottom: 30px;
}
.gt-hero-1 .gt-hero-items .gt-hero-content h1 span {
  background: linear-gradient(90deg, #6B41FF 32.8%, #EA4BFF 57.18%, #FEBC5F 82.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  font-style: italic;
  font-weight: 400;
}
.gt-hero-1 .gt-hero-items .gt-hero-image {
  max-width: 1170px;
  text-align: center;
  margin: 0 auto;
  padding: 17px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 20px 20px 0px 0px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: -20px;
}
.gt-hero-1 .gt-hero-items .gt-hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
}

.gt-hero-2 {
  padding: 200px 0 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-hero-2 {
    padding: 140px 0;
  }
}
@media (max-width: 991px) {
  .gt-hero-2 {
    padding-bottom: 0;
  }
}
.gt-hero-2 .gt-hero-content h6 {
  font-size: 16px;
  color: var(--gt-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  z-index: 99;
}
@media (max-width: 575px) {
  .gt-hero-2 .gt-hero-content h6 {
    font-size: 14px;
  }
}
.gt-hero-2 .gt-hero-content h6 b {
  font-weight: 700;
  font-style: italic;
  color: var(--gt-theme2);
}
.gt-hero-2 .gt-hero-content h1 {
  font-size: 80px;
  font-weight: 700;
  font-family: "Sen", sans-serif;
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .gt-hero-2 .gt-hero-content h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .gt-hero-2 .gt-hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .gt-hero-2 .gt-hero-content h1 {
    font-size: 40px;
  }
}
.gt-hero-2 .gt-hero-content p {
  max-width: 655px;
  color: #ECEDEA;
  margin-top: 20px;
  position: relative;
  z-index: 99;
}
.gt-hero-2 .gt-hero-content .gt-hero-button {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .gt-hero-2 .gt-hero-content .gt-hero-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.gt-hero-2 .gt-hero-content .gt-hero-button .gt-theme-btn {
  border: 1px solid transparent;
}
.gt-hero-2 .gt-hero-content .gt-hero-button .gt-theme-btn.border-style {
  border: 1px solid var(--gt-theme2);
  background-color: transparent;
}
.gt-hero-2 .gt-hero-content .gt-hero-button .gt-theme-btn.border-style i {
  margin-left: 8px;
}
.gt-hero-2 .gt-hero-content .gt-counter-items {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 100px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .gt-hero-2 .gt-hero-content .gt-counter-items {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .gt-hero-2 .gt-hero-content .gt-counter-items {
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.gt-hero-2 .gt-hero-content .gt-counter-items .gt-counter {
  border-right: 1px solid rgba(236, 237, 234, 0.25);
  padding-right: 30px;
}
.gt-hero-2 .gt-hero-content .gt-counter-items .gt-counter h3 {
  font-size: 24px;
  font-weight: 800;
  font-family: "Sen", sans-serif;
}
.gt-hero-2 .gt-hero-content .gt-counter-items .gt-counter h5 {
  font-size: 16px;
  color: var(--gt-white);
  text-transform: capitalize;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  color: var(--gt-theme2);
  margin-top: 8px;
}
.gt-hero-2 .gt-hero-content .gt-counter-items .gt-counter.border-right-none {
  border-right: none;
  padding-right: 0;
}
.gt-hero-2 .gt-hero-image {
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .gt-hero-2 .gt-hero-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-hero-2 .hero-animated-bg {
  display: block;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 0;
  height: 100%;
  z-index: 0;
}
.gt-hero-2 .hero-animated-bg canvas {
  display: block;
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 0;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
}
.gt-hero-2 .hero-animated-bg.active canvas {
  opacity: 1;
}

.gt-hero-3 {
  position: relative;
  padding: 120px 0 0;
  z-index: 9;
}
.gt-hero-3 .hero-circle-shape {
  position: absolute;
  left: 10%;
  z-index: -1;
  top: 50px;
}
.gt-hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background: linear-gradient(101deg, #124AFF 0%, #05111A 100%);
  height: calc(100% - 237px);
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-hero-3::before {
    height: 100%;
  }
}
.gt-hero-3 .gt-hero-content {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
}
.gt-hero-3 .gt-hero-content h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 117%;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 1199px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 470px) {
  .gt-hero-3 .gt-hero-content h1 {
    font-size: 34px;
  }
}
.gt-hero-3 .gt-hero-content p {
  color: var(--gt-white);
  margin-top: 15px;
}
.gt-hero-3 .gt-hero-content form {
  max-width: 550px;
  width: 100%;
  margin: 50px auto 0;
  position: relative;
}
.gt-hero-3 .gt-hero-content form input {
  border: none;
  outline: none;
  width: 100%;
  border-radius: 6px;
  background: #F4F4F4;
  padding: 22px 30px;
  line-height: 1;
  color: var(--gt-text);
}
.gt-hero-3 .gt-hero-content form button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
}
.gt-hero-3 .gt-hero-content form .gt-theme-btn {
  border: none;
  color: var(--gt-white);
  text-transform: capitalize;
  padding: 19px 32px;
}
.gt-hero-3 .gt-hero-content form .gt-theme-btn::after {
  display: none;
}
.gt-hero-3 .gt-hero-content form .gt-theme-btn::before {
  background: var(--gt-theme3);
}
.gt-hero-3 .gt-hero-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}
@media (max-width: 1199px) {
  .gt-hero-3 .gt-hero-content ul {
    flex-wrap: wrap;
    justify-content: start;
  }
}
.gt-hero-3 .gt-hero-content ul li {
  color: var(--gt-white);
  font-weight: 500;
}
.gt-hero-3 .gt-hero-content ul li i {
  margin-right: 5px;
}
.gt-hero-3 .gt-hero-image {
  max-width: 1010px;
  margin: 30px auto 0;
  position: relative;
  z-index: 9;
}
.gt-hero-3 .gt-hero-image img {
  width: 100%;
  height: 100%;
}
.gt-hero-3 .gt-hero-image .gt-hero-left {
  position: absolute;
  max-width: 210px;
  position: absolute;
  top: 65px;
  left: -95px;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-hero-3 .gt-hero-image .gt-hero-left {
    left: -20px;
  }
}
@media (max-width: 1199px) {
  .gt-hero-3 .gt-hero-image .gt-hero-left {
    display: none;
  }
}
.gt-hero-3 .gt-hero-image .gt-hero-right {
  position: absolute;
  max-width: 210px;
  position: absolute;
  top: 65px;
  right: -95px;
  transform: rotate(0deg);
  z-index: -1;
  transition: transform 0.5s ease;
}
@media (max-width: 1399px) {
  .gt-hero-3 .gt-hero-image .gt-hero-right {
    right: -20px;
  }
}
@media (max-width: 1199px) {
  .gt-hero-3 .gt-hero-image .gt-hero-right {
    display: none;
  }
}

.gt-hero-4 {
  padding: 280px 0 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .gt-hero-4 {
    padding: 180px 0 0;
  }
}
@media (max-width: 991px) {
  .gt-hero-4 {
    padding: 150px 0 0;
  }
}
.gt-hero-4 .linear-color-1 {
  border-radius: 504px;
  background: rgba(68, 219, 253, 0.75);
  filter: blur(162px);
  width: 504px;
  height: 504px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .gt-hero-4 .linear-color-1 {
    display: none;
  }
}
.gt-hero-4 .star1 {
  position: absolute;
  left: 120px;
  top: 42%;
}
.gt-hero-4 .star2 {
  position: absolute;
  left: 65%;
  bottom: 40px;
}
.gt-hero-4 .star3 {
  position: absolute;
  left: 70%;
  top: 50%;
}
.gt-hero-4 .linear-color-2 {
  border-radius: 512px;
  background: #E77096;
  filter: blur(212px);
  width: 504px;
  height: 504px;
  position: absolute;
  top: 200px;
  right: 0;
  z-index: -1;
  width: 512px;
  height: 512px;
}
@media (max-width: 1399px) {
  .gt-hero-4 .linear-color-2 {
    display: none;
  }
}
.gt-hero-4 .gt-boy-image {
  position: absolute;
  bottom: 60px;
  left: 60px;
}
@media (max-width: 1199px) {
  .gt-hero-4 .gt-boy-image {
    display: none;
  }
}
.gt-hero-4 .gt-girl-image {
  position: absolute;
  top: 170px;
  right: 60px;
}
@media (max-width: 1199px) {
  .gt-hero-4 .gt-girl-image {
    display: none;
  }
}
.gt-hero-4 .circle-hero {
  position: absolute;
  top: 15%;
  left: 30%;
}
@media (max-width: 1399px) {
  .gt-hero-4 .circle-hero {
    display: none;
  }
}
.gt-hero-4 .hero-vec {
  position: absolute;
  bottom: 20%;
  left: 45%;
}
@media (max-width: 1399px) {
  .gt-hero-4 .hero-vec {
    display: none;
  }
}
.gt-hero-4 .gt-app-image {
  text-align: center;
  margin-top: -140px;
}
@media (max-width: 1199px) {
  .gt-hero-4 .gt-app-image {
    margin-top: 0;
  }
  .gt-hero-4 .gt-app-image img {
    width: 100%;
    height: 100%;
  }
}
.gt-hero-4 .gt-hero-content {
  position: relative;
  z-index: 99;
}
.gt-hero-4 .gt-hero-content h1 {
  color: var(--gt-header3);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 118%;
}
.gt-hero-4 .gt-hero-content h1 span {
  color: var(--gt-theme4);
  font-family: "Pacifico", cursive;
}
.gt-hero-4 .gt-hero-content p {
  color: var(--gt-header3);
  max-width: 550px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .gt-hero-4 .gt-hero-content p {
    margin-top: 15px;
  }
}
.gt-hero-4 .gt-hero-content .gt-hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .gt-hero-4 .gt-hero-content .gt-hero-btn {
    margin-top: 25px;
    flex-wrap: wrap;
  }
}
.gt-hero-4 .gt-hero-content .gt-hero-btn .gt-theme-btn.bg-white {
  color: var(--gt-header3);
}
.gt-hero-4 .gt-hero-content .gt-hero-btn .gt-theme-btn.bg-white::before {
  background-color: var(--gt-theme4);
}
.gt-hero-4 .gt-hero-content .gt-hero-btn .gt-theme-btn.bg-white:hover {
  color: var(--gt-white);
}
.gt-hero-4 .gt-hero-info {
  position: absolute;
  right: 255px;
  bottom: 100px;
}
@media (max-width: 1899px) {
  .gt-hero-4 .gt-hero-info {
    right: 40px;
  }
}
@media (max-width: 1399px) {
  .gt-hero-4 .gt-hero-info {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .gt-hero-4 .gt-hero-info {
    display: none;
  }
}
.gt-hero-4 .gt-hero-info .gt-info-img {
  border-radius: 70px;
  background: #FFF;
  display: inline-flex;
  padding: 12px;
  line-height: 1;
  align-items: center;
  gap: 12px;
}
.gt-hero-4 .gt-hero-info p {
  color: var(--gt-header3);
  max-width: 345px;
  margin-top: 30px;
}

.gt-hero-5 {
  padding: 250px 0 150px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .gt-hero-5 {
    padding: 160px 0 140px;
  }
}
@media (max-width: 767px) {
  .gt-hero-5 {
    padding: 140px 0 100px;
  }
}
.gt-hero-5 .power-shape {
  position: absolute;
  top: 100px;
  left: 70px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-hero-5 .power-shape {
    display: none;
  }
}
.gt-hero-5 .mike-shape {
  position: absolute;
  bottom: 135px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .gt-hero-5 .mike-shape {
    max-width: 500px;
  }
  .gt-hero-5 .mike-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .gt-hero-5 .mike-shape {
    display: none;
  }
}
.gt-hero-5 .tophy-shape {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gt-hero-5 .tophy-shape {
    display: none;
  }
}
.gt-hero-5 .mike-shape2 {
  position: absolute;
  bottom: 100px;
  left: 50%;
}
@media (max-width: 1199px) {
  .gt-hero-5 .mike-shape2 {
    display: none;
  }
}
.gt-hero-5 .marketing-shape {
  position: absolute;
  right: 25%;
  bottom: 30%;
}
@media (max-width: 1199px) {
  .gt-hero-5 .marketing-shape {
    display: none;
  }
}
.gt-hero-5 .gt-hero-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gt-white);
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 3.2px;
  line-height: 1;
  border: 1px solid var(--gt-white);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 10px 16px;
  margin-bottom: 30px;
}
.gt-hero-5 .gt-hero-content h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1600px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 81px;
  }
}
@media (max-width: 1399px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 81px;
  }
}
@media (max-width: 1199px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .gt-hero-5 .gt-hero-content h1 {
    font-size: 38px;
  }
}
.gt-hero-5 .gt-hero-content h1 span {
  color: #A0EA71;
}
.gt-hero-5 .gt-hero-content p {
  color: var(--gt-white);
  max-width: 500px;
  margin-top: 40px;
}
.gt-hero-5 .gt-hero-content .gt-hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .gt-hero-5 .gt-hero-content .gt-hero-btn {
    margin-top: 25px;
    flex-wrap: wrap;
  }
}
.gt-hero-5 .gt-hero-content .gt-hero-btn .gt-theme-btn {
  background-color: #A0EA71;
  color: var(--gt-header3);
}
.gt-hero-5 .gt-hero-content .gt-hero-btn .gt-theme-btn.bg-white {
  color: var(--gt-header3);
}
.gt-hero-5 .gt-hero-content .gt-hero-btn .gt-theme-btn.bg-white::before {
  background-color: #A0EA71;
}
.gt-hero-5 .gt-hero-content .gt-hero-btn .gt-theme-btn.bg-white:hover {
  color: var(--gt-header3);
}

.gt-pricing-section-2 {
  position: relative;
  z-index: 9;
}
.gt-pricing-section-2 .dot-shape {
  position: absolute;
  top: 10%;
  left: 100px;
  bottom: 0;
  z-index: -1;
}

.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) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(121, 113, 113, 0.2) !important;
  border: none;
  font-family: "DM Sans", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--gt-theme);
}

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

.mean-container .mean-nav ul li a:hover {
  color: var(--gt-theme);
}

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

.mobile-menu.style-2 .mean-nav ul li a {
  color: var(--gt-header2) !important;
}

.gt-news-box-items {
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid rgba(155, 160, 163, 0.25);
  background: var(--gt-white);
}
.gt-news-box-items .gt-news-thumb {
  padding: 20px;
  padding-bottom: 0;
}
.gt-news-box-items .gt-news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gt-news-box-items .gt-news-content {
  padding: 30px 20px;
}
.gt-news-box-items .gt-news-content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.gt-news-box-items .gt-news-content ul li {
  border-radius: 100px;
  border: 1px solid #173401;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Sen", sans-serif;
  color: #173401;
  display: inline-block;
  line-height: 1;
  padding: 8px 14px;
}
.gt-news-box-items .gt-news-content ul li a {
  color: #173401;
}
.gt-news-box-items .gt-news-content h3 {
  font-size: 20px;
}
.gt-news-box-items .gt-news-content h3 a {
  font-family: "Sen", sans-serif;
  color: #173401;
}
.gt-news-box-items .gt-news-content h3 a:hover {
  color: var(--gt-theme2);
}
.gt-news-box-items .gt-news-content p {
  margin-top: 10px;
}
.gt-news-box-items .gt-news-content .gt-theme-btn {
  border-radius: 100px;
  border: 1px solid #173401;
  background: transparent;
  color: #173401;
  padding: 18px 36px;
  margin-top: 30px;
}
.gt-news-box-items .gt-news-content .gt-theme-btn:hover {
  border: 1px solid var(--gt-theme2);
}

.gt-news-box-items-3 {
  margin-top: 30px;
}
.gt-news-box-items-3 .gt-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.gt-news-box-items-3 .gt-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gt-news-box-items-3 .gt-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.gt-news-box-items-3 .gt-content {
  margin-top: 20px;
}
.gt-news-box-items-3 .gt-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.gt-news-box-items-3 .gt-content ul li {
  font-size: 14px;
  font-weight: 600;
  color: var(--gt-text2);
  position: relative;
  padding-left: 14px;
}
.gt-news-box-items-3 .gt-content ul li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--gt-theme3);
}
.gt-news-box-items-3 .gt-content h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 160%;
  border-bottom: 1px solid rgba(5, 17, 26, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.gt-news-box-items-3 .gt-content h4 a {
  color: var(--gt-header3);
}
.gt-news-box-items-3 .gt-content h4 a:hover {
  color: var(--gt-theme3);
}
.gt-news-box-items-3 .gt-content span {
  font-weight: 600;
  font-size: 14px;
  color: var(--gt-text2);
}
.gt-news-box-items-3 .gt-content span img {
  margin-right: 10px;
}
.gt-news-box-items-3.style-3 {
  margin-top: 0;
}
.gt-news-box-items-3.style-3 h4 {
  font-family: "Montserrat", sans-serif;
}
.gt-news-box-items-3.style-3 h4 a:hover {
  color: var(--gt-theme4);
}
.gt-news-box-items-3.style-3 ul li::before {
  background-color: var(--gt-theme4);
}
.gt-news-box-items-3.style-bg ul li {
  color: var(--gt-header);
}
.gt-news-box-items-3.style-bg ul li::before {
  background-color: var(--gt-theme);
}
.gt-news-box-items-3.style-bg .gt-content h4 {
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
}
.gt-news-box-items-3.style-bg .gt-content h4 a {
  color: var(--gt-header);
}
.gt-news-box-items-3.style-bg .gt-content h4 a:hover {
  color: var(--gt-theme);
}
.gt-news-box-items-3.style-bg .gt-content span {
  color: var(--gt-white);
}
.gt-news-box-items-3.header-news-color .gt-content h4 {
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  font-size: 22px;
  font-weight: 400;
}
.gt-news-box-items-3.header-news-color .gt-content h4:hover {
  color: var(--gt-theme);
}
.gt-news-box-items-3:hover .gt-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.gt-news-box-items-3:hover .gt-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items-5 {
  margin-top: 30px;
  padding: 16px;
  background-color: var(--gt-white);
  border-radius: 16px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}
.news-box-items-5 .news-image {
  border-radius: 12px;
  overflow: hidden;
}
.news-box-items-5 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
}
.news-box-items-5 .news-content {
  padding: 25px 14px;
}
.news-box-items-5 .news-content .post-cat {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .news-box-items-5 .news-content .post-cat {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-box-items-5 .news-content .post-cat li {
  font-size: 14px;
  font-weight: 400;
}
.news-box-items-5 .news-content .post-cat li svg {
  margin-right: 5px;
}
.news-box-items-5 .news-content h5 {
  line-height: 140%;
  color: var(--gt-header3);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.news-box-items-5 .news-content h5 a {
  color: var(--gt-header3);
}
.news-box-items-5 .news-content h5 a:hover {
  color: var(--gt-theme);
}
.news-box-items-5 .news-content .news-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.news-box-items-5 .news-content .news-btn .link-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #535353;
  text-transform: capitalize;
}
.news-box-items-5 .news-content .news-btn .link-btn:hover {
  color: var(--gt-theme);
}
.news-box-items-5:hover .news-image img {
  transform: scale(1.1);
}

.news-section-5 {
  position: relative;
  z-index: 7;
  background-color: #F6F3FE;
}
.news-section-5 .container-fluid {
  padding: 0 175px;
}
@media (max-width: 1600px) {
  .news-section-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .news-section-5 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .news-section-5 .container-fluid {
    padding: 0 30px;
  }
}
.news-section-5 .left-shape {
  position: absolute;
  top: -180px;
  left: 0;
  z-index: -1;
}

.gt-news-wrapper-4 .gt-news-left .gt-news-text {
  color: #686866;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 435px;
  margin-bottom: 48px;
  margin-top: 25px;
}
.gt-news-wrapper-4 .gt-news-left .gt-theme-btn::before {
  background-color: var(--gt-header3);
}
.gt-news-wrapper-4 .gt-news-left .gt-theme-btn:hover {
  color: var(--gt-white);
}

.news-post-details .single-news-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
}
.news-post-details .single-news-post .post-content {
  margin-top: 30px;
}
.news-post-details .single-news-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  padding-bottom: 20px;
}
.news-post-details .single-news-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-post-details .single-news-post .post-content .post-list li i {
  color: var(--gt-theme);
  margin-right: 5px;
}
.news-post-details .single-news-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 30px;
  color: var(--gt-header3);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 575px) {
  .news-post-details .single-news-post .post-content h3 {
    font-size: 24px;
  }
}
.news-post-details .single-news-post .post-content h3 a:hover {
  color: var(--gt-theme);
}
.news-post-details .single-news-post .post-content p {
  font-weight: 400;
}
.news-post-details .single-news-post .post-content .hilight-text {
  border-left: 4px solid var(--gt-theme);
  padding: 36px 40px;
  border-radius: 10px;
  background-color: #EDF1FF;
}
.news-post-details .single-news-post .post-content .hilight-text p {
  font-weight: 400;
  text-transform: capitalize;
  font-style: italic;
  color: var(--gt-header3);
  font-size: 20px;
}
.news-post-details .single-news-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-post-details .single-news-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-post-details .tag-share-wrap {
  border-top: 1px solid rgba(155, 160, 163, 0.2);
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  padding: 30px 0;
}
.news-post-details .tag-share-wrap .tagcloud span {
  display: inline-block;
  font-weight: 600;
  color: var(--gt-header3);
  margin-right: 15px;
}
.news-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: transparent;
  border: 1px solid rgba(155, 160, 163, 0.2);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  color: var(--gt-header3);
}
@media (max-width: 575px) {
  .news-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}
.news-post-details .tag-share-wrap .social-share span {
  font-size: 16px;
  color: var(--gt-header3);
  font-weight: 600;
}
.news-post-details .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--gt-header3);
}
.news-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-post-details .tag-share-wrap .social-share a:hover {
  color: var(--gt-theme);
}
.news-post-details .comments-area {
  margin-top: 40px;
}
.news-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-post-details .comments-area .comments-heading h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
@media (max-width: 575px) {
  .news-post-details .comments-area .comments-heading h3 {
    font-size: 22px;
  }
}
.news-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
}
@media (max-width: 575px) {
  .news-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-post-details .comments-area .blog-single-comment .content .head {
  margin-bottom: 10px;
}
.news-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
.news-post-details .comments-area .blog-single-comment .content .head .con h5 a {
  color: var(--gt-header3);
}
.news-post-details .comments-area .blog-single-comment .content .reply {
  padding: 6px 16px;
  font-weight: 400;
  border-radius: 50px;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.news-post-details .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--gt-header3);
  color: var(--gt-header);
}
.news-post-details .comments-area .blog-single-comment .content .reply.color-2 {
  background-color: var(--gt-header);
}
.news-post-details .comments-area .blog-single-comment .content .reply.color-2:hover {
  background-color: var(--gt-theme);
}
.news-post-details .comment-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
@media (max-width: 575px) {
  .news-post-details .comment-form-wrap h3 {
    margin-bottom: 20px;
  }
}
.news-post-details .comment-form-wrap .form-clt span {
  color: var(--gt-header3);
  display: inline-block;
  margin-bottom: 10px;
}
.news-post-details .comment-form-wrap .form-clt input, .news-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid rgba(155, 160, 163, 0.2);
  padding: 16px 20px;
  font-weight: 500;
  color: var(--gt-text);
  border-radius: 6px;
}
.news-post-details .comment-form-wrap .form-clt input::placeholder, .news-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--gt-text);
}
.news-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}
.news-post-details .comment-form-wrap .theme-btn {
  display: inline-block;
  padding: 18px 30px;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}
.news-post-details .comment-form-wrap .theme-btn i {
  margin-left: 8px;
}
.news-post-details .comment-form-wrap .theme-btn:hover {
  background-color: var(--gt-header3);
  color: var(--gt-white);
}

.news-standard-wrapper .news-standard-items {
  border-radius: 10px;
  border: 1px solid rgba(155, 160, 163, 0.2);
  padding: 30px;
}
.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 30px;
}
.news-standard-wrapper .news-standard-items .thumb {
  position: relative;
}
.news-standard-wrapper .news-standard-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.news-standard-wrapper .news-standard-items .content {
  margin-top: 30px;
}
.news-standard-wrapper .news-standard-items .content .post-cat {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.news-standard-wrapper .news-standard-items .content .post-cat li i {
  color: var(--gt-theme);
  margin-right: 5px;
}
.news-standard-wrapper .news-standard-items .content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.news-standard-wrapper .news-standard-items .content h3 a {
  color: var(--gt-header3);
}
.news-standard-wrapper .news-standard-items .content h3 a:hover {
  color: var(--gt-theme);
}
.news-standard-wrapper .news-standard-items .content .theme-btn {
  display: inline-block;
  padding: 18px 30px;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 30px;
}
.news-standard-wrapper .news-standard-items .content .theme-btn i {
  margin-left: 8px;
}
.news-standard-wrapper .news-standard-items .content .theme-btn:hover {
  background-color: var(--gt-header3);
}

.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  border: 1px solid rgba(155, 160, 163, 0.2);
  margin-bottom: 30px;
  border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h4 {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: var(--gt-header3);
}
.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
  border: 1px solid rgba(155, 160, 163, 0.2);
  font-size: 16px;
  padding: 20px;
  width: 100%;
  color: var(--gt-text);
  background: transparent;
  border-radius: 6px;
}
.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 16px;
  height: 100%;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--gt-header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  border: 1px solid rgba(155, 160, 163, 0.2);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--gt-header3);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--gt-header3);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
  background-color: var(--gt-theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--gt-white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--gt-white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
  background-color: var(--gt-theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--gt-white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--gt-white);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  padding-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items img {
  border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-bottom: 8px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--gt-theme);
  margin-right: 8px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 140%;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
  color: var(--gt-header3);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--gt-theme);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 11px 20px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(155, 160, 163, 0.2);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
  color: var(--gt-header3);
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}

.news-details-wrapper .news-post-details .single-news-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-post-details .single-news-post .post-content {
  margin-top: 30px;
}
.news-details-wrapper .news-post-details .single-news-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F2F5FA;
  padding-bottom: 20px;
}
.news-details-wrapper .news-post-details .single-news-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-wrapper .news-post-details .single-news-post .post-content .post-list li i {
  color: var(--gt-theme);
  margin-right: 5px;
}
.news-details-wrapper .news-post-details .single-news-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-details .single-news-post .post-content h3 {
    font-size: 24px;
  }
}
.news-details-wrapper .news-post-details .single-news-post .post-content h3 a:hover {
  color: var(--gt-theme);
}
.news-details-wrapper .news-post-details .single-news-post .post-content p {
  font-weight: 400;
}
.news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text {
  border-left: 4px solid var(--gt-theme);
  padding: 36px 40px;
  border-radius: 10px;
  background-color: var(--gt-bg);
}
.news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text p {
  font-weight: 400;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
  color: var(--gt-header);
}
.news-details-wrapper .news-post-details .single-news-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-details-wrapper .news-post-details .single-news-post .post-content .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-post-details .tag-share-wrap {
  border-top: 1px solid #F2F5FA;
  border-bottom: 1px solid #F2F5FA;
  padding: 30px 0;
}
.news-details-wrapper .news-post-details .tag-share-wrap .tagcloud span {
  display: inline-block;
  font-weight: 600;
  color: var(--gt-header);
  margin-right: 15px;
}
.news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: transparent;
  border: 1px solid #F2F5FA;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-wrapper .news-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--gt-theme);
  color: var(--gt-white);
}
.news-details-wrapper .news-post-details .tag-share-wrap .social-share span {
  font-size: 16px;
  color: var(--gt-header);
  font-weight: 600;
}
.news-details-wrapper .news-post-details .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--gt-header);
}
.news-details-wrapper .news-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-wrapper .news-post-details .tag-share-wrap .social-share a:hover {
  color: var(--gt-theme);
}
.news-details-wrapper .news-post-details .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .news-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-wrapper .news-post-details .comments-area .comments-heading h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-details .comments-area .comments-heading h3 {
    font-size: 22px;
  }
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid #D4DCED;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .head {
  margin-bottom: 10px;
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply {
  padding: 6px 16px;
  font-weight: 400;
  border-radius: 50px;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  transition: all 0.4s ease-in-out;
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--gt-header);
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply.color-2 {
  background-color: var(--gt-header);
}
.news-details-wrapper .news-post-details .comments-area .blog-single-comment .content .reply.color-2:hover {
  background-color: var(--gt-theme);
}
.news-details-wrapper .news-post-details .comment-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-post-details .comment-form-wrap h3 {
    margin-bottom: 20px;
  }
}
.news-details-wrapper .news-post-details .comment-form-wrap .form-clt span {
  color: var(--gt-header);
  display: inline-block;
  margin-bottom: 10px;
}
.news-details-wrapper .news-post-details .comment-form-wrap .form-clt input, .news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid #D4DCED;
  padding: 16px 20px;
  font-weight: 500;
  color: var(--gt-text);
}
.news-details-wrapper .news-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--gt-text);
}
.news-details-wrapper .news-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}
.news-details-wrapper .news-post-details .comment-form-wrap .theme-btn {
  display: inline-block;
  padding: 18px 30px;
  background-color: var(--gt-theme);
  color: var(--gt-white);
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
}
.news-details-wrapper .news-post-details .comment-form-wrap .theme-btn i {
  margin-left: 8px;
}
.news-details-wrapper .news-post-details .comment-form-wrap .theme-btn:hover {
  background-color: var(--gt-header);
}

/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background-color: #ffffff;
}

.preloader:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 158px;
  margin-left: -55px;
  margin-top: -70px;
  height: 110px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1s infinite linear;
  animation: pulse 1s infinite linear;
  background-image: url(../../assets/img/prealoader.png);
  content: "";
}

.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--gt-header3);
  font-weight: 600;
  font-size: 14px;
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none;
  left: 30px;
}

.gt-back-to-top {
  background-color: var(--gt-theme);
  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);
  border-radius: 4px;
}
.gt-back-to-top:hover {
  background-color: var(--gt-header3);
  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 var(--gt-theme);
  background-color: var(--gt-theme);
  -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: var(--gt-theme);
  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: var(--gt-theme);
  border: 1px solid #686363;
  opacity: 0;
}

.gt-page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.gt-page-nav-wrap ul li {
  display: inline-block;
  border-radius: 4px;
}
.gt-page-nav-wrap ul li:first-child {
  border: 1px solid #BFBFBF;
}
.gt-page-nav-wrap ul li:first-child a {
  color: var(--gt-theme);
  background-color: transparent;
}
.gt-page-nav-wrap ul li:last-child {
  border: 1px solid var(--gt-theme);
}
.gt-page-nav-wrap ul li:last-child a {
  color: var(--gt-theme);
  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;
  border-radius: 4px;
}
.gt-page-nav-wrap ul li .gt-page-numbers.current {
  background-color: var(--gt-theme);
  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: var(--gt-theme);
  color: var(--gt-white);
}

.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: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: #FEBC5F;
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  position: relative;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 10px;
}
.gt-section-title .title-text {
  font-weight: 500;
}
.gt-section-title h2 {
  text-transform: capitalize;
}
.gt-section-title h2 span {
  background: linear-gradient(90deg, #6B41FF 32.8%, #EA4BFF 57.18%, #FEBC5F 82.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "TestTiemposFine-Regular-BF66457a50e8bc9", serif;
  font-style: italic;
  font-weight: 400;
}
.gt-section-title.style-2 h6 {
  color: #173401;
  font-family: "Sen", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.gt-section-title.style-2 h2 {
  color: var(--gt-header2);
  font-size: 50px;
  font-weight: 700;
  font-family: "Sen", sans-serif;
  line-height: 110%;
}
@media (max-width: 767px) {
  .gt-section-title.style-2 h2 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-section-title.style-2 h2 {
    font-size: 32px;
  }
}
.gt-section-title.style-3 h6 {
  color: var(--gt-theme3);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}
.gt-section-title.style-3 h2 {
  color: var(--gt-header2);
  font-size: 50px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  line-height: 120%;
}
@media (max-width: 767px) {
  .gt-section-title.style-3 h2 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-section-title.style-3 h2 {
    font-size: 32px;
  }
}
.gt-section-title.style-4 h6 {
  color: #E77096;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}
.gt-section-title.style-4 h2 {
  color: var(--gt-header2);
  font-size: 50px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  line-height: 120%;
}
@media (max-width: 767px) {
  .gt-section-title.style-4 h2 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-section-title.style-4 h2 {
    font-size: 32px;
  }
}
.gt-section-title.style-5 h6 {
  color: var(--gt-theme5);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}
.gt-section-title.style-5 h2 {
  color: var(--gt-header3);
  font-size: 50px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 120%;
}
@media (max-width: 767px) {
  .gt-section-title.style-5 h2 {
    font-size: 43px;
  }
}
@media (max-width: 470px) {
  .gt-section-title.style-5 h2 {
    font-size: 32px;
  }
}

.gt-section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .gt-section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .gt-section-title-area {
    margin-bottom: 0;
  }
}
.gt-section-title-area .gt-section-title {
  margin-bottom: 0;
}
.gt-section-title-area.border-bottom-add {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 35px;
}

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

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

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

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

.section-bg-4 {
  background: #EDF1FF;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-box-items-5 {
  margin-top: 30px;
  display: flex;
  gap: 17px;
  padding: 40px 20px;
  position: relative;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
}
.service-box-items-5 .content h4 {
  margin-bottom: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 22px;
}
.service-box-items-5 .content h4 a {
  color: var(--gt-header3);
}
.service-box-items-5 .content h4 a:hover {
  color: var(--gt-theme5);
}
.service-box-items-5 .content p {
  margin-bottom: 5px;
  color: var(--gt-text2);
}
.service-box-items-5 .content .link-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--gt-header3);
  font-weight: 500;
}
.service-box-items-5 .content .link-btn i {
  margin-left: 8px;
}

.service-section {
  position: relative;
}
.service-section .left-shape {
  position: absolute;
  bottom: 100px;
  left: 0;
}
@media (max-width: 1899px) {
  .service-section .left-shape {
    display: none;
  }
}
.service-section .right-shape {
  position: absolute;
  top: 25%;
  right: 50px;
  animation: bounce-x 7s infinite linear;
}
@media (max-width: 1899px) {
  .service-section .right-shape {
    display: none;
  }
}
.service-section .bg-shape {
  position: absolute;
  top: 9px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .service-section .bg-shape {
    display: none;
  }
}
.service-section .bg-shape-2 {
  position: absolute;
  top: 15%;
  right: 0;
}
.service-section .right-shape-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .service-section .right-shape-3 {
    display: none;
  }
}

.service-details-wrapper .details-image {
  margin-bottom: 50px;
}
.service-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background-color: var(--gt-theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .wid-title h4::before {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 63px;
  height: 2px;
  content: "";
  background-color: var(--gt-theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 25px;
  border-radius: 10px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(155, 160, 163, 0.2);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li a {
  color: var(--gt-header3);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--gt-header3);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover {
  background-color: var(--gt-theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover a {
  color: var(--gt-white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li:hover span {
  color: var(--gt-white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active {
  background-color: var(--gt-theme);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active a {
  color: var(--gt-white);
}
.service-details-wrapper .main-sidebar .single-sidebar-widget .service-widget-categories ul li.active span {
  color: var(--gt-white);
}
.service-details-wrapper .service-details-content h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--gt-header3);
}
.service-details-wrapper .service-details-content .thumb {
  margin-bottom: 40px;
}
.service-details-wrapper .service-details-content .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-details-wrapper .service-details-content .details-list-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1199px) {
  .service-details-wrapper .service-details-content .details-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-details-wrapper .service-details-content .details-list-items .details-list li {
  font-weight: 500;
  font-size: 16px;
  color: var(--gt-header3);
}
.service-details-wrapper .service-details-content .details-list-items .details-list li:not(:last-child) {
  margin-bottom: 15px;
}
.service-details-wrapper .service-details-content .details-list-items .details-list li i {
  color: var(--gt-theme);
  margin-right: 8px;
}

.team-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.team-wrapper .team-image {
  text-align: center;
  position: relative;
}
.team-wrapper .team-image .shape-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .team-wrapper .team-image .shape-image {
    display: none;
  }
}
@media (max-width: 991px) {
  .team-wrapper .team-image .shape-image {
    display: block;
  }
}
@media (max-width: 575px) {
  .team-wrapper .team-image .shape-image {
    display: none;
  }
}
.team-wrapper .team-content p {
  font-weight: 500;
  color: var(--gt-text2);
}
.team-wrapper .team-content .list-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .team-wrapper .team-content .list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.team-wrapper .team-content .list-items ul li {
  font-weight: 600;
  color: var(--gt-header3);
}
.team-wrapper .team-content .list-items ul li:not(:last-child) {
  margin-bottom: 15px;
}
.team-wrapper .team-content .list-items ul li svg {
  margin-right: 5px;
}
.team-wrapper .team-image-2 {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 495px;
}
.team-wrapper .team-image-2::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 495px;
  height: 503px;
  content: "";
  border-radius: 250px 250px 0px 0px;
  background: #EED9FF;
  z-index: -1;
}
@media (max-width: 470px) {
  .team-wrapper .team-image-2::before {
    display: none;
  }
}
.team-wrapper .team-image-2 .client-shape {
  position: absolute;
  top: 17%;
  left: -25%;
}
@media (max-width: 575px) {
  .team-wrapper .team-image-2 .client-shape {
    display: none;
  }
}
.team-wrapper .team-image-2 .box-shape {
  position: absolute;
  bottom: 30px;
  right: -18%;
}
@media (max-width: 1399px) {
  .team-wrapper .team-image-2 .box-shape {
    right: -10%;
  }
}
@media (max-width: 1199px) {
  .team-wrapper .team-image-2 .box-shape {
    right: 0;
  }
}
@media (max-width: 575px) {
  .team-wrapper .team-image-2 .box-shape {
    display: none;
  }
}
.team-wrapper .team-image-2 .circle-button {
  position: absolute;
  right: 0;
  top: 5%;
  width: 122px;
  height: 122px;
  line-height: 122px;
  background-color: #FD8128;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: var(--gt-white);
  z-index: 99;
}
@media (max-width: 470px) {
  .team-wrapper .team-image-2 .circle-button {
    display: none;
  }
}
.team-wrapper .team-image-2 .circle-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 20px solidrgba(255, 255, 255, 0.2);
  width: 148px;
  height: 148px;
  content: "";
  border-radius: 50%;
  z-index: 1;
}
.team-wrapper .team-image-2 .circle-button .text-circle {
  position: absolute;
  top: 1%;
  left: 8%;
  animation: cir36 10s linear infinite;
  z-index: 9;
}
.team-wrapper.style-3 {
  padding-bottom: 35px;
}
@media (max-width: 1399px) {
  .team-wrapper.style-3 {
    padding-bottom: 0;
  }
}
@media (max-width: 1399px) {
  .team-wrapper.style-3 {
    padding-bottom: 15px;
  }
}
.team-wrapper.style-4 {
  max-width: 1220px;
}
.team-wrapper.style-4 .results-left-items {
  background-color: rgba(149, 120, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 30px;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .team-wrapper.style-4 .results-left-items {
    flex-wrap: wrap;
  }
}
.team-wrapper.style-4 .results-left-items .content {
  border-radius: 10px;
  background-color: var(--gt-white);
  max-width: 295px;
  padding: 30px;
}
.team-wrapper.style-4 .results-left-items .content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 110px;
}
.team-wrapper.style-4 .results-left-items .content h3 {
  margin-bottom: 20px;
  margin-bottom: 10px;
}
.team-wrapper.style-4 .results-left-items .thumb img {
  border-radius: 10px;
}
.team-wrapper.style-4 .team-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .team-wrapper.style-4 .team-content {
    margin-left: 0;
  }
}

.team-details-wrapper .team-details-items {
  border: 1px solid rgba(155, 160, 163, 0.2);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.team-details-wrapper .team-details-items .thumb {
  max-width: 390px;
}
.team-details-wrapper .team-details-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team-details-wrapper .team-details-items .content {
  max-width: 900px;
}
.team-details-wrapper .team-details-items .content h4 {
  font-size: 28px;
  color: var(--gt-header3);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.team-details-wrapper .team-details-items .content .cont {
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-items .content .signature {
  margin-top: 30px;
}
.team-details-wrapper .team-details-items .content .team-contact-info {
  border-top: 1px solid rgba(155, 160, 163, 0.2);
  border-bottom: 1px solid rgba(155, 160, 163, 0.2);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .content .team-contact-info {
    padding: 20px 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper .team-details-items .content .team-contact-info .icon-items {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.team-details-wrapper .team-details-items .content .team-contact-info .icon-items .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  background-color: #F6F3FE;
  color: var(--gt-theme);
}
.team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  text-transform: initial;
  color: var(--gt-header3);
}
.team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 a {
  color: var(--gt-text);
}
.team-details-wrapper .team-details-items .content .team-contact-info .icon-items h5 a:hover {
  color: var(--gt-theme);
}

.personal-information-area {
  padding-top: 30px;
  margin-top: 60px;
}
.personal-information-area h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--gt-header3);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.personal-information-wrapper .personal-skill-wrapper {
  margin-top: 60px;
}
.personal-information-wrapper .personal-skill-wrapper h4 {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--gt-header3);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items {
  width: 100%;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  color: var(--gt-header3);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--gt-header3);
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .progress {
  background: #EED9FF;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--gt-theme);
  height: 10px;
  width: 0;
}
.personal-information-wrapper .personal-skill-wrapper .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.team-card-items {
  margin-top: 30px;
  border-radius: 20px;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid rgba(155, 160, 163, 0.2);
}
.team-card-items .icon-shape {
  position: absolute;
  bottom: 30px;
  right: 0;
}
.team-card-items .social-profile {
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: -153%;
  left: 31%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 10px;
}
.team-card-items .social-profile ul {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.team-card-items .social-profile ul li {
  margin-bottom: 10px;
}
.team-card-items .social-profile ul li a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: block;
  background: var(--gt-white);
  color: var(--gt-header2);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}
.team-card-items .social-profile ul li a:hover {
  background: var(--gt-theme);
  color: var(--gt-white);
}
.team-card-items .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  background: var(--gt-white);
  color: var(--gt-header2);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.team-card-items .social-profile:hover ul {
  opacity: 1;
  visibility: visible;
}
.team-card-items .team-image {
  padding: 16px 16px 0 16px;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.team-card-items .team-content {
  padding: 20px 20px;
}
.team-card-items .team-content h3 {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.team-card-items .team-content h3 a {
  color: var(--gt-header3);
}
.team-card-items .team-content h3 a:hover {
  color: var(--gt-theme);
}

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

.gt-testimonial-box-items {
  border-radius: 10px;
  background: #ECEDEA;
  padding: 30px;
  margin-top: 30px;
}
.gt-testimonial-box-items .gt-quote-icon {
  width: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #A0EA71 0%, rgba(160, 234, 113, 0) 100%);
  margin-bottom: 30px;
}
.gt-testimonial-box-items p {
  font-size: 18px;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--gt-header2);
  line-height: 155%;
}
.gt-testimonial-box-items .client-info {
  border-radius: 100px;
  background: #173401;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  line-height: 1;
  margin-top: 28px;
}
.gt-testimonial-box-items .client-info h5 {
  font-size: 18px;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  color: var(--gt-theme2);
  text-transform: capitalize;
}
.gt-testimonial-box-items .client-info span {
  font-size: 14px;
  color: #ECEDEA;
  text-transform: capitalize;
}

.gt-testimonial-slider {
  margin-right: -38%;
}
@media (max-width: 991px) {
  .gt-testimonial-slider {
    margin-right: 0;
  }
}
.gt-testimonial-slider .swiper-slide.swiper-slide-active .gt-testimonial-box-items {
  background-color: var(--gt-theme2);
}
.gt-testimonial-slider .swiper-slide.swiper-slide-active .gt-testimonial-box-items .gt-quote-icon {
  background: linear-gradient(180deg, #173401 0%, rgba(23, 52, 1, 0) 100%);
}
.gt-testimonial-slider .swiper-slide.swiper-slide-active .gt-testimonial-box-items p {
  font-size: 18px;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--gt-header2);
  line-height: 155%;
}
.gt-testimonial-slider .swiper-slide.swiper-slide-active .gt-testimonial-box-items .client-info {
  border-radius: 100px;
  background: #173401;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  line-height: 1;
  margin-top: 28px;
}
.gt-testimonial-slider .swiper-slide.swiper-slide-active .gt-testimonial-box-items .client-info h5 {
  font-size: 18px;
  font-family: "Sen", sans-serif;
  font-weight: 600;
  color: var(--gt-theme2);
  text-transform: capitalize;
}
.gt-testimonial-slider .swiper-slide.swiper-slide-active .gt-testimonial-box-items .client-info span {
  font-size: 14px;
  color: #ECEDEA;
  text-transform: capitalize;
}

.gt-testimonial-section .gt-section-title-area .testimonial-top-right {
  display: flex;
  align-items: center;
  gap: 120px;
}
@media (max-width: 1399px) {
  .gt-testimonial-section .gt-section-title-area .testimonial-top-right {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.gt-testimonial-section-3 {
  margin: 120px 60px;
  margin-bottom: 0;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .gt-testimonial-section-3 {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 1199px) {
  .gt-testimonial-section-3 {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .gt-testimonial-section-3 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .gt-testimonial-section-3 {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 470px) {
  .gt-testimonial-section-3 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.gt-flag-items .gt-flag-thumb {
  margin-top: 30px;
}
.gt-flag-items .gt-flag-thumb img {
  width: 120px;
  height: 120px;
}

.gt-flag-box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px 100px 100px 0px;
  background: var(--gt-theme3);
  padding: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .gt-flag-box {
    flex-wrap: wrap;
    gap: 15px;
    border-radius: 0;
  }
}
.gt-flag-box::before {
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  top: 0;
  content: "";
  background: var(--gt-theme3);
}
@media (max-width: 767px) {
  .gt-flag-box::before {
    display: none;
  }
}
.gt-flag-box .arrow-box {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: var(--gt-white);
  color: var(--gt-theme3);
  font-size: 40px;
}
.gt-flag-box .info-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .gt-flag-box .info-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.gt-flag-box p {
  color: var(--gt-white);
  font-weight: 600;
  font-size: 16px;
}

.gt-testimonial-box-items-3 {
  border-radius: 10px 10px 0px 0px;
  border: 2px solid #A0EA71;
  background: #05111A;
  padding: 40px;
  border-bottom: none;
  position: relative;
  z-index: 9;
}
.gt-testimonial-box-items-3::before {
  position: absolute;
  bottom: -20%;
  right: -10%;
  content: "";
  width: 408px;
  height: 408px;
  border-radius: 408px;
  background: #EA4BFF;
  filter: blur(162px);
  z-index: -1;
}
.gt-testimonial-box-items-3 h6 {
  font-weight: 500;
  font-family: Manrope;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}
.gt-testimonial-box-items-3 h6 span {
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
}
.gt-testimonial-box-items-3 p {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--gt-white);
  line-height: 156%;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}
.gt-testimonial-box-items-3 .gt-client-info {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.gt-testimonial-box-items-3 .gt-client-info .quote-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(18, 74, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  line-height: 100px;
}

.testimonial-box-items-5 {
  margin-top: 30px;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 30px;
  position: relative;
}
@media (max-width: 470px) {
  .testimonial-box-items-5 {
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 30px;
  }
}
.testimonial-box-items-5 .icon {
  top: 40px;
  right: 30px;
  position: absolute;
}
.testimonial-box-items-5::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F6F3FE;
  border-radius: 16px;
  z-index: -1;
  left: 48px;
  width: calc(100% - 48px);
}
@media (max-width: 470px) {
  .testimonial-box-items-5::before {
    width: calc(100% - 0px);
    left: 0;
  }
}
.testimonial-box-items-5 .testimonial-img {
  border: 4px solid var(--gt-white);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  background-color: var(--gt-white);
  position: relative;
  z-index: 9;
}
.testimonial-box-items-5 .testimonial-img .shape-img {
  position: absolute;
  top: 50%;
  left: 72%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 470px) {
  .testimonial-box-items-5 .testimonial-img .shape-img {
    display: none;
  }
}
.testimonial-box-items-5 .content {
  max-width: 370px;
}
.testimonial-box-items-5 .content .client-info {
  margin-bottom: 10px;
}
.testimonial-box-items-5 .content .client-info .star {
  color: #F68B21;
  margin-bottom: 10px;
}
.testimonial-box-items-5 .content .client-info h5 {
  font-weight: 600;
  color: var(--gt-header3);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.testimonial-box-items-5 .content span {
  color: var(--gt-text2);
}
.testimonial-box-items-5 .content p {
  font-weight: 500;
  color: var(--gt-text2);
  font-size: 18px;
}

.testimonial-wrapper-5 .testimonial-left-5 {
  margin-top: 30px;
}
.testimonial-wrapper-5 .testimonial-left-5 .client-img {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 70px;
}
.testimonial-wrapper-5 .testimonial-left-5 .client-img .content .star {
  color: #F68B21;
}
.testimonial-wrapper-5 .testimonial-left-5 .client-img .content p {
  font-weight: 700;
}

.testimonial-section-5 p {
  color: var(--gt-text2);
}

.gt-testimonial-section-4 {
  border-radius: 40px;
  background: #F3F6FF;
  margin: 0 60px;
  position: relative;
}
.gt-testimonial-section-4 .gradient-box {
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(243, 246, 255, 0) 0%, #F3F6FF 100%);
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: inline-block;
  z-index: 9;
}
@keyframes marqueeY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@media (max-width: 1600px) {
  .gt-testimonial-section-4 {
    margin: 0 50px;
  }
}
@media (max-width: 1399px) {
  .gt-testimonial-section-4 {
    margin: 0 40px;
  }
}
@media (max-width: 1199px) {
  .gt-testimonial-section-4 {
    margin: 0 30px;
  }
}
@media (min-width: 1200px) {
  .gt-testimonial-section-4 .height-fixed {
    height: 800px;
  }
  .gt-testimonial-section-4 .col-xl-4 {
    transform: translateY(25%);
  }
  .gt-testimonial-section-4 .all-item {
    animation: marqueeY 20s linear infinite running;
    animation-direction: alternate;
  }
  .gt-testimonial-section-4 .all-item.reverse {
    animation-direction: alternate-reverse;
  }
  .gt-testimonial-section-4 .all-item {
    animation: marqueeY 20s linear infinite;
    animation-direction: alternate;
  }
  .gt-testimonial-section-4 .all-item.reverse {
    animation-direction: alternate-reverse;
  }
}

.testimonial-single-box {
  background-color: var(--gt-white);
  padding: 60px 40px;
  border-radius: 14px;
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 99;
}
.testimonial-single-box .client-info .info-content {
  margin-top: 20px;
}
.testimonial-single-box .client-info .info-content h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--gt-header3);
  font-size: 22px;
}
.testimonial-single-box .star {
  color: #F68B21;
  margin-top: 5px;
  margin-bottom: 10px;
}
.testimonial-single-box p {
  color: var(--gt-header3);
  font-size: 18px;
}

.gt-testimonial-wrapper-4 {
  border-radius: 32px;
  background: var(--gt-white);
  box-shadow: 20px 14px 40px 0 rgba(0, 0, 0, 0.08);
  max-width: 1210px;
  margin: 60px auto 0;
  border-top-left-radius: 30px;
  display: flex;
  gap: 40px;
}
@media (max-width: 1199px) {
  .gt-testimonial-wrapper-4 {
    padding: 24px;
    max-width: initial;
    margin-top: 30px;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .gt-testimonial-wrapper-4 {
    flex-wrap: wrap;
  }
}
.gt-testimonial-wrapper-4 .thumb {
  max-width: 415px;
}
.gt-testimonial-wrapper-4 .thumb img {
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.gt-testimonial-wrapper-4 .content {
  max-width: 686px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .gt-testimonial-wrapper-4 .content {
    margin-top: 0;
  }
}
.gt-testimonial-wrapper-4 .content .quote-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(18, 74, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 25px;
}
.gt-testimonial-wrapper-4 .content p {
  font-size: 31px;
  color: #868686;
  font-family: "DM Sans";
  font-style: italic;
  font-size: 31px;
  line-height: 155%;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .gt-testimonial-wrapper-4 .content p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .gt-testimonial-wrapper-4 .content p {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .gt-testimonial-wrapper-4 .content p {
    font-size: 20px;
  }
}
.gt-testimonial-wrapper-4 .content h3 {
  font-size: 24px;
  color: var(--gt-header3);
  font-family: "Montserrat", sans-serif;
  margin-top: 40px;
}

.gt-software-app-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.dot-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot-bullet.active {
  background: #000;
}/*# sourceMappingURL=main.css.map */