@font-face {
  font-family: "GilroyRegular";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GilroySemiBold";
  src: url("../fonts/gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GilroyBold";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --tg-body-font-family: "GilroyRegular", sans-serif;
  --tg-heading-font-family: "GilroyBold", sans-serif;
  --tg-sub-heading-font-family: "GilroySemiBold", sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.75;
  --tg-heading-line-height: 1.2;
  --tg-letter-spacing: -1.2px;
  --tg-border-radius: 8px;
  --tg-border-radius-2: 4px;
  --tg-rounded-lbl: rgba(72, 227, 205, 0.2);
  --tg-gray-txt: #b4b7bf;
  --tg-body-color: #343c4d;
  --tg-heading-color: #020e27;
  --tg-theme-primary: #48e3cd;
  --tg-theme-primary-2: #92fe9d;
  --tg-color-light-2: #dff9f5;
  --tg-theme-secondary: #020e27;
  --tg-theme-secondary-ac: #00c9ff;
  --tg-color-sky-blue: #00b2ff;
  --tg-color-yellow-light: #ffb930;
  --tg-color-yellow-light-2: #f09e24;
  --tg-color-red-light: #dc0000;
  --tg-color-white-default: #ffffff;
  --tg-color-gray-1: #f5f6fc;
  --tg-color-gray-2: #f8f9fd;
  --tg-color-gray-3: #e9ebee;
  --tg-color-gray-4: #e9ebf8;
  --tg-color-gray-5: #e8e8e8;
  --tg-color-gray-6: #bcbcbc;
  --tg-color-gray-7: #9597c8;
  --tg-color-gray-8: #eff0f4;
  --tg-color-gray-9: #8c919c;
  --tg-color-gray-10: #eff1fa;
  --tg-color-gray-11: #667594;
  --tg-color-gray-12: #f0f0f0;
  --tg-color-gray-13: #f8f8f8;
  --tg-color-dark: #121212;
  --tg-color-dark-2: #040426;
  --tg-color-gradient: linear-gradient(90deg, #c3d4ff 0%, #48e3cd 100%);
  --tg-border-1: #555c6a;
  --tg-border-2: #e6e7f3;
  --tg-border-3: #737373;
  --tg-border-4: #b8b9da;
  --tg-border-5: #dcdcdc;
  --tg-border-6: #cfdde2;
  --tg-border-7: #d1d4e3;
  --tg-border-8: #eaeaea;
  --tg-border-9: #dadada;
  --tg-border-10: #dbdeed;
  --tg-border-11: #d2d7e1;
  --tg-border-12: #ebebeb;
  --tg-border-13: #d3d5e2;
  --tg-border-14: #e0e1e9;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
}

.fb {
  font-family: var(--tg-heading-font-family) !important;
}

.fsb {
  font-family: var(--tg-sub-heading-font-family) !important;
}

.fr {
  font-family: var(--tg-body-font-family) !important;
}

.sf-li-h {
  letter-spacing: var(--tg-letter-spacing);
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  font-family: var(--tg-sub-heading-font-family);
  color: var(--tg-theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--tg-theme-primary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  margin-top: 0px;
  font-weight: var(--tg-fw-bold);
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--tg-common-color-gray);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--tg-heading-color);
  cursor: pointer;
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
}

input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .mb-md-30 {
    margin-bottom: 30px;
  }

  .tc-panel {
    max-width: 90% !important;
  }
}

body.theme-gray {
  background-color: var(--tg-color-gray-1);
}

body.theme-gray-two {
  background-color: var(--tg-color-gray-2);
}

*::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--tg-body-color);
}

*::-moz-placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

textarea,
input {
  width: 100%;
  background: var(--tg-color-white-default);
  border: 1px solid var(--tg-border-7);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--tg-heading-color);
  padding: 11px 18px;
  height: 50px;
  display: block;
}
textarea::placeholder,
input::placeholder {
  font-size: 15px;
  color: var(--tg-body-color);
}

textarea {
  min-height: 98px;
  max-height: 98px;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  --bs-gutter-x: 24px;
}

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

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

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

.gx-0 {
  --bs-gutter-x: 0;
}

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

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

.p-relative {
  position: relative;
}

