@import url(https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&amp;family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&amp;display=swap);
@font-face {
  font-family:"Font Awesome 5 Brands";
  src:
    url(../fonts/fa-brands-400.woff2) format("woff2"),
    url(../fonts/fa-regular-400.woff2) format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --tg-body-font-family: "Poppins", sans-serif;
  --tg-heading-font-family: "Barlow", sans-serif;
  --tg-berlin-font-family: "berlin_sans_fb_demibold";
  --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-common-color-black-2:#000
  --tg-body-color: #19222b;
  --tg-bg-color: #19222b;
  --tg-heading-color: #fff;
  --tg-white-color:#fff;
  --tg-theme-primary: #ed0000;
  --tg-theme-secondary: #ffbe18;
  --tg-border-1: #19222b;
  --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;
}
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);
  background: var(--tg-common-color-black);
}
body.bg-black2 {
  background: #11131c;
}
img,
.img {
  width: 100%;
  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 {
  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-secondary);
  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: 0;
  font-weight: var(--tg-fw-bold);
  line-height: var(--tg-heading-line-height);
  text-transform: uppercase;
}
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: 0;
  padding: 0;
}
.list-wrap li {
  list-style: none;
}
p {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-white-color);
  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,
textarea {
  color: var(--tg-body-color);
}
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%;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
  border-radius: 10px;
  background-color: var(--tg-common-color-black);
}
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--tg-common-color-black);
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
  background-color: var(--tg-theme-primary);
}
*::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-black);
  text-shadow: none;
}
::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-black);
  text-shadow: none;
}
::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-black);
  text-shadow: none;
}
*::-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;
}
.fix {
  overflow: hidden;
}
.clear {
  clear: both;
}
.main--area {
  overflow-x: hidden;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  --bs-gutter-x: 30px;
}
.gutter-y-30 {
  --bs-gutter-y: 30px;
}
.gx-0 {
  --bs-gutter-x: 0;
}
.container {
  max-width: 1300px;
}
@media (max-width: 1500px) {
  .container {
    max-width: 1260px;
  }
}
@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: 1590px;
}
@media (max-width: 1800px) {
  .custom-container {
    max-width: 1490px;
  }
}
@media (max-width: 1500px) {
  .custom-container {
    max-width: 1260px;
  }
}
@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-container2 {
  max-width: 1480px;
}
@media (max-width: 1800px) {
  .custom-container2 {
    max-width: 1400px;
  }
}
@media (max-width: 1500px) {
  .custom-container2 {
    max-width: 1260px;
  }
}
@media (max-width: 1400px) {
  .custom-container2 {
    max-width: 1200px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container2 {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container2 {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container2 {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container2 {
    max-width: 540px;
  }
}
.custom-container3 {
  max-width: 1710px;
}
@media (max-width: 1800px) {
  .custom-container3 {
    max-width: 1490px;
  }
}
@media (max-width: 1500px) {
  .custom-container3 {
    max-width: 1260px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container3 {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container3 {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container3 {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container3 {
    max-width: 540px;
  }
}
.custom-container4 {
  max-width: 1510px;
}
@media (max-width: 1800px) {
  .custom-container4 {
    max-width: 1460px;
  }
}
@media (max-width: 1500px) {
  .custom-container4 {
    max-width: 1260px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container4 {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container4 {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container4 {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container4 {
    max-width: 540px;
  }
}
.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.grey-bg {
  background: var(--tg-common-color-gray);
}
.white-bg {
  background: var(--tg-white-color);
}
.black-bg {
  background: var(--tg-common-color-black);
}
.bg-img-cover {
  background-size: cover;
}
.bg-img-center {
  background-position: top center;
}
.btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: medium none;
  border-radius: 2px;
  color: var(--tg-common-color-black-2);
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: var(--tg-fw-extra-bold);
  letter-spacing: 0.8px;
  margin-bottom: 0;
  padding: 15px 34px;
  text-align: center;
  text-transform: uppercase;
  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;
  font-family: var(--tg-heading-font-family);
  white-space: nowrap;
}
.btn:hover {
  background: var(--tg-common-color-gray);
  color: var(--tg-white-color);
}
.tg-btn-1 {
  display: inline-flex;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-common-color-black-2);
  font-weight: var(--tg-fw-extra-bold);
  text-transform: uppercase;
  padding: 14px 49px;
  font-size: 15px;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  min-width: 195px;
  z-index: 1;
}
.tg-btn-1 svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tg-btn-1 .cls-1 {
  fill: var(--tg-theme-primary);
  stroke: var(--tg-white-color);
  stroke-width: 1.5px;
  -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;
}
.tg-btn-1 .cls-2 {
  stroke: #fff0;
  fill: var(--tg-white-color);
}
.tg-btn-1 .cls-1,
.tg-btn-1 .cls-2 {
  fill-rule: evenodd;
}
.tg-btn-1:hover {
  color: var(--tg-common-color-black-2);
}
.tg-btn-1:hover .cls-1 {
  fill: var(--tg-white-color);
}
.tg-btn-1.-btn-yellow .cls-1 {
  fill: var(--tg-theme-secondary);
}
.tg-btn-1.-btn-yellow:hover .cls-1 {
  fill: var(--tg-theme-primary);
}
.tg-border-btn {
  display: inline-flex;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-white-color);
  font-weight: var(--tg-fw-extra-bold);
  text-transform: uppercase;
  padding: 10px 30px;
  font-size: 25px;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 157px;
  min-height: 48px;
  z-index: 1;
}
.tg-border-btn svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--tg-theme-primary);
}
.tg-border-btn svg path:last-child {
  fill: #fff0;
  -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;
}
.tg-border-btn i {
  margin-right: 10px;
}
.tg-border-btn:hover {
  color: var(--tg-common-color-black-2);
  }
.tg-border-btn:hover svg path:last-child {
  fill: var(--tg-theme-primary);
}
.tg-border-btn:hover::before {
  opacity: 1;
}
.tg-btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-white-color);
  font-weight: var(--tg-fw-bold);
  white-space: nowrap;
  font-size: 20px;
  padding: 16px 35px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  -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;
  z-index: 1;
}
.tg-btn-2 svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tg-btn-2 svg path {
  stroke: var(--tg-theme-primary);
}
.tg-btn-2:hover {
  background-color: var(--tg-theme-primary);
  color: var(--tg-common-color-black-2);
}
.tg-btn-2.-secondary svg path {
  stroke: var(--tg-theme-secondary);
}
.tg-btn-2.-secondary:hover {
  background-color: var(--tg-theme-secondary);
}
.tg-btn-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-common-color-black-2);
  font-weight: var(--tg-fw-extra-bold);
  background: #fff0;
  border: none;
  white-space: nowrap;
  font-size: 16px;
  padding: 22px 35px;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -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;
  min-width: 188px;
}
@media (max-width: 767.98px) {
  .tg-btn-3 {
    min-width: 166px;
    padding: 18px 30px;
    font-size: 15px;
  }
}
.tg-btn-3:hover {
  color: var(--tg-common-color-black-2);
}
.tg-btn-3 .svg-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  fill: var(--tg-theme-primary);
  stroke: var(--tg-white-color);
  stroke-width: 2px;
  fill-rule: evenodd;
  z-index: -1;
}
.tg-btn-3 .svg-icon svg {
  display: block;
  -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;
}
.tg-btn-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-white-color);
  font-weight: var(--tg-fw-extra-bold);
  background: #fff0;
  border: none;
  white-space: nowrap;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -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;
}
.tg-btn-4 span {
  padding: 19.5px 35px;
  display: flex;
  position: relative;
  z-index: 1;
}
.tg-btn-4 span:before,
.tg-btn-4 span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-white-color);
  clip-path: polygon(
    18px 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%,
    0 18px,
    18px 0,
    18px 1px,
    1px 18px,
    1px calc(100% - 1px),
    calc(100% - 18px) calc(100% - 1px),
    calc(100% - 1px) calc(100% - 18px),
    calc(100% - 1px) 1px,
    18px 1px
  );
  z-index: -1;
  transition: 0.4s;
  opacity: 0.15;
}
.tg-btn-4 span:after {
  background: var(--tg-white-color);
  inset: 1px;
  clip-path: polygon(
    18px 0%,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%,
    0% 18px
  );
  opacity: 0.06;
}
.tg-btn-4:after,
.tg-btn-4:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: var(--tg-theme-primary);
  top: 5px;
  left: 5px;
  transition: 0.4s;
  z-index: 2;
}
.tg-btn-4:before {
  top: auto;
  left: auto;
  bottom: 5px;
  right: 5px;
}
.tg-btn-4:hover {
  color: var(--tg-common-color-black);
}
.tg-btn-4:hover span:after {
  opacity: 1;
}
.tg-btn-4:hover:after,
.tg-btn-4:hover:before {
  background: var(--tg-theme-primary);
}
.tg-btn-5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-white-color);
  font-weight: var(--tg-fw-extra-bold);
  background: #fff0;
  border: none;
  white-space: nowrap;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -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;
}
.slider-activee video{
  width: 100%;
}
.tg-btn-5 span {
  padding: 19.5px 35px;
  display: flex;
  position: relative;
  z-index: 1;
}
.tg-btn-5 span:before,
.tg-btn-5 span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-white-color);
  clip-path: polygon(
    18px 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%,
    0 18px,
    18px 0,
    18px 1px,
    1px 18px,
    1px calc(100% - 1px),
    calc(100% - 18px) calc(100% - 1px),
    calc(100% - 1px) calc(100% - 18px),
    calc(100% - 1px) 1px,
    18px 1px
  );
  z-index: -1;
  transition: 0.4s;
}
.tg-btn-5 span:after {
  background: var(--tg-white-color);
  inset: 1px;
  clip-path: polygon(
    18px 0%,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%,
    0% 18px
  );
  opacity: 0;
}
.tg-btn-5:after,
.tg-btn-5:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: var(--tg-white-color);
  top: 5px;
  left: 5px;
  transition: 0.4s;
  z-index: 2;
}
.tg-btn-5:before {
  top: auto;
  left: auto;
  bottom: 5px;
  right: 5px;
}
.tg-btn-5:hover {
  color: var(--tg-common-color-black);
}
.tg-btn-5:hover span:after {
  opacity: 1;
}
.tg-btn-5:hover:after,
.tg-btn-5:hover:before {
  background: var(--tg-theme-primary);
}
.tg-btn-line {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-white-color);
  text-transform: uppercase;
  position: relative;
}
.tg-btn-line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--tg-theme-primary);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}
.tg-btn-line:hover {
  color: var(--tg-theme-primary);
}
.tg-btn-line:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.search__popup-wrap {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
  margin-top: -370px;
  transform: translateY(-100%);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.search__popup-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 370px;
  background-image: url(../img/bg/search_wave.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0;
}
.search__layer {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: rgb(15 22 27 / 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-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;
}
.search__close {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: var(--tg-theme-primary);
  cursor: pointer;
}
.search__wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search__wrap .title {
  font-size: 47px;
  margin: 0 0 70px 0;
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-extra-bold);
  text-transform: uppercase;
  color: var(--tg-theme-primary);
  letter-spacing: -1px;
}
.search__wrap .title span {
  color: var(--tg-white-color);
  text-shadow: -2px 2.5px 0 rgb(69 248 130 / 0.66);
  letter-spacing: 5px;
}
.search__form {
  position: relative;
}
.search__form form input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 50px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  background: #fff0;
  color: var(--tg-white-color);
}
.search__form form input::placeholder {
  font-size: 30px;
  opacity: 0.5;
}
.search__form form button {
  position: absolute;
  right: 20px;
  background: #fff0;
  border: 0;
  font-size: 25px;
  color: var(--tg-theme-primary);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search__form::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--tg-theme-primary);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}