.container {
  max-width: 89rem;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

.custom-container {
  max-width: 1754px;
}
@media (max-width: 1800px) {
  .custom-container {
    max-width: 1680px;
  }
}
@media (max-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}

.custom-container-two {
  max-width: 1664px;
}
@media (max-width: 1800px) {
  .custom-container-two {
    max-width: 1570px;
  }
}
@media (max-width: 1500px) {
  .custom-container-two {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-two {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-two {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-two {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-two {
    max-width: 540px;
  }
}

.custom-container-three {
  max-width: 1640px;
}
@media (max-width: 1800px) {
  .custom-container-three {
    max-width: 1570px;
  }
}
@media (max-width: 1500px) {
  .custom-container-three {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-three {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-three {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-three {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-three {
    max-width: 540px;
  }
}

.custom-container-four {
  max-width: 1876px;
}
@media (max-width: 1800px) {
  .custom-container-four {
    max-width: 1570px;
  }
}
@media (max-width: 1500px) {
  .custom-container-four {
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-four {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-four {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-four {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-four {
    max-width: 540px;
  }
}

.custom-container-five {
  max-width: 1548px;
}
@media (max-width: 1800px) {
  .custom-container-five {
    max-width: 1548px;
  }
}
@media (max-width: 1500px) {
  .custom-container-five {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container-five {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container-five {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container-five {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-five {
    max-width: 540px;
  }
}

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

/*=============================
	 Button style
===============================*/
.tg-button-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tg-btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  color: var(--tg-heading-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: var(--tg-fw-semi-bold);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 12px 24px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  --arrow-hover-move-x: -110%;
  gap: 10px;
  z-index: 1;
  position: relative;
  border: none;
}
.tg-btn svg {
  transition: all 0.3s ease-out 0s;
}
.tg-btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}
.tg-btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.tg-btn svg path:nth-of-type(2) {
  transform: translateX(calc(1 * var(--arrow-hover-move-x)));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}
.tg-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--tg-theme-secondary-ac);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.tg-btn:hover,
.tg-btn:focus-visible {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-primary);
}
.tg-btn:hover svg path:nth-of-type(1),
.tg-btn:focus-visible svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}
.tg-btn:hover svg path:nth-of-type(2),
.tg-btn:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.tg-btn:hover::before,
.tg-btn:focus-visible::before {
  top: -40%;
}
.tg-btn.white-btn {
  background: var(--tg-color-white-default);
  color: var(--tg-theme-secondary);
}
.tg-btn.white-btn svg path {
  stroke: var(--tg-theme-secondary);
}

.white-btn-two {
  background: var(--tg-color-white-default);
  color: var(--tg-theme-primary);
}
.white-btn-two::before {
  background: var(--tg-theme-primary);
}
.white-btn-two:hover {
  color: var(--tg-color-white-default);
  background: var(--tg-color-white-default);
}

.tg-hover-btn::before {
  background: var(--tg-color-sky-blue);
}

.tg-btn-eight {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 18px 24px;
}

.tg-border-btn {
  border: 1px solid var(--tg-color-white-default);
  background: transparent;
  color: var(--tg-color-white-default);
  padding: 17px 25px;
}
.tg-border-btn:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
  border-color: var(--tg-theme-secondary);
}
.tg-border-btn::before {
  display: none;
}
.tg-border-btn-two {
  background: transparent;
  border: 1px solid var(--tg-theme-primary);
  color: var(--tg-theme-primary);
}
.tg-border-btn-two::after {
  background: var(--tg-theme-primary);
}
.tg-border-btn-two::before {
  display: none;
}
.tg-border-btn-two:hover::after {
  background: var(--tg-color-white-default);
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tg-body-color);
}

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--tg-color-white-default);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: block;
  width: 45px;
  height: 45px;
}

.preloader-inner span {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 37px;
  height: 37px;
  margin: 4px;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: preloader 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--tg-theme-primary) transparent transparent transparent;
}

.preloader-inner span:nth-child(1) {
  animation-delay: -0.1s;
}

.preloader-inner span:nth-child(2) {
  animation-delay: -0.2s;
}

.preloader-inner span:nth-child(3) {
  animation-delay: -0.3s;
}

@-webkit-keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.scroll__top {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: var(--tg-color-white-default);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}
@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .tc-panel {
    max-width: 95% !important;
  }
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}

.scroll__top:hover {
  background: var(--tg-theme-secondary);
  border-color: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}

.section__title {
  position: relative;
}

.sub-title-det {
  background-color: white;
  border-radius: 100px;
  padding: 5px 10px;
  margin-bottom: 2rem !important;
  font-weight: 600;
}

.section__title .sub-title {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--tg-theme-primary);
  margin-bottom: 12px;
}
.section__title .title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0;
  text-transform: capitalize;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title .title {
    font-size: 34px;
  }
}
.section__title .title span {
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .section__title .title br {
    display: none;
  }
}
.section__title .title svg {
  color: var(--tg-theme-primary);
}
.section__title p {
  margin-bottom: 0;
  margin-top: 15px;
}
@media (max-width: 767.98px) {
  .section__title p br {
    display: none;
  }
}
.section__title.white-title .sub-title {
  color: var(--tg-color-white-default);
}
.section__title.white-title .title {
  color: var(--tg-color-white-default);
}
.section__title.white-title p {
  color: #acaacc;
}
.section__title.white-title-two p {
  color: var(--tg-color-gray-4);
}
.section__title-semiBold .title {
  font-weight: 600;
}
.section__title-two .title {
  font-size: 40px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .section__title-two .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title-two .title {
    font-size: 34px;
  }
}

.section__content {
  /* margin-left: 115px; */
}
@media (max-width: 1199.98px) {
  .section__content {
    margin-left: 60px;
  }
}
@media (max-width: 991.98px) {
  .section__content {
    margin-left: 0;
  }
}
.section__content p {
  margin-bottom: 0;
}
.section__content.white-content p {
  color: var(--tg-color-white-default);
}

@media (max-width: 991.98px) {
  .section__title.mb-70,
  .section__title.mb-60 {
    margin-bottom: 40px;
  }
}

.section__divider {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  display: block;
}

/*=============================
	    Mobile Menu
===============================*/
.tgmobile__search {
  padding: 0 20px 25px 25px;
}
.tgmobile__search form {
  position: relative;
}
.tgmobile__search input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 20px;
  font-size: 15px;
  height: 45px;
  background: var(--tg-color-gray-2);
  color: var(--tg-heading-color);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.tgmobile__search input::placeholder {
  font-size: 15px;
  color: var(--tg-body-color);
}
.tgmobile__search button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--tg-heading-color);
}
.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 73px;
  width: 100%;
  /* padding: 20px; */
  padding-right: 20;
  max-width: 100%;
  z-index: 99;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.tgmobile__menu .navbar-collapse {
  display: block !important;
}
.tgmobile__menu .nav-logo {
  position: relative;
  padding: 23px 25px;
  text-align: left;
}
.tgmobile__menu .nav-logo img {
  max-width: 150px;
}
.tgmobile__menu .navigation {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
}
.tgmobile__menu .navigation li.active > a {
  color: var(--tg-theme-primary);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-heading-color);
  background: var(--tg-color-gray-1);
  cursor: pointer;
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -6px;
  width: 300px;
  height: 46px;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--tg-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--tg-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--tg-theme-primary);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--tg-color-white-default);
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}
.tgmobile__menu .navigation li > a {
  position: relative;
  display: block;
  padding: 10px 55px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--tg-heading-color);
  /* text-transform: uppercase; */
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}
.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--tg-theme-primary);
  pointer-events: none;
}
.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
  text-transform: capitalize;
}
.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}
.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}
.tgmobile__menu .navigation li > ul {
  display: none;
}
.tgmobile__menu .navigation li > ul > li > ul {
  display: none;
}
.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}
.tgmobile__menu .navigation ul li a {
  display: block;
}
.tgmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}
.tgmobile__menu .navigation:last-child {
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}
.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .tgmobile__menu .navigation > li > ul > li:first-child {
    border: none;
  }
}
.tgmobile__menu .navigation > li.active > a::before {
  height: 100%;
}
.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tgmobile__menu .close-btn i[class^="flaticon-"]:before {
  font-weight: var(--tg-fw-bold) !important;
}
.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.tgmobile__menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}
.tgmobile__menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: var(--tg-theme-secondary);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 5px;
}
.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.tgmobile__menu .tgmenu__action {
  padding: 0 0;
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}
.tgmobile__menu .tgmenu__action > ul li {
  margin: 0 0;
}
.tgmobile__menu .tgmenu__action > ul .header-btn {
  display: block;
}
.tgmobile__menu-box {
  left: 0px;
  top: 0px;
  width: 100%;
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--tg-color-white-default);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
  background-color: #ffffffb0;
  border-radius: 0.5rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;

  .copyright__social {
    background: var(--tg-rounded-lbl);
  }
}
.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-color-white-default);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;

  .close-btn {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

.close-btn {
  display: none;
}

.mobile-menu-visible .tgmobile__menu {
  /* -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%); */
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);

  .tgmobile__menu-box {
    max-height: 100%;
    border: 0.5px solid var(--tg-theme-primary);
    /* transition: max-height 1s ease; */
    /* transform: scaleY(1); */
  }
}
.mobile-menu-visible .tgmobile__menu-backdrop {
  /* opacity: 1; */
  opacity: 0;
  visibility: visible;
}
.mobile-menu-visible .tgmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.tgmenu__navbar-wrap ul li .tg-mega-menu-wrap-two {
  width: 560px !important;
  display: flex !important;
  align-items: flex-start !important;
  padding: 40px 0 !important;
}
.tgmenu__navbar-wrap ul li .tg-mega-menu-wrap-two > li {
  border-right: 1px solid #e5e5e5;
}
.tgmenu__navbar-wrap ul li .tg-mega-menu-wrap-two > li:last-child {
  border: none;
}