.search__active .search__popup-wrap {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  margin-top: 0;
}
.search__active .search__form::after {
  width: 100%;
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.page-revealer {
  pointer-events: none;
  visibility: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  z-index: 12000;
  background-color: var(--tg-common-color-black);
}
.tg-preloader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--tg-common-color-black);
  z-index: 99999;
}
.tg-preloader > .tg-loading {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.tg-preloader > .tg-loading > div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #fff0;
  border-radius: 50%;
  animation: preloader 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--tg-theme-primary) #fff0 #fff0 #fff0;
}
.tg-preloader > .tg-loading > div:nth-child(1) {
  animation-delay: -0.1s;
}
.tg-preloader > .tg-loading > div:nth-child(2) {
  animation-delay: -0.2s;
}
.tg-preloader > .tg-loading > div:nth-child(3) {
  animation-delay: -0.3s;
}
@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html.show-preloader body {
  display: none;
}
.offCanvas__wrap {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 485px;
  transform: translateX(100%);
  height: 100%;
  display: block;
  background-color: var(--tg-common-color-black-8);
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.offCanvas__wrap::-webkit-scrollbar {
  width: 0;
}
@media (max-width: 1500px) {
  .offCanvas__wrap {
    width: 430px;
  }
}
@media (max-width: 767.98px) {
  .offCanvas__wrap {
    width: 320px;
  }
}
.offCanvas__body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.offCanvas__top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 35px 40px 25px;
  border-bottom: 1px solid #18202a;
}
.offCanvas__toggle {
  margin-left: auto;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--tg-body-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #1f2935;
  cursor: pointer;
  -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;
}
.offCanvas__toggle:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-black);
}
@media (max-width: 1500px) {
  .offCanvas__toggle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.offCanvas__content {
  padding: 25px 40px 50px 40px;
}
.offCanvas__content .title {
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0 0 50px;
}
.offCanvas__content .title span {
  color: var(--tg-theme-primary);
}
.offCanvas__newsletter .small-title {
  margin: 0 0 22px;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-theme-primary);
}
.offCanvas__newsletter-form {
  position: relative;
  margin: 0 0 20px;
}
.offCanvas__newsletter-form [type="email"] {
  display: block;
  width: 100%;
  background: #fff0;
  border: 1px solid #202b36;
  padding: 15px 80px 15px 22px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-medium);
  -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;
}
.offCanvas__newsletter-form [type="email"]:focus {
  border-color: #535d68;
}
.offCanvas__newsletter-form [type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  background: #fff0;
  width: 60px;
  font-size: 22px;
}
.offCanvas__newsletter-form [type="submit"]::before {
  content: "";
  position: absolute;
  width: 1px;
  top: 6px;
  background: #202b36;
  bottom: 6px;
  left: 0;
}
.offCanvas__newsletter p {
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
  margin: 0 0;
}
.offCanvas__contact {
  margin: 0 0 40px;
}
.offCanvas__contact .small-title {
  margin: 0 0 22px;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: var(--tg-fw-semi-bold);
}
.offCanvas__contact-list li {
  color: var(--tg-body-color);
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-medium);
  position: relative;
  padding-left: 23px;
  margin: 0 0 8px;
}
.offCanvas__contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--tg-body-color);
  -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;
}
.offCanvas__contact-list li:hover::before {
  background: var(--tg-theme-primary);
}
.offCanvas__contact-list li:last-child {
  margin: 0 0;
}
.offCanvas__contact-list li a {
  color: var(--tg-body-color);
}
.offCanvas__contact-list li a:hover {
  color: var(--tg-theme-primary);
}
.offCanvas__social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 30px 0 0;
  border-top: 1px solid #202b36;
  margin: 50px 0 0;
}
.offCanvas__social li {
  line-height: 1;
}
.offCanvas__social li a {
  display: block;
  font-size: 16px;
  color: var(--tg-white-color);
}
.offCanvas__social li a:hover {
  color: var(--tg-theme-primary);
}
.offCanvas__copyright {
  margin: auto 0 0;
  background: #090f16;
  padding: 30px 40px;
}
.offCanvas__copyright p {
  margin: 0 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: var(--tg-fw-semi-bold);
  font-family: var(--tg-heading-font-family);
  letter-spacing: 1px;
}
.offCanvas__copyright p span {
  color: var(--tg-theme-primary);
}
.offCanvas__overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: var(--tg-common-color-black-9);
  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;
  cursor: none;
}
.offCanvas__menu-visible .offCanvas__overlay {
  opacity: 0.8;
  visibility: visible;
}
.offCanvas__menu-visible .offCanvas__wrap {
  transform: translateX(0);
}
.breadcrumb-area {
  position: relative;
  padding: 110px 0 75px;
  background-position: center;
  background-size: cover;
  min-height: 561px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media (max-width: 1500px) {
  .breadcrumb-area {
    min-height: 480px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb-area {
    min-height: 400px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb-area {
    min-height: 310px;
    padding: 120px 0 75px;
  }
}
.breadcrumb-area::before,
.breadcrumb-area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: var(--tg-theme-primary);
  height: 50px;
}
@media (max-width: 1500px) {
  .breadcrumb-area::before,
  .breadcrumb-area::after {
    height: 40px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb-area::before,
  .breadcrumb-area::after {
    height: 30px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb-area::before,
  .breadcrumb-area::after {
    height: 20px;
  }
}
.breadcrumb-area::after {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.breadcrumb__wrapper {
  position: relative;
}
@media (max-width: 991.98px) {
  .breadcrumb__content {
    text-align: center;
  }
}
.breadcrumb__content .title {
  font-size: 60px;
  font-weight: var(--tg-fw-extra-bold);
  letter-spacing: 3px;
  line-height: 1;
  margin: 0 0;
}
@media (max-width: 1500px) {
  .breadcrumb__content .title {
    font-size: 50px;
    letter-spacing: 2px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__content .title {
    font-size: 43px;
  }
}
.breadcrumb__content .breadcrumb {
  margin: 12px 0 0;
}
@media (max-width: 991.98px) {
  .breadcrumb__content .breadcrumb {
    justify-content: center;
  }
}
.breadcrumb__content .breadcrumb .breadcrumb-item {
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  font-size: 14px;
  letter-spacing: 2px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.breadcrumb__content .breadcrumb .breadcrumb-item::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--tg-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 10px;
  -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;
}
.breadcrumb__content .breadcrumb .breadcrumb-item:hover::after {
  background: var(--tg-theme-secondary);
}
.breadcrumb__content .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding: 0;
}
.breadcrumb__content .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb__content .breadcrumb .breadcrumb-item + .breadcrumb-item::after {
  display: none;
}
.breadcrumb__content .breadcrumb .breadcrumb-item.active {
  color: var(--tg-white-color);
}
.breadcrumb__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
@media (max-width: 1500px) {
  .breadcrumb__img {
    right: 60px;
    top: 60%;
  }
}
.breadcrumb__img img {
  max-height: 412px;
  max-width: 402px;
}
@media (max-width: 1500px) {
  .breadcrumb__img img {
    max-height: 320px;
    max-width: 310px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb__img img {
    max-height: 260px;
    max-width: 255px;
  }
}
.breadcrumb__img:hover img {
  -webkit-animation: breadcrumbShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97)
    both;
  animation: breadcrumbShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.breadcrumb__hide-img .breadcrumb__wrapper {
  padding: 0 0;
}
.breadcrumb__hide-img .breadcrumb__content {
  text-align: center;
}
.breadcrumb__hide-img .breadcrumb {
  justify-content: center;
}
.faq-area {
  background-color: #0a0e13;
  padding: 120px 0;
}
.faq__content-wrap .section__title {
  margin: 0 0 55px;
}
.faq__content-wrap .section__title::after {
  display: none;
}
.faq__content-wrap .section__title .title {
  margin: 0 0 24px;
}
.faq__content-wrap .section__title p {
  margin: 0 0;
}
@media (max-width: 1199.98px) {
  .faq__content-wrap .section__title p br {
    display: none;
  }
}
.faq__wrapper .accordion-item {
  background: #fff0;
  border: none;
  border-radius: 0;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #202428;
}
@media (max-width: 1199.98px) {
  .faq__wrapper .accordion-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.faq__wrapper .accordion-item:last-child {
  margin: 0 0;
}
.faq__wrapper .accordion-header {
  margin: 0 0;
}
.faq__wrapper .accordion-button {
  padding: 0 0;
  background: #fff0;
  border-radius: 0 !important;
  box-shadow: none;
  color: var(--tg-white-color);
  font-size: 20px;
  font-weight: var(--tg-fw-semi-bold);
  letter-spacing: 1px;
  border: none !important;
  box-shadow: none;
}
.faq__wrapper .accordion-button::after {
  content: "\f067";
  background-image: none !important;
  font-size: 16px;
  font-family: var(--tg-icon-font-family);
  color: var(--tg-body-color);
  opacity: 0.76;
  width: auto;
  height: auto;
}
.faq__wrapper .accordion-button .count {
  width: 29px;
  height: 29px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--tg-common-color-black);
  background: var(--tg-body-color);
  font-weight: var(--tg-fw-extra-bold);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-right: 16px;
  -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;
}
.faq__wrapper .accordion-button:hover {
  color: var(--tg-theme-primary);
}
.faq__wrapper .accordion-button:hover .count {
  background: var(--tg-theme-primary);
}
.faq__wrapper .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq__wrapper .accordion-button:not(.collapsed) .count {
  background: var(--tg-theme-primary);
}
.faq__wrapper .accordion-body {
  padding: 11px 0 0 45px;
}
@media (max-width: 1199.98px) {
  .faq__wrapper .accordion-body {
    padding: 15px 0 0 0;
  }
}
@media (max-width: 991.98px) {
  .faq__wrapper .accordion-body {
    padding: 11px 0 0 45px;
  }
}
@media (max-width: 767.98px) {
  .faq__wrapper .accordion-body {
    padding: 15px 0 0 0;
  }
}
.nav-tabs {
  border: none;
}
.nav-tabs .nav-item {
  margin: 0 0;
}
.nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  background: #fff0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.nav-tabs .nav-link.active {
  background: #fff0;
  border-color: #fff0;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  isolation: auto;
}
.tab-pane.active {
  animation: tgSlideDown 0.5s ease-in-out;
}
.scroll__top {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 20px;
  border-radius: 3px;
  z-index: 99;
  color: var(--tg-common-color-black-2);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 0.8s ease;
  border: none;
}
.scroll__top.open {
  bottom: 30px;
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 20px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgb(0 0 0 / 0.25) 0%,
    #fff0 80%
  );
}
.scroll__top:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-black-2);
}

@media (max-width: 1199.98px) {
  .scroll__top {
    width: 40px;
    height: 40px;
    right: 30px;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top {
    width: 30px;
    height: 30px;
    font-size: 16px;
    right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .scroll__top {
    width: 35px;
    height: 35px;
    right: 25px;
  }
}
.section__title {
  position: relative;
}
.section__title .sub-title {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-theme-primary);
  line-height: 1;
  margin: 0 0 7px;
}
@media (max-width: 767.98px) {
  .section__title .sub-title {
    margin: 0 0 10px;
  }
}
.section__title .sub-title2 {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--tg-body-font-family);
  color: var(--tg-white-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 7px 0 7px 20px;
  margin-bottom: 15px;
  z-index: 1;
}
.section__title .sub-title2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    to right,
    var(--tg-theme-primary) -30%,
    transparent
  );
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.section__title .title {
  font-size: 45px;
  font-weight: var(--tg-fw-extra-bold);
  letter-spacing: 1px;
  margin: 0 0;
}
@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 35px;
    line-height: 1.1;
  }
}
@media (max-width: 1199.98px) {
  .section__title .title br {
    display: none;
  }
}
.section__title .title2 {
  font-size: 60px;
  font-weight: var(--tg-fw-extra-bold);
  margin: 0 0;
}
@media (max-width: 767.98px) {
  .section__title .title2 {
    font-size: 35px;
  }
}
.section__title .title2 .section-line {
  position: absolute;
  bottom: 0;
  transform: translate(0, 100%);
  left: 0;
  right: 0;
  width: 100%;
}
.section__title::after {
  content: "";
  display: block;
  background-image: url(../img/bg/title_shape.svg);
  width: 65px;
  height: 5px;
  margin: 20px auto 0;
}
.section__title.title-shape-none::after {
  display: none;
}
.section__title.text-start .title {
  line-height: 1.15;
}
.section__title.text-start::after {
  margin: 20px 0 0;
}
.section__title-link {
  text-align: right;
}
@media (max-width: 991.98px) {
  .section__title-link {
    text-align: center;
    margin: 10px 0 0;
  }
}
.section__title-link a {
  display: inline-block;
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-body-color);
  position: relative;
  padding: 0 0 3px;
}
.section__title-link a:hover {
  color: var(--tg-theme-primary);
}
.section__title-link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--tg-theme-primary);
}
.tg__animate-text {
  opacity: 0;
}
.tg__animate-text em {
  opacity: 0;
}
.tg__animate-text.ready {
  opacity: 1;
}
.transparent-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  height: auto;
}
@media (max-width: 767.98px) {
  .transparent-header {
    top: 0;
  }
}
.tg-header__area {
  padding: 11px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tg-header__area.tg-sticky-menu {
  padding: 0 0;
}
@media (max-width: 1199.98px) {
  .tg-header__area.tg-sticky-menu {
    padding: 18px 0;
    background: rgba(0,0,0,0.8);
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-theme-primary);
  display: none;
  margin-top: 3px;
  border: 2px solid var(--tg-theme-primary);
  padding: 12px 10px;
}
@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area .mobile-nav-toggler {
    margin-top: 0;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__area {
    padding: 25px 0;
  }
}
@media (max-width: 767.98px) {
  .tg-header__area {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tg-header__area {
    padding: 25px 0;
  }
}
.tg-header__area-two {
  top: 60px;
}
.tg-header__area-two .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}
.tg-header__area-two .tgmenu__action .header-btn {
  padding-left: 0;
}
.tg-header__area-two .tgmenu__action .header-btn::before {
  display: none;
}
.tg-header__area-two .tgmenu__action > ul li {
  margin-left: 40px;
}
@media (max-width: 1400px) {
  .tg-header__area-two {
    top: 35px;
  }
}
@media (max-width: 1300px) {
  .tg-header__area-two {
    top: 0;
  }
}
.tg-header__area-three {
  position: relative;
  padding: 15px 0 70px;
}
@media (max-width: 1500px) {
  .tg-header__area-three {
    padding: 0 0 40px;
  }
}
.tg-header__area-three:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #11131c;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 67px),
    50% 100%,
    50% 100%,
    0% calc(100% - 67px)
  );
  z-index: -1;
}
@media (max-width: 1500px) {
  .tg-header__area-three:before {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 40px),
      50% 100%,
      50% 100%,
      0% calc(100% - 40px)
    );
  }
}
.tg-header__area-three:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--tg-theme-primary);
  clip-path: polygon(50% 99%, 100% 0, 100% 25px, 50% 100%, 0 25px, 0 0);
  height: 67px;
}
@media (max-width: 1500px) {
  .tg-header__area-three:after {
    height: 40px;
  }
}
.tg-header__area-three .tgmenu__action .header-btn {
  padding-left: 0;
}
.tg-header__area-three .tgmenu__action .header-btn::before {
  display: none;
}
.tg-header__area-three .tgmenu__action .side-toggle-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-width: 45px;
  gap: 7px;
  display: inline-flex;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
  width: 78px;
  height: 78px;
  background: var(--tg-theme-primary);
  border-radius: 50%;
  border: 7px solid #11131c;
  justify-content: center;
  padding: 0 14px;
}
@media (max-width: 991.98px) {
  .tg-header__area-three .tgmenu__action .side-toggle-icon {
    display: none;
  }
}
.tg-header__area-three .tgmenu__action .side-toggle-icon span {
  display: block;
  height: 3px;
  background-color: var(--tg-common-color-black-2);
  -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;
}
.tg-header__area-three .tgmenu__action .side-toggle-icon span:nth-child(1) {
  width: 20px;
}
.tg-header__area-three .tgmenu__action .side-toggle-icon span:nth-child(2) {
  width: 36px;
}
.tg-header__area-three .tgmenu__action .side-toggle-icon span:nth-child(3) {
  width: 20px;
  align-self: flex-end;
}
.tg-header__area-three .tgmenu__action .side-toggle-icon:hover span {
  width: 36px;
}
.tg-header__area-three .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}
.tg-header__area-three.tg-sticky-menu.sticky-menu__show:before,
.tg-header__area-three.tg-sticky-menu.sticky-menu__show:after {
  display: none;
}
.tg-header__area-three.tg-sticky-menu.sticky-menu__show
  .tgmenu__action
  .side-toggle-icon {
  background: #fff0;
  border: 0;
  border-radius: 0;
  position: initial;
  transform: none;
  width: auto;
  height: auto;
}
.tg-header__area-three.tg-sticky-menu.sticky-menu__show
  .tgmenu__action
  .side-toggle-icon
  span {
  background: var(--tg-white-color);
}
@media (max-width: 1199.98px) {
  .tg-header__area-three:after {
    clip-path: polygon(50% 99%, 100% 0, 100% 15px, 50% 100%, 0 15px, 0 0);
    height: 40px;
  }
  .tg-header__area-three:before {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 40px),
      50% 100%,
      50% 100%,
      0% calc(100% - 40px)
    );
  }
}
@media (max-width: 991.98px) {
  .tg-header__area-three {
    padding: 20px 0;
  }
  .tg-header__area-three:before,
  .tg-header__area-three:after {
    display: none;
  }
}
.tg-header__area-four {
  padding: 0 0;
}
@media (max-width: 991.98px) {
  .tg-header__area-four {
    padding: 20px 0;
  }
}
.tg-header__area-four .tgmenu__action .header-btn {
  padding-left: 0;
}
.tg-header__area-four .tgmenu__action .header-btn::before {
  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: 1199.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}