.mega-sub-menu {
  display: flex !important;
  flex-direction: column !important;
  min-width: 260px !important;
  margin-left: 10px !important;
}
@media (max-width: 991.98px) {
  .mega-sub-menu {
    margin-left: 0 !important;
  }
}
.mega-sub-menu > li > a {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
.mega-sub-menu > li > a .badge {
  display: block;
  padding: 0.5em 0.5em 0.5em 0.5em;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: var(--tg-color-white-default);
  text-align: center;
  white-space: nowrap;
  border-radius: 0.25rem;
  background: var(--tg-theme-primary);
  margin-left: 2px;
}

/*=============================
    00. Keyframe Animation
===============================*/
@-webkit-keyframes hoverShine {
  100% {
    left: 125%;
  }
}
@keyframes hoverShine {
  100% {
    left: 125%;
  }
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.alltuchtopdown {
  -webkit-animation: alltuchtopdown 2s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 2s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
@-webkit-keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}
.rightToLeft {
  -webkit-animation: rightToLeft 3s ease-in-out 0s infinite alternate;
  animation: rightToLeft 3s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes rightToLeft {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.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-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-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 fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeRight2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeRight2 {
  -webkit-animation-name: fadeRight2;
  animation-name: fadeRight2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeDown2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeDown2 {
  -webkit-animation-name: fadeDown2;
  animation-name: fadeDown2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInLeft2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft2 {
  -webkit-animation-name: fadeInLeft2;
  animation-name: fadeInLeft2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.transparent-header {
  position: sticky;
  left: 0;
  /* top: 25px; */
  width: 100%;
  z-index: 9;
  height: auto;
  transition: all 0.3s ease-in-out;
}

#transparent-header.scrolled > .transp-div {
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.scrolled {
  top: 0px !important;
  transition: all 0.3s ease-in-out;
  /* backdrop-filter: blur(24px); */
  background-color: #ffffff00;
}

@media (max-width: 767.98px) {
  .transp-div {
    height: 14px !important;
  }
}

.tg-header__area {
  position: relative;
}
@media (max-width: 991.98px) {
  .tg-header__area {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area {
    padding: 0;
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  font-size: 20px;
  cursor: pointer;
  line-height: 0;
  color: var(--tg-theme-primary);
  display: none;
}
@media (max-width: 991.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
    margin-left: 25px;
  }
}
.tg-header__area.sticky-menu {
  padding: 0 0;
}
@media (max-width: 991.98px) {
  .tg-header__area.sticky-menu {
    padding: 18px 0;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area.sticky-menu {
    padding: 20px 0;
  }

  #hubspot-form.vstack {
    padding: 1.9rem !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .tg-header__area-twelve {
    margin-top: 0;
  }
}
.tg-header__area-twelve .tgmenu__wrap {
  background: var(--tg-theme-secondary);
  padding: 0px 20px;
  border-radius: 0.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 1199.98px) {
  .tg-header__area-twelve .tgmenu__wrap {
    padding: 0px 20px;
  }
}
@media (max-width: 991.98px) {
  .tg-header__area-twelve .tgmenu__wrap {
    padding: 0px;
  }
}
.tg-header__area-twelve .tgmenu__navbar-wrap ul {
  margin: 0 0 0 50px;
}
.tg-header__area-twelve .tgmenu__action-ten {
  margin-right: 0;
}
.tg-header__area-twelve.sticky-menu .tgmenu__wrap {
  padding: 0 40px;
}
@media (max-width: 1199.98px) {
  .tg-header__area-twelve.sticky-menu .tgmenu__wrap {
    padding: 0 20px;
  }
}
@media (max-width: 991.98px) {
  .tg-header__area-twelve.sticky-menu .tgmenu__wrap {
    padding: 0px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__area-twelve .header-search {
    display: none;
  }
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
    padding: 6px 15px 5px 10px;
  }
}
.tgmenu__nav .logo img {
  max-height: 45px;
}
.tgmenu__nav-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 35px;
}
.tgmenu__nav-left-contact {
  position: relative;
}
@media (max-width: 1199.98px) {
  .tgmenu__nav-left-contact {
    display: none;
  }
}
.tgmenu__nav-left-contact::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #cacaca;
  height: 30px;
  width: 1px;
}
.tgmenu__nav-left-contact span {
  display: block;
  line-height: 1;
  font-size: 13px;
  color: var(--tg-border-1);
  margin-bottom: 7px;
}
.tgmenu__nav-left-contact a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--tg-body-color);
  display: block;
}
.tgmenu__nav-left-contact a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--tg-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tgmenu__nav-left-contact a:hover {
  color: var(--tg-theme-primary);
}
.tgmenu__nav-left-contact a:hover::before {
  width: 100%;
}
.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
}
.tgmenu__navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 0 115px;
}
@media (max-width: 1199.98px) {
  .tgmenu__navbar-wrap ul {
    margin: 0 0 0 50px;
  }
}
.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.tgmenu__navbar-wrap ul li a {
  font-size: 16px;
  font-weight: var(--tg-fw-regular);
  text-transform: none;
  color: var(--tg-color-white-default);
  padding: 23px 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-color-white-default);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  border-radius: 0 0 10px 10px;
}
.tgmenu__navbar-wrap ul li .sub-menu.sub-menu-right {
  right: 0;
  left: auto;
}
.tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}
.tgmenu__navbar-wrap ul li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}
.tgmenu__navbar-wrap ul li .sub-menu li a {
  padding: 8px 15px 8px 25px;
  display: flex;
  color: var(--tg-heading-color);
  font-size: 15px;
  text-transform: capitalize;
  align-items: center;
  justify-content: space-between;
}
.tgmenu__navbar-wrap ul li .sub-menu li:hover > a,
.tgmenu__navbar-wrap ul li .sub-menu li.active > a {
  color: var(--tg-theme-primary);
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tgmenu__navbar-wrap > ul > li.active a,
.tgmenu__navbar-wrap > ul > li:hover a {
  color: var(--tg-theme-primary);
}
.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.tgmenu__main-menu li.menu-item-has-children > a::after {
  content: "\f078";
  display: block;
  font-family: var(--tg-icon-font-family);
  font-size: 12px;
  font-weight: var(--tg-fw-bold);
  margin-left: 6px;
  color: var(--tg-border-10);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tgmenu__main-menu li.menu-item-has-children > a:hover::after {
  color: var(--tg-theme-primary);
}
.tgmenu__main-menu li.menu-item-has-children:hover > a::after,
.tgmenu__main-menu li.menu-item-has-children.active > a::after {
  color: var(--tg-theme-primary);
}
@media (max-width: 991.98px) {
  .tgmenu__action {
    margin-left: auto;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action {
    display: none;
  }
}
.tgmenu__action > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.tgmenu__action > ul li {
  position: relative;
  margin-left: 25px;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .tgmenu__action > ul li {
    margin-left: 20px;
  }
}
.tgmenu__action > ul li:first-child {
  margin-left: 0;
}
.tgmenu__action > ul li.header-search a {
  font-size: 24px;
  color: var(--tg-border-8);
  line-height: 0;
}
.tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-theme-primary);
}
.tgmenu__action > ul li.header-btn .tg-btn {
  padding: 13px 15px;
}
.tgmenu__action > ul li.header-btn .tg-btn svg path {
  opacity: 1 !important;
  transform: translateX(0);
}
.tgmenu__action > ul li.header-btn-three {
  border-left: 1px solid #3269ff;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 1500px) {
  .tgmenu__action > ul li.header-btn-three {
    padding: 0 25px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__action > ul li.header-btn-three {
    padding: 0 20px;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action > ul li.header-btn-three {
    display: none;
  }
}
.tgmenu__action > ul li.header-btn-three .tg-btn {
  background: var(--tg-color-white-default);
  color: var(--tg-theme-secondary);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 18px 28px;
}
.tgmenu__action > ul li.header-btn-three .tg-btn:hover {
  color: var(--tg-color-white-default);
}
@media (max-width: 1199.98px) {
  .tgmenu__action > ul li.offCanvas-menu {
    display: none;
  }
}
.tgmenu__action > ul li .header-contact-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tg-color-white-default);
  line-height: 1;
}
.tgmenu__action > ul li .header-contact-info i {
  font-size: 20px;
}
.tgmenu__action > ul li .header-contact-info:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__action-ten {
  margin-right: 26px;
}
@media (max-width: 991.98px) {
  .tgmenu__action-ten {
    margin-right: 0;
  }
}
.tgmenu__action-ten > ul {
  height: 100%;
}
.tgmenu__action-ten > ul li {
  margin-left: 20px;
}
.tgmenu__action-ten > ul li.header-search {
  padding-right: 20px;
}
.tgmenu__action-ten > ul li.header-search::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: #dee0eb;
}
@media (max-width: 1199.98px) {
  .tgmenu__action-ten > ul li.header-contact {
    display: none;
  }
}
.tgmenu__action-ten > ul li.header-contact .header-contact-info {
  font-size: 16px;
  gap: 5px;
}
.tgmenu__action-ten > ul li.header-btn .tg-btn {
  padding: 12px 24px;
}

.tg-mega-menu-wrap {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1225px;
  border-radius: 20px;
  padding: 30px 40px 10px;
  background: var(--tg-color-white-default);
  margin: 0 0;
  transform: scale(1, 0) translateX(-50%);
  transform-origin: 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1500px) {
  .tg-mega-menu-wrap {
    width: 1150px;
    padding: 25px 25px 10px;
  }
}
@media (max-width: 1199.98px) {
  .tg-mega-menu-wrap {
    width: 960px;
    padding: 25px 20px 0;
  }
}
@media (max-width: 1500px) {
  .tg-mega-menu-wrap .row {
    --bs-gutter-x: 15px;
  }
}

.menu-item-has-children:hover .tg-mega-menu-wrap {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(-50%);
}

.tgmobile__menu .tg-mega-menu-wrap {
  display: none;
  width: auto;
  padding: 25px 40px 0;
  background: transparent;
  position: relative;
  opacity: 1 !important;
  visibility: visible;
  transition: 0s;
  box-shadow: none;
  border: none;
  transform: scale(1);
  transform-origin: unset;
  left: 0;
  transform: translateY(-100%);
}

.tgmobile__menu .tg-mega-menu-wrap .row .col {
  position: relative;
  width: 100%;
}

.tg-mega-menu-has-children {
  position: static !important;
}

.tgmobile__menu .menu-item-has-children:hover .tg-mega-menu-wrap {
  transform: scale(1) translateX(0);
}

.transparent-header .tgmenu__navbar-wrap ul li .sub-menu {
  backdrop-filter: blur(24px);
  background-color: #fff6;
  border: 0.5px solid #c7c7c7ba;
  border-radius: 0 0 0.5rem 0.5rem;
  justify-content: space-between;
  box-shadow: 0 8px 16px #2c3cc405, inset 0 1px #fffc;
}
.transparent-header .sticky-menu ul li .sub-menu {
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 991.98px) {
  .main-img {
    display: flex;
    justify-content: center;
  }
}
.banner__area-two {
  padding: 95px 0 70px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .banner__area-two {
    padding: 70px 0 50px;
  }
}
@media (max-width: 767.98px) {
  .banner__area-two {
    padding: 70px 0 50px;
  }
}