.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:auto;
}
@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 65px;
  }
}
.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}
.tgmenu__navbar-wrap ul li a {
  font-size: 15px;
  font-weight: var(--tg-fw-bold);
  text-transform: uppercase;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  padding: 38px 23px;
  display: block;
  line-height: 1;
  position: relative;
  letter-spacing: 0.8px;
  z-index: 1;
}
.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid var(--tg-border-2);
  background: var(--tg-common-color-gray);
  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: 0 30px 70px 0 rgb(0 0 0 / 0.15);
  -moz-box-shadow: 0 30px 70px 0 rgb(0 0 0 / 0.15);
  box-shadow: 0 30px 70px 0 rgb(0 0 0 / 0.15);
  border-radius: 0;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}
.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: 9px 15px 9px 25px;
  line-height: 1.4;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.tgmenu__navbar-wrap ul li .sub-menu li a::before {
  content: "";
  display: block;
  width: 0;
  height: 7px;
  background-color: var(--tg-theme-primary);
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -o-border-radius: 0 5px 0 0;
  -ms-border-radius: 0 5px 0 0;
  border-radius: 0 5px 0 0;
  margin: 7px 9px 0 0;
  -webkit-transition: width 0.2s linear;
  -moz-transition: width 0.2s linear;
  -ms-transition: width 0.2s linear;
  -o-transition: width 0.2s linear;
  transition: width 0.2s linear;
}
.tgmenu__navbar-wrap ul li .sub-menu li:hover > a::before,
.tgmenu__navbar-wrap ul li .sub-menu li.active > a::before {
  width: 7px;
}
.tgmenu__navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tgmenu__navbar-wrap > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 85%;
  height: 1px;
  top: 65%;
  background: var(--tg-theme-primary);
  margin: 0 auto;
  opacity: 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;
}
.tgmenu__navbar-wrap > ul > li.active > a,
.tgmenu__navbar-wrap > ul > li:hover > a {
  color: var(--tg-theme-primary);
}
.tgmenu__navbar-wrap > ul > li.active > a::before,
.tgmenu__navbar-wrap > ul > li:hover > a::before {
  opacity: 1;
  -webkit-transform: translateY(50%) rotate(0deg);
  -moz-transform: translateY(50%) rotate(0deg);
  -ms-transform: translateY(50%) rotate(0deg);
  -o-transform: translateY(50%) rotate(0deg);
  transform: translateY(50%) rotate(0deg);
}
.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}
.tgmenu__action > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.tgmenu__action > ul li {
  position: relative;
  margin-left: 25px;
}
.tgmenu__action > ul li:first-child {
  margin-left: 0;
}
.tgmenu__action > ul li a {
  color: var(--tg-heading-color);
}
.tgmenu__action > ul li .tg-btn-3 {
  min-width: 150px;
  height: 45px;
  color: var(--tg-theme-primary);
  font-size: 15px;
  font-weight: var(--tg-fw-bold);
  letter-spacing: 1px;
  padding: 15px 25px;
}
.tgmenu__action > ul li .tg-btn-3 i {
  margin-right: 12px;
}
.tgmenu__action > ul li .tg-btn-3 .svg-icon {
  fill: #0f1d29;
  stroke: var(--tg-theme-primary);
}
@media (max-width: 1199.98px) {
  .tgmenu__action {
    margin-right: 40px;
  }
}
.tgmenu__action .search a {
  display: block;
  font-size: 20px;
}
.tgmenu__action .search a:hover {
  color: var(--tg-theme-primary);
}
.tgmenu__action .header-btn {
  padding-left: 0;
}
.tgmenu__action .header-btn .btn {
  color: var(--tg-common-color-black-2);
  font-size: 14px;
  padding: 13px 22px;
  font-weight: var(--tg-fw-extra-bold);
}


.tgmenu__action .side-toggle-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  min-width: 45px;
  gap: 10px;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .tgmenu__action .side-toggle-icon {
    display: none;
  }
}
.tgmenu__action .side-toggle-icon span {
  display: block;
  height: 3px;
  background-color: var(--tg-white-color);
  -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__action .side-toggle-icon span:nth-child(1) {
  width: 26px;
}
.tgmenu__action .side-toggle-icon span:nth-child(2) {
  width: 45px;
}
.tgmenu__action .side-toggle-icon span:nth-child(3) {
  width: 26px;
  align-self: flex-end;
}
.tgmenu__action .side-toggle-icon:hover span {
  width: 45px;
}
.logo a {
  display: inline-block;
}
.logo img {
  max-width: 250px;
}
.tg-sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 99;
  background: var(--tg-common-color-gray);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0;
  opacity: 0;
}
.tg-sticky-menu.sticky-menu__show {
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
  transform: unset;
  -webkit-box-shadow: 0 10px 15px rgb(0 0 0 / 0.2);
  box-shadow: 0 10px 15px rgb(0 0 0 / 0.5);
  opacity: 1;
}
.header-area-3 {
  position: relative;
  margin-bottom: -67px;
  z-index: 99;
}
@media (max-width: 1199.98px) {
  .header-area-3 {
    margin-bottom: -40px;
  }
}
@media (max-width: 991.98px) {
  .header-area-3 {
    margin-bottom: 0;
  }
}
.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: 14px;
  height: 45px;
  background: var(--tg-common-color-gray);
  color: var(--tg-white-color);
}
.tgmobile__search input::placeholder {
  font-size: 14px;
  color: #c7c7c7;
}
.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: #fff0;
  color: var(--tg-heading-color);
}
.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 991;
  border-radius: 0;
  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: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
}
.tgmobile__menu .navbar-collapse {
  display: block !important;
}
.tgmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}
.tgmobile__menu .nav-logo img {
  max-width: 150px;
}
.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}
.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid var(--tg-border-2);
}
.tgmobile__menu .navigation li.current > a::before {
  height: 100%;
}
.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 18px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: var(--tg-white-color);
  background: var(--tg-common-color-gray);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}