@media (max-width: 991.98px) {
  .banner__content-two {
    text-align: center;
  }
}
.banner__content-two .title {
  font-size: 55px;
  margin-bottom: 10px;
}
@media (max-width: 1500px) {
  .banner__content-two .title {
    font-size: 50px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content-two .title {
    font-size: 45px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-two .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-two .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-two .title {
    font-size: 40px;
  }
}
.banner__content-two p {
  margin-bottom: 38px;
  font-size: 18px;
}

.banner__img-two {
  position: relative;
  text-align: right;
  /* padding-right: 30px; */
}
@media (max-width: 991.98px) {
  .banner__img-two {
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner__img-two {
    padding: 0;
    text-align: center;
  }
}
.banner__img-two .main-img img {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
@media (max-width: 1199.98px) {
  .banner__img-two .main-img img {
    max-width: 80%;
  }
}
@media (max-width: 767.98px) {
  .banner__img-two .main-img img {
    max-width: 100%;
  }
}
.banner__img-two .shape-wrap img {
  position: absolute;
  z-index: -1;
}
.banner__img-two .shape-wrap img:nth-child(1) {
  left: 20%;
  top: 18%;
}
@media (max-width: 767.98px) {
  .banner__img-two .shape-wrap img:nth-child(1) {
    display: none;
  }
}
.banner__img-two .shape-wrap img:nth-child(2) {
  right: -19%;
  bottom: 29%;
}
@media (max-width: 1500px) {
  .banner__img-two .shape-wrap img:nth-child(2) {
    right: -9%;
  }
}
@media (max-width: 1199.98px) {
  .banner__img-two .shape-wrap img:nth-child(2) {
    right: -7%;
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .banner__img-two .shape-wrap img:nth-child(2) {
    display: none;
  }
}
.banner__img-two .shape-wrap img:nth-child(3) {
  right: -3%;
  bottom: -6%;
}
@media (max-width: 767.98px) {
  .banner__img-two .shape-wrap img:nth-child(3) {
    right: -1%;
    bottom: -10%;
    max-width: 120px;
  }
}
.banner__img-two .shape-wrap img:nth-child(4) {
  left: 30px;
  bottom: 65px;
  z-index: 1;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -o-border-radius: 11px;
  -ms-border-radius: 11px;
  border-radius: 11px;
}
@media (max-width: 1199.98px) {
  .banner__img-two .shape-wrap img:nth-child(4) {
    left: 0;
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .banner__img-two .shape-wrap img:nth-child(4) {
    display: none;
  }
}
.banner__img-two .shape-wrap img:nth-child(5) {
  left: 14%;
  bottom: 0;
  max-width: unset;
  z-index: -2;
}
@media (max-width: 1199.98px) {
  .banner__img-two .shape-wrap img:nth-child(5) {
    left: 5%;
    max-width: 100%;
  }
}

.swiper-slide.swiper-slide-active .slider__content-five .sub-title,
.swiper-slide.swiper-slide-active .slider__content-four .sub-title,
.swiper-slide.swiper-slide-active .slider__content-three .sub-title,
.swiper-slide.swiper-slide-active .slider__content-two .sub-title {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider__content-five .title,
.swiper-slide.swiper-slide-active .slider__content-four .title,
.swiper-slide.swiper-slide-active .slider__content-three .title,
.swiper-slide.swiper-slide-active .slider__content-two .title {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider__content-five p,
.swiper-slide.swiper-slide-active .slider__content-four p,
.swiper-slide.swiper-slide-active .slider__content-three p,
.swiper-slide.swiper-slide-active .slider__content-two p {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .slider__content-five .tg-btn,
.swiper-slide.swiper-slide-active .slider__content-four .tg-btn,
.swiper-slide.swiper-slide-active .slider__content-three .tg-btn,
.swiper-slide.swiper-slide-active .slider__content-two .tg-btn {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active .shape img {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active.slider__bg-four .shape img:nth-child(1) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}
.swiper-slide.swiper-slide-active.slider__bg-four .shape img:nth-child(2) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeDown2;
  animation-name: fadeDown2;
}

.brand-item {
  min-height: 46px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-item img {
  cursor: pointer;
}

.brand__content-three .section__title .title {
  line-height: 1.4;
}
.brand__content-three .section__title .title span {
  font-size: 30px;
  display: block;
}

.about__list-item-two li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 19px;
}
.about__list-item-two li:last-child {
  margin-bottom: 0;
}
.about__list-item-two li .icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  flex: 0 0 auto;
}

.section-py-120 {
  padding: 120px 0;
}

.section-py-100 {
  padding: 100px 0;
}

.section-py-70 {
  padding: 70px 0;
}

.section-py-130 {
  padding: 130px 0;
}
@media (max-width: 991.98px) {
  .section-py-130 {
    padding: 100px 0;
  }
}
@media (max-width: 767.98px) {
  .section-py-130 {
    padding: 80px 0;
  }
}

.section-pt-130 {
  padding-top: 130px;
}
@media (max-width: 991.98px) {
  .section-pt-130 {
    padding-top: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pt-130 {
    padding-top: 80px;
  }
}

.section-pb-130 {
  padding-bottom: 130px;
}
@media (max-width: 991.98px) {
  .section-pb-130 {
    padding-bottom: 100px;
  }
}
@media (max-width: 767.98px) {
  .section-pb-130 {
    padding-bottom: 80px;
  }
}

.services__item-two {
  background: var(--tg-color-white-default);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  padding: 50px 45px;
}
@media (max-width: 1199.98px) {
  .services__item-two {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services__item-two {
    padding: 40px 40px;
  }
}

.services__content-two .title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}
.services__content-two p {
  margin-bottom: 20px;
}

.services__bottom-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.services__bottom-content p a {
  font-size: 15px;
  font-weight: 600;
  margin-left: 3px;
  position: relative;
}
.services__bottom-content p a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.sub-page a {
  position: relative;
}

.sub-page a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.services__bottom-content p a:hover {
  color: var(--tg-theme-secondary-ac);
}
.services__bottom-content p a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.sub-page a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.cta__area {
  padding: 82px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-title {
  title {
    font-size: 2rem !important;
  }
}

.cta__btn .material-symbols-outlined {
  font-size: 1rem !important;
}

.cta__area-two {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta__area-three {
  position: relative;
  z-index: 2;
  margin-top: -85px;
}
.cta__area-four {
  background: var(--tg-theme-primary);
  position: relative;
  z-index: 1;
  padding: 97px 0;
}
@media (max-width: 1199.98px) {
  .cta__area-four {
    padding: 80px 0;
  }
}
@media (max-width: 991.98px) {
  .cta__area-four {
    padding: 60px 0;
  }
}
.cta__area-five {
  background: var(--tg-theme-primary);
  position: relative;
  z-index: 1;
  padding: 49px 0;
}
.cta__area-six {
  background: var(--tg-theme-secondary);
}
.cta__area-seven {
  background: var(--tg-theme-primary);
  position: relative;
  z-index: 1;
  padding: 78px 0;
}
@media (max-width: 1199.98px) {
  .cta__area-seven {
    padding: 55px 0;
  }
}
@media (max-width: 991.98px) {
  .cta__area-seven {
    padding: 40px 0;
  }
}
.cta__area-eight {
  background: var(--tg-color-gray-1);
}

.sub-page-banner-wrap {
  background: var(--tg-color-light-2);
  padding: 63px 0 63px 75px;
  z-index: 1;
  position: relative;
}

@media (max-width: 1199.98px) {
  .cta__inner-wrap,
  .sub-page-banner-wrap {
    padding: 63px 0 63px 40px;
  }
}
.cta__inner-wrap::before,
.sub-page-banner-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 500%;
  height: 100%;
  background: var(--tg-theme-secondary);
  z-index: -1;
}
.cta__inner-wrap-two {
  background: var(--tg-theme-primary);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 65px 65px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .cta__inner-wrap-two {
    padding: 65px 30px;
  }
}
@media (max-width: 991.98px) {
  .cta__inner-wrap-two {
    padding: 45px 30px;
    text-align: center;
  }
}
.cta__inner-wrap-three {
  -webkit-border-radius: 10px 0px 0px 50px;
  -moz-border-radius: 10px 0px 0px 50px;
  -o-border-radius: 10px 0px 0px 50px;
  -ms-border-radius: 10px 0px 0px 50px;
  border-radius: 10px 0px 0px 50px;
}
.cta__inner-wrap-three::before {
  -webkit-border-radius: 10px 0px 0px 50px;
  -moz-border-radius: 10px 0px 0px 50px;
  -o-border-radius: 10px 0px 0px 50px;
  -ms-border-radius: 10px 0px 0px 50px;
  border-radius: 10px 0px 0px 50px;
}
.cta__inner-wrap-four {
  position: relative;
  z-index: 2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.sub-page-banner {
  -webkit-border-radius: 2.778vw;
  -moz-border-radius: 2.778vw;
  -o-border-radius: 2.778vw;
  -ms-border-radius: 2.778vw;
  border-radius: 2.778vw;
  padding: 63px 75px 63px 75px;
  margin-top: 1rem;
}
@media (max-width: 1199.98px) {
  .sub-page-banner {
    padding: 63px 50px 63px 50px;
  }
}
@media (max-width: 767.98px) {
  .sub-page-banner {
    padding: 40px 30px;
  }

  .sub-page {
    padding-top: 40px !important;
  }
}
.sub-page-banner::before {
  display: none;
}

@media (max-width: 991.98px) {
  .cta__content {
    text-align: center;
  }
}

.cta__btn {
  text-align: right;
}
@media (max-width: 991.98px) {
  .cta__btn {
    text-align: center;
    margin-top: 30px;
  }
}

.team__area-three {
  position: relative;
  z-index: 1;
}

.team__item-three {
  background: var(--tg-color-white-default);
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid #dfe1ed;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  padding: 40px 20px;
  height: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.team__item-three:hover .team__thumb-three img {
  filter: grayscale(0);
}

.team__thumb-three {
  width: 200px;
  height: 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  margin: 0 auto;
  background: var(--tg-color-gray-12);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
.team__thumb-three img {
  /* margin-bottom: -25px; */
  filter: grayscale(1);
}

.team__content-three .title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
}
.team__content-three span {
  display: block;
  line-height: 1;
  /* margin-bottom: 25px; */
}

@media (max-width: 991.98px) {
  .faq__img-three {
    text-align: center;
    margin-bottom: 50px;
  }
}
.faq__img-three img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.faq__wrap .accordion-item {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--tg-border-5);
  background-color: transparent;
}
.faq__wrap .accordion-item:first-child {
  border-top: 1px solid var(--tg-border-5);
}
.faq__wrap .accordion-button {
  font-size: 22px;
  font-weight: 600;
  padding: 30px 30px 30px 0;
  color: var(--tg-heading-color);
  background: transparent;
  position: relative;
}
@media (max-width: 767.98px) {
  .faq__wrap .accordion-button {
    font-size: 18px;
  }
}
.faq__wrap .accordion-button:not(.collapsed) {
  color: var(--tg-theme-primary);
  background: transparent;
  box-shadow: none;
}
.faq__wrap .accordion-button:not(.collapsed)::before {
  content: "\e316";
  color: var(--tg-theme-primary);
}
.faq__wrap .accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.faq__wrap .accordion-button::after {
  display: none;
}
.faq__wrap .accordion-button::before {
  content: "\e313";
  position: absolute;
  right: 0;
  top: 28px;
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-size: 24px;
  color: var(--tg-color-gray-6);
}
.faq__wrap .accordion-body {
  padding: 0 0 30px;
}
.faq__wrap .accordion-body p {
  margin-bottom: 0;
}

.testimonial__area-two {
  position: relative;
  z-index: 1;
}

.testimonial__item-two {
  background: var(--tg-color-white-default);
  border-radius: 20px;
  border: 1px solid var(--tg-border-9);
  padding: 35px 35px;
  position: relative;
  z-index: 1;
}
.testimonial__item-two > p {
  margin-bottom: 22px;
}

.testimonial__item-wrap-three {
  position: relative;
  z-index: 1;
}

.testimonial__icon-two svg {
  position: absolute;
  right: 35px;
  bottom: 45px;
  z-index: -1;
}

.testimonial__author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial__author .thumb {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}
.testimonial__author .thumb img {
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.testimonial__author .content .title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
.testimonial__author .content span {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 15px;
}
.testimonial__author .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: var(--tg-color-yellow-light);
  gap: 4px;
}

.testimonial__rating-two {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--tg-color-yellow-light);
  margin-bottom: 15px;
}

.features__item {
  padding: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .features__item {
    padding: 30px 25px;
  }
}
@media (max-width: 991.98px) {
  .features__item {
    padding: 35px 35px;
  }
}
.features__item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.features__item-top .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.features__item:hover {
  transform: translateY(-5px);
}
.features__item:hover .features__icon i {
  transform: rotateY(180deg);
}

.features__content p {
  margin-bottom: 0;
}

.career__img {
  margin-bottom: 40px;
}
.career__img img {
  width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  min-height: 320px;
  object-fit: cover;
}
.career__content {
  text-align: center;
}
.career__content p {
  margin-bottom: 40px;
}
.career__item {
  border: 1px solid #d9e4ff;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 35px 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1199.98px) {
  .career__item {
    padding: 30px 30px;
  }
}
.career__item:hover {
  border-color: var(--tg-theme-primary);
}
.career__item-content .title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.career__item-content p {
  margin-bottom: 10px;
}
.career__item-content p span {
  color: var(--tg-heading-color);
  font-weight: 600;
}
.career__item .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 15px;
}
.career__item .list-wrap li a {
  color: rgba(0, 0, 0, 0.4);
  border: 1px solid #eaf0ff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  display: block;
  line-height: 1;
  padding: 8px 16px;
}
.career__item .list-wrap li a:hover {
  border-color: var(--tg-theme-primary);
  color: var(--tg-theme-primary);
}
.career__item-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.career__item-bottom .salary {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  background: #eaf0ff;
  padding: 10px 10px;
  min-height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.career__item-bottom .salary span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.career__item-bottom .tg-btn {
  padding: 12px 25px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.career__details-area container pt-1 {
  /* background: #f4f6ff; */
  margin-top: 1rem;
}

.career__details-box {
  padding: 50px;
  background-color: var(--tg-rounded-lbl);
  border-radius: 2.5vw;
}
@media (max-width: 991.98px) {
  .career__details-content {
    margin-bottom: 50px;
  }
}
.career__details-content .sub-title {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: var(--tg-theme-primary);
  margin-bottom: 18px;
}
.career__details-content .title {
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 48px;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .career__details-content .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .career__details-content .title {
    font-size: 38px;
  }

  .career__details-box {
    padding: 30px;
  }
}
.career__details-content .salary {
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1199.98px) {
  .career__details-content .salary {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .career__details-content .salary {
    font-size: 26px;
  }
}
.career__details-content .salary span {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}
.career__details-content .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.career__details-content .list-wrap li {
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
}
.career__details-content .list-wrap li span {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: var(--tg-heading-color);
  margin-bottom: 14px;
}
.career__details-content-inner {
  margin-top: 35px;
}
.career__details-content-inner > p {
  margin-bottom: 12px !important;
}
.career__details-content-two {
  width: 90%;
}
@media (max-width: 1199.98px) {
  .career__details-content-two {
    width: 95%;
  }
}
@media (max-width: 991.98px) {
  .career__details-content-two {
    width: 100%;
  }
}
.career__details-content-two .title {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.career__details-content-two p {
  margin-bottom: 0;
}
.career__details-content-two ul {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .career__details-benefit {
    margin-top: 70px;
  }
}
.career__details-benefit .title {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 20px;
}
.career__details-benefit .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.career__details-benefit .list-wrap li:last-child {
  margin-bottom: 0;
}
.career__details-benefit .list-wrap li img {
  width: 20px;
  flex: 0 0 auto;
  transform: translateY(5px);
}

.apply__box {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  background: var(--tg-color-white-default);
  border: 1px solid #eaf0ff;
  border-radius: 10px;
  padding: 40px 30px;
  /* margin-left: 104px; */
}
@media (max-width: 1199.98px) {
  .apply__box {
    margin-left: 0;
  }
}
.apply__box span {
  display: block;
  margin-bottom: 20px;
}
.apply__box .tg-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}
.apply__box p {
  margin-bottom: 15px;
}
.apply__box p:last-child {
  font-size: 14px;
  margin-bottom: 0;
}
.apply__box p a {
  font-size: 14px;
  color: var(--tg-heading-color);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  font-weight: 500;
}

.contact__info-item {
  position: relative;
  background: var(--tg-color-white-default);
  border: 1px solid #dee0ee;
  padding: 30px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 18px;

  img {
    border-radius: var(--tg-border-radius);
    filter: grayscale(1);
    max-width: 250px;
  }

  &:hover img {
    filter: grayscale(0);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
}
@media (max-width: 1199.98px) {
  .contact__info-item {
    padding: 40px 30px;
  }
}
@media (max-width: 767.98px) {
  .contact__info-item {
    padding: 30px 30px;
    flex-direction: column;
    img {
      max-width: 100%;
    }
  }
}
.contact__info-item:last-child {
  margin-bottom: 0;
}
.contact__info-item .title {
  font-size: 24px;
  margin-bottom: 6px;
}
.contact__info-item p {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
.contact__info-item .list-wrap li {
  margin-bottom: 3px;
}
.contact__info-item .list-wrap li:last-child {
  margin-bottom: 0;
}
.contact__info-item .list-wrap li a {
  color: var(--tg-body-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.contact__info-item .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--tg-theme-primary);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.contact__info-item .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}
.contact__info-item .list-wrap li a:hover::before {
  width: 100%;
}
.contact__info-item .shape {
  position: absolute;
  right: -19px;
  bottom: -13px;
  color: #f4f5f8;
  z-index: -1;
}
.contact__form-wrap {
  background: var(--tg-rounded-lbl);
  padding: 50px 60px 55px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px 15px 0 0;
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .contact__form-wrap {
    padding: 35px 35px 40px;
  }
}
@media (max-width: 991.98px) {
  .contact__form-wrap {
    margin-left: 0;
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .contact__form-wrap {
    padding: 20px 10px;
  }
}
.contact__form-wrap .title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .contact__form-wrap .title {
    font-size: 26px;
  }
}

.error-area {
  padding: 120px 0;
}
@media (max-width: 1500px) {
  .error-area {
    padding: 100px 0;
  }
}
.error-img {
  text-align: center;
  width: 648px;
  height: 323px;
  margin: 0 auto 65px;
}
@media (max-width: 1500px) {
  .error-img {
    margin-bottom: 45px;
  }
}
@media (max-width: 991.98px) {
  .error-img {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .error-img {
    margin-bottom: 30px;
    width: 100%;
    height: 100%;
  }
}
.error-img svg {
  width: 100%;
  height: 100%;
  color: var(--tg-theme-primary);
}
.error-content .title {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
}
@media (max-width: 1199.98px) {
  .error-content .title {
    margin-bottom: 35px;
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .error-content .title {
    font-size: 30px;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}
.error-content .title span {
  display: block;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .error-content .title span {
    margin-top: 5px;
  }
}
.error-content .tg-button-wrap {
  justify-content: center;
}

.footer__area {
  position: relative;
  z-index: 1;
}
.footer__top {
  padding: 70px 0 0px;
}

@media (max-width: 767.98px) {
  .footer__bottom {
    p {
      text-align: center;
    }
  }

  .copyright__social {
    text-align: center !important;
  }

  .tcol-heading {
    gap: 3rem;

    h2,
    p {
      text-align: center;
    }
  }
}

@media (max-width: 767.98px) {
  .footer__top .row *:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}
.footer__top .row *:nth-child(4) .footer__widget {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .footer__top .row *:nth-child(4) .footer__widget {
    margin-left: 0;
  }
}
.footer__top-two {
  padding: 140px 0 100px;
}
@media (max-width: 767.98px) {
  .footer__top-two {
    padding: 100px 0 60px;
  }
}
.footer__top-two .row *:nth-child(2) .footer__widget {
  margin-left: 40px;
}
@media (max-width: 991.98px) {
  .footer__top-two .row *:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}
.footer__top-two .row *:nth-child(4) .footer__widget {
  margin-left: 80px;
}
@media (max-width: 1199.98px) {
  .footer__top-two .row *:nth-child(4) .footer__widget {
    margin-left: 0;
  }
}
.footer__top-three {
  padding: 75px 0 60px;
}
.footer__top-three .row *:nth-child(2) .footer__widget {
  margin-left: 30px;
}
@media (max-width: 1199.98px) {
  .footer__top-three .row *:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}
.footer__top-three .row *:nth-child(4) .footer__widget {
  margin-left: 50px;
}
@media (max-width: 1199.98px) {
  .footer__top-three .row *:nth-child(4) .footer__widget {
    margin-left: 0;
  }
}
.footer__logo {
  margin-bottom: 25px;
  img {
    width: 200px;
  }
}

.footer__content p {
  margin-bottom: 25px;
  font-size: 16px;
  padding-right: 4rem;
}
.footer__content-two p {
  margin-bottom: 25px;
}
.footer__content-three p {
  color: var(--tg-color-gray-4);
}

.footer__widget {
  margin-bottom: 40px;
}
.footer__widget-title {
  margin-bottom: 30px;
  font-size: 18px;
}
.footer__widget-title-two {
  color: var(--tg-color-white-default);
}
.footer__widget-link li {
  margin-bottom: 10px;
}
.footer__widget-link li:last-child {
  margin-bottom: 0;
}
.footer__widget-link li a {
  color: var(--tg-body-color);
  position: relative;
  font-size: 16px;
  font-family: var(--tg-fw-regular);
}
.footer__widget-link li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.footer__widget-link li a:hover {
  color: var(--tg-theme-secondary);
}
.footer__widget-link li a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.footer__widget-link-two li {
  color: var(--tg-color-gray-4);
}
.footer__widget-link-two li a {
  color: var(--tg-color-gray-4);
}

.footer__bottom {
  background: var(--tg-color-light-2);
  padding: 20px 0;
}

@media (max-width: 767.98px) {
  .footer__bottom-logo {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .footer__bottom-logo-two {
    text-align: center;
    margin-bottom: 15px;
  }
}

.copyright__content {
  text-align: left;
}

.copyright__social {
  text-align: right;
  a {
    font-family: var(--tg-fw-regular);
    color: var(--tg-heading-color);
  }
}

.copyright__content p {
  margin-bottom: 0;
  font-size: 15px;
}
@media (max-width: 767.98px) {
  .copyright__content-two {
    text-align: center;
    margin-bottom: 25px;
  }
}
.copyright__content-two p {
  color: #878ba8;
  margin-bottom: 0;
  font-size: 15px;
}
.copyright__content-three p {
  margin-bottom: 0;
  font-size: 15px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .copyright__content-three p {
    text-align: center;
  }
}
.copyright__content-four p {
  margin-bottom: 0;
  font-size: 15px;
  text-align: center;
  color: #878ba8;
}

/* Custom */

.lh-60 {
  line-height: 60px;
}

.gp-40 {
  gap: 40px;
}

.home-product-img {
  width: 180px;
}

.home-sf-igm {
  width: 120px;
}

.bg-cus-light {
  background: rgba(244, 247, 250, 0.5);
}

.px-box {
  padding-right: 1.2rem !important;
  padding-left: 1.2rem !important;
}

.home-prod-item {
  border-bottom: 3px solid var(--tg-theme-primary) !important;
  border-radius: 8px 8px 0px 0px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
  border: 1px solid #eceff2;
}

.fs-20 {
  font-size: 20px !important;
}

.max-w-1000 {
  max-width: 1000px;
}

.max-w-1140 {
  max-width: 1140px;
}

.company-swiper img {
  filter: grayscale(100%);

  &:hover {
    filter: grayscale(0);
  }
}

.mini-heading {
  color: #191a15 !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.service-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: var(--tg-theme-primary);
  border-radius: var(--tg-border-radius);

  > img {
    background-color: white;
    border-radius: var(--tg-border-radius);
  }
}

.rounded-lbl {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  background: var(--tg-rounded-lbl);
  border-radius: 100px;
  width: fit-content;
}

.btn-ligh-new {
  background: var(--tg-rounded-lbl) !important;
}

.text-white {
  color: white;
}

.counter__area-seven {
  background: var(--tg-theme-secondary);
}

.counter__area-seven {
  h2,
  h4,
  p {
    color: white !important;
  }

  .sub-h {
    color: var(--tg-gray-txt) !important;
  }
}

.sub-h {
  font-size: 18px !important;
}

.our-serv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  gap: 21px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  border-radius: var(--tg-border-radius);
  border: 1px solid;
  border-color: transparent;

  .title {
    font-size: 20px !important;
  }

  .text {
    color: var(--tg-gray-txt) !important;
  }

  &:hover {
    background: #5ee3ce24;
    border-color: var(--tg-theme-primary);
    transform: translateY(-5px);
    transition: all 0.2s ease-out 0s;
  }
}

.our-serv-all {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  gap: 21px;
  height: 100%;
  background: rgba(244, 247, 250, 0.5);
  backdrop-filter: blur(2px);
  border-radius: var(--tg-border-radius);
  border: 1px solid #eceff2;

  .title {
    font-size: 20px !important;
  }

  &:hover {
    background: #5ee3ce24;
    border-color: var(--tg-theme-primary);
    transform: translateY(-5px);
    transition: all 0.2s ease-out 0s;
  }

  .icon-serv > span {
    background-color: white;
    color: var(--tg-theme-secondary);
  }
}

.product-img {
  max-width: 200px;
}

.icon-serv {
  display: flex;
  gap: 20px;
  align-items: center;

  > span {
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px;
    gap: 10px;
    width: 40px;
    height: 40px;
    background: rgba(217, 217, 217, 0.28);
    border-radius: var(--tg-border-radius);
  }
}

.readme-txt {
  display: flex;
  align-items: center;
  font-family: var(--tg-body-font-family);
  gap: 10px;
  color: var(--tg-theme-primary);
}

.px-15px {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.services__content-two {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.border-b {
  border-bottom: 1px solid #e7e9ed;
}

.border-t {
  border-top: 1px solid #e7e9ed;
}

footer .swiper-slide img {
  width: 100%;
  filter: brightness(0);
  opacity: 0.2;

  &:hover {
    opacity: 1;
    filter: none;
    transition-duration: 0.4s;
  }
}

.brand-section {
  padding: 20px 0;
  border-top: 1px solid #e7e9ed;
}

.tc-panel {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;

  p {
    text-align: justify;
  }

  .h4 {
    font-size: 16px;
  }
}

.team-place {
  color: var(--tg-theme-primary);
  font-weight: bold;
}

.transp-div {
  height: 25px;
  width: 100%;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}

#hubspot-form {
  padding: 3rem !important;
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 2rem;
}

.pt-1 {
  padding-top: 1rem !important;
}

.fs-lg {
  font-size: 2rem !important;
}

.sub-box {
  padding: 2rem !important;
  background: rgba(244, 247, 250, 0.5);
  backdrop-filter: blur(2px);
  border-radius: var(--tg-border-radius);
  border: 1px solid #eceff2;
}

.fs-cus {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.fs-cus-2 {
  font-size: 1.5rem !important;
  font-weight: bold;
  line-height: 1.4 !important;
}

.fs-cus-3 {
  font-size: 1.3rem !important;
  font-weight: normal !important;
  line-height: 1.4 !important;
}

.mobile-nav-toggler .material-symbols-outlined {
  font-size: 2rem;
}