.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-white-color);
  -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-white-color);
  -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-common-color-black);
}
.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;
  line-height: 1.5;
  padding: 11px 60px 11px 25px;
  font-size: 15px;
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  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;
}
.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}
.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;
}
.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid var(--tg-border-2);
}
.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid var(--tg-border-2);
}
.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 31px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 20px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  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: rgb(0 0 0 / 0.7);
}
.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;
  gap: 12px;
}
.tgmobile__menu .social-links ul li {
  position: relative;
  display: block;
}
.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;
  font-size: 16px;
  color: var(--tg-white-color);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--tg-border-2);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-black);
}
.tgmobile__menu-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--tg-bg-color);
  padding: 0 0;
  z-index: 5;
  box-shadow: -9px 0 14px 0 rgb(0 0 0 / 0.06);
}
.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-white-color);
  margin-right: 30px;
  top: 15px;
}
.mobile-menu-visible {
  overflow: hidden;
}
.mobile-menu-visible .tgmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  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);
}
.slider__bg {
  background-position: center;
  background-size: cover;
  padding: 115px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .slider__bg {
    padding: 175px 0 55px;
  }
}
@media (max-width: 767.98px) {
  .slider__bg {
    padding: 100px 0 0;
  }
}
.slider__content {
  margin: 135px 0 0 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1800px) {
  .slider__content {
    margin: 45px 0 0 0;
  }
}
@media (max-width: 1500px) {
  .slider__content {
    margin: 90px 0 0 0;
  }
}
@media (max-width: 991.98px) {
  .slider__content {
    margin: 0 0 70px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .slider__content {
    margin: 0 0 25px;
  }
}
.slider__content .sub-title {
  margin: 0;
  line-height: 1;
  font-family: var(--tg-body-font-family);
  font-weight: var(--tg-fw-bold);
  letter-spacing: 4px;
  font-size: 20px;
  color: var(--tg-theme-primary);
  position: relative;
  padding: 17px 0 17px 20px;
}
@media (max-width: 1199.98px) {
  .slider__content .sub-title {
    font-size: 16px;
    padding: 15px 0 15px 20px;
  }
}
@media (max-width: 991.98px) {
  .slider__content .sub-title {
    font-size: 18px;
    padding: 15px 20px 15px;
  }
}
@media (max-width: 767.98px) {
  .slider__content .sub-title {
    font-size: 17px;
    padding: 15px 20px 15px;
  }
}
.slider__content .sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/slider/text_gradient_bg.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.28;
}
@media (max-width: 1199.98px) {
  .slider__content .sub-title::before {
    background-size: contain;
  }
}
@media (max-width: 991.98px) {
  .slider__content .sub-title::before {
    left: 86px;
    top: 0;
    right: 0;
    width: 297px;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .slider__content .sub-title::before {
    left: 55px;
    width: 256px;
    margin: 0 auto;
  }
}
.slider__content .title {
  margin: 0 0 21px;
  font-size: 90px;
  font-family: var(--tg-berlin-font-family);
  line-height: 1.1;
  text-shadow:-1px 5px 0 rgba(231, 0, 0, 0.66);
}
@media (max-width: 1500px) {
  .slider__content .title {
    font-size: 118px;
  }
}
@media (max-width: 1199.98px) {
  .slider__content .title {
    font-size: 94px;
  }
}
@media (max-width: 991.98px) {
  .slider__content .title {
    font-size: 120px;
  }
}
@media (max-width: 767.98px) {
  .slider__content .title {
    font-size: 12vw;
text-shadow: -1px 2px 0 rgba(231, 0, 0, 0.66);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__content .title {
    font-size: 17vw;
    text-shadow: -1px 5px 0 rgb(69 248 130 / 0.66);
  }
}
.slider__content p {
  margin: 0 0;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1.4;
  color: var(--tg-white-color);
}
@media (max-width: 1199.98px) {
  .slider__content p {
    font-size: 22px;
  }
}
@media (max-width: 991.98px) {
  .slider__content p {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .slider__content p {
    font-size: 20px;
    letter-spacing: 3px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__content p {
    font-size: 24px;
    letter-spacing: 5px;
  }
}
.slider__btn {
  margin: 33px 0 0;
}
.slider__btn .tg-btn-1 {
  padding: 15px 49px;
}
.slider__img img {
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .slider__img img {
    margin: 0 0 0 auto;
    max-width: 90%;
    display: block;
  }
}
@media (max-width: 991.98px) {
  .slider__img img {
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
    display: block;
  }
}
.slider__shapes {
  opacity: 0.27;
}
.slider__shapes img {
  position: absolute;
  animation: shapeBlinker 1.5s linear infinite;
  opacity: 0;
  z-index: -1;
}
.slider__shapes img:nth-child(1) {
  left: 23%;
  top: 17%;
  animation-delay: 0.2s;
}
@media (max-width: 991.98px) {
  .slider__shapes img:nth-child(1) {
    left: 13%;
    top: 12%;
  }
}
@media (max-width: 767.98px) {
  .slider__shapes img:nth-child(1) {
    left: 11%;
    top: 11%;
  }
}
.slider__shapes img:nth-child(2) {
  left: 29%;
  bottom: 45%;
  animation-delay: 0.4s;
}
@media (max-width: 991.98px) {
  .slider__shapes img:nth-child(2) {
    left: 12%;
  }
}
@media (max-width: 767.98px) {
  .slider__shapes img:nth-child(2) {
    left: 10%;
    bottom: 55%;
  }
}
.slider__shapes img:nth-child(3) {
  right: 47%;
  top: 20%;
  animation-delay: 0.2s;
}
@media (max-width: 991.98px) {
  .slider__shapes img:nth-child(3) {
    right: 23%;
    top: 15%;
  }
}
@media (max-width: 767.98px) {
  .slider__shapes img:nth-child(3) {
    right: 10%;
    top: 17%;
  }
}
.slider__shapes img:nth-child(4) {
  right: 42%;
  top: 23%;
  animation-delay: 0.6s;
}
@media (max-width: 1500px) {
  .slider__shapes img:nth-child(4) {
    right: 40%;
    top: 28%;
  }
}
@media (max-width: 991.98px) {
  .slider__shapes img:nth-child(4) {
    right: 20%;
    top: 35%;
  }
}
@media (max-width: 767.98px) {
  .slider__shapes img:nth-child(4) {
    right: 14%;
    top: 33%;
  }
}
.slider__brand-wrap {
  position: absolute;
  left: 0;
  bottom: 130px;
  width: 100%;
  height: auto;
}
@media (max-width: 1500px) {
  .slider__brand-wrap {
    bottom: 150px;
  }
}
@media (max-width: 1199.98px) {
  .slider__brand-wrap {
    bottom: 85px;
  }
}
@media (max-width: 991.98px) {
  .slider__brand-wrap {
    bottom: 0;
    position: relative;
  }
}
.slider__brand-list {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  align-items: center;
  gap: 20px 60px;
  margin: 0 0 0 40px;
}
@media (max-width: 1800px) {
  .slider__brand-list {
    margin: 0 0 0;
  }
}
@media (max-width: 1199.98px) {
  .slider__brand-list {
    width: 60%;
    gap: 20px 30px;
  }
}
@media (max-width: 991.98px) {
  .slider__brand-list {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .slider__brand-list {
    flex-wrap: nowrap;
    gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__brand-list {
    gap: 35px;
  }
}
.slider__brand-list li a {
  display: block;
}
.slider__area {
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.slider__area::before,
.slider__area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: var(--tg-theme-primary);
  height: 50px;
  z-index: 9;
}
@media (max-width: 1500px) {
  .slider__area::before,
  .slider__area::after {
    height: 40px;
  }
}
@media (max-width: 1199.98px) {
  .slider__area::before,
  .slider__area::after {
    height: 30px;
  }
}
@media (max-width: 767.98px) {
  .slider__area::before,
  .slider__area::after {
    height: 20px;
  }
}
.slider__area::after {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.banner__padding {
  padding: 310px 0 295px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1500px) {
  .banner__padding {
    padding: 260px 0 220px;
  }
}
@media (max-width: 767.98px) {
  .banner__padding {
    padding: 180px 0 150px;
    min-height: auto;
    display: flex;
    align-items: center;
  }
}
.banner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.banner__content {
  margin: 0 0;
}
@media (max-width: 1500px) {
  .banner__content .title {
    font-size: 136px;
  }
}
@media (max-width: 991.98px) {
  .banner__content .title {
    font-size: 118px;
  }
}
@media (max-width: 767.98px) {
  .banner__content .title {
    font-size: 18vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content .title {
    font-size: 17vw;
  }
}
.banner__btn {
  margin: 33px 0 0;
}
.banner__area-two {
  padding: 185px 0 170px;
  margin: 40px 40px 120px;
  position: relative;
}
.banner__area-two .banner__bg {
  text-align: end;
  z-index: -1;
}
.banner__area-two .banner__bg-shape {
  position: absolute;
  inset: -20px -20px 0 -20px;
  background-size: calc(100% - 50px) calc(100% - 90px);
  background-repeat: no-repeat;
  background-position: center;
}
.banner__area-two .banner__bg-shape:after {
  content: "";
  position: absolute;
  inset: 0;
  mask-image: url(../img/slider/banner_bg_shape3-1.jpg);
  mask-size: 100% 100%;
  mix-blend-mode: color;
  background: var(--tg-theme-primary);
}
.banner__area-two .banner__bg-shape img {
  height: 100%;
  width: 100%;
  position: absolute;
}
.banner__area-two .banner__shape {
  position: absolute;
}
.banner__area-two .banner__shape3-1 {
  right: 103px;
  top: 219px;
}
.banner__area-two .banner__shape3-2 {
  bottom: 128px;
  left: 390px;
}
.banner__area-two .banner__shape3-3 {
  bottom: 84px;
  right: 174px;
}
.banner__area-two .banner__content .sub-title2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--tg-body-font-family);
  color: var(--tg-white-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 1px 0 1px 32px;
  margin-bottom: 30px;
}
.banner__area-two .banner__content .sub-title2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    to right,
    var(--tg-theme-primary) -30%,
    transparent
  );
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.banner__area-two .banner__content .title {
  font-size: 130px;
  font-weight: 900;
  font-family: var(--tg-heading-font-family);
  text-shadow: none;
  margin-bottom: 32px;
}
@media (max-width: 1500px) {
  .banner__area-two .banner__content .title {
    font-size: 110px;
  }
}
@media (max-width: 1199.98px) {
  .banner__area-two .banner__content .title {
    font-size: 90px;
  }
}
@media (max-width: 991.98px) {
  .banner__area-two .banner__content .title {
    font-size: 80px;
  }
}
@media (max-width: 767.98px) {
  .banner__area-two .banner__content .title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
.banner__area-two .banner__content p {
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #92989e;
  line-height: 1.75;
  max-width: 90%;
}
@media (max-width: 1400px) {
  .banner__area-two .banner__content p {
    max-width: 100%;
  }
}
.banner__area-two .banner__content .banner__btn {
  margin-top: 43px;
}
@media (max-width: 767.98px) {
  .banner__area-two .banner__content .banner__btn {
    margin-top: 30px;
  }
}
.banner__area-two .banner__img {
  position: relative;
  text-align: center;
  padding: 46px 32px 34px 35px;
}
.banner__area-two .banner__img .banner__img-shape {
  position: absolute;
  inset: 0;
}
.banner__area-two .banner__img .banner__img-shape img {
  width: 100%;
  height: 100%;
}
.banner__area-two .banner__img .banner__img-shape:after {
  content: "";
  position: absolute;
  inset: 0;
  mask-image: url(../img/slider/thumb_bg_shape3-1.jpg);
  mask-size: 100% 100%;
  mix-blend-mode: color;
  background: var(--tg-theme-primary);
}
.banner__area-two .banner__img .thumb {
  display: inline-block;
  mask-image: url(../img/slider/slider_img_mask.png);
  mask-size: 100% 100%;
}
@media (max-width: 1400px) {
  .banner__area-two {
    margin: 30px 30px 120px;
    padding: 135px 0 90px;
  }
  .banner__area-two .banner__img {
    padding: 37px 25px 29px 27px;
  }
}
@media (max-width: 1300px) {
  .banner__area-two {
    margin: 0;
    padding: 220px 0 140px;
  }
  .banner__area-two .banner__bg-shape {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .banner__area-two {
    padding: 160px 0 120px;
  }
  .banner__area-two .banner__img {
    padding: 47px 33px 35px 35px;
    display: inline-block;
  }
}
@media (max-width: 991.98px) {
  .banner__area-two .banner__shape {
    display: none;
  }
  .banner__area-two .banner__content .banner__btn {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .banner__area-two {
    padding: 120px 0 120px;
  }
  .banner__area-two .banner__img {
    padding: 33px 23px 25px 24px;
  }
  .banner__area-two .banner__content p {
    font-weight: 400;
  }
}
@media (max-width: 375px) {
  .banner__area-two .banner__content .sub-title2 {
    font-size: 14px;
    padding: 1px 0 1px 22px;
  }
}
.banner__area-three {
  position: relative;
  padding: 250px 0 200px;
  z-index: 1;
}
.banner__area-three .banner__bg {
  clip-path: polygon(100% 0, 100% 100%, 650px calc(100% - 90px), 0 100%, 0 0);
}
.banner__area-three .banner__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner__area-three .banner__content .sub-title2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--tg-body-font-family);
  color: var(--tg-white-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 1px 0 1px 32px;
  margin-bottom: 32px;
}
.banner__area-three .banner__content .sub-title2:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    to right,
    var(--tg-theme-primary) -30%,
    transparent
  );
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .banner__area-three .banner__content .sub-title2 {
    margin-bottom: 20px;
  }
}
.banner__area-three .banner__content .title {
  font-size: 72px;
  font-weight: 900;
  font-family: var(--tg-heading-font-family);
  text-shadow: none;
  margin-bottom: 22px;
}
@media (max-width: 991.98px) {
  .banner__area-three .banner__content .title {
    font-size: 65px;
  }
}
@media (max-width: 767.98px) {
  .banner__area-three .banner__content .title {
    font-size: 40px;
  }
}
@media (max-width: 375px) {
  .banner__area-three .banner__content .title {
    font-size: 35px;
  }
}
.banner__area-three .banner__content .banner__btn {
  margin-top: 70px;
}
@media (max-width: 1500px) {
  .banner__area-three {
    padding: 175px 0 170px;
  }
  .banner__area-three .banner__bg {
    clip-path: polygon(100% 0, 100% 99%, 482px calc(100% - 83px), 0 98%, 0 0);
  }
}
@media (max-width: 1400px) {
  .banner__area-three .banner__bg {
    clip-path: polygon(100% 0, 100% 98%, 400px calc(100% - 81px), 0 97%, 0 0);
  }
}
@media (max-width: 1300px) {
  .banner__area-three .banner__bg {
    clip-path: polygon(100% 0, 100% 97%, 330px calc(100% - 80px), 0 96%, 0 0);
  }
}
@media (max-width: 1199.98px) {
  .banner__area-three {
    padding: 150px 0 200px;
  }
  .banner__area-three .banner__content .title {
    line-height: 1.2;
    margin-bottom: 0;
  }
  .banner__area-three .banner__bg {
    clip-path: polygon(100% 0, 100% 96%, 227px calc(100% - 85px), 0 93%, 0 0);
  }
  .banner__area-three .banner__content .banner__btn {
    margin-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .banner__area-three {
    padding: 120px 0 120px;
  }
  .banner__area-three .banner__bg {
    clip-path: none;
  }
  .banner__area-three .banner__content {
    text-align: start;
  }
  .banner__area-three .banner__content .banner__btn {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .banner__area-three {
    padding: 100px 0;
  }
}
.banner__area-four {
  position: relative;
  padding: 170px 0 255px;
  z-index: 1;
}
.banner__area-four .banner__bg {
  clip-path: polygon(
    100% 0,
    100% calc(100% - 87px),
    calc(100% - 595px) 100%,
    0 calc(100% - 67px),
    0 0
  );
}
.banner__area-four .banner__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner__area-four .banner__bg-shape {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.banner__area-four .banner__bg-shape img {
  width: 100%;
}
.banner__area-four .banner__content .title {
  font-size: 90px;
  font-weight: 800;
  font-family: var(--tg-heading-font-family);
  text-transform: capitalize;
  text-shadow: none;
  position: relative;
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  .banner__area-four .banner__content .title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
.banner__area-four .banner__content .title .text-stroke {
  position: absolute;
  bottom: -7px;
  left: 5px;
  -webkit-text-stroke: 1px var(--tg-theme-primary);
  color: #fff0;
  z-index: -1;
  opacity: 0.3;
}
.banner__area-four .banner__content .sub-title {
  background: #fff0;
  padding: 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-white-color);
  max-width: 478px;
  text-transform: capitalize;
  line-height: 1.1;
  letter-spacing: normal;
}
.banner__area-four .banner__content .sub-title:before {
  display: none;
}
.banner__area-four .banner__content .banner__btn {
  margin: 53px 0 0;
  align-items: center;
  gap: 20px 40px;
}
.banner__area-four .slider__img5 {
  margin: -110px -210px -80px 0;
}
@media (max-width: 1500px) {
  .banner__area-four .slider__img5 {
    margin: -110px -80px -80px 0;
  }
}
@media (max-width: 1400px) {
  .banner__area-four .slider__img5 {
    margin: -20px -30px -20px 0;
  }
}
@media (max-width: 1300px) {
  .banner__area-four {
    padding: 150px 0 205px;
  }
}
@media (max-width: 1199.98px) {
  .banner__area-four {
    padding: 120px 0 150px;
  }
  .banner__area-four .slider__img5 {
    margin: 0;
  }
  .banner__area-four .banner__bg-shape {
    display: none;
  }
  .banner__area-four .banner__content {
    text-align: center;
  }
  .banner__area-four .banner__content .title .text-stroke {
    left: 5px;
    right: 0;
  }
  .banner__area-four .banner__content .sub-title {
    margin-left: auto;
    margin-right: auto;
  }
  .banner__area-four .banner__content .banner__btn {
    justify-content: center;
  }
}
@media (max-width: 991.98px) {
  .banner__area-four .banner__content .sub-title {
    font-size: 24px;
    line-height: normal;
  }
  .banner__area-four .banner__content .banner__btn {
    margin: 33px 0 0;
  }
}
@media (max-width: 767.98px) {
  .banner__area-four {
    padding: 80px 0;
  }
  .banner__area-four .banner__bg {
    clip-path: none;
  }
}
.nft-item__area {
  background: var(--tg-bg-color);
  padding: 60px 0 40px;
}
.nft-item__area .row {
  --bs-gutter-x: 37px;
}
@media (max-width: 1500px) {
  .nft-item__area .row {
    --bs-gutter-x: 30px;
  }
}
.nft-item__box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background-color: #121a23;
  background-image: -moz-linear-gradient(
    90deg,
    #0c0e12 0%,
    rgb(31 41 53 / 0.36078) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    #0c0e12 0%,
    rgb(31 41 53 / 0.36078) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    #0c0e12 0%,
    rgb(31 41 53 / 0.36078) 100%
  );
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid rgb(76 76 76 / 0.2);
  padding: 10px 25px 15px;
  margin: 0 0 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: 767.98px) {
  .nft-item__box {
    display: block;
    text-align: center;
    max-width: 320px;
    padding:25px;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nft-item__box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    text-align: left;
    max-width: 100%;
    padding: 25px 25px;
    margin: 0 0 30px;
  }
}
.nft-item__box:hover {
  border-color: rgb(69 248 130 / 0.2);
}
.nft-item__thumb {
  flex: 0 0 auto;
  margin-right: 20px;
  max-width: 187px;
}
@media (max-width: 1800px) {
  .nft-item__thumb {
    max-width: 165px;
  }
}
@media (max-width: 1500px) {
  .nft-item__thumb {
    max-width: 170px;
  }
}
@media (max-width: 991.98px) {
  .nft-item__thumb {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .nft-item__thumb {
    margin: 0 auto 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nft-item__thumb {
    margin: 0 20px 0 0;
  }
}
.nft-item__thumb img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.nft-item__content {
  flex-grow: 1;
}
.nft-item__content .title {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin: 0 0 15px;
}
.nft-item__avatar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
@media (max-width: 767.98px) {
  .nft-item__avatar {
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nft-item__avatar {
    justify-content: flex-start;
  }
}
.nft-item__avatar .avatar-img {
  margin: 0 10px 0 0;
  flex: 0 0 auto;
}
.nft-item__avatar .avatar-img img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.nft-item__avatar .avatar-name {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.nft-item__avatar .avatar-name .name {
  margin: 0 0 0;
  font-size: 18px;
  font-weight: var(--tg-fw-semi-bold);
  color: #9b9b9b;
  text-transform: capitalize;
}
.nft-item__avatar .avatar-name .designation {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9b9b9b;
}
.nft-item__avatar .avatar-name .designation::before {
  content: "|";
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #434343;
  padding: 0 8px 0 10px;
}
.nft-item__price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background-color: #121a23;
  background-image: -moz-linear-gradient(90deg, #0c0e12 0%, #10181f 100%);
  background-image: -webkit-linear-gradient(90deg, #0c0e12 0%, #10181f 100%);
  background-image: -ms-linear-gradient(90deg, #0c0e12 0%, #10181f 100%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid rgb(76 76 76 / 0.5);
  padding: 14px 15px 14px 20px;
}
.nft-item__price p {
  margin: 0 0;
  font-family: var(--tg-heading-font-family);
  font-size: 18px;
  color: #e8e8e8;
  font-weight: var(--tg-fw-semi-bold);
}
.nft-item__price p span {
  text-transform: uppercase;
  font-weight: var(--tg-fw-bold);
  color: var(--tg-theme-secondary);
}
.nft-item__price .bid-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-black-2);
  text-transform: capitalize;
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-semi-bold);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  padding: 11px 14px;
  width: 100%;
  justify-content: center;
}
.nft-item__price .bid-btn:hover {
  background: var(--tg-theme-primary);
}
.section-pt-120 {
  padding-top: 120px;
}
@media (max-width: 767.98px) {
  .section-pt-120 {
    padding-top: 100px;
  }
}
.section-pb-90 {
  padding-bottom: 90px;
}
@media (max-width: 767.98px) {
  .section-pb-90 {
    padding-bottom: 70px;
  }
}
.trendingNft-area {
  background-color: var(--tg-common-color-black-4);
}
.trendingNft__title-wrap {
  margin: 0 0 50px;
}
.trendingNft__title .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0;
  font-size: 36px;
}
@media (max-width: 767.98px) {
  .trendingNft__title .title {
    justify-content: center;
  }
}
.trendingNft__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}
@media (max-width: 767.98px) {
  .trendingNft__nav {
    justify-content: center;
    margin-top: 18px;
  }
}
.trendingNft__nav > * {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #adb0bc;
  background: #fff0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
  color: #adb0bc;
}
.trendingNft__nav > *:hover {
  border-color: var(--tg-theme-primary);
  color: var(--tg-theme-primary);
}
.trendingNft__item {
  background-image: url(../img/bg/trendnft_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 403px;
  height: 426px;
  padding: 24px 20px;
  margin: 0 0 30px;
}
@media (max-width: 1199.98px) {
  .trendingNft__item {
    margin: 0 auto 30px;
  }
}
@media (max-width: 991.98px) {
  .trendingNft__item {
    max-width: 330px;
    height: 345px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .trendingNft__item {
    max-width: 403px;
    height: 426px;
  }
}
.trendingNft__item-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
.trendingNft__item-avatar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 9px;
}
.trendingNft__item-avatar .image {
  max-width: 45px;
  flex: 0 0 auto;
}
.trendingNft__item-avatar img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.trendingNft__item-avatar .info .name {
  font-size: 16px;
  font-weight: var(--tg-fw-semi-bold);
  text-transform: capitalize;
  color: #fcfcfc;
  margin: 0 0 5px;
}
.trendingNft__item-avatar .info .userName {
  display: block;
  line-height: 1;
  font-size: 12px;
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-body-color);
  font-family: var(--tg-heading-font-family);
  text-decoration: underline;
}
.trendingNft__item-avatar .info .userName:hover {
  color: var(--tg-theme-primary);
}
.trendingNft__item-wish {
  margin-left: auto;
}
.trendingNft__item-wish a {
  color: #c9c9c9;
}
.trendingNft__item-wish a:hover {
  color: var(--tg-theme-primary);
}
.trendingNft__item-image img {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  width: 100%;
  max-height: 249px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .trendingNft__item-image img {
    max-height: 170px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .trendingNft__item-image img {
    max-height: 249px;
  }
}
.trendingNft__item-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.trendingNft__item-bottom .bid-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-black-2);
  text-transform: capitalize;
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-semi-bold);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
  padding: 11px 14px;
  margin-left: auto;
  margin-right: 35px;
}
.trendingNft__item-bottom .bid-btn:hover {
  background: var(--tg-theme-primary);
}
.trendingNft__item-bottom::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #383d44 50%,
    transparent 100%
  );
  flex: 0 0 100%;
  margin: 14px 0 13px;
}
.trendingNft__item-price .bid {
  display: block;
  font-family: var(--tg-heading-font-family);
  text-transform: capitalize;
  font-size: 13px;
  font-weight: var(--tg-fw-semi-bold);
  line-height: 1;
  margin: 0 0 7px;
}
.trendingNft__item-price .eth {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #e8e8e8;
  font-weight: var(--tg-fw-semi-bold);
  margin: 0 0;
}
.trendingNft__item-price .eth i {
  color: var(--tg-theme-secondary);
  margin-right: 10px;
}
.trendingNft__item-price .eth span {
  color: var(--tg-theme-secondary);
  font-weight: var(--tg-fw-bold);
  margin-left: 5px;
}
.nft-card {
  border: 10px solid #1f222d;
  box-shadow: 0 4px 41px rgb(0 0 0 / 0.53);
  background: #12141d;
}
.nft-card-thumb {
  overflow: hidden;
}
.nft-card-thumb img {
  width: 100%;
  transition: 0.4s;
}
.nft-card-content {
  border-top: 10px solid #1f222d;
  text-align: center;
  padding-top: 25px;
}
.nft-card-content .subtitle {
  color: var(--tg-theme-primary);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--tg-heading-font-family);
  display: block;
  margin: 0 0 5px;
}
.nft-card-content .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}
.nft-card-content .btn-wrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid #201f2f;
  padding: 20px 25px;
  gap: 28px;
  position: relative;
}
.nft-card-content .btn-wrap:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #201f2f;
  top: 0;
}
.nft-card:hover .nft-card-thumb img {
  transform: scale(1.05);
}
.area-background {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-pt-60 {
  padding-top: 60px;
}
@media (max-width: 767.98px) {
  .section-pt-60 {
    padding-top: 60px;
  }
}
.section-pb-60 {
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .section-pb-60 {
    padding-bottom: 60px;
  }
}

.gallery__slider .swiper-slide {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767.98px) {
  .gallery__slider .swiper-slide {
    padding-left: 0;
    padding-right: 0;
  }
}
.gallery__item {
  margin: 0 0 15px;
  -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-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.gallery__thumb {
  margin: 0 0 15px;
}
@media (max-width: 767.98px) {
  .gallery__thumb {
    margin: 0 0 20px;
  }
}
.gallery__thumb img {
  width: 100%;
  border: 8px solid var(--tg-border-3);
  box-shadow: 0 3px 7px 0 rgb(0 0 0 / 0.42);
}
@media (max-width: 767.98px) {
  .gallery__thumb img {
    border-width: 5px;
  }
}
.gallery__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 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-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
}
.gallery__content .title {
  margin: 0 0;
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .gallery__content .title {
    font-size: 20px;
  }
}
.gallery__content .rate {
  display: block;
  text-transform: uppercase;
  color: #aaaaa9;
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-semi-bold);
}
.gallery-active.swiper-container {
  overflow: visible;
}
.gallery-active .swiper-slide-active .gallery__item {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.gallery-active .swiper-slide-active .gallery__content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.gallery-active .swiper-scrollbar {
  background: rgba(237, 0, 0,0.6);
}
.gallery-active.swiper-container-horizontal > .swiper-scrollbar {
  border-radius: 0;
  height: 4px;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  max-width: calc(100% - 30px);
}
.gallery-active.swiper-container-horizontal .swiper-scrollbar-drag {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  height: 8px;
  top: -2px;
  background: var(--tg-theme-primary);
}
.team-bg {
  background-position: center;
  background-size: cover;
}
.team__item {
  margin: 0 0 30px;
  text-align: center;
  background: #1c242f;
  border: 1px solid #27313f;
  box-shadow: 0 3px 13px 0 rgb(0 0 0 / 0.17);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  padding: 15px;
  position: relative;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .team__item {
    max-width: 320px;
    margin: 0 auto 30px;
  }
}
.team__item::before,
.team__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -60px;
  width: 70px;
  height: 320px;
  background: var(--tg-theme-primary);
  -webkit-transform: rotate(-55deg);
  -moz-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  -o-transform: rotate(-55deg);
  transform: rotate(-55deg);
  -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;
  opacity: 0.55;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team__item::before,
  .team__item::after {
    height: 295px;
    top: -48px;
  }
}
.team__item::after {
  left: auto;
  right: 0;
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
}
.team__item:hover {
  -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  -o-transform: translateY(-7px);
  transform: translateY(-7px);
}
.team__item:hover::before,
.team__item:hover::after {
  opacity: 1;
}
.team__item:hover .team__thumb::before,
.team__item:hover .team__thumb::after {
  opacity: 0.4;
}
.team__thumb {
  margin: 0 0 10px;
}
.team__thumb img {
  -webkit-border-radius: 0%;
  -moz-border-radius: 0%;
  -o-border-radius: 0%;
  -ms-border-radius: 0%;
  border-radius: 0%;
  border: 1px solid var(--tg-white-color);
  box-shadow:
    0 3px 7px 0 rgb(0 0 0 / 0.21),
    inset 0 3px 9px 0 rgb(0 0 0 / 0.92);
  width:100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team__thumb img {
    max-width: 100%;
  }

}
.team__thumb::before,
.team__thumb::after {
  content: "";
  position: absolute;
  left: 75px;
  top: -50px;
  width: 1px;
  height: 260px;
  background: var(--tg-theme-primary);
  -webkit-transform: rotate(-55deg);
  -moz-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  -o-transform: rotate(-55deg);
  transform: rotate(-55deg);
  -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;
  z-index: -1;
  opacity: 0.2;
}
.team__thumb::after {
  left: auto;
  right: 75px;
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
}

.video-bg {
  background-position: center;
  background-size: cover;
  min-height: 565px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.video-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1b242e;
  opacity: 0.6;
  z-index: -1;
}
.video-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/video_overlay.png);
  background-position: center;
  background-size: cover;
  opacity: 0.38;
  z-index: -1;
}
.video__content .title {
  font-size: 55px;
  font-weight: var(--tg-fw-extra-bold);
  margin: 0 0 6px;
  text-shadow: 0 3px 7px rgb(0 0 0 / 0.33);
  letter-spacing: 3px;
}
@media (max-width: 767.98px) {
  .video__content .title {
    font-size: 48px;
    letter-spacing: 1px;
    line-height: 1.1;
  }
  .team__content .name{
    font-size: 0.8rem;
  }
  .video-bg {
	min-height: 440px;
	padding: 50px 0;
}
}
.video__content .title span {
  color: var(--tg-theme-primary);
}
.video__content p {
  margin: 0 0 30px;
  font-size: 16px;
  font-weight: var(--tg-fw-medium);
  color: #fefefe;
  letter-spacing: 0.9px;
}
.footer {
	background: #000;
  padding: 40px 0;
}
.footer ul {
	padding: 0;
	margin: 0;
	text-align: center;
}
.footer ul li {
	padding: 0;
	display: inline-block;
	color: #fff;
	font-size: 14px;
}
.footer ul li a {
	border-right: 1px solid #fff;
	padding-right: 5px;
  text-decoration: underline;
}
.footer ul li:last-child a{
  border-right: none;
}